@getdashfy/ui 0.1.0 → 0.1.1
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/CHANGELOG.md +10 -0
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getdashfy/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Dashfy UI component library for building Dashfy dashboards",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dashfy",
|
|
@@ -52,21 +52,7 @@
|
|
|
52
52
|
"engines": {
|
|
53
53
|
"node": ">=20.0.0"
|
|
54
54
|
},
|
|
55
|
-
"scripts": {
|
|
56
|
-
"build": "tsup && pnpm run build:css",
|
|
57
|
-
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
|
|
58
|
-
"build:storybook": "storybook build",
|
|
59
|
-
"check:circular": "madge --circular --extensions ts,tsx src/",
|
|
60
|
-
"clean": "rm -rf .turbo dist node_modules",
|
|
61
|
-
"dev": "tsup --watch",
|
|
62
|
-
"storybook": "storybook dev -p 6006",
|
|
63
|
-
"test": "vitest run",
|
|
64
|
-
"test:watch": "vitest",
|
|
65
|
-
"typecheck": "tsc --noEmit"
|
|
66
|
-
},
|
|
67
55
|
"dependencies": {
|
|
68
|
-
"@getdashfy/themes": "workspace:*",
|
|
69
|
-
"@getdashfy/utils": "workspace:*",
|
|
70
56
|
"@hookform/resolvers": "^5.2.2",
|
|
71
57
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
72
58
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
@@ -117,7 +103,9 @@
|
|
|
117
103
|
"tailwind-merge": "^2.5.5",
|
|
118
104
|
"vaul": "^1.1.2",
|
|
119
105
|
"zod": "^3.25.76",
|
|
120
|
-
"zustand": "^5.0.2"
|
|
106
|
+
"zustand": "^5.0.2",
|
|
107
|
+
"@getdashfy/themes": "0.1.1",
|
|
108
|
+
"@getdashfy/utils": "0.1.1"
|
|
121
109
|
},
|
|
122
110
|
"peerDependencies": {
|
|
123
111
|
"react": "^19.0.0",
|
|
@@ -125,8 +113,6 @@
|
|
|
125
113
|
},
|
|
126
114
|
"devDependencies": {
|
|
127
115
|
"@chromatic-com/storybook": "^5.2.1",
|
|
128
|
-
"@getdashfy/tsconfig": "workspace:*",
|
|
129
|
-
"@getdashfy/types": "workspace:*",
|
|
130
116
|
"@storybook/addon-docs": "^10.5.2",
|
|
131
117
|
"@storybook/addon-links": "^10.5.2",
|
|
132
118
|
"@storybook/react-vite": "^10.5.2",
|
|
@@ -147,6 +133,20 @@
|
|
|
147
133
|
"tsup": "^8.3.5",
|
|
148
134
|
"typescript": "^5.7.2",
|
|
149
135
|
"vite": "^6.0.7",
|
|
150
|
-
"vitest": "^2.1.8"
|
|
136
|
+
"vitest": "^2.1.8",
|
|
137
|
+
"@getdashfy/tsconfig": "0.0.0",
|
|
138
|
+
"@getdashfy/types": "0.1.1"
|
|
139
|
+
},
|
|
140
|
+
"scripts": {
|
|
141
|
+
"build": "tsup && pnpm run build:css",
|
|
142
|
+
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
|
|
143
|
+
"build:storybook": "storybook build",
|
|
144
|
+
"check:circular": "madge --circular --extensions ts,tsx src/",
|
|
145
|
+
"clean": "rm -rf .turbo dist node_modules",
|
|
146
|
+
"dev": "tsup --watch",
|
|
147
|
+
"storybook": "storybook dev -p 6006",
|
|
148
|
+
"test": "vitest run",
|
|
149
|
+
"test:watch": "vitest",
|
|
150
|
+
"typecheck": "tsc --noEmit"
|
|
151
151
|
}
|
|
152
|
-
}
|
|
152
|
+
}
|