@hanzo/ui 8.0.45 → 8.0.46
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/core/index.cjs +7 -1
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +7 -1
- package/dist/core/index.js.map +1 -1
- package/dist/core/tokens.cjs +31 -27
- package/dist/core/tokens.d.ts +19 -10
- package/dist/core/tokens.d.ts.map +1 -1
- package/dist/core/tokens.js +18 -9
- package/dist/core/tokens.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.css +920 -39
- package/dist/theme.css +920 -39
- package/package.json +8 -12
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/ui",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.46",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "Hanzo UI — the one canonical Hanzo component library, on @hanzo/gui + @hanzo/
|
|
5
|
+
"description": "Hanzo UI — the one canonical Hanzo component library, on @hanzo/gui + @hanzo/design. ONE substrate: every component renders through @hanzo/gui primitives, so the same import works on web, native (expo) and desktop (Tauri). Self-contained (theme.css), presentational, host-agnostic, clean-room.",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
@@ -31,15 +31,11 @@
|
|
|
31
31
|
},
|
|
32
32
|
"./core": {
|
|
33
33
|
"types": "./dist/core/index.d.ts",
|
|
34
|
-
"import": "./dist/core/index.js"
|
|
35
|
-
"require": "./dist/core/index.cjs",
|
|
36
|
-
"default": "./dist/core/index.js"
|
|
34
|
+
"import": "./dist/core/index.js"
|
|
37
35
|
},
|
|
38
36
|
"./tokens": {
|
|
39
37
|
"types": "./dist/core/tokens.d.ts",
|
|
40
|
-
"import": "./dist/core/tokens.js"
|
|
41
|
-
"require": "./dist/core/tokens.cjs",
|
|
42
|
-
"default": "./dist/core/tokens.js"
|
|
38
|
+
"import": "./dist/core/tokens.js"
|
|
43
39
|
},
|
|
44
40
|
"./theme.css": "./dist/theme.css",
|
|
45
41
|
"./product": {
|
|
@@ -160,13 +156,13 @@
|
|
|
160
156
|
"dist"
|
|
161
157
|
],
|
|
162
158
|
"dependencies": {
|
|
159
|
+
"@hanzo/design": "^0.4.6",
|
|
163
160
|
"@hanzo/logo": "^1.0.13",
|
|
164
161
|
"@hanzo/products": "^0.2.0",
|
|
165
162
|
"@hanzogui/lucide-icons-2": "^8.0.0",
|
|
166
163
|
"@hanzogui/telemetry": "^8.0.0",
|
|
167
164
|
"@hanzogui/toast": "^8.0.0",
|
|
168
|
-
"clsx": "^2.1.1"
|
|
169
|
-
"@hanzo/tokens": "1.0.0"
|
|
165
|
+
"clsx": "^2.1.1"
|
|
170
166
|
},
|
|
171
167
|
"peerDependencies": {
|
|
172
168
|
"@hanzo/canvas": ">=0.1.0",
|
|
@@ -213,6 +209,7 @@
|
|
|
213
209
|
"@hanzogui/lucide-icons-2": "8.0.0",
|
|
214
210
|
"@hanzogui/next-theme": "8.0.0",
|
|
215
211
|
"@hanzogui/web": "8.0.0",
|
|
212
|
+
"@playwright/test": "^1.61.0",
|
|
216
213
|
"@types/react": "^19.1.10",
|
|
217
214
|
"@types/react-dom": "^19.1.0",
|
|
218
215
|
"next-themes": "^0.4.6",
|
|
@@ -221,7 +218,6 @@
|
|
|
221
218
|
"react-native-web": "^0.21.2",
|
|
222
219
|
"typescript": "^5.9.3",
|
|
223
220
|
"vitest": "^4.1.8",
|
|
224
|
-
"@playwright/test": "^1.61.0",
|
|
225
221
|
"@hanzo/cd": "0.1.1"
|
|
226
222
|
},
|
|
227
223
|
"publishConfig": {
|
|
@@ -230,7 +226,7 @@
|
|
|
230
226
|
"license": "MIT",
|
|
231
227
|
"author": "Hanzo AI <dev@hanzo.ai>",
|
|
232
228
|
"scripts": {
|
|
233
|
-
"build": "rm -rf dist dist-cjs && tsc -p tsconfig.build.json && tsc -p tsconfig.cjs.json --noCheck && mkdir -p dist/styles &&
|
|
229
|
+
"build": "rm -rf dist dist-cjs && tsc -p tsconfig.build.json && tsc -p tsconfig.cjs.json --noCheck && mkdir -p dist/styles && node scripts/compose-theme.mjs && cp src/styles/motion.css dist/styles/motion.css && node scripts/postbuild.mjs && node scripts/gen-css.mjs",
|
|
234
230
|
"clean": "rm -rf dist dist-cjs types",
|
|
235
231
|
"gen:primitives": "node scripts/gen-primitives.mjs",
|
|
236
232
|
"tc": "tsc --noEmit",
|