sveltekit-ui 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -0
- package/package.json +2 -2
- package/src/lib/index.js +4 -0
package/dist/index.js
CHANGED
|
@@ -34,6 +34,10 @@ export { default as AuthCodeInput } from "./Components/AuthCodeInput/index.svelt
|
|
|
34
34
|
export { create_auth_code_input_manager } from "./Components/AuthCodeInput/index.svelte.js"
|
|
35
35
|
export { default as Code } from "./Components/Code/index.svelte"
|
|
36
36
|
export { create_code_manager } from "./Components/Code/index.svelte.js"
|
|
37
|
+
export { default as Chart } from "./Components/Chart/index.svelte"
|
|
38
|
+
export { create_chart_manager } from "./Components/Chart/index.svelte.js"
|
|
39
|
+
export { default as ChartInput } from "./Components/ChartInput/index.svelte"
|
|
40
|
+
export { create_chart_input_manager } from "./Components/ChartInput/index.svelte.js"
|
|
37
41
|
export { default as ColorInput } from "./Components/ColorInput/index.svelte"
|
|
38
42
|
export { create_color_input_manager } from "./Components/ColorInput/index.svelte.js"
|
|
39
43
|
export { default as ContentInput } from "./Components/ContentInput/index.svelte"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sveltekit-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "A SvelteKit UI component library for building modern web applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@sveltejs/vite-plugin-svelte": "^5.1.0",
|
|
32
32
|
"@vercel/analytics": "^1.5.0",
|
|
33
33
|
"typescript": "^5.8.3",
|
|
34
|
-
"vite": "^
|
|
34
|
+
"vite": "^7.0.2"
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://www.sveltekit-ui.com",
|
|
37
37
|
"keywords": [
|
package/src/lib/index.js
CHANGED
|
@@ -34,6 +34,10 @@ export { default as AuthCodeInput } from "./Components/AuthCodeInput/index.svelt
|
|
|
34
34
|
export { create_auth_code_input_manager } from "./Components/AuthCodeInput/index.svelte.js"
|
|
35
35
|
export { default as Code } from "./Components/Code/index.svelte"
|
|
36
36
|
export { create_code_manager } from "./Components/Code/index.svelte.js"
|
|
37
|
+
export { default as Chart } from "./Components/Chart/index.svelte"
|
|
38
|
+
export { create_chart_manager } from "./Components/Chart/index.svelte.js"
|
|
39
|
+
export { default as ChartInput } from "./Components/ChartInput/index.svelte"
|
|
40
|
+
export { create_chart_input_manager } from "./Components/ChartInput/index.svelte.js"
|
|
37
41
|
export { default as ColorInput } from "./Components/ColorInput/index.svelte"
|
|
38
42
|
export { create_color_input_manager } from "./Components/ColorInput/index.svelte.js"
|
|
39
43
|
export { default as ContentInput } from "./Components/ContentInput/index.svelte"
|