@hanzo/ui 8.0.70 → 8.0.71
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/glass.css +12 -1
- package/dist/gui-config.cjs +142 -4
- package/dist/gui-config.d.ts +27 -2
- package/dist/gui-config.d.ts.map +1 -1
- package/dist/gui-config.js +141 -4
- package/dist/gui-config.js.map +1 -1
- package/dist/product/accent.cjs +35 -0
- package/dist/product/accent.d.ts.map +1 -1
- package/dist/product/accent.js +35 -0
- package/dist/product/accent.js.map +1 -1
- package/dist/styles.css +271 -258
- package/dist/theme.css +12 -1
- package/package.json +3 -3
package/dist/theme.css
CHANGED
|
@@ -1338,7 +1338,18 @@
|
|
|
1338
1338
|
|
|
1339
1339
|
:root {
|
|
1340
1340
|
/* One sweep, closing on the stop it opened with — a conic gradient whose
|
|
1341
|
-
first and last stop differ shows a hard seam.
|
|
1341
|
+
first and last stop differ shows a hard seam.
|
|
1342
|
+
|
|
1343
|
+
LUMINANCE, NOT HUE. Four saturated stops at 0.40-0.48 alpha, swept around
|
|
1344
|
+
a rounded RECTANGLE, do not distribute evenly: the long top and bottom
|
|
1345
|
+
edges each take a wide angular slice and the short sides almost none, so
|
|
1346
|
+
one edge wore a bright blue while the opposite wore a burnt orange — a
|
|
1347
|
+
ring that highlights half the box and reads as sitting off-centre. White
|
|
1348
|
+
at two close alphas removes the bright arc entirely, drops the peak from
|
|
1349
|
+
0.48 to 0.18, and keeps the slow drift as a sheen. hanzo.chat and
|
|
1350
|
+
hanzo.app both declare exactly these stops; this is the package catching
|
|
1351
|
+
up to its consumers — the copies must not drift again, and this file is
|
|
1352
|
+
the home. */
|
|
1342
1353
|
--hz-spectrum: rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18),
|
|
1343
1354
|
rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18),
|
|
1344
1355
|
rgba(255, 255, 255, 0.1);
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/ui",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.71",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "Hanzo UI
|
|
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",
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
"dist"
|
|
188
188
|
],
|
|
189
189
|
"dependencies": {
|
|
190
|
-
"@hanzo/design": "^0.
|
|
190
|
+
"@hanzo/design": "^0.5.1",
|
|
191
191
|
"@hanzo/logo": "^1.0.13",
|
|
192
192
|
"@hanzo/products": "^0.2.0",
|
|
193
193
|
"@hanzogui/lucide-icons-2": "^8.1.0",
|