@hanzo/ui 8.0.22 → 8.0.23
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/chunk-2BM42AZR.cjs +2301 -0
- package/dist/chunk-2BM42AZR.cjs.map +1 -0
- package/dist/chunk-7P7R7FC5.js +2231 -0
- package/dist/chunk-7P7R7FC5.js.map +1 -0
- package/dist/framework/CollectionsBrowser.d.ts +44 -0
- package/dist/framework/DocTypeDetail.d.ts +13 -0
- package/dist/framework/DocTypeRecords.d.ts +43 -0
- package/dist/framework/Loader.d.ts +4 -0
- package/dist/framework/client.d.ts +87 -0
- package/dist/framework/data.d.ts +18 -0
- package/dist/framework/fields.d.ts +75 -0
- package/dist/framework/index.d.ts +23 -0
- package/dist/framework/types.d.ts +81 -0
- package/dist/framework.cjs +757 -0
- package/dist/framework.cjs.map +1 -0
- package/dist/framework.d.ts +1 -0
- package/dist/framework.js +727 -0
- package/dist/framework.js.map +1 -0
- package/dist/product/index.cjs +269 -2290
- package/dist/product/index.cjs.map +1 -1
- package/dist/product/index.js +1 -2228
- package/dist/product/index.js.map +1 -1
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/ui",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Hanzo UI — the one canonical, backend-flexible component library on @hanzo/gui + @hanzo/tokens. A shared design core (Hanzo dark-first tokens, Geist Sans/Mono typography) with per-backend implementations: the shadcn-compatible web surface (Radix + Tailwind, the API apps import) and the @hanzo/gui product layer (cross-platform web + native + desktop). Self-contained (theme.css), presentational, host-agnostic, clean-room.",
|
|
6
6
|
"exports": {
|
|
@@ -70,6 +70,12 @@
|
|
|
70
70
|
"require": "./dist/data.cjs",
|
|
71
71
|
"default": "./dist/data.js"
|
|
72
72
|
},
|
|
73
|
+
"./framework": {
|
|
74
|
+
"types": "./dist/framework.d.ts",
|
|
75
|
+
"import": "./dist/framework.js",
|
|
76
|
+
"require": "./dist/framework.cjs",
|
|
77
|
+
"default": "./dist/framework.js"
|
|
78
|
+
},
|
|
73
79
|
"./primitives": {
|
|
74
80
|
"types": "./src/primitives/index.ts",
|
|
75
81
|
"default": "./src/primitives/index.ts"
|
|
@@ -177,8 +183,8 @@
|
|
|
177
183
|
"lucide-react": ">=0.456.0",
|
|
178
184
|
"sonner": "^2.0.7",
|
|
179
185
|
"tailwind-merge": "^3.5.0",
|
|
180
|
-
"@hanzo/
|
|
181
|
-
"@hanzo/
|
|
186
|
+
"@hanzo/products": "0.2.0",
|
|
187
|
+
"@hanzo/tokens": "1.0.0"
|
|
182
188
|
},
|
|
183
189
|
"peerDependencies": {
|
|
184
190
|
"@hanzo/canvas": ">=0.1.0",
|