@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 +3 -2
- package/dist/gui-config.cjs +76 -43
- package/dist/gui-config.d.ts +204 -204
- package/dist/gui-config.d.ts.map +1 -1
- package/dist/gui-config.js +76 -43
- package/dist/gui-config.js.map +1 -1
- package/dist/product/AppHeader.cjs +3 -3
- package/dist/product/AppHeader.js +3 -3
- package/dist/product/CommerceResource.cjs +1 -1
- package/dist/product/CommerceResource.js +1 -1
- package/dist/product/ConfirmDelete.cjs +1 -1
- package/dist/product/ConfirmDelete.js +1 -1
- package/dist/product/EmptyState.cjs +1 -1
- package/dist/product/EmptyState.js +1 -1
- package/dist/product/Filters.cjs +1 -1
- package/dist/product/Filters.js +1 -1
- package/dist/product/OrgSwitcher.cjs +2 -2
- package/dist/product/OrgSwitcher.js +2 -2
- package/dist/product/Pagination.cjs +1 -1
- package/dist/product/Pagination.js +1 -1
- package/dist/product/UserMenu.cjs +1 -1
- package/dist/product/UserMenu.js +1 -1
- package/dist/product/social/PostCard.cjs +1 -1
- package/dist/product/social/PostCard.js +1 -1
- package/dist/styles.css +77 -45
- package/dist/theme.css +76 -43
- package/package.json +3 -3
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(
|
|
235
|
-
rgba(255,
|
|
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 {
|
package/dist/gui-config.cjs
CHANGED
|
@@ -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
|
|
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
|
|
41
|
-
* (217 stray nodes); `$9` collapses onto 26 so a page title has ONE
|
|
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:
|
|
44
|
-
2:
|
|
45
|
-
3:
|
|
46
|
-
4:
|
|
47
|
-
5:
|
|
48
|
-
6:
|
|
49
|
-
7:
|
|
50
|
-
8:
|
|
51
|
-
9:
|
|
52
|
-
10:
|
|
53
|
-
11:
|
|
54
|
-
12:
|
|
55
|
-
13:
|
|
56
|
-
14:
|
|
57
|
-
15:
|
|
58
|
-
16:
|
|
59
|
-
true:
|
|
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
|
|
62
|
-
*
|
|
63
|
-
*
|
|
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:
|
|
66
|
-
2:
|
|
67
|
-
3:
|
|
68
|
-
4:
|
|
69
|
-
5:
|
|
70
|
-
6:
|
|
71
|
-
7:
|
|
72
|
-
8:
|
|
73
|
-
9:
|
|
74
|
-
10:
|
|
75
|
-
11:
|
|
76
|
-
12:
|
|
77
|
-
13:
|
|
78
|
-
14:
|
|
79
|
-
15:
|
|
80
|
-
16:
|
|
81
|
-
true:
|
|
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 });
|
package/dist/gui-config.d.ts
CHANGED
|
@@ -187,42 +187,42 @@ export declare const config: import("@hanzogui/web").GuiInternalConfig<{
|
|
|
187
187
|
body: {
|
|
188
188
|
family: string;
|
|
189
189
|
size: {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
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
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
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
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
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
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
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
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
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
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
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
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
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
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
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
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
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
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
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
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
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
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
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;
|