@hanzo/ui 8.0.68 → 8.0.70

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 CHANGED
@@ -231,8 +231,9 @@
231
231
  :root {
232
232
  /* One sweep, closing on the stop it opened with — a conic gradient whose
233
233
  first and last stop differ shows a hard seam. */
234
- --hz-spectrum: rgba(8, 148, 255, 0.45), rgba(201, 89, 221, 0.48),
235
- rgba(255, 46, 84, 0.4), rgba(255, 144, 4, 0.4), rgba(8, 148, 255, 0.45);
234
+ --hz-spectrum: rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18),
235
+ rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18),
236
+ rgba(255, 255, 255, 0.1);
236
237
  }
237
238
 
238
239
  @keyframes hzComposerSpin {
@@ -35,50 +35,70 @@ const GEIST = "'Geist', system-ui, -apple-system, sans-serif";
35
35
  * same face or the same number renders in two different fonts depending on
36
36
  * which one a component reached for. */
37
37
  const GEIST_MONO = "'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace";
38
- /** Type — SIX sizes in the app, matching the host's `--text-*` design tokens.
38
+ /** Type — the same SIX sizes, now DEFERRED to @hanzo/design rather than restated.
39
39
  * $1 label · $2 nav + dense body · $3 base · $4/$5 emphasis · $6 section head ·
40
- * $7 page title · $8+ display. `$5` collapses onto 15 to retire the 16px base
41
- * (217 stray nodes); `$9` collapses onto 26 so a page title has ONE size. */
40
+ * $7 page title · $8+ display. `$5` still collapses onto 15 to retire the 16px
41
+ * base (217 stray nodes); `$9` still collapses onto 26 so a page title has ONE
42
+ * size — those are decisions, and deferring the VALUE does not undo them.
43
+ *
44
+ * Twelve rungs name a design token whose published value is byte-identical to
45
+ * the number that was here, so this is a zero-change edit; gui-config.test.ts
46
+ * asserts that equality rung by rung, the same way it already does for the
47
+ * three colour rungs, so design cannot move a size without this failing.
48
+ *
49
+ * Four rungs ($12 48 · $13 56 · $15 80 · $16 96) have no counterpart: design's
50
+ * display ramp goes 52/64/84/112. Inventing a token or silently resizing them
51
+ * would both be worse than saying so, so they keep their literal and carry the
52
+ * knob directly.
53
+ *
54
+ * Why a var() at all: gui resolves these in JS and applies them INLINE, and an
55
+ * inline style outranks every stylesheet — so a CSS custom property is the only
56
+ * thing that can reach a `fontSize="$n"` call site, and there are ~1600 of them.
57
+ * design's ramp multiplies by `--type-scale`, so one number retunes the whole
58
+ * product and a person can set it for themselves. The px literal stays as the
59
+ * var()'s fallback, so a host that mounts no token layer still renders. */
42
60
  const FONT_SIZE = {
43
- 1: 11,
44
- 2: 13,
45
- 3: 14,
46
- 4: 15,
47
- 5: 15,
48
- 6: 17,
49
- 7: 21,
50
- 8: 26,
51
- 9: 26,
52
- 10: 32,
53
- 11: 40,
54
- 12: 48,
55
- 13: 56,
56
- 14: 64,
57
- 15: 80,
58
- 16: 96,
59
- true: 14,
61
+ 1: `var(--text-xs, 11px)`,
62
+ 2: `var(--text-sm, 13px)`,
63
+ 3: `var(--text-base, 14px)`,
64
+ 4: `var(--text-lg, 15px)`,
65
+ 5: `var(--text-lg, 15px)`,
66
+ 6: `var(--text-xl, 17px)`,
67
+ 7: `var(--text-2xl, 21px)`,
68
+ 8: `var(--text-3xl, 26px)`,
69
+ 9: `var(--text-3xl, 26px)`,
70
+ 10: `var(--text-4xl, 32px)`,
71
+ 11: `var(--text-5xl, 40px)`,
72
+ 12: `calc(48px * var(--type-scale, 1))`,
73
+ 13: `calc(56px * var(--type-scale, 1))`,
74
+ 14: `var(--text-7xl, 64px)`,
75
+ 15: `calc(80px * var(--type-scale, 1))`,
76
+ 16: `calc(96px * var(--type-scale, 1))`,
77
+ true: `var(--text-base, 14px)`,
60
78
  };
61
- /** Leading, paired 1:1 with the sizes above. A size token carries a line-height
62
- * tuned for ONE line, so these track the type scale rather than the inherited
63
- * ladder, which left an 11px label sitting in an 18px box. */
79
+ /** Leading, paired 1:1 with the sizes above and NOT deferred, deliberately.
80
+ * design publishes its own `--leading-*` rhythm and exactly ONE of these
81
+ * sixteen matches it, so adopting those would re-flow every line box in the
82
+ * product. These are the values tuned for this ladder; they keep them, and
83
+ * carry `--type-scale` so leading grows with the text instead of clamping it. */
64
84
  const LINE_HEIGHT = {
65
- 1: 16,
66
- 2: 18,
67
- 3: 20,
68
- 4: 22,
69
- 5: 22,
70
- 6: 24,
71
- 7: 28,
72
- 8: 32,
73
- 9: 32,
74
- 10: 38,
75
- 11: 46,
76
- 12: 54,
77
- 13: 62,
78
- 14: 70,
79
- 15: 86,
80
- 16: 102,
81
- true: 20,
85
+ 1: `calc(16px * var(--type-scale, 1))`,
86
+ 2: `calc(18px * var(--type-scale, 1))`,
87
+ 3: `calc(20px * var(--type-scale, 1))`,
88
+ 4: `calc(22px * var(--type-scale, 1))`,
89
+ 5: `calc(22px * var(--type-scale, 1))`,
90
+ 6: `calc(24px * var(--type-scale, 1))`,
91
+ 7: `calc(28px * var(--type-scale, 1))`,
92
+ 8: `calc(32px * var(--type-scale, 1))`,
93
+ 9: `calc(32px * var(--type-scale, 1))`,
94
+ 10: `calc(38px * var(--type-scale, 1))`,
95
+ 11: `calc(46px * var(--type-scale, 1))`,
96
+ 12: `calc(54px * var(--type-scale, 1))`,
97
+ 13: `calc(62px * var(--type-scale, 1))`,
98
+ 14: `calc(70px * var(--type-scale, 1))`,
99
+ 15: `calc(86px * var(--type-scale, 1))`,
100
+ 16: `calc(102px * var(--type-scale, 1))`,
101
+ true: `calc(20px * var(--type-scale, 1))`,
82
102
  };
83
103
  /** Radius — FOUR values, no more. 6 control · 8 input/row · 12 panel · pill.
84
104
  * The inherited ladder had thirteen spellings rendering ten values, including
@@ -226,6 +246,19 @@ const themes = Object.fromEntries(Object.entries(v5_1.defaultConfig.themes).map(
226
246
  }));
227
247
  // Everything except the theme table, which is the one thing the two configs
228
248
  // below disagree about. Stated once so they cannot drift on radius or fonts.
249
+ /**
250
+ * gui types a font size as a NUMBER, and at runtime it is a CSS value.
251
+ *
252
+ * The token table is handed straight through to the style layer — verified by
253
+ * reading the built config, where `config.fonts.body.size['3']` is the string
254
+ * `var(--text-base, 14px)` — which is exactly how the three colour rungs above
255
+ * already carry `var(--border, …)`. Colour is typed loosely enough to allow it;
256
+ * size is not, so upstream's type is narrower than upstream's behaviour.
257
+ *
258
+ * Asserting here rather than widening the tokens keeps the lie in ONE place,
259
+ * next to the reason for it, instead of letting `any` spread through the config.
260
+ */
261
+ const asSizes = (t) => t;
229
262
  const base = {
230
263
  ...v5_1.defaultConfig,
231
264
  tokens: {
@@ -235,14 +268,14 @@ const base = {
235
268
  },
236
269
  fonts: {
237
270
  ...v5_1.defaultConfig.fonts,
238
- body: { ...v5_1.defaultConfig.fonts.body, family: GEIST, size: FONT_SIZE, lineHeight: LINE_HEIGHT },
239
- heading: { ...v5_1.defaultConfig.fonts.heading, family: GEIST, size: FONT_SIZE, lineHeight: LINE_HEIGHT },
271
+ body: { ...v5_1.defaultConfig.fonts.body, family: GEIST, size: asSizes(FONT_SIZE), lineHeight: asSizes(LINE_HEIGHT) },
272
+ heading: { ...v5_1.defaultConfig.fonts.heading, family: GEIST, size: asSizes(FONT_SIZE), lineHeight: asSizes(LINE_HEIGHT) },
240
273
  // `$mono` was NOT defined here, and gui emits NO class for a font token it
241
274
  // does not know — no warning, no fallback, a green build and text that is
242
275
  // simply not monospace. 260 `fontFamily="$mono"` call sites across 74 files
243
276
  // in hanzo.app were dead on that alone. A missing token has to be a defined
244
277
  // token, not a silent no-op, so it is defined.
245
- mono: { ...v5_1.defaultConfig.fonts.body, family: GEIST_MONO, size: FONT_SIZE, lineHeight: LINE_HEIGHT },
278
+ mono: { ...v5_1.defaultConfig.fonts.body, family: GEIST_MONO, size: asSizes(FONT_SIZE), lineHeight: asSizes(LINE_HEIGHT) },
246
279
  },
247
280
  };
248
281
  exports.config = (0, gui_1.createGui)({ ...base, themes });
@@ -187,42 +187,42 @@ export declare const config: import("@hanzogui/web").GuiInternalConfig<{
187
187
  body: {
188
188
  family: string;
189
189
  size: {
190
- readonly 1: 11;
191
- readonly 2: 13;
192
- readonly 3: 14;
193
- readonly 4: 15;
194
- readonly 5: 15;
195
- readonly 6: 17;
196
- readonly 7: 21;
197
- readonly 8: 26;
198
- readonly 9: 26;
199
- readonly 10: 32;
200
- readonly 11: 40;
201
- readonly 12: 48;
202
- readonly 13: 56;
203
- readonly 14: 64;
204
- readonly 15: 80;
205
- readonly 16: 96;
206
- readonly true: 14;
190
+ 1: number | import("@hanzogui/web").Variable<any>;
191
+ 5: number | import("@hanzogui/web").Variable<any>;
192
+ 7: number | import("@hanzogui/web").Variable<any>;
193
+ 12: number | import("@hanzogui/web").Variable<any>;
194
+ 2: number | import("@hanzogui/web").Variable<any>;
195
+ 3: number | import("@hanzogui/web").Variable<any>;
196
+ 16: number | import("@hanzogui/web").Variable<any>;
197
+ 4: number | import("@hanzogui/web").Variable<any>;
198
+ 6: number | import("@hanzogui/web").Variable<any>;
199
+ true: number | import("@hanzogui/web").Variable<any>;
200
+ 10: number | import("@hanzogui/web").Variable<any>;
201
+ 8: number | import("@hanzogui/web").Variable<any>;
202
+ 11: number | import("@hanzogui/web").Variable<any>;
203
+ 9: number | import("@hanzogui/web").Variable<any>;
204
+ 15: number | import("@hanzogui/web").Variable<any>;
205
+ 14: number | import("@hanzogui/web").Variable<any>;
206
+ 13: number | import("@hanzogui/web").Variable<any>;
207
207
  };
208
208
  lineHeight: {
209
- readonly 1: 16;
210
- readonly 2: 18;
211
- readonly 3: 20;
212
- readonly 4: 22;
213
- readonly 5: 22;
214
- readonly 6: 24;
215
- readonly 7: 28;
216
- readonly 8: 32;
217
- readonly 9: 32;
218
- readonly 10: 38;
219
- readonly 11: 46;
220
- readonly 12: 54;
221
- readonly 13: 62;
222
- readonly 14: 70;
223
- readonly 15: 86;
224
- readonly 16: 102;
225
- readonly true: 20;
209
+ 1: number | import("@hanzogui/web").Variable<any>;
210
+ 5: number | import("@hanzogui/web").Variable<any>;
211
+ 7: number | import("@hanzogui/web").Variable<any>;
212
+ 12: number | import("@hanzogui/web").Variable<any>;
213
+ 2: number | import("@hanzogui/web").Variable<any>;
214
+ 3: number | import("@hanzogui/web").Variable<any>;
215
+ 16: number | import("@hanzogui/web").Variable<any>;
216
+ 4: number | import("@hanzogui/web").Variable<any>;
217
+ 6: number | import("@hanzogui/web").Variable<any>;
218
+ true: number | import("@hanzogui/web").Variable<any>;
219
+ 10: number | import("@hanzogui/web").Variable<any>;
220
+ 8: number | import("@hanzogui/web").Variable<any>;
221
+ 11: number | import("@hanzogui/web").Variable<any>;
222
+ 9: number | import("@hanzogui/web").Variable<any>;
223
+ 15: number | import("@hanzogui/web").Variable<any>;
224
+ 14: number | import("@hanzogui/web").Variable<any>;
225
+ 13: number | import("@hanzogui/web").Variable<any>;
226
226
  };
227
227
  weight: {
228
228
  1: any;
@@ -369,42 +369,42 @@ export declare const config: import("@hanzogui/web").GuiInternalConfig<{
369
369
  heading: {
370
370
  family: string;
371
371
  size: {
372
- readonly 1: 11;
373
- readonly 2: 13;
374
- readonly 3: 14;
375
- readonly 4: 15;
376
- readonly 5: 15;
377
- readonly 6: 17;
378
- readonly 7: 21;
379
- readonly 8: 26;
380
- readonly 9: 26;
381
- readonly 10: 32;
382
- readonly 11: 40;
383
- readonly 12: 48;
384
- readonly 13: 56;
385
- readonly 14: 64;
386
- readonly 15: 80;
387
- readonly 16: 96;
388
- readonly true: 14;
372
+ 1: number | import("@hanzogui/web").Variable<any>;
373
+ 5: number | import("@hanzogui/web").Variable<any>;
374
+ 7: number | import("@hanzogui/web").Variable<any>;
375
+ 12: number | import("@hanzogui/web").Variable<any>;
376
+ 2: number | import("@hanzogui/web").Variable<any>;
377
+ 3: number | import("@hanzogui/web").Variable<any>;
378
+ 16: number | import("@hanzogui/web").Variable<any>;
379
+ 4: number | import("@hanzogui/web").Variable<any>;
380
+ 6: number | import("@hanzogui/web").Variable<any>;
381
+ true: number | import("@hanzogui/web").Variable<any>;
382
+ 10: number | import("@hanzogui/web").Variable<any>;
383
+ 8: number | import("@hanzogui/web").Variable<any>;
384
+ 11: number | import("@hanzogui/web").Variable<any>;
385
+ 9: number | import("@hanzogui/web").Variable<any>;
386
+ 15: number | import("@hanzogui/web").Variable<any>;
387
+ 14: number | import("@hanzogui/web").Variable<any>;
388
+ 13: number | import("@hanzogui/web").Variable<any>;
389
389
  };
390
390
  lineHeight: {
391
- readonly 1: 16;
392
- readonly 2: 18;
393
- readonly 3: 20;
394
- readonly 4: 22;
395
- readonly 5: 22;
396
- readonly 6: 24;
397
- readonly 7: 28;
398
- readonly 8: 32;
399
- readonly 9: 32;
400
- readonly 10: 38;
401
- readonly 11: 46;
402
- readonly 12: 54;
403
- readonly 13: 62;
404
- readonly 14: 70;
405
- readonly 15: 86;
406
- readonly 16: 102;
407
- readonly true: 20;
391
+ 1: number | import("@hanzogui/web").Variable<any>;
392
+ 5: number | import("@hanzogui/web").Variable<any>;
393
+ 7: number | import("@hanzogui/web").Variable<any>;
394
+ 12: number | import("@hanzogui/web").Variable<any>;
395
+ 2: number | import("@hanzogui/web").Variable<any>;
396
+ 3: number | import("@hanzogui/web").Variable<any>;
397
+ 16: number | import("@hanzogui/web").Variable<any>;
398
+ 4: number | import("@hanzogui/web").Variable<any>;
399
+ 6: number | import("@hanzogui/web").Variable<any>;
400
+ true: number | import("@hanzogui/web").Variable<any>;
401
+ 10: number | import("@hanzogui/web").Variable<any>;
402
+ 8: number | import("@hanzogui/web").Variable<any>;
403
+ 11: number | import("@hanzogui/web").Variable<any>;
404
+ 9: number | import("@hanzogui/web").Variable<any>;
405
+ 15: number | import("@hanzogui/web").Variable<any>;
406
+ 14: number | import("@hanzogui/web").Variable<any>;
407
+ 13: number | import("@hanzogui/web").Variable<any>;
408
408
  };
409
409
  weight: {
410
410
  1: any;
@@ -551,42 +551,42 @@ export declare const config: import("@hanzogui/web").GuiInternalConfig<{
551
551
  mono: {
552
552
  family: string;
553
553
  size: {
554
- readonly 1: 11;
555
- readonly 2: 13;
556
- readonly 3: 14;
557
- readonly 4: 15;
558
- readonly 5: 15;
559
- readonly 6: 17;
560
- readonly 7: 21;
561
- readonly 8: 26;
562
- readonly 9: 26;
563
- readonly 10: 32;
564
- readonly 11: 40;
565
- readonly 12: 48;
566
- readonly 13: 56;
567
- readonly 14: 64;
568
- readonly 15: 80;
569
- readonly 16: 96;
570
- readonly true: 14;
554
+ 1: number | import("@hanzogui/web").Variable<any>;
555
+ 5: number | import("@hanzogui/web").Variable<any>;
556
+ 7: number | import("@hanzogui/web").Variable<any>;
557
+ 12: number | import("@hanzogui/web").Variable<any>;
558
+ 2: number | import("@hanzogui/web").Variable<any>;
559
+ 3: number | import("@hanzogui/web").Variable<any>;
560
+ 16: number | import("@hanzogui/web").Variable<any>;
561
+ 4: number | import("@hanzogui/web").Variable<any>;
562
+ 6: number | import("@hanzogui/web").Variable<any>;
563
+ true: number | import("@hanzogui/web").Variable<any>;
564
+ 10: number | import("@hanzogui/web").Variable<any>;
565
+ 8: number | import("@hanzogui/web").Variable<any>;
566
+ 11: number | import("@hanzogui/web").Variable<any>;
567
+ 9: number | import("@hanzogui/web").Variable<any>;
568
+ 15: number | import("@hanzogui/web").Variable<any>;
569
+ 14: number | import("@hanzogui/web").Variable<any>;
570
+ 13: number | import("@hanzogui/web").Variable<any>;
571
571
  };
572
572
  lineHeight: {
573
- readonly 1: 16;
574
- readonly 2: 18;
575
- readonly 3: 20;
576
- readonly 4: 22;
577
- readonly 5: 22;
578
- readonly 6: 24;
579
- readonly 7: 28;
580
- readonly 8: 32;
581
- readonly 9: 32;
582
- readonly 10: 38;
583
- readonly 11: 46;
584
- readonly 12: 54;
585
- readonly 13: 62;
586
- readonly 14: 70;
587
- readonly 15: 86;
588
- readonly 16: 102;
589
- readonly true: 20;
573
+ 1: number | import("@hanzogui/web").Variable<any>;
574
+ 5: number | import("@hanzogui/web").Variable<any>;
575
+ 7: number | import("@hanzogui/web").Variable<any>;
576
+ 12: number | import("@hanzogui/web").Variable<any>;
577
+ 2: number | import("@hanzogui/web").Variable<any>;
578
+ 3: number | import("@hanzogui/web").Variable<any>;
579
+ 16: number | import("@hanzogui/web").Variable<any>;
580
+ 4: number | import("@hanzogui/web").Variable<any>;
581
+ 6: number | import("@hanzogui/web").Variable<any>;
582
+ true: number | import("@hanzogui/web").Variable<any>;
583
+ 10: number | import("@hanzogui/web").Variable<any>;
584
+ 8: number | import("@hanzogui/web").Variable<any>;
585
+ 11: number | import("@hanzogui/web").Variable<any>;
586
+ 9: number | import("@hanzogui/web").Variable<any>;
587
+ 15: number | import("@hanzogui/web").Variable<any>;
588
+ 14: number | import("@hanzogui/web").Variable<any>;
589
+ 13: number | import("@hanzogui/web").Variable<any>;
590
590
  };
591
591
  weight: {
592
592
  1: any;
@@ -971,42 +971,42 @@ export declare const monochrome: import("@hanzogui/web").GuiInternalConfig<{
971
971
  body: {
972
972
  family: string;
973
973
  size: {
974
- readonly 1: 11;
975
- readonly 2: 13;
976
- readonly 3: 14;
977
- readonly 4: 15;
978
- readonly 5: 15;
979
- readonly 6: 17;
980
- readonly 7: 21;
981
- readonly 8: 26;
982
- readonly 9: 26;
983
- readonly 10: 32;
984
- readonly 11: 40;
985
- readonly 12: 48;
986
- readonly 13: 56;
987
- readonly 14: 64;
988
- readonly 15: 80;
989
- readonly 16: 96;
990
- readonly true: 14;
974
+ 1: number | import("@hanzogui/web").Variable<any>;
975
+ 5: number | import("@hanzogui/web").Variable<any>;
976
+ 7: number | import("@hanzogui/web").Variable<any>;
977
+ 12: number | import("@hanzogui/web").Variable<any>;
978
+ 2: number | import("@hanzogui/web").Variable<any>;
979
+ 3: number | import("@hanzogui/web").Variable<any>;
980
+ 16: number | import("@hanzogui/web").Variable<any>;
981
+ 4: number | import("@hanzogui/web").Variable<any>;
982
+ 6: number | import("@hanzogui/web").Variable<any>;
983
+ true: number | import("@hanzogui/web").Variable<any>;
984
+ 10: number | import("@hanzogui/web").Variable<any>;
985
+ 8: number | import("@hanzogui/web").Variable<any>;
986
+ 11: number | import("@hanzogui/web").Variable<any>;
987
+ 9: number | import("@hanzogui/web").Variable<any>;
988
+ 15: number | import("@hanzogui/web").Variable<any>;
989
+ 14: number | import("@hanzogui/web").Variable<any>;
990
+ 13: number | import("@hanzogui/web").Variable<any>;
991
991
  };
992
992
  lineHeight: {
993
- readonly 1: 16;
994
- readonly 2: 18;
995
- readonly 3: 20;
996
- readonly 4: 22;
997
- readonly 5: 22;
998
- readonly 6: 24;
999
- readonly 7: 28;
1000
- readonly 8: 32;
1001
- readonly 9: 32;
1002
- readonly 10: 38;
1003
- readonly 11: 46;
1004
- readonly 12: 54;
1005
- readonly 13: 62;
1006
- readonly 14: 70;
1007
- readonly 15: 86;
1008
- readonly 16: 102;
1009
- readonly true: 20;
993
+ 1: number | import("@hanzogui/web").Variable<any>;
994
+ 5: number | import("@hanzogui/web").Variable<any>;
995
+ 7: number | import("@hanzogui/web").Variable<any>;
996
+ 12: number | import("@hanzogui/web").Variable<any>;
997
+ 2: number | import("@hanzogui/web").Variable<any>;
998
+ 3: number | import("@hanzogui/web").Variable<any>;
999
+ 16: number | import("@hanzogui/web").Variable<any>;
1000
+ 4: number | import("@hanzogui/web").Variable<any>;
1001
+ 6: number | import("@hanzogui/web").Variable<any>;
1002
+ true: number | import("@hanzogui/web").Variable<any>;
1003
+ 10: number | import("@hanzogui/web").Variable<any>;
1004
+ 8: number | import("@hanzogui/web").Variable<any>;
1005
+ 11: number | import("@hanzogui/web").Variable<any>;
1006
+ 9: number | import("@hanzogui/web").Variable<any>;
1007
+ 15: number | import("@hanzogui/web").Variable<any>;
1008
+ 14: number | import("@hanzogui/web").Variable<any>;
1009
+ 13: number | import("@hanzogui/web").Variable<any>;
1010
1010
  };
1011
1011
  weight: {
1012
1012
  1: any;
@@ -1153,42 +1153,42 @@ export declare const monochrome: import("@hanzogui/web").GuiInternalConfig<{
1153
1153
  heading: {
1154
1154
  family: string;
1155
1155
  size: {
1156
- readonly 1: 11;
1157
- readonly 2: 13;
1158
- readonly 3: 14;
1159
- readonly 4: 15;
1160
- readonly 5: 15;
1161
- readonly 6: 17;
1162
- readonly 7: 21;
1163
- readonly 8: 26;
1164
- readonly 9: 26;
1165
- readonly 10: 32;
1166
- readonly 11: 40;
1167
- readonly 12: 48;
1168
- readonly 13: 56;
1169
- readonly 14: 64;
1170
- readonly 15: 80;
1171
- readonly 16: 96;
1172
- readonly true: 14;
1156
+ 1: number | import("@hanzogui/web").Variable<any>;
1157
+ 5: number | import("@hanzogui/web").Variable<any>;
1158
+ 7: number | import("@hanzogui/web").Variable<any>;
1159
+ 12: number | import("@hanzogui/web").Variable<any>;
1160
+ 2: number | import("@hanzogui/web").Variable<any>;
1161
+ 3: number | import("@hanzogui/web").Variable<any>;
1162
+ 16: number | import("@hanzogui/web").Variable<any>;
1163
+ 4: number | import("@hanzogui/web").Variable<any>;
1164
+ 6: number | import("@hanzogui/web").Variable<any>;
1165
+ true: number | import("@hanzogui/web").Variable<any>;
1166
+ 10: number | import("@hanzogui/web").Variable<any>;
1167
+ 8: number | import("@hanzogui/web").Variable<any>;
1168
+ 11: number | import("@hanzogui/web").Variable<any>;
1169
+ 9: number | import("@hanzogui/web").Variable<any>;
1170
+ 15: number | import("@hanzogui/web").Variable<any>;
1171
+ 14: number | import("@hanzogui/web").Variable<any>;
1172
+ 13: number | import("@hanzogui/web").Variable<any>;
1173
1173
  };
1174
1174
  lineHeight: {
1175
- readonly 1: 16;
1176
- readonly 2: 18;
1177
- readonly 3: 20;
1178
- readonly 4: 22;
1179
- readonly 5: 22;
1180
- readonly 6: 24;
1181
- readonly 7: 28;
1182
- readonly 8: 32;
1183
- readonly 9: 32;
1184
- readonly 10: 38;
1185
- readonly 11: 46;
1186
- readonly 12: 54;
1187
- readonly 13: 62;
1188
- readonly 14: 70;
1189
- readonly 15: 86;
1190
- readonly 16: 102;
1191
- readonly true: 20;
1175
+ 1: number | import("@hanzogui/web").Variable<any>;
1176
+ 5: number | import("@hanzogui/web").Variable<any>;
1177
+ 7: number | import("@hanzogui/web").Variable<any>;
1178
+ 12: number | import("@hanzogui/web").Variable<any>;
1179
+ 2: number | import("@hanzogui/web").Variable<any>;
1180
+ 3: number | import("@hanzogui/web").Variable<any>;
1181
+ 16: number | import("@hanzogui/web").Variable<any>;
1182
+ 4: number | import("@hanzogui/web").Variable<any>;
1183
+ 6: number | import("@hanzogui/web").Variable<any>;
1184
+ true: number | import("@hanzogui/web").Variable<any>;
1185
+ 10: number | import("@hanzogui/web").Variable<any>;
1186
+ 8: number | import("@hanzogui/web").Variable<any>;
1187
+ 11: number | import("@hanzogui/web").Variable<any>;
1188
+ 9: number | import("@hanzogui/web").Variable<any>;
1189
+ 15: number | import("@hanzogui/web").Variable<any>;
1190
+ 14: number | import("@hanzogui/web").Variable<any>;
1191
+ 13: number | import("@hanzogui/web").Variable<any>;
1192
1192
  };
1193
1193
  weight: {
1194
1194
  1: any;
@@ -1335,42 +1335,42 @@ export declare const monochrome: import("@hanzogui/web").GuiInternalConfig<{
1335
1335
  mono: {
1336
1336
  family: string;
1337
1337
  size: {
1338
- readonly 1: 11;
1339
- readonly 2: 13;
1340
- readonly 3: 14;
1341
- readonly 4: 15;
1342
- readonly 5: 15;
1343
- readonly 6: 17;
1344
- readonly 7: 21;
1345
- readonly 8: 26;
1346
- readonly 9: 26;
1347
- readonly 10: 32;
1348
- readonly 11: 40;
1349
- readonly 12: 48;
1350
- readonly 13: 56;
1351
- readonly 14: 64;
1352
- readonly 15: 80;
1353
- readonly 16: 96;
1354
- readonly true: 14;
1338
+ 1: number | import("@hanzogui/web").Variable<any>;
1339
+ 5: number | import("@hanzogui/web").Variable<any>;
1340
+ 7: number | import("@hanzogui/web").Variable<any>;
1341
+ 12: number | import("@hanzogui/web").Variable<any>;
1342
+ 2: number | import("@hanzogui/web").Variable<any>;
1343
+ 3: number | import("@hanzogui/web").Variable<any>;
1344
+ 16: number | import("@hanzogui/web").Variable<any>;
1345
+ 4: number | import("@hanzogui/web").Variable<any>;
1346
+ 6: number | import("@hanzogui/web").Variable<any>;
1347
+ true: number | import("@hanzogui/web").Variable<any>;
1348
+ 10: number | import("@hanzogui/web").Variable<any>;
1349
+ 8: number | import("@hanzogui/web").Variable<any>;
1350
+ 11: number | import("@hanzogui/web").Variable<any>;
1351
+ 9: number | import("@hanzogui/web").Variable<any>;
1352
+ 15: number | import("@hanzogui/web").Variable<any>;
1353
+ 14: number | import("@hanzogui/web").Variable<any>;
1354
+ 13: number | import("@hanzogui/web").Variable<any>;
1355
1355
  };
1356
1356
  lineHeight: {
1357
- readonly 1: 16;
1358
- readonly 2: 18;
1359
- readonly 3: 20;
1360
- readonly 4: 22;
1361
- readonly 5: 22;
1362
- readonly 6: 24;
1363
- readonly 7: 28;
1364
- readonly 8: 32;
1365
- readonly 9: 32;
1366
- readonly 10: 38;
1367
- readonly 11: 46;
1368
- readonly 12: 54;
1369
- readonly 13: 62;
1370
- readonly 14: 70;
1371
- readonly 15: 86;
1372
- readonly 16: 102;
1373
- readonly true: 20;
1357
+ 1: number | import("@hanzogui/web").Variable<any>;
1358
+ 5: number | import("@hanzogui/web").Variable<any>;
1359
+ 7: number | import("@hanzogui/web").Variable<any>;
1360
+ 12: number | import("@hanzogui/web").Variable<any>;
1361
+ 2: number | import("@hanzogui/web").Variable<any>;
1362
+ 3: number | import("@hanzogui/web").Variable<any>;
1363
+ 16: number | import("@hanzogui/web").Variable<any>;
1364
+ 4: number | import("@hanzogui/web").Variable<any>;
1365
+ 6: number | import("@hanzogui/web").Variable<any>;
1366
+ true: number | import("@hanzogui/web").Variable<any>;
1367
+ 10: number | import("@hanzogui/web").Variable<any>;
1368
+ 8: number | import("@hanzogui/web").Variable<any>;
1369
+ 11: number | import("@hanzogui/web").Variable<any>;
1370
+ 9: number | import("@hanzogui/web").Variable<any>;
1371
+ 15: number | import("@hanzogui/web").Variable<any>;
1372
+ 14: number | import("@hanzogui/web").Variable<any>;
1373
+ 13: number | import("@hanzogui/web").Variable<any>;
1374
1374
  };
1375
1375
  weight: {
1376
1376
  1: any;