@craftzbay/ui 0.1.0 → 0.2.0
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-lib/components/ui/Calendar.d.ts +9 -0
- package/dist-lib/components/ui/Carousel.d.ts +23 -0
- package/dist-lib/components/ui/Chart.d.ts +23 -0
- package/dist-lib/components/ui/Drawer.d.ts +15 -0
- package/dist-lib/components/ui/FileUpload.d.ts +23 -0
- package/dist-lib/components/ui/Snackbar.d.ts +21 -0
- package/dist-lib/components/ui/TagInput.d.ts +24 -0
- package/dist-lib/components/ui/Timeline.d.ts +23 -0
- package/dist-lib/components/ui/Tree.d.ts +24 -0
- package/dist-lib/index.cjs +4 -2
- package/dist-lib/index.cjs.map +1 -1
- package/dist-lib/index.d.ts +9 -0
- package/dist-lib/index.js +4753 -1936
- package/dist-lib/index.js.map +1 -1
- package/package.json +15 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@craftzbay/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Refined-minimal Tailwind v4 + React design system — 40+ accessible primitives and ready-made page patterns.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "craftzbay",
|
|
@@ -46,17 +46,6 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"scripts": {
|
|
50
|
-
"dev": "vite",
|
|
51
|
-
"build": "vite build",
|
|
52
|
-
"build:lib": "BUILD_TARGET=lib vite build",
|
|
53
|
-
"typecheck": "tsc --noEmit",
|
|
54
|
-
"lint": "eslint . --ext .ts,.tsx",
|
|
55
|
-
"format": "prettier --write .",
|
|
56
|
-
"storybook": "storybook dev -p 6006",
|
|
57
|
-
"build-storybook": "storybook build",
|
|
58
|
-
"prepublishOnly": "pnpm build:lib"
|
|
59
|
-
},
|
|
60
49
|
"dependencies": {
|
|
61
50
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
62
51
|
"@radix-ui/react-avatar": "^1.1.2",
|
|
@@ -80,10 +69,12 @@
|
|
|
80
69
|
"class-variance-authority": "^0.7.1",
|
|
81
70
|
"clsx": "^2.1.1",
|
|
82
71
|
"cmdk": "^1.0.4",
|
|
72
|
+
"embla-carousel-react": "^8.6.0",
|
|
83
73
|
"lucide-react": "^0.460.0",
|
|
84
74
|
"react-day-picker": "^9.4.4",
|
|
85
75
|
"react-hook-form": "^7.54.0",
|
|
86
|
-
"tailwind-merge": "^2.5.5"
|
|
76
|
+
"tailwind-merge": "^2.5.5",
|
|
77
|
+
"vaul": "^1.1.2"
|
|
87
78
|
},
|
|
88
79
|
"devDependencies": {
|
|
89
80
|
"@storybook/addon-a11y": "^10.4.0",
|
|
@@ -114,5 +105,15 @@
|
|
|
114
105
|
"peerDependencies": {
|
|
115
106
|
"react": ">=18",
|
|
116
107
|
"react-dom": ">=18"
|
|
108
|
+
},
|
|
109
|
+
"scripts": {
|
|
110
|
+
"dev": "vite",
|
|
111
|
+
"build": "vite build",
|
|
112
|
+
"build:lib": "BUILD_TARGET=lib vite build",
|
|
113
|
+
"typecheck": "tsc --noEmit",
|
|
114
|
+
"lint": "eslint . --ext .ts,.tsx",
|
|
115
|
+
"format": "prettier --write .",
|
|
116
|
+
"storybook": "storybook dev -p 6006",
|
|
117
|
+
"build-storybook": "storybook build"
|
|
117
118
|
}
|
|
118
|
-
}
|
|
119
|
+
}
|