-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add many options for SVG - remove options for components - add SvgRender class to update SVG from options - add options to library file and `window` - add `title` prop to components - add `reactive` prop to Vue components - remove `display` prop from Vue components
- Loading branch information
1 parent
beb0f4f
commit 777e35b
Showing
20 changed files
with
1,135 additions
and
680 deletions.
There are no files selected for viewing
This file contains 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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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,7 +1,7 @@ | ||
{ | ||
"name": "unplugin-svg-transformer", | ||
"type": "module", | ||
"version": "1.0.0-alpha.1", | ||
"version": "1.0.0-alpha.2", | ||
"description": "Import easily your SVG with Vite.", | ||
"author": "kiwilan <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -126,12 +126,12 @@ | |
"unplugin": "^1.5.0" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "1.0.0-beta.10", | ||
"@antfu/eslint-config": "1.0.0-beta.18", | ||
"@nuxt/kit": "^3.7.4", | ||
"@types/node": "^20.7.0", | ||
"@types/node": "^20.8.0", | ||
"@types/react": "^18.2.23", | ||
"@vitejs/plugin-vue": "^4.3.4", | ||
"@vitest/coverage-v8": "^0.34.5", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"bumpp": "^9.2.0", | ||
"chalk": "^5.3.0", | ||
"eslint": "^8.50.0", | ||
|
@@ -140,13 +140,13 @@ | |
"nodemon": "^3.0.1", | ||
"nuxt": "^3.7.4", | ||
"react": "^18.2.0", | ||
"rimraf": "^5.0.4", | ||
"rollup": "^3.29.3", | ||
"rimraf": "^5.0.5", | ||
"rollup": "^3.29.4", | ||
"svelte": "^4.2.1", | ||
"tsup": "^7.2.0", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.4.9", | ||
"vitest": "^0.34.5", | ||
"vitest": "^0.34.6", | ||
"vue": "^3.3.4", | ||
"webpack": "^5.88.2" | ||
} | ||
|
Oops, something went wrong.