@dxos/ui-theme 0.8.4-main.bc674ce → 0.8.4-main.ef1bc66f44

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.
Files changed (91) hide show
  1. package/dist/lib/browser/index.mjs +298 -203
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +298 -203
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/plugin/node-cjs/{chunk-ZVALPM6U.cjs → chunk-YBWOZKXY.cjs} +41 -26
  8. package/dist/plugin/node-cjs/chunk-YBWOZKXY.cjs.map +7 -0
  9. package/dist/plugin/node-cjs/config/tailwind.cjs +2 -2
  10. package/dist/plugin/node-cjs/config/tailwind.cjs.map +1 -1
  11. package/dist/plugin/node-cjs/meta.json +1 -1
  12. package/dist/plugin/node-cjs/plugins/esbuild-plugin.cjs +2 -2
  13. package/dist/plugin/node-cjs/plugins/plugin.cjs +3 -3
  14. package/dist/plugin/node-cjs/theme.css +38 -78
  15. package/dist/plugin/node-cjs/theme.css.map +3 -3
  16. package/dist/plugin/node-esm/{chunk-HJE6EZWE.mjs → chunk-LTGUAP22.mjs} +42 -27
  17. package/dist/plugin/node-esm/chunk-LTGUAP22.mjs.map +7 -0
  18. package/dist/plugin/node-esm/config/tailwind.mjs +1 -1
  19. package/dist/plugin/node-esm/meta.json +1 -1
  20. package/dist/plugin/node-esm/plugins/esbuild-plugin.mjs +1 -1
  21. package/dist/plugin/node-esm/plugins/plugin.mjs +1 -1
  22. package/dist/plugin/node-esm/theme.css +38 -78
  23. package/dist/plugin/node-esm/theme.css.map +3 -3
  24. package/dist/types/src/config/tailwind.d.ts.map +1 -1
  25. package/dist/types/src/config/tokens/index.d.ts +1 -484
  26. package/dist/types/src/config/tokens/index.d.ts.map +1 -1
  27. package/dist/types/src/config/tokens/lengths.d.ts +12 -9
  28. package/dist/types/src/config/tokens/lengths.d.ts.map +1 -1
  29. package/dist/types/src/config/tokens/semantic-colors.d.ts +5 -0
  30. package/dist/types/src/config/tokens/semantic-colors.d.ts.map +1 -1
  31. package/dist/types/src/config/tokens/sememes-system.d.ts +5 -0
  32. package/dist/types/src/config/tokens/sememes-system.d.ts.map +1 -1
  33. package/dist/types/src/config/tokens/sizes.d.ts +2 -0
  34. package/dist/types/src/config/tokens/sizes.d.ts.map +1 -1
  35. package/dist/types/src/config/tokens/tokens.d.ts +498 -0
  36. package/dist/types/src/config/tokens/tokens.d.ts.map +1 -0
  37. package/dist/types/src/index.d.ts +3 -2
  38. package/dist/types/src/index.d.ts.map +1 -1
  39. package/dist/types/src/styles/components/dialog.d.ts +2 -0
  40. package/dist/types/src/styles/components/dialog.d.ts.map +1 -1
  41. package/dist/types/src/styles/components/index.d.ts +1 -0
  42. package/dist/types/src/styles/components/index.d.ts.map +1 -1
  43. package/dist/types/src/styles/components/main.d.ts +0 -5
  44. package/dist/types/src/styles/components/main.d.ts.map +1 -1
  45. package/dist/types/src/styles/components/menu.d.ts.map +1 -1
  46. package/dist/types/src/styles/components/scroll-area.d.ts +12 -5
  47. package/dist/types/src/styles/components/scroll-area.d.ts.map +1 -1
  48. package/dist/types/src/styles/components/skeleton.d.ts +7 -0
  49. package/dist/types/src/styles/components/skeleton.d.ts.map +1 -0
  50. package/dist/types/src/styles/components/toolbar.d.ts +4 -4
  51. package/dist/types/src/styles/components/toolbar.d.ts.map +1 -1
  52. package/dist/types/src/styles/index.d.ts +2 -1
  53. package/dist/types/src/styles/index.d.ts.map +1 -1
  54. package/dist/types/src/styles/primitives/container.d.ts +15 -0
  55. package/dist/types/src/styles/primitives/container.d.ts.map +1 -0
  56. package/dist/types/src/styles/primitives/index.d.ts +2 -0
  57. package/dist/types/src/styles/primitives/index.d.ts.map +1 -0
  58. package/dist/types/src/styles/theme.d.ts +3 -3
  59. package/dist/types/src/styles/theme.d.ts.map +1 -1
  60. package/dist/types/tsconfig.tsbuildinfo +1 -1
  61. package/package.json +5 -5
  62. package/src/Tokens.stories.tsx +2 -2
  63. package/src/config/tailwind.ts +4 -3
  64. package/src/config/tokens/index.ts +2 -88
  65. package/src/config/tokens/lengths.ts +14 -5
  66. package/src/config/tokens/sememes-system.ts +6 -1
  67. package/src/config/tokens/sizes.ts +2 -0
  68. package/src/config/tokens/tokens.ts +90 -0
  69. package/src/index.ts +3 -2
  70. package/src/styles/components/dialog.ts +9 -1
  71. package/src/styles/components/index.ts +1 -0
  72. package/src/styles/components/main.ts +0 -4
  73. package/src/styles/components/menu.ts +2 -10
  74. package/src/styles/components/popover.ts +3 -3
  75. package/src/styles/components/scroll-area.ts +70 -23
  76. package/src/styles/components/skeleton.ts +23 -0
  77. package/src/styles/components/toolbar.ts +16 -9
  78. package/src/styles/components/tooltip.ts +2 -2
  79. package/src/styles/fragments/size.ts +2 -2
  80. package/src/styles/index.ts +2 -1
  81. package/src/styles/layers/dialog.css +1 -5
  82. package/src/styles/layers/index.css +1 -0
  83. package/src/styles/layers/main.css +29 -73
  84. package/src/styles/layers/scrollbar.css +10 -0
  85. package/src/styles/layers/size.css +17 -19
  86. package/src/styles/layers/tokens.css +2 -1
  87. package/src/styles/primitives/container.ts +33 -0
  88. package/src/styles/primitives/index.ts +5 -0
  89. package/src/styles/theme.ts +29 -5
  90. package/dist/plugin/node-cjs/chunk-ZVALPM6U.cjs.map +0 -7
  91. package/dist/plugin/node-esm/chunk-HJE6EZWE.mjs.map +0 -7
@@ -1,486 +1,3 @@
1
1
  export * from './sizes';
2
- export declare const hues: string[];
3
- export declare const tokenSet: {
4
- colors: {
5
- physical: import("@ch-ui/tokens").ColorsPhysicalLayer;
6
- semantic: {
7
- conditions: {
8
- light: string[];
9
- dark: string[];
10
- };
11
- sememes: {
12
- baseSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
13
- groupSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
14
- modalSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
15
- textInputSurfaceBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
16
- textInputSurfaceGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
17
- textInputSurfaceModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
18
- inputSurfaceBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
19
- inputSurfaceGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
20
- inputSurfaceModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
21
- hoverSurfaceBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
22
- hoverSurfaceGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
23
- hoverSurfaceModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
24
- separatorBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
25
- separatorGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
26
- separatorModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
27
- subduedSeparator: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
28
- unAccent: {
29
- light: [string, number];
30
- dark: [string, number];
31
- };
32
- unAccentHover: {
33
- light: [string, number];
34
- dark: [string, number];
35
- };
36
- hoverOverlay: {
37
- light: [string, string];
38
- dark: [string, string];
39
- };
40
- scrimSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
41
- focusSurface: {
42
- light: [string, number];
43
- dark: [string, number];
44
- };
45
- deckSurface: {
46
- light: [string, number];
47
- dark: [string, number];
48
- };
49
- inverseSurface: {
50
- light: [string, number];
51
- dark: [string, number];
52
- };
53
- accentSurfaceRelated: {
54
- light: [string, string];
55
- dark: [string, string];
56
- };
57
- accentSurfaceHover: {
58
- light: [string, number];
59
- dark: [string, number];
60
- };
61
- accentSurface: {
62
- light: [string, number];
63
- dark: [string, number];
64
- };
65
- baseText: {
66
- light: [string, number];
67
- dark: [string, number];
68
- };
69
- inverseSurfaceText: {
70
- light: [string, number];
71
- dark: [string, number];
72
- };
73
- description: {
74
- light: [string, number];
75
- dark: [string, number];
76
- };
77
- subdued: {
78
- light: [string, number];
79
- dark: [string, number];
80
- };
81
- placeholder: {
82
- light: [string, number];
83
- dark: [string, number];
84
- };
85
- accentText: {
86
- light: [string, number];
87
- dark: [string, number];
88
- };
89
- accentSurfaceText: {
90
- light: [string, number];
91
- dark: [string, number];
92
- };
93
- accentTextHover: {
94
- light: [string, number];
95
- dark: [string, number];
96
- };
97
- accentFocusIndicator: {
98
- light: [string, number];
99
- dark: [string, number];
100
- };
101
- neutralFocusIndicator: {
102
- light: [string, number];
103
- dark: [string, number];
104
- };
105
- axisSurface: {
106
- light: [string, number];
107
- dark: [string, number];
108
- };
109
- axisText: {
110
- light: [string, number];
111
- dark: [string, number];
112
- };
113
- axisSelectedSurface: {
114
- light: [string, number];
115
- dark: [string, number];
116
- };
117
- axisSelectedText: {
118
- light: [string, number];
119
- dark: [string, number];
120
- };
121
- gridCell: {
122
- light: [string, string];
123
- dark: [string, number];
124
- };
125
- gridCellSelected: {
126
- light: [string, number];
127
- dark: [string, number];
128
- };
129
- gridOverlay: {
130
- light: [string, string];
131
- dark: [string, string];
132
- };
133
- gridSelectionOverlay: {
134
- light: [string, string];
135
- dark: [string, string];
136
- };
137
- gridHighlight: {
138
- light: [string, string];
139
- dark: [string, string];
140
- };
141
- gridCommented: {
142
- light: [string, number];
143
- dark: [string, number];
144
- };
145
- gridCommentedActive: {
146
- light: [string, string];
147
- dark: [string, string];
148
- };
149
- cmCodeblock: {
150
- light: [string, string];
151
- dark: [string, string];
152
- };
153
- cmActiveLine: {
154
- light: [string, string];
155
- dark: [string, string];
156
- };
157
- cmSeparator: {
158
- light: [string, number];
159
- dark: [string, number];
160
- };
161
- cmCursor: {
162
- light: [string, number];
163
- dark: [string, number];
164
- };
165
- cmSelection: {
166
- light: [string, string];
167
- dark: [string, string];
168
- };
169
- cmFocusedSelection: {
170
- light: [string, number];
171
- dark: [string, number];
172
- };
173
- cmHighlight: {
174
- light: [string, number];
175
- dark: [string, number];
176
- };
177
- cmHighlightSurface: {
178
- light: [string, number];
179
- dark: [string, number];
180
- };
181
- cmCommentText: {
182
- light: [string, number];
183
- dark: [string, number];
184
- };
185
- cmCommentSurface: {
186
- light: [string, number];
187
- dark: [string, number];
188
- };
189
- };
190
- namespace: string;
191
- };
192
- alias: {
193
- conditions: {
194
- root: string[];
195
- group: string[];
196
- modal: string[];
197
- gridFocusStack: string[];
198
- };
199
- aliases: {
200
- activeSurface: {
201
- root: string[];
202
- };
203
- accentFocusIndicator: {
204
- root: string[];
205
- };
206
- neutralFocusIndicator: {
207
- gridFocusStack: string[];
208
- };
209
- };
210
- namespace: string;
211
- };
212
- };
213
- lengths: {
214
- physical: {
215
- namespace: string;
216
- conditions: {
217
- root: string[];
218
- };
219
- series: {
220
- line: {
221
- root: {
222
- unit: string;
223
- initial: number;
224
- slope: number;
225
- };
226
- };
227
- lacuna: {
228
- root: {
229
- unit: string;
230
- initial: number;
231
- slope: number;
232
- };
233
- };
234
- };
235
- };
236
- semantic: {
237
- namespace: string;
238
- conditions: {
239
- root: string[];
240
- };
241
- sememes: {
242
- noLine: {
243
- root: [string, number];
244
- };
245
- hairLine: {
246
- root: [string, number];
247
- };
248
- thickLine: {
249
- root: [string, number];
250
- };
251
- trimXs: {
252
- root: [string, number];
253
- };
254
- trimSm: {
255
- root: [string, number];
256
- };
257
- trimMd: {
258
- root: [string, number];
259
- };
260
- trimLg: {
261
- root: [string, number];
262
- };
263
- inputFine: {
264
- root: [string, number];
265
- };
266
- inputCoarse: {
267
- root: [string, number];
268
- };
269
- };
270
- };
271
- alias: {
272
- namespace: string;
273
- conditions: {
274
- fine: string[];
275
- coarse: string[];
276
- flush: string[];
277
- gridFocusStack: string[];
278
- };
279
- aliases: {
280
- noLine: {
281
- fine: string[];
282
- };
283
- hairLine: {
284
- fine: string[];
285
- };
286
- thickLine: {
287
- fine: string[];
288
- gridFocusStack: string[];
289
- };
290
- trimXs: {
291
- fine: string[];
292
- };
293
- trimSm: {
294
- fine: string[];
295
- };
296
- trimMd: {
297
- coarse: string[];
298
- };
299
- inputFine: {
300
- fine: string[];
301
- };
302
- inputCoarse: {
303
- coarse: string[];
304
- };
305
- };
306
- };
307
- };
308
- maxSizes: {
309
- physical: {
310
- namespace: string;
311
- conditions: {
312
- root: string[];
313
- };
314
- series: {
315
- size: {
316
- root: {
317
- unit: string;
318
- initial: number;
319
- slope: number;
320
- };
321
- };
322
- };
323
- };
324
- semantic: {
325
- namespace: string;
326
- conditions: {
327
- root: string[];
328
- };
329
- sememes: {
330
- 'prose-max-width': {
331
- root: [string, number];
332
- };
333
- 'container-max-width': {
334
- root: [string, number];
335
- };
336
- 'popover-max-width': {
337
- root: [string, number];
338
- };
339
- 'card-default-width': {
340
- root: [string, number];
341
- };
342
- 'card-min-width': {
343
- root: [string, number];
344
- };
345
- 'card-max-width': {
346
- root: [string, number];
347
- };
348
- };
349
- };
350
- };
351
- };
352
- export declare const userDefaultTokenSet: {
353
- colors: {
354
- physical: {
355
- definitions: {
356
- series: {
357
- neutral: import("@ch-ui/tokens").HelicalArcSeries;
358
- primary: import("@ch-ui/tokens").HelicalArcSeries;
359
- };
360
- accompanyingSeries: Record<string, any> | undefined;
361
- };
362
- conditions: Partial<Record<import("@ch-ui/colors").Gamut, import("@ch-ui/tokens").Statements>>;
363
- series: {
364
- neutral: Partial<Partial<Record<import("@ch-ui/colors").Gamut, import("@ch-ui/tokens").HelicalArcSeries>>>;
365
- primary: Partial<Partial<Record<import("@ch-ui/colors").Gamut, import("@ch-ui/tokens").HelicalArcSeries>>>;
366
- };
367
- namespace: string | undefined;
368
- };
369
- semantic: {
370
- conditions: {
371
- light: string[];
372
- dark: string[];
373
- };
374
- sememes: {
375
- baseSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
376
- groupSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
377
- modalSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
378
- textInputSurfaceBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
379
- textInputSurfaceGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
380
- textInputSurfaceModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
381
- inputSurfaceBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
382
- inputSurfaceGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
383
- inputSurfaceModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
384
- hoverSurfaceBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
385
- hoverSurfaceGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
386
- hoverSurfaceModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
387
- separatorBase: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
388
- separatorGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
389
- separatorModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
390
- subduedSeparator: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
391
- unAccent: {
392
- light: [string, number];
393
- dark: [string, number];
394
- };
395
- unAccentHover: {
396
- light: [string, number];
397
- dark: [string, number];
398
- };
399
- hoverOverlay: {
400
- light: [string, string];
401
- dark: [string, string];
402
- };
403
- scrimSurface: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
404
- focusSurface: {
405
- light: [string, number];
406
- dark: [string, number];
407
- };
408
- deckSurface: {
409
- light: [string, number];
410
- dark: [string, number];
411
- };
412
- inverseSurface: {
413
- light: [string, number];
414
- dark: [string, number];
415
- };
416
- accentSurfaceRelated: {
417
- light: [string, string];
418
- dark: [string, string];
419
- };
420
- accentSurfaceHover: {
421
- light: [string, number];
422
- dark: [string, number];
423
- };
424
- accentSurface: {
425
- light: [string, number];
426
- dark: [string, number];
427
- };
428
- baseText: {
429
- light: [string, number];
430
- dark: [string, number];
431
- };
432
- inverseSurfaceText: {
433
- light: [string, number];
434
- dark: [string, number];
435
- };
436
- description: {
437
- light: [string, number];
438
- dark: [string, number];
439
- };
440
- subdued: {
441
- light: [string, number];
442
- dark: [string, number];
443
- };
444
- placeholder: {
445
- light: [string, number];
446
- dark: [string, number];
447
- };
448
- accentText: {
449
- light: [string, number];
450
- dark: [string, number];
451
- };
452
- accentSurfaceText: {
453
- light: [string, number];
454
- dark: [string, number];
455
- };
456
- accentTextHover: {
457
- light: [string, number];
458
- dark: [string, number];
459
- };
460
- accentFocusIndicator: {
461
- light: [string, number];
462
- dark: [string, number];
463
- };
464
- neutralFocusIndicator: {
465
- light: [string, number];
466
- dark: [string, number];
467
- };
468
- };
469
- namespace: string;
470
- };
471
- alias: {
472
- conditions: {
473
- root: string[];
474
- group: string[];
475
- modal: string[];
476
- gridFocusStack: string[];
477
- };
478
- aliases: Record<string, Record<string, string[]>>;
479
- namespace: string;
480
- };
481
- };
482
- };
483
- export declare const tokensTailwindConfig: Partial<import("tailwindcss/types/config").CustomThemeConfig & {
484
- extend: Partial<import("tailwindcss/types/config").CustomThemeConfig>;
485
- }>;
2
+ export * from './tokens';
486
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/index.ts"],"names":[],"mappings":"AAcA,cAAc,SAAS,CAAC;AAExB,eAAO,MAAM,IAAI,UAA2B,CAAC;AAE7C,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQD,CAAC;AAmCrB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BZ,CAAC;AAErB,eAAO,MAAM,oBAAoB;;EAAmC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/index.ts"],"names":[],"mappings":"AAIA,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC"}
@@ -75,6 +75,12 @@ export declare const lengthsFacet: {
75
75
  fine: string[];
76
76
  gridFocusStack: string[];
77
77
  };
78
+ inputFine: {
79
+ fine: string[];
80
+ };
81
+ inputCoarse: {
82
+ coarse: string[];
83
+ };
78
84
  trimXs: {
79
85
  fine: string[];
80
86
  };
@@ -84,12 +90,6 @@ export declare const lengthsFacet: {
84
90
  trimMd: {
85
91
  coarse: string[];
86
92
  };
87
- inputFine: {
88
- fine: string[];
89
- };
90
- inputCoarse: {
91
- coarse: string[];
92
- };
93
93
  };
94
94
  };
95
95
  };
@@ -121,9 +121,6 @@ export declare const maxSizesFacet: {
121
121
  'container-max-width': {
122
122
  root: [string, number];
123
123
  };
124
- 'popover-max-width': {
125
- root: [string, number];
126
- };
127
124
  'card-default-width': {
128
125
  root: [string, number];
129
126
  };
@@ -133,6 +130,12 @@ export declare const maxSizesFacet: {
133
130
  'card-max-width': {
134
131
  root: [string, number];
135
132
  };
133
+ 'card-min-height': {
134
+ root: [string, number];
135
+ };
136
+ 'card-max-height': {
137
+ root: [string, number];
138
+ };
136
139
  };
137
140
  };
138
141
  };
@@ -1 +1 @@
1
- {"version":3,"file":"lengths.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/lengths.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0DR,CAAC;AAElB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BT,CAAC"}
1
+ {"version":3,"file":"lengths.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/lengths.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4DR,CAAC;AAElB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BT,CAAC"}
@@ -20,6 +20,11 @@ export declare const semanticColors: {
20
20
  separatorGroup: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
21
21
  separatorModal: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
22
22
  subduedSeparator: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
23
+ scrollbarTrack: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
24
+ scrollbarThumbSubdued: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
25
+ scrollbarThumb: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
26
+ scrollbarThumbHover: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
27
+ scrollbarThumbActive: Partial<Record<string, [string, import("@ch-ui/colors").AlphaLuminosity]>>;
23
28
  unAccent: {
24
29
  light: [string, number];
25
30
  dark: [string, number];
@@ -1 +1 @@
1
- {"version":3,"file":"semantic-colors.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/semantic-colors.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAc+B,CAAC"}
1
+ {"version":3,"file":"semantic-colors.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/semantic-colors.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAc+B,CAAC"}
@@ -17,6 +17,11 @@ export declare const systemSememes: {
17
17
  separatorGroup: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
18
18
  separatorModal: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
19
19
  subduedSeparator: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
20
+ scrollbarTrack: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
21
+ scrollbarThumbSubdued: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
22
+ scrollbarThumb: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
23
+ scrollbarThumbHover: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
24
+ scrollbarThumbActive: Partial<Record<string, [string, _colors.AlphaLuminosity]>>;
20
25
  unAccent: {
21
26
  light: [string, number];
22
27
  dark: [string, number];
@@ -1 +1 @@
1
- {"version":3,"file":"sememes-system.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/sememes-system.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;AAEzC,OAAO,EAAE,KAAK,YAAY,EAAqB,MAAM,SAAS,CAAC;AA+E/D,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwIF,CAAC;AAsEzB,eAAO,MAAM,aAAa,EAAE,YAQN,CAAC"}
1
+ {"version":3,"file":"sememes-system.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/sememes-system.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;AAEzC,OAAO,EAAE,KAAK,YAAY,EAAqB,MAAM,SAAS,CAAC;AA+E/D,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6IF,CAAC;AAsEzB,eAAO,MAAM,aAAa,EAAE,YAQN,CAAC"}
@@ -4,4 +4,6 @@
4
4
  export declare const cardMinInlineSize = 18;
5
5
  export declare const cardDefaultInlineSize = 20;
6
6
  export declare const cardMaxInlineSize = 22;
7
+ export declare const cardMinBlockSize = 18;
8
+ export declare const cardMaxBlockSize = 30;
7
9
  //# sourceMappingURL=sizes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sizes.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/sizes.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,eAAO,MAAM,iBAAiB,KAAK,CAAC;AACpC,eAAO,MAAM,qBAAqB,KAAK,CAAC;AACxC,eAAO,MAAM,iBAAiB,KAAK,CAAC"}
1
+ {"version":3,"file":"sizes.d.ts","sourceRoot":"","sources":["../../../../../src/config/tokens/sizes.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,eAAO,MAAM,iBAAiB,KAAK,CAAC;AACpC,eAAO,MAAM,qBAAqB,KAAK,CAAC;AACxC,eAAO,MAAM,iBAAiB,KAAK,CAAC;AACpC,eAAO,MAAM,gBAAgB,KAAK,CAAC;AACnC,eAAO,MAAM,gBAAgB,KAAK,CAAC"}