@hanzo/ui 8.0.46 → 8.0.47
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/styles.css +2 -14
- package/dist/theme.css +2 -14
- package/package.json +4 -3
package/dist/styles.css
CHANGED
|
@@ -710,20 +710,8 @@
|
|
|
710
710
|
The url()s are relative to THIS file, so they resolve wherever the package is
|
|
711
711
|
mounted — node_modules, a CDN, a copied dist — with no configuration. */
|
|
712
712
|
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
src:url("./assets/fonts/Geist-Variable.woff2") format("woff2");
|
|
716
|
-
font-weight:100 900;
|
|
717
|
-
font-style:normal;
|
|
718
|
-
font-display:swap;
|
|
719
|
-
}
|
|
720
|
-
@font-face{
|
|
721
|
-
font-family:"Geist Mono";
|
|
722
|
-
src:url("./assets/fonts/GeistMono-Variable.woff2") format("woff2");
|
|
723
|
-
font-weight:100 900;
|
|
724
|
-
font-style:normal;
|
|
725
|
-
font-display:swap;
|
|
726
|
-
}
|
|
713
|
+
|
|
714
|
+
|
|
727
715
|
|
|
728
716
|
:root{
|
|
729
717
|
--font-sans:"Geist","Geist Sans",ui-sans-serif,system-ui,sans-serif;
|
package/dist/theme.css
CHANGED
|
@@ -708,20 +708,8 @@
|
|
|
708
708
|
The url()s are relative to THIS file, so they resolve wherever the package is
|
|
709
709
|
mounted — node_modules, a CDN, a copied dist — with no configuration. */
|
|
710
710
|
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
src:url("./assets/fonts/Geist-Variable.woff2") format("woff2");
|
|
714
|
-
font-weight:100 900;
|
|
715
|
-
font-style:normal;
|
|
716
|
-
font-display:swap;
|
|
717
|
-
}
|
|
718
|
-
@font-face{
|
|
719
|
-
font-family:"Geist Mono";
|
|
720
|
-
src:url("./assets/fonts/GeistMono-Variable.woff2") format("woff2");
|
|
721
|
-
font-weight:100 900;
|
|
722
|
-
font-style:normal;
|
|
723
|
-
font-display:swap;
|
|
724
|
-
}
|
|
711
|
+
|
|
712
|
+
|
|
725
713
|
|
|
726
714
|
:root{
|
|
727
715
|
--font-sans:"Geist","Geist Sans",ui-sans-serif,system-ui,sans-serif;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/ui",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.47",
|
|
4
4
|
"type": "module",
|
|
5
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": {
|
|
@@ -232,9 +232,10 @@
|
|
|
232
232
|
"tc": "tsc --noEmit",
|
|
233
233
|
"typecheck": "tsc --noEmit",
|
|
234
234
|
"typecheck:ui": "tsc -p tsconfig.check.json",
|
|
235
|
-
"test": "vitest run && node scripts/consumer-test.mjs",
|
|
235
|
+
"test": "vitest run && node scripts/consumer-test.mjs && node scripts/consumer-webpack.mjs",
|
|
236
236
|
"test:watch": "vitest",
|
|
237
237
|
"test:consumer": "node scripts/consumer-test.mjs",
|
|
238
|
-
"test:unit": "vitest run"
|
|
238
|
+
"test:unit": "vitest run",
|
|
239
|
+
"test:consumer:webpack": "node scripts/consumer-webpack.mjs"
|
|
239
240
|
}
|
|
240
241
|
}
|