zabi-components 5.0.13 → 5.0.15
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/atoms/Badge.svelte +11 -8
- package/dist/atoms/Select.svelte +1 -0
- package/dist/atoms/Textarea.svelte +39 -16
- package/dist/atoms/Textarea.svelte.d.ts +1 -1
- package/dist/organisms/Navigation.svelte +1 -1
- package/dist/zabi-components-colors.css +325 -0
- package/dist/zabi-components.css +2557 -488
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zabi-components",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.15",
|
|
4
4
|
"description": "A modern Svelte 5 component library with TypeScript, Tailwind CSS v4, and 100% SSR-safe components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"import": "./dist/routes/lib/variant-utils.ts"
|
|
45
45
|
},
|
|
46
46
|
"./dist/zabi-components.css": "./dist/zabi-components.css",
|
|
47
|
+
"./dist/zabi-components-colors.css": "./dist/zabi-components-colors.css",
|
|
47
48
|
"./package.json": "./package.json"
|
|
48
49
|
},
|
|
49
50
|
"files": [
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"dev": "vite dev",
|
|
72
73
|
"build": "vite build && npm run build:types",
|
|
73
74
|
"build:lib": "svelte-package -o dist --input src/components && mkdir -p dist/routes/lib && cp src/routes/lib/ssr-safe.ts dist/routes/lib/ && cp src/routes/lib/variant-utils.ts dist/routes/lib/ && npm run build:css && npm run build:types",
|
|
74
|
-
"build:css": "
|
|
75
|
+
"build:css": "node scripts/build-css.js && cp src/styles/colors.css dist/zabi-components-colors.css && find dist -name '*.css' -not -name 'zabi-components.css' -not -name 'zabi-components-colors.css' -exec cat {} \\; >> dist/zabi-components.css",
|
|
75
76
|
"build:types": "tsc --project tsconfig.lib.json",
|
|
76
77
|
"preview": "vite preview",
|
|
77
78
|
"check": "svelte-check --tsconfig ./tsconfig.json",
|
|
@@ -80,7 +81,8 @@
|
|
|
80
81
|
"prepublishOnly": "npm run build:lib"
|
|
81
82
|
},
|
|
82
83
|
"devDependencies": {
|
|
83
|
-
"@storybook/
|
|
84
|
+
"@storybook/addon-docs": "^10.0.7",
|
|
85
|
+
"@storybook/sveltekit": "^10.0.7",
|
|
84
86
|
"@sveltejs/adapter-auto": "^7.0.0",
|
|
85
87
|
"@sveltejs/kit": "^2.47.2",
|
|
86
88
|
"@sveltejs/package": "^2.5.4",
|
|
@@ -91,7 +93,7 @@
|
|
|
91
93
|
"@types/react": "^19.2.2",
|
|
92
94
|
"autoprefixer": "^10.4.17",
|
|
93
95
|
"postcss": "^8.4.35",
|
|
94
|
-
"storybook": "^
|
|
96
|
+
"storybook": "^10.0.7",
|
|
95
97
|
"svelte": "^5.38.10",
|
|
96
98
|
"svelte-check": "^4.3.1",
|
|
97
99
|
"tailwindcss": "^4.1.13",
|