-
Notifications
You must be signed in to change notification settings - Fork 323
fix: update for version 2 #1887
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 22 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
91424ba
fix(accordion): update for version 2
shinokada 0f0f340
fix: coderabbitai fix
shinokada ccf9128
fix(alert): color update, CloseButton update
shinokada 3a54cfa
fix(alert): coderabbitai fix
shinokada f46178b
fix: add src/plugin-utilites
shinokada db924fe
fix: coderabbitai fix
shinokada c6a461c
fix(badge): update
shinokada 7ff797c
fix: coderabbitai fix
shinokada a2a8309
fix: add legacy colors to alert and badge
shinokada ab80826
fix(bottom-navigation): update
shinokada 5a93987
fix(bottom-navigation): theme
shinokada 5f48338
fix(breadcrumb): update and tests
shinokada 7df308c
fix(button-group): tests
shinokada bea8007
fix(button): update theme and tests
shinokada 57417ab
fix(image): update people image
shinokada 439a579
fix(image): update people image
shinokada 56a33a3
fix: coderabbitai fix
shinokada ccef5d6
fix(clipboard): examples update
shinokada 40d844f
tests(clipboard): new tests
shinokada c61fb32
tests(datepicker): test, add script/sync-plugin-utilities-export
shinokada 16b083a
fix: add eslint-disable-next-line for any
shinokada deaff2d
fix: initiate tailwindcss colors by adding src/routes/color-test/
shinokada 0efb5e7
tests(device-mockups): add tests
shinokada ef19413
tests(dialog): unit tests
shinokada 4bd2a28
fix: coderabbitai fix
shinokada 33ad4fd
tests(drawer): drawer and dropdown
shinokada 1aec1de
tests(footer): add unit tests
shinokada c4b174c
fix: coderabbitai fix
shinokada ceddcdf
tests: button-toggle, checkbox, dropzone, fileupload
shinokada 8ec967b
fix: coderabbitai fix
shinokada 2ab7487
fix: coderabbitai fix
shinokada File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,8 @@ | ||
| reviews: | ||
| auto_review: | ||
| enabled: true | ||
| base_branches: | ||
| - ".*" | ||
| tools: | ||
| github-checks: | ||
| timeout_ms: 300000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ samples/ | |
| src/routes/md/ | ||
| src/routes/testdir | ||
| *.html | ||
| src/routes/utils/highlight | ||
| **/utils/highlight/** | ||
| /.vercel | ||
| *.md | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Stop the dev server if running | ||
| echo "Clearing build caches..." | ||
|
|
||
| # Remove .svelte-kit directory | ||
| rm -rf .svelte-kit | ||
|
|
||
| # Remove node_modules/.vite cache | ||
| rm -rf node_modules/.vite | ||
|
|
||
| echo "Caches cleared! Now restart your dev server with: pnpm dev" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| #!/usr/bin/env bash | ||
| set -e | ||
|
|
||
| FILE="package.json" | ||
|
|
||
| # 1. Remove existing "./plugin-utilities" export block (if any) | ||
| sed -i '' '/"\.\/plugin-utilities": {/,/^[[:space:]]*},/d' "$FILE" 2>/dev/null \ | ||
| || sed -i '/"\.\/plugin-utilities": {/,/^[[:space:]]*},/d' "$FILE" | ||
|
|
||
| # 2. Insert the correct block before "./package.json" | ||
| sed -i '' '/"\.\/package\.json": "\.\/package\.json"/i\ | ||
| "./plugin-utilities": {\ | ||
| "types": "./dist/plugin-utilities.d.ts",\ | ||
| "import": "./dist/plugin-utilities.js",\ | ||
| "default": "./dist/plugin-utilities.js"\ | ||
| },\ | ||
| ' "$FILE" 2>/dev/null \ | ||
| || sed -i '/"\.\/package\.json": "\.\/package\.json"/i\ | ||
| "./plugin-utilities": {\ | ||
| "types": "./dist/plugin-utilities.d.ts",\ | ||
| "import": "./dist/plugin-utilities.js",\ | ||
| "default": "./dist/plugin-utilities.js"\ | ||
| },\ | ||
| ' "$FILE" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.