@hai3/uikit 0.1.0-alpha.8 → 0.2.0-alpha.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/index.cjs +5923 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1349 -0
- package/dist/index.d.ts +1349 -0
- package/dist/index.js +5356 -0
- package/dist/index.js.map +1 -0
- package/package.json +6 -4
- package/src/styles/applyTheme.ts +1 -1
- package/src/styles/globals.css +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hai3/uikit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-alpha.0",
|
|
4
4
|
"description": "HAI3 UI Kit - Reusable React components built on shadcn/ui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@hai3/uikit-contracts": "*",
|
|
56
55
|
"@hookform/resolvers": "^5.2.2",
|
|
57
56
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
58
57
|
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
@@ -77,10 +76,13 @@
|
|
|
77
76
|
"@radix-ui/react-slot": "^1.2.3",
|
|
78
77
|
"@radix-ui/react-switch": "^1.2.6",
|
|
79
78
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
79
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
80
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
80
81
|
"@radix-ui/react-tooltip": "^1.1.5",
|
|
81
82
|
"@tanstack/react-table": "^8.21.3",
|
|
82
83
|
"class-variance-authority": "^0.7.1",
|
|
83
84
|
"clsx": "^2.1.1",
|
|
85
|
+
"cmdk": "^1.1.1",
|
|
84
86
|
"date-fns": "^4.1.0",
|
|
85
87
|
"embla-carousel-react": "^8.0.0",
|
|
86
88
|
"input-otp": "^1.4.2",
|
|
@@ -92,10 +94,10 @@
|
|
|
92
94
|
"recharts": "^2.15.0",
|
|
93
95
|
"sonner": "^2.0.7",
|
|
94
96
|
"tailwind-merge": "^2.6.0",
|
|
95
|
-
"vaul": "^1.1.2"
|
|
97
|
+
"vaul": "^1.1.2",
|
|
98
|
+
"zod": "^4.2.1"
|
|
96
99
|
},
|
|
97
100
|
"peerDependencies": {
|
|
98
|
-
"@hai3/uikit-contracts": "*",
|
|
99
101
|
"react": "^18.0.0",
|
|
100
102
|
"react-dom": "^18.0.0"
|
|
101
103
|
},
|
package/src/styles/applyTheme.ts
CHANGED