@esri/calcite-design-tokens 3.1.1-next.0 → 3.2.0-next.0
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/css/core.css +2 -2
- package/dist/css/dark.css +3 -2
- package/dist/css/global.css +2 -2
- package/dist/css/index.css +12 -7
- package/dist/css/light.css +2 -1
- package/dist/css/semantic.css +22 -22
- package/dist/docs/core.json +1278 -1319
- package/dist/docs/dark.json +127 -90
- package/dist/docs/global.json +571 -484
- package/dist/docs/light.json +126 -89
- package/dist/docs/semantic.json +333 -283
- package/dist/es6/core.js +2 -2
- package/dist/es6/dark.d.ts +2 -0
- package/dist/es6/dark.js +3 -2
- package/dist/es6/global.d.ts +3 -1
- package/dist/es6/global.js +8 -4
- package/dist/es6/light.d.ts +2 -0
- package/dist/es6/light.js +2 -1
- package/dist/es6/semantic.d.ts +1 -1
- package/dist/es6/semantic.js +1 -1
- package/dist/js/core.js +1480 -806
- package/dist/js/dark.d.ts +2 -0
- package/dist/js/dark.js +141 -46
- package/dist/js/global.d.ts +1 -0
- package/dist/js/global.js +634 -372
- package/dist/js/light.d.ts +2 -0
- package/dist/js/light.js +140 -45
- package/dist/js/semantic.js +366 -208
- package/dist/scss/core.scss +2 -2
- package/dist/scss/dark.scss +3 -2
- package/dist/scss/global.scss +2 -2
- package/dist/scss/index.scss +5 -3
- package/dist/scss/light.scss +2 -1
- package/dist/scss/semantic.scss +22 -22
- package/package.json +3 -3
package/dist/js/global.js
CHANGED
|
@@ -9,6 +9,7 @@ export default {
|
|
|
9
9
|
color: {
|
|
10
10
|
background: {
|
|
11
11
|
default: {
|
|
12
|
+
key: "{semantic.color.background.default}",
|
|
12
13
|
value: {
|
|
13
14
|
light: "#f7f7f7",
|
|
14
15
|
dark: "#363636",
|
|
@@ -40,12 +41,13 @@ export default {
|
|
|
40
41
|
attributes: {
|
|
41
42
|
category: "color",
|
|
42
43
|
},
|
|
44
|
+
key: "{semantic.color.background.default}",
|
|
43
45
|
},
|
|
44
46
|
name: "Color Background",
|
|
45
47
|
path: ["semantic", "color", "background", "default"],
|
|
46
|
-
key: "{semantic.color.background.default}",
|
|
47
48
|
},
|
|
48
49
|
none: {
|
|
50
|
+
key: "{semantic.color.background.none}",
|
|
49
51
|
value: "rgba(255, 255, 255, 0)",
|
|
50
52
|
type: "color",
|
|
51
53
|
attributes: {
|
|
@@ -74,14 +76,15 @@ export default {
|
|
|
74
76
|
attributes: {
|
|
75
77
|
category: "color",
|
|
76
78
|
},
|
|
79
|
+
key: "{semantic.color.background.none}",
|
|
77
80
|
},
|
|
78
81
|
name: "Color Background None",
|
|
79
82
|
path: ["semantic", "color", "background", "none"],
|
|
80
|
-
key: "{semantic.color.background.none}",
|
|
81
83
|
},
|
|
82
84
|
},
|
|
83
85
|
foreground: {
|
|
84
86
|
1: {
|
|
87
|
+
key: "{semantic.color.foreground.1}",
|
|
85
88
|
value: {
|
|
86
89
|
light: "#ffffff",
|
|
87
90
|
dark: "#2b2b2b",
|
|
@@ -113,12 +116,13 @@ export default {
|
|
|
113
116
|
attributes: {
|
|
114
117
|
category: "color",
|
|
115
118
|
},
|
|
119
|
+
key: "{semantic.color.foreground.1}",
|
|
116
120
|
},
|
|
117
121
|
name: "Color Foreground 1",
|
|
118
122
|
path: ["semantic", "color", "foreground", "1"],
|
|
119
|
-
key: "{semantic.color.foreground.1}",
|
|
120
123
|
},
|
|
121
124
|
2: {
|
|
125
|
+
key: "{semantic.color.foreground.2}",
|
|
122
126
|
value: {
|
|
123
127
|
light: "#f2f2f2",
|
|
124
128
|
dark: "#212121",
|
|
@@ -150,12 +154,13 @@ export default {
|
|
|
150
154
|
attributes: {
|
|
151
155
|
category: "color",
|
|
152
156
|
},
|
|
157
|
+
key: "{semantic.color.foreground.2}",
|
|
153
158
|
},
|
|
154
159
|
name: "Color Foreground 2",
|
|
155
160
|
path: ["semantic", "color", "foreground", "2"],
|
|
156
|
-
key: "{semantic.color.foreground.2}",
|
|
157
161
|
},
|
|
158
162
|
3: {
|
|
163
|
+
key: "{semantic.color.foreground.3}",
|
|
159
164
|
value: {
|
|
160
165
|
light: "#ebebeb",
|
|
161
166
|
dark: "#141414",
|
|
@@ -187,15 +192,16 @@ export default {
|
|
|
187
192
|
attributes: {
|
|
188
193
|
category: "color",
|
|
189
194
|
},
|
|
195
|
+
key: "{semantic.color.foreground.3}",
|
|
190
196
|
},
|
|
191
197
|
name: "Color Foreground 3",
|
|
192
198
|
path: ["semantic", "color", "foreground", "3"],
|
|
193
|
-
key: "{semantic.color.foreground.3}",
|
|
194
199
|
},
|
|
195
200
|
current: {
|
|
201
|
+
key: "{semantic.color.foreground.current}",
|
|
196
202
|
value: {
|
|
197
|
-
light: "#
|
|
198
|
-
dark: "#
|
|
203
|
+
light: "#d6efff",
|
|
204
|
+
dark: "#2b465f",
|
|
199
205
|
},
|
|
200
206
|
type: "color",
|
|
201
207
|
attributes: {
|
|
@@ -203,6 +209,16 @@ export default {
|
|
|
203
209
|
type: "color",
|
|
204
210
|
item: "foreground",
|
|
205
211
|
subitem: "current",
|
|
212
|
+
value: "#d6efff",
|
|
213
|
+
description:
|
|
214
|
+
"deprecated, use --calcite-color-foreground-highlight instead",
|
|
215
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
216
|
+
isSource: false,
|
|
217
|
+
key: "{semantic.color.foreground.current}",
|
|
218
|
+
name: "calcite-semantic-color-foreground-current",
|
|
219
|
+
path: ["semantic", "color", "foreground", "current"],
|
|
220
|
+
comment:
|
|
221
|
+
"deprecated, use --calcite-color-foreground-highlight instead",
|
|
206
222
|
names: {
|
|
207
223
|
scss: "$calcite-color-foreground-current",
|
|
208
224
|
css: "var(--calcite-color-foreground-current)",
|
|
@@ -216,6 +232,8 @@ export default {
|
|
|
216
232
|
type: "color",
|
|
217
233
|
},
|
|
218
234
|
},
|
|
235
|
+
description:
|
|
236
|
+
"deprecated, use --calcite-color-foreground-highlight instead",
|
|
219
237
|
filePath: "src/tokens/semantic/color/light.json",
|
|
220
238
|
isSource: false,
|
|
221
239
|
original: {
|
|
@@ -224,15 +242,58 @@ export default {
|
|
|
224
242
|
attributes: {
|
|
225
243
|
category: "color",
|
|
226
244
|
},
|
|
245
|
+
description:
|
|
246
|
+
"deprecated, use --calcite-color-foreground-highlight instead",
|
|
247
|
+
key: "{semantic.color.foreground.current}",
|
|
227
248
|
},
|
|
228
249
|
name: "Color Foreground Current",
|
|
229
250
|
path: ["semantic", "color", "foreground", "current"],
|
|
230
|
-
|
|
251
|
+
comment:
|
|
252
|
+
"deprecated, use --calcite-color-foreground-highlight instead",
|
|
253
|
+
},
|
|
254
|
+
highlight: {
|
|
255
|
+
key: "{semantic.color.foreground.highlight}",
|
|
256
|
+
value: {
|
|
257
|
+
light: "#d6efff",
|
|
258
|
+
dark: "#2b465f",
|
|
259
|
+
},
|
|
260
|
+
type: "color",
|
|
261
|
+
attributes: {
|
|
262
|
+
category: "color",
|
|
263
|
+
type: "color",
|
|
264
|
+
item: "foreground",
|
|
265
|
+
subitem: "highlight",
|
|
266
|
+
names: {
|
|
267
|
+
scss: "$calcite-color-foreground-highlight",
|
|
268
|
+
css: "var(--calcite-color-foreground-highlight)",
|
|
269
|
+
js: "semantic.color.foreground.highlight",
|
|
270
|
+
docs: "semantic.color.foreground.highlight",
|
|
271
|
+
es6: "calciteColorForegroundHighlight",
|
|
272
|
+
},
|
|
273
|
+
"calcite-schema": {
|
|
274
|
+
system: "calcite",
|
|
275
|
+
tier: "color",
|
|
276
|
+
type: "color",
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
280
|
+
isSource: false,
|
|
281
|
+
original: {
|
|
282
|
+
value: "{core.color.high-saturation.blue.h-bb-010}",
|
|
283
|
+
type: "color",
|
|
284
|
+
attributes: {
|
|
285
|
+
category: "color",
|
|
286
|
+
},
|
|
287
|
+
key: "{semantic.color.foreground.highlight}",
|
|
288
|
+
},
|
|
289
|
+
name: "Color Foreground Highlight",
|
|
290
|
+
path: ["semantic", "color", "foreground", "highlight"],
|
|
231
291
|
},
|
|
232
292
|
},
|
|
233
293
|
transparent: {
|
|
234
294
|
default: {
|
|
235
295
|
default: {
|
|
296
|
+
key: "{semantic.color.transparent.default.default}",
|
|
236
297
|
value: {
|
|
237
298
|
light: "rgba(0, 0, 0, 0)",
|
|
238
299
|
dark: "rgba(255, 255, 255, 0)",
|
|
@@ -265,12 +326,13 @@ export default {
|
|
|
265
326
|
attributes: {
|
|
266
327
|
category: "color",
|
|
267
328
|
},
|
|
329
|
+
key: "{semantic.color.transparent.default.default}",
|
|
268
330
|
},
|
|
269
331
|
name: "Color Transparent",
|
|
270
332
|
path: ["semantic", "color", "transparent", "default", "default"],
|
|
271
|
-
key: "{semantic.color.transparent.default.default}",
|
|
272
333
|
},
|
|
273
334
|
hover: {
|
|
335
|
+
key: "{semantic.color.transparent.default.hover}",
|
|
274
336
|
value: {
|
|
275
337
|
light: "rgba(0, 0, 0, 0.04)",
|
|
276
338
|
dark: "rgba(255, 255, 255, 0.12)",
|
|
@@ -303,12 +365,13 @@ export default {
|
|
|
303
365
|
attributes: {
|
|
304
366
|
category: "color",
|
|
305
367
|
},
|
|
368
|
+
key: "{semantic.color.transparent.default.hover}",
|
|
306
369
|
},
|
|
307
370
|
name: "Color Transparent Hover",
|
|
308
371
|
path: ["semantic", "color", "transparent", "default", "hover"],
|
|
309
|
-
key: "{semantic.color.transparent.default.hover}",
|
|
310
372
|
},
|
|
311
373
|
press: {
|
|
374
|
+
key: "{semantic.color.transparent.default.press}",
|
|
312
375
|
value: {
|
|
313
376
|
light: "rgba(0, 0, 0, 0.08)",
|
|
314
377
|
dark: "rgba(255, 255, 255, 0.16)",
|
|
@@ -341,14 +404,15 @@ export default {
|
|
|
341
404
|
attributes: {
|
|
342
405
|
category: "color",
|
|
343
406
|
},
|
|
407
|
+
key: "{semantic.color.transparent.default.press}",
|
|
344
408
|
},
|
|
345
409
|
name: "Color Transparent Press",
|
|
346
410
|
path: ["semantic", "color", "transparent", "default", "press"],
|
|
347
|
-
key: "{semantic.color.transparent.default.press}",
|
|
348
411
|
},
|
|
349
412
|
},
|
|
350
413
|
inverse: {
|
|
351
414
|
hover: {
|
|
415
|
+
key: "{semantic.color.transparent.inverse.hover}",
|
|
352
416
|
value: {
|
|
353
417
|
light: "rgba(255, 255, 255, 0.12)",
|
|
354
418
|
dark: "rgba(0, 0, 0, 0.04)",
|
|
@@ -381,12 +445,13 @@ export default {
|
|
|
381
445
|
attributes: {
|
|
382
446
|
category: "color",
|
|
383
447
|
},
|
|
448
|
+
key: "{semantic.color.transparent.inverse.hover}",
|
|
384
449
|
},
|
|
385
450
|
name: "Color Transparent Inverse Hover",
|
|
386
451
|
path: ["semantic", "color", "transparent", "inverse", "hover"],
|
|
387
|
-
key: "{semantic.color.transparent.inverse.hover}",
|
|
388
452
|
},
|
|
389
453
|
press: {
|
|
454
|
+
key: "{semantic.color.transparent.inverse.press}",
|
|
390
455
|
value: {
|
|
391
456
|
light: "rgba(255, 255, 255, 0.16)",
|
|
392
457
|
dark: "rgba(0, 0, 0, 0.08)",
|
|
@@ -419,13 +484,14 @@ export default {
|
|
|
419
484
|
attributes: {
|
|
420
485
|
category: "color",
|
|
421
486
|
},
|
|
487
|
+
key: "{semantic.color.transparent.inverse.press}",
|
|
422
488
|
},
|
|
423
489
|
name: "Color Transparent Inverse Press",
|
|
424
490
|
path: ["semantic", "color", "transparent", "inverse", "press"],
|
|
425
|
-
key: "{semantic.color.transparent.inverse.press}",
|
|
426
491
|
},
|
|
427
492
|
},
|
|
428
493
|
scrim: {
|
|
494
|
+
key: "{semantic.color.transparent.scrim}",
|
|
429
495
|
value: {
|
|
430
496
|
light: "rgba(255, 255, 255, 0.85)",
|
|
431
497
|
dark: "rgba(0, 0, 0, 0.85)",
|
|
@@ -457,12 +523,13 @@ export default {
|
|
|
457
523
|
attributes: {
|
|
458
524
|
category: "color",
|
|
459
525
|
},
|
|
526
|
+
key: "{semantic.color.transparent.scrim}",
|
|
460
527
|
},
|
|
461
528
|
name: "Color Transparent Scrim",
|
|
462
529
|
path: ["semantic", "color", "transparent", "scrim"],
|
|
463
|
-
key: "{semantic.color.transparent.scrim}",
|
|
464
530
|
},
|
|
465
531
|
tint: {
|
|
532
|
+
key: "{semantic.color.transparent.tint}",
|
|
466
533
|
value: {
|
|
467
534
|
light: "rgba(255, 255, 255, 0.8)",
|
|
468
535
|
dark: "rgba(43, 43, 43, 0.8)",
|
|
@@ -494,15 +561,16 @@ export default {
|
|
|
494
561
|
attributes: {
|
|
495
562
|
category: "color",
|
|
496
563
|
},
|
|
564
|
+
key: "{semantic.color.transparent.tint}",
|
|
497
565
|
},
|
|
498
566
|
name: "Color Transparent Tint",
|
|
499
567
|
path: ["semantic", "color", "transparent", "tint"],
|
|
500
|
-
key: "{semantic.color.transparent.tint}",
|
|
501
568
|
},
|
|
502
569
|
},
|
|
503
570
|
brand: {
|
|
504
571
|
default: {
|
|
505
572
|
default: {
|
|
573
|
+
key: "{semantic.color.brand.default.default}",
|
|
506
574
|
value: {
|
|
507
575
|
light: "#007ac2",
|
|
508
576
|
dark: "#009af2",
|
|
@@ -535,12 +603,13 @@ export default {
|
|
|
535
603
|
attributes: {
|
|
536
604
|
category: "color",
|
|
537
605
|
},
|
|
606
|
+
key: "{semantic.color.brand.default.default}",
|
|
538
607
|
},
|
|
539
608
|
name: "Color Brand",
|
|
540
609
|
path: ["semantic", "color", "brand", "default", "default"],
|
|
541
|
-
key: "{semantic.color.brand.default.default}",
|
|
542
610
|
},
|
|
543
611
|
hover: {
|
|
612
|
+
key: "{semantic.color.brand.default.hover}",
|
|
544
613
|
value: {
|
|
545
614
|
light: "#00619b",
|
|
546
615
|
dark: "#007ac2",
|
|
@@ -573,12 +642,13 @@ export default {
|
|
|
573
642
|
attributes: {
|
|
574
643
|
category: "color",
|
|
575
644
|
},
|
|
645
|
+
key: "{semantic.color.brand.default.hover}",
|
|
576
646
|
},
|
|
577
647
|
name: "Color Brand Hover",
|
|
578
648
|
path: ["semantic", "color", "brand", "default", "hover"],
|
|
579
|
-
key: "{semantic.color.brand.default.hover}",
|
|
580
649
|
},
|
|
581
650
|
press: {
|
|
651
|
+
key: "{semantic.color.brand.default.press}",
|
|
582
652
|
value: {
|
|
583
653
|
light: "#004874",
|
|
584
654
|
dark: "#00619b",
|
|
@@ -611,13 +681,14 @@ export default {
|
|
|
611
681
|
attributes: {
|
|
612
682
|
category: "color",
|
|
613
683
|
},
|
|
684
|
+
key: "{semantic.color.brand.default.press}",
|
|
614
685
|
},
|
|
615
686
|
name: "Color Brand Press",
|
|
616
687
|
path: ["semantic", "color", "brand", "default", "press"],
|
|
617
|
-
key: "{semantic.color.brand.default.press}",
|
|
618
688
|
},
|
|
619
689
|
},
|
|
620
690
|
underline: {
|
|
691
|
+
key: "{semantic.color.brand.underline}",
|
|
621
692
|
type: "color",
|
|
622
693
|
value: {
|
|
623
694
|
light: "rgba(0, 97, 155, 0.4)",
|
|
@@ -650,15 +721,16 @@ export default {
|
|
|
650
721
|
attributes: {
|
|
651
722
|
category: "color",
|
|
652
723
|
},
|
|
724
|
+
key: "{semantic.color.brand.underline}",
|
|
653
725
|
},
|
|
654
726
|
name: "Color Brand Underline",
|
|
655
727
|
path: ["semantic", "color", "brand", "underline"],
|
|
656
|
-
key: "{semantic.color.brand.underline}",
|
|
657
728
|
},
|
|
658
729
|
},
|
|
659
730
|
status: {
|
|
660
731
|
info: {
|
|
661
732
|
default: {
|
|
733
|
+
key: "{semantic.color.status.info.default}",
|
|
662
734
|
value: {
|
|
663
735
|
light: "#00619b",
|
|
664
736
|
dark: "#00a0ff",
|
|
@@ -691,12 +763,13 @@ export default {
|
|
|
691
763
|
attributes: {
|
|
692
764
|
category: "color",
|
|
693
765
|
},
|
|
766
|
+
key: "{semantic.color.status.info.default}",
|
|
694
767
|
},
|
|
695
768
|
name: "Color Status Info",
|
|
696
769
|
path: ["semantic", "color", "status", "info", "default"],
|
|
697
|
-
key: "{semantic.color.status.info.default}",
|
|
698
770
|
},
|
|
699
771
|
hover: {
|
|
772
|
+
key: "{semantic.color.status.info.hover}",
|
|
700
773
|
value: {
|
|
701
774
|
light: "#004874",
|
|
702
775
|
dark: "#3db8ff",
|
|
@@ -729,12 +802,13 @@ export default {
|
|
|
729
802
|
attributes: {
|
|
730
803
|
category: "color",
|
|
731
804
|
},
|
|
805
|
+
key: "{semantic.color.status.info.hover}",
|
|
732
806
|
},
|
|
733
807
|
name: "Color Status Info Hover",
|
|
734
808
|
path: ["semantic", "color", "status", "info", "hover"],
|
|
735
|
-
key: "{semantic.color.status.info.hover}",
|
|
736
809
|
},
|
|
737
810
|
press: {
|
|
811
|
+
key: "{semantic.color.status.info.press}",
|
|
738
812
|
value: {
|
|
739
813
|
light: "#00304d",
|
|
740
814
|
dark: "#009af2",
|
|
@@ -767,14 +841,15 @@ export default {
|
|
|
767
841
|
attributes: {
|
|
768
842
|
category: "color",
|
|
769
843
|
},
|
|
844
|
+
key: "{semantic.color.status.info.press}",
|
|
770
845
|
},
|
|
771
846
|
name: "Color Status Info Press",
|
|
772
847
|
path: ["semantic", "color", "status", "info", "press"],
|
|
773
|
-
key: "{semantic.color.status.info.press}",
|
|
774
848
|
},
|
|
775
849
|
},
|
|
776
850
|
success: {
|
|
777
851
|
default: {
|
|
852
|
+
key: "{semantic.color.status.success.default}",
|
|
778
853
|
value: {
|
|
779
854
|
light: "#35ac46",
|
|
780
855
|
dark: "#36da43",
|
|
@@ -807,12 +882,13 @@ export default {
|
|
|
807
882
|
attributes: {
|
|
808
883
|
category: "color",
|
|
809
884
|
},
|
|
885
|
+
key: "{semantic.color.status.success.default}",
|
|
810
886
|
},
|
|
811
887
|
name: "Color Status Success",
|
|
812
888
|
path: ["semantic", "color", "status", "success", "default"],
|
|
813
|
-
key: "{semantic.color.status.success.default}",
|
|
814
889
|
},
|
|
815
890
|
hover: {
|
|
891
|
+
key: "{semantic.color.status.success.hover}",
|
|
816
892
|
value: {
|
|
817
893
|
light: "#288835",
|
|
818
894
|
dark: "#3bed52",
|
|
@@ -845,12 +921,13 @@ export default {
|
|
|
845
921
|
attributes: {
|
|
846
922
|
category: "color",
|
|
847
923
|
},
|
|
924
|
+
key: "{semantic.color.status.success.hover}",
|
|
848
925
|
},
|
|
849
926
|
name: "Color Status Success Hover",
|
|
850
927
|
path: ["semantic", "color", "status", "success", "hover"],
|
|
851
|
-
key: "{semantic.color.status.success.hover}",
|
|
852
928
|
},
|
|
853
929
|
press: {
|
|
930
|
+
key: "{semantic.color.status.success.press}",
|
|
854
931
|
value: {
|
|
855
932
|
light: "#1a6324",
|
|
856
933
|
dark: "#00b81b",
|
|
@@ -883,14 +960,15 @@ export default {
|
|
|
883
960
|
attributes: {
|
|
884
961
|
category: "color",
|
|
885
962
|
},
|
|
963
|
+
key: "{semantic.color.status.success.press}",
|
|
886
964
|
},
|
|
887
965
|
name: "Color Status Success Press",
|
|
888
966
|
path: ["semantic", "color", "status", "success", "press"],
|
|
889
|
-
key: "{semantic.color.status.success.press}",
|
|
890
967
|
},
|
|
891
968
|
},
|
|
892
969
|
warning: {
|
|
893
970
|
default: {
|
|
971
|
+
key: "{semantic.color.status.warning.default}",
|
|
894
972
|
value: {
|
|
895
973
|
light: "#f89927",
|
|
896
974
|
dark: "#f89927",
|
|
@@ -923,12 +1001,13 @@ export default {
|
|
|
923
1001
|
attributes: {
|
|
924
1002
|
category: "color",
|
|
925
1003
|
},
|
|
1004
|
+
key: "{semantic.color.status.warning.default}",
|
|
926
1005
|
},
|
|
927
1006
|
name: "Color Status Warning",
|
|
928
1007
|
path: ["semantic", "color", "status", "warning", "default"],
|
|
929
|
-
key: "{semantic.color.status.warning.default}",
|
|
930
1008
|
},
|
|
931
1009
|
hover: {
|
|
1010
|
+
key: "{semantic.color.status.warning.hover}",
|
|
932
1011
|
value: {
|
|
933
1012
|
light: "#d17300",
|
|
934
1013
|
dark: "#ffb54d",
|
|
@@ -961,12 +1040,13 @@ export default {
|
|
|
961
1040
|
attributes: {
|
|
962
1041
|
category: "color",
|
|
963
1042
|
},
|
|
1043
|
+
key: "{semantic.color.status.warning.hover}",
|
|
964
1044
|
},
|
|
965
1045
|
name: "Color Status Warning Hover",
|
|
966
1046
|
path: ["semantic", "color", "status", "warning", "hover"],
|
|
967
|
-
key: "{semantic.color.status.warning.hover}",
|
|
968
1047
|
},
|
|
969
1048
|
press: {
|
|
1049
|
+
key: "{semantic.color.status.warning.press}",
|
|
970
1050
|
value: {
|
|
971
1051
|
light: "#9a5b10",
|
|
972
1052
|
dark: "#ff9500",
|
|
@@ -999,14 +1079,15 @@ export default {
|
|
|
999
1079
|
attributes: {
|
|
1000
1080
|
category: "color",
|
|
1001
1081
|
},
|
|
1082
|
+
key: "{semantic.color.status.warning.press}",
|
|
1002
1083
|
},
|
|
1003
1084
|
name: "Color Status Warning Press",
|
|
1004
1085
|
path: ["semantic", "color", "status", "warning", "press"],
|
|
1005
|
-
key: "{semantic.color.status.warning.press}",
|
|
1006
1086
|
},
|
|
1007
1087
|
},
|
|
1008
1088
|
danger: {
|
|
1009
1089
|
default: {
|
|
1090
|
+
key: "{semantic.color.status.danger.default}",
|
|
1010
1091
|
value: {
|
|
1011
1092
|
light: "#d83020",
|
|
1012
1093
|
dark: "#fe583e",
|
|
@@ -1039,12 +1120,13 @@ export default {
|
|
|
1039
1120
|
attributes: {
|
|
1040
1121
|
category: "color",
|
|
1041
1122
|
},
|
|
1123
|
+
key: "{semantic.color.status.danger.default}",
|
|
1042
1124
|
},
|
|
1043
1125
|
name: "Color Status Danger",
|
|
1044
1126
|
path: ["semantic", "color", "status", "danger", "default"],
|
|
1045
|
-
key: "{semantic.color.status.danger.default}",
|
|
1046
1127
|
},
|
|
1047
1128
|
hover: {
|
|
1129
|
+
key: "{semantic.color.status.danger.hover}",
|
|
1048
1130
|
value: {
|
|
1049
1131
|
light: "#a82b1e",
|
|
1050
1132
|
dark: "#ff0015",
|
|
@@ -1077,12 +1159,13 @@ export default {
|
|
|
1077
1159
|
attributes: {
|
|
1078
1160
|
category: "color",
|
|
1079
1161
|
},
|
|
1162
|
+
key: "{semantic.color.status.danger.hover}",
|
|
1080
1163
|
},
|
|
1081
1164
|
name: "Color Status Danger Hover",
|
|
1082
1165
|
path: ["semantic", "color", "status", "danger", "hover"],
|
|
1083
|
-
key: "{semantic.color.status.danger.hover}",
|
|
1084
1166
|
},
|
|
1085
1167
|
press: {
|
|
1168
|
+
key: "{semantic.color.status.danger.press}",
|
|
1086
1169
|
value: {
|
|
1087
1170
|
light: "#7c1d13",
|
|
1088
1171
|
dark: "#d90012",
|
|
@@ -1115,15 +1198,16 @@ export default {
|
|
|
1115
1198
|
attributes: {
|
|
1116
1199
|
category: "color",
|
|
1117
1200
|
},
|
|
1201
|
+
key: "{semantic.color.status.danger.press}",
|
|
1118
1202
|
},
|
|
1119
1203
|
name: "Color Status Danger Press",
|
|
1120
1204
|
path: ["semantic", "color", "status", "danger", "press"],
|
|
1121
|
-
key: "{semantic.color.status.danger.press}",
|
|
1122
1205
|
},
|
|
1123
1206
|
},
|
|
1124
1207
|
},
|
|
1125
1208
|
inverse: {
|
|
1126
1209
|
default: {
|
|
1210
|
+
key: "{semantic.color.inverse.default}",
|
|
1127
1211
|
value: {
|
|
1128
1212
|
light: "#363636",
|
|
1129
1213
|
dark: "#f7f7f7",
|
|
@@ -1155,12 +1239,13 @@ export default {
|
|
|
1155
1239
|
attributes: {
|
|
1156
1240
|
category: "color",
|
|
1157
1241
|
},
|
|
1242
|
+
key: "{semantic.color.inverse.default}",
|
|
1158
1243
|
},
|
|
1159
1244
|
name: "Color Inverse",
|
|
1160
1245
|
path: ["semantic", "color", "inverse", "default"],
|
|
1161
|
-
key: "{semantic.color.inverse.default}",
|
|
1162
1246
|
},
|
|
1163
1247
|
hover: {
|
|
1248
|
+
key: "{semantic.color.inverse.hover}",
|
|
1164
1249
|
value: {
|
|
1165
1250
|
light: "#2b2b2b",
|
|
1166
1251
|
dark: "#ffffff",
|
|
@@ -1192,12 +1277,13 @@ export default {
|
|
|
1192
1277
|
attributes: {
|
|
1193
1278
|
category: "color",
|
|
1194
1279
|
},
|
|
1280
|
+
key: "{semantic.color.inverse.hover}",
|
|
1195
1281
|
},
|
|
1196
1282
|
name: "Color Inverse Hover",
|
|
1197
1283
|
path: ["semantic", "color", "inverse", "hover"],
|
|
1198
|
-
key: "{semantic.color.inverse.hover}",
|
|
1199
1284
|
},
|
|
1200
1285
|
press: {
|
|
1286
|
+
key: "{semantic.color.inverse.press}",
|
|
1201
1287
|
value: {
|
|
1202
1288
|
light: "#212121",
|
|
1203
1289
|
dark: "#f2f2f2",
|
|
@@ -1229,14 +1315,15 @@ export default {
|
|
|
1229
1315
|
attributes: {
|
|
1230
1316
|
category: "color",
|
|
1231
1317
|
},
|
|
1318
|
+
key: "{semantic.color.inverse.press}",
|
|
1232
1319
|
},
|
|
1233
1320
|
name: "Color Inverse Press",
|
|
1234
1321
|
path: ["semantic", "color", "inverse", "press"],
|
|
1235
|
-
key: "{semantic.color.inverse.press}",
|
|
1236
1322
|
},
|
|
1237
1323
|
},
|
|
1238
1324
|
text: {
|
|
1239
1325
|
1: {
|
|
1326
|
+
key: "{semantic.color.text.1}",
|
|
1240
1327
|
value: {
|
|
1241
1328
|
light: "#141414",
|
|
1242
1329
|
dark: "#ffffff",
|
|
@@ -1268,12 +1355,13 @@ export default {
|
|
|
1268
1355
|
attributes: {
|
|
1269
1356
|
category: "color",
|
|
1270
1357
|
},
|
|
1358
|
+
key: "{semantic.color.text.1}",
|
|
1271
1359
|
},
|
|
1272
1360
|
name: "Color Text 1",
|
|
1273
1361
|
path: ["semantic", "color", "text", "1"],
|
|
1274
|
-
key: "{semantic.color.text.1}",
|
|
1275
1362
|
},
|
|
1276
1363
|
2: {
|
|
1364
|
+
key: "{semantic.color.text.2}",
|
|
1277
1365
|
value: {
|
|
1278
1366
|
light: "#4a4a4a",
|
|
1279
1367
|
dark: "#bfbfbf",
|
|
@@ -1305,12 +1393,13 @@ export default {
|
|
|
1305
1393
|
attributes: {
|
|
1306
1394
|
category: "color",
|
|
1307
1395
|
},
|
|
1396
|
+
key: "{semantic.color.text.2}",
|
|
1308
1397
|
},
|
|
1309
1398
|
name: "Color Text 2",
|
|
1310
1399
|
path: ["semantic", "color", "text", "2"],
|
|
1311
|
-
key: "{semantic.color.text.2}",
|
|
1312
1400
|
},
|
|
1313
1401
|
3: {
|
|
1402
|
+
key: "{semantic.color.text.3}",
|
|
1314
1403
|
value: {
|
|
1315
1404
|
light: "#6b6b6b",
|
|
1316
1405
|
dark: "#9e9e9e",
|
|
@@ -1342,15 +1431,16 @@ export default {
|
|
|
1342
1431
|
attributes: {
|
|
1343
1432
|
category: "color",
|
|
1344
1433
|
},
|
|
1434
|
+
key: "{semantic.color.text.3}",
|
|
1345
1435
|
},
|
|
1346
1436
|
name: "Color Text 3",
|
|
1347
1437
|
path: ["semantic", "color", "text", "3"],
|
|
1348
|
-
key: "{semantic.color.text.3}",
|
|
1349
1438
|
},
|
|
1350
1439
|
highlight: {
|
|
1440
|
+
key: "{semantic.color.text.highlight}",
|
|
1351
1441
|
value: {
|
|
1352
1442
|
light: "#004874",
|
|
1353
|
-
dark: "#
|
|
1443
|
+
dark: "#d6efff",
|
|
1354
1444
|
},
|
|
1355
1445
|
type: "color",
|
|
1356
1446
|
attributes: {
|
|
@@ -1379,12 +1469,13 @@ export default {
|
|
|
1379
1469
|
attributes: {
|
|
1380
1470
|
category: "color",
|
|
1381
1471
|
},
|
|
1472
|
+
key: "{semantic.color.text.highlight}",
|
|
1382
1473
|
},
|
|
1383
1474
|
name: "Color Text Highlight",
|
|
1384
1475
|
path: ["semantic", "color", "text", "highlight"],
|
|
1385
|
-
key: "{semantic.color.text.highlight}",
|
|
1386
1476
|
},
|
|
1387
1477
|
inverse: {
|
|
1478
|
+
key: "{semantic.color.text.inverse}",
|
|
1388
1479
|
value: {
|
|
1389
1480
|
light: "#ffffff",
|
|
1390
1481
|
dark: "#141414",
|
|
@@ -1416,12 +1507,13 @@ export default {
|
|
|
1416
1507
|
attributes: {
|
|
1417
1508
|
category: "color",
|
|
1418
1509
|
},
|
|
1510
|
+
key: "{semantic.color.text.inverse}",
|
|
1419
1511
|
},
|
|
1420
1512
|
name: "Color Text Inverse",
|
|
1421
1513
|
path: ["semantic", "color", "text", "inverse"],
|
|
1422
|
-
key: "{semantic.color.text.inverse}",
|
|
1423
1514
|
},
|
|
1424
1515
|
link: {
|
|
1516
|
+
key: "{semantic.color.text.link}",
|
|
1425
1517
|
value: {
|
|
1426
1518
|
light: "#00619b",
|
|
1427
1519
|
dark: "#00a0ff",
|
|
@@ -1453,14 +1545,15 @@ export default {
|
|
|
1453
1545
|
attributes: {
|
|
1454
1546
|
category: "color",
|
|
1455
1547
|
},
|
|
1548
|
+
key: "{semantic.color.text.link}",
|
|
1456
1549
|
},
|
|
1457
1550
|
name: "Color Text Link",
|
|
1458
1551
|
path: ["semantic", "color", "text", "link"],
|
|
1459
|
-
key: "{semantic.color.text.link}",
|
|
1460
1552
|
},
|
|
1461
1553
|
},
|
|
1462
1554
|
border: {
|
|
1463
1555
|
1: {
|
|
1556
|
+
key: "{semantic.color.border.1}",
|
|
1464
1557
|
value: {
|
|
1465
1558
|
light: "#c9c9c9",
|
|
1466
1559
|
dark: "#545454",
|
|
@@ -1492,12 +1585,13 @@ export default {
|
|
|
1492
1585
|
attributes: {
|
|
1493
1586
|
category: "color",
|
|
1494
1587
|
},
|
|
1588
|
+
key: "{semantic.color.border.1}",
|
|
1495
1589
|
},
|
|
1496
1590
|
name: "Color Border 1",
|
|
1497
1591
|
path: ["semantic", "color", "border", "1"],
|
|
1498
|
-
key: "{semantic.color.border.1}",
|
|
1499
1592
|
},
|
|
1500
1593
|
2: {
|
|
1594
|
+
key: "{semantic.color.border.2}",
|
|
1501
1595
|
value: {
|
|
1502
1596
|
light: "#d4d4d4",
|
|
1503
1597
|
dark: "#4a4a4a",
|
|
@@ -1529,12 +1623,13 @@ export default {
|
|
|
1529
1623
|
attributes: {
|
|
1530
1624
|
category: "color",
|
|
1531
1625
|
},
|
|
1626
|
+
key: "{semantic.color.border.2}",
|
|
1532
1627
|
},
|
|
1533
1628
|
name: "Color Border 2",
|
|
1534
1629
|
path: ["semantic", "color", "border", "2"],
|
|
1535
|
-
key: "{semantic.color.border.2}",
|
|
1536
1630
|
},
|
|
1537
1631
|
3: {
|
|
1632
|
+
key: "{semantic.color.border.3}",
|
|
1538
1633
|
value: {
|
|
1539
1634
|
light: "#dedede",
|
|
1540
1635
|
dark: "#404040",
|
|
@@ -1566,12 +1661,13 @@ export default {
|
|
|
1566
1661
|
attributes: {
|
|
1567
1662
|
category: "color",
|
|
1568
1663
|
},
|
|
1664
|
+
key: "{semantic.color.border.3}",
|
|
1569
1665
|
},
|
|
1570
1666
|
name: "Color Border 3",
|
|
1571
1667
|
path: ["semantic", "color", "border", "3"],
|
|
1572
|
-
key: "{semantic.color.border.3}",
|
|
1573
1668
|
},
|
|
1574
1669
|
input: {
|
|
1670
|
+
key: "{semantic.color.border.input}",
|
|
1575
1671
|
value: {
|
|
1576
1672
|
light: "#949494",
|
|
1577
1673
|
dark: "#757575",
|
|
@@ -1603,12 +1699,13 @@ export default {
|
|
|
1603
1699
|
attributes: {
|
|
1604
1700
|
category: "color",
|
|
1605
1701
|
},
|
|
1702
|
+
key: "{semantic.color.border.input}",
|
|
1606
1703
|
},
|
|
1607
1704
|
name: "Color Border Input",
|
|
1608
1705
|
path: ["semantic", "color", "border", "input"],
|
|
1609
|
-
key: "{semantic.color.border.input}",
|
|
1610
1706
|
},
|
|
1611
1707
|
ghost: {
|
|
1708
|
+
key: "{semantic.color.border.ghost}",
|
|
1612
1709
|
value: {
|
|
1613
1710
|
light: "rgba(0, 0, 0, 0.3)",
|
|
1614
1711
|
dark: "rgba(117, 117, 117, 0.3)",
|
|
@@ -1640,12 +1737,13 @@ export default {
|
|
|
1640
1737
|
attributes: {
|
|
1641
1738
|
category: "color",
|
|
1642
1739
|
},
|
|
1740
|
+
key: "{semantic.color.border.ghost}",
|
|
1643
1741
|
},
|
|
1644
1742
|
name: "Color Border Ghost",
|
|
1645
1743
|
path: ["semantic", "color", "border", "ghost"],
|
|
1646
|
-
key: "{semantic.color.border.ghost}",
|
|
1647
1744
|
},
|
|
1648
1745
|
white: {
|
|
1746
|
+
key: "{semantic.color.border.white}",
|
|
1649
1747
|
value: {
|
|
1650
1748
|
light: "#ffffff",
|
|
1651
1749
|
dark: "#f7f7f7",
|
|
@@ -1677,16 +1775,17 @@ export default {
|
|
|
1677
1775
|
attributes: {
|
|
1678
1776
|
category: "color",
|
|
1679
1777
|
},
|
|
1778
|
+
key: "{semantic.color.border.white}",
|
|
1680
1779
|
},
|
|
1681
1780
|
name: "Color Border White",
|
|
1682
1781
|
path: ["semantic", "color", "border", "white"],
|
|
1683
|
-
key: "{semantic.color.border.white}",
|
|
1684
1782
|
},
|
|
1685
1783
|
},
|
|
1686
1784
|
},
|
|
1687
1785
|
border: {
|
|
1688
1786
|
width: {
|
|
1689
1787
|
none: {
|
|
1788
|
+
key: "{semantic.border.width.none}",
|
|
1690
1789
|
value: "0",
|
|
1691
1790
|
type: "dimension",
|
|
1692
1791
|
attributes: {
|
|
@@ -1715,12 +1814,13 @@ export default {
|
|
|
1715
1814
|
attributes: {
|
|
1716
1815
|
category: "border",
|
|
1717
1816
|
},
|
|
1817
|
+
key: "{semantic.border.width.none}",
|
|
1718
1818
|
},
|
|
1719
1819
|
name: "Border Width None",
|
|
1720
1820
|
path: ["semantic", "border", "width", "none"],
|
|
1721
|
-
key: "{semantic.border.width.none}",
|
|
1722
1821
|
},
|
|
1723
1822
|
sm: {
|
|
1823
|
+
key: "{semantic.border.width.sm}",
|
|
1724
1824
|
value: "1px",
|
|
1725
1825
|
type: "dimension",
|
|
1726
1826
|
attributes: {
|
|
@@ -1749,12 +1849,13 @@ export default {
|
|
|
1749
1849
|
attributes: {
|
|
1750
1850
|
category: "border",
|
|
1751
1851
|
},
|
|
1852
|
+
key: "{semantic.border.width.sm}",
|
|
1752
1853
|
},
|
|
1753
1854
|
name: "Border Width Sm",
|
|
1754
1855
|
path: ["semantic", "border", "width", "sm"],
|
|
1755
|
-
key: "{semantic.border.width.sm}",
|
|
1756
1856
|
},
|
|
1757
1857
|
md: {
|
|
1858
|
+
key: "{semantic.border.width.md}",
|
|
1758
1859
|
value: "2px",
|
|
1759
1860
|
type: "dimension",
|
|
1760
1861
|
attributes: {
|
|
@@ -1783,12 +1884,13 @@ export default {
|
|
|
1783
1884
|
attributes: {
|
|
1784
1885
|
category: "border",
|
|
1785
1886
|
},
|
|
1887
|
+
key: "{semantic.border.width.md}",
|
|
1786
1888
|
},
|
|
1787
1889
|
name: "Border Width Md",
|
|
1788
1890
|
path: ["semantic", "border", "width", "md"],
|
|
1789
|
-
key: "{semantic.border.width.md}",
|
|
1790
1891
|
},
|
|
1791
1892
|
lg: {
|
|
1893
|
+
key: "{semantic.border.width.lg}",
|
|
1792
1894
|
value: "4px",
|
|
1793
1895
|
type: "dimension",
|
|
1794
1896
|
attributes: {
|
|
@@ -1817,16 +1919,17 @@ export default {
|
|
|
1817
1919
|
attributes: {
|
|
1818
1920
|
category: "border",
|
|
1819
1921
|
},
|
|
1922
|
+
key: "{semantic.border.width.lg}",
|
|
1820
1923
|
},
|
|
1821
1924
|
name: "Border Width Lg",
|
|
1822
1925
|
path: ["semantic", "border", "width", "lg"],
|
|
1823
|
-
key: "{semantic.border.width.lg}",
|
|
1824
1926
|
},
|
|
1825
1927
|
},
|
|
1826
1928
|
},
|
|
1827
1929
|
"container-size": {
|
|
1828
1930
|
height: {
|
|
1829
1931
|
xxs: {
|
|
1932
|
+
key: "{semantic.container-size.height.xxs}",
|
|
1830
1933
|
value: {
|
|
1831
1934
|
min: "0",
|
|
1832
1935
|
max: "154px",
|
|
@@ -1845,6 +1948,7 @@ export default {
|
|
|
1845
1948
|
description: "Small handheld devices and mini-windows",
|
|
1846
1949
|
filePath: "src/tokens/semantic/container-size.json",
|
|
1847
1950
|
isSource: true,
|
|
1951
|
+
key: "{semantic.container-size.height.xxs}",
|
|
1848
1952
|
name: "calcite-semantic-container-size-height-xxs",
|
|
1849
1953
|
path: ["semantic", "container-size", "height", "xxs"],
|
|
1850
1954
|
comment: "Small handheld devices and mini-windows",
|
|
@@ -1873,13 +1977,14 @@ export default {
|
|
|
1873
1977
|
attributes: {
|
|
1874
1978
|
category: "breakpoint",
|
|
1875
1979
|
},
|
|
1980
|
+
key: "{semantic.container-size.height.xxs}",
|
|
1876
1981
|
},
|
|
1877
1982
|
name: "Container Size Height Xxs",
|
|
1878
1983
|
path: ["semantic", "container-size", "height", "xxs"],
|
|
1879
1984
|
comment: "Small handheld devices and mini-windows",
|
|
1880
|
-
key: "{semantic.container-size.height.xxs}",
|
|
1881
1985
|
},
|
|
1882
1986
|
xs: {
|
|
1987
|
+
key: "{semantic.container-size.height.xs}",
|
|
1883
1988
|
value: {
|
|
1884
1989
|
min: "155px",
|
|
1885
1990
|
max: "328px",
|
|
@@ -1898,6 +2003,7 @@ export default {
|
|
|
1898
2003
|
description: "Handheld devices",
|
|
1899
2004
|
filePath: "src/tokens/semantic/container-size.json",
|
|
1900
2005
|
isSource: true,
|
|
2006
|
+
key: "{semantic.container-size.height.xs}",
|
|
1901
2007
|
name: "calcite-semantic-container-size-height-xs",
|
|
1902
2008
|
path: ["semantic", "container-size", "height", "xs"],
|
|
1903
2009
|
comment: "Handheld devices",
|
|
@@ -1926,13 +2032,14 @@ export default {
|
|
|
1926
2032
|
attributes: {
|
|
1927
2033
|
category: "breakpoint",
|
|
1928
2034
|
},
|
|
2035
|
+
key: "{semantic.container-size.height.xs}",
|
|
1929
2036
|
},
|
|
1930
2037
|
name: "Container Size Height Xs",
|
|
1931
2038
|
path: ["semantic", "container-size", "height", "xs"],
|
|
1932
2039
|
comment: "Handheld devices",
|
|
1933
|
-
key: "{semantic.container-size.height.xs}",
|
|
1934
2040
|
},
|
|
1935
2041
|
sm: {
|
|
2042
|
+
key: "{semantic.container-size.height.sm}",
|
|
1936
2043
|
value: {
|
|
1937
2044
|
min: "329px",
|
|
1938
2045
|
max: "504px",
|
|
@@ -1951,6 +2058,7 @@ export default {
|
|
|
1951
2058
|
description: "Small tablets",
|
|
1952
2059
|
filePath: "src/tokens/semantic/container-size.json",
|
|
1953
2060
|
isSource: true,
|
|
2061
|
+
key: "{semantic.container-size.height.sm}",
|
|
1954
2062
|
name: "calcite-semantic-container-size-height-sm",
|
|
1955
2063
|
path: ["semantic", "container-size", "height", "sm"],
|
|
1956
2064
|
comment: "Small tablets",
|
|
@@ -1979,13 +2087,14 @@ export default {
|
|
|
1979
2087
|
attributes: {
|
|
1980
2088
|
category: "breakpoint",
|
|
1981
2089
|
},
|
|
2090
|
+
key: "{semantic.container-size.height.sm}",
|
|
1982
2091
|
},
|
|
1983
2092
|
name: "Container Size Height Sm",
|
|
1984
2093
|
path: ["semantic", "container-size", "height", "sm"],
|
|
1985
2094
|
comment: "Small tablets",
|
|
1986
|
-
key: "{semantic.container-size.height.sm}",
|
|
1987
2095
|
},
|
|
1988
2096
|
md: {
|
|
2097
|
+
key: "{semantic.container-size.height.md}",
|
|
1989
2098
|
value: {
|
|
1990
2099
|
min: "505px",
|
|
1991
2100
|
max: "678px",
|
|
@@ -2004,6 +2113,7 @@ export default {
|
|
|
2004
2113
|
description: "Small laptops",
|
|
2005
2114
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2006
2115
|
isSource: true,
|
|
2116
|
+
key: "{semantic.container-size.height.md}",
|
|
2007
2117
|
name: "calcite-semantic-container-size-height-md",
|
|
2008
2118
|
path: ["semantic", "container-size", "height", "md"],
|
|
2009
2119
|
comment: "Small laptops",
|
|
@@ -2032,13 +2142,14 @@ export default {
|
|
|
2032
2142
|
attributes: {
|
|
2033
2143
|
category: "breakpoint",
|
|
2034
2144
|
},
|
|
2145
|
+
key: "{semantic.container-size.height.md}",
|
|
2035
2146
|
},
|
|
2036
2147
|
name: "Container Size Height Md",
|
|
2037
2148
|
path: ["semantic", "container-size", "height", "md"],
|
|
2038
2149
|
comment: "Small laptops",
|
|
2039
|
-
key: "{semantic.container-size.height.md}",
|
|
2040
2150
|
},
|
|
2041
2151
|
lg: {
|
|
2152
|
+
key: "{semantic.container-size.height.lg}",
|
|
2042
2153
|
value: {
|
|
2043
2154
|
min: "679px",
|
|
2044
2155
|
max: "854px",
|
|
@@ -2057,6 +2168,7 @@ export default {
|
|
|
2057
2168
|
description: "Large laptops and desktop computers",
|
|
2058
2169
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2059
2170
|
isSource: true,
|
|
2171
|
+
key: "{semantic.container-size.height.lg}",
|
|
2060
2172
|
name: "calcite-semantic-container-size-height-lg",
|
|
2061
2173
|
path: ["semantic", "container-size", "height", "lg"],
|
|
2062
2174
|
comment: "Large laptops and desktop computers",
|
|
@@ -2085,13 +2197,14 @@ export default {
|
|
|
2085
2197
|
attributes: {
|
|
2086
2198
|
category: "breakpoint",
|
|
2087
2199
|
},
|
|
2200
|
+
key: "{semantic.container-size.height.lg}",
|
|
2088
2201
|
},
|
|
2089
2202
|
name: "Container Size Height Lg",
|
|
2090
2203
|
path: ["semantic", "container-size", "height", "lg"],
|
|
2091
2204
|
comment: "Large laptops and desktop computers",
|
|
2092
|
-
key: "{semantic.container-size.height.lg}",
|
|
2093
2205
|
},
|
|
2094
2206
|
xl: {
|
|
2207
|
+
key: "{semantic.container-size.height.xl}",
|
|
2095
2208
|
value: {
|
|
2096
2209
|
min: "855px",
|
|
2097
2210
|
},
|
|
@@ -2108,6 +2221,7 @@ export default {
|
|
|
2108
2221
|
description: "Projectors and televisions",
|
|
2109
2222
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2110
2223
|
isSource: true,
|
|
2224
|
+
key: "{semantic.container-size.height.xl}",
|
|
2111
2225
|
name: "calcite-semantic-container-size-height-xl",
|
|
2112
2226
|
path: ["semantic", "container-size", "height", "xl"],
|
|
2113
2227
|
comment: "Projectors and televisions",
|
|
@@ -2135,15 +2249,16 @@ export default {
|
|
|
2135
2249
|
attributes: {
|
|
2136
2250
|
category: "breakpoint",
|
|
2137
2251
|
},
|
|
2252
|
+
key: "{semantic.container-size.height.xl}",
|
|
2138
2253
|
},
|
|
2139
2254
|
name: "Container Size Height Xl",
|
|
2140
2255
|
path: ["semantic", "container-size", "height", "xl"],
|
|
2141
2256
|
comment: "Projectors and televisions",
|
|
2142
|
-
key: "{semantic.container-size.height.xl}",
|
|
2143
2257
|
},
|
|
2144
2258
|
},
|
|
2145
2259
|
width: {
|
|
2146
2260
|
xxs: {
|
|
2261
|
+
key: "{semantic.container-size.width.xxs}",
|
|
2147
2262
|
value: {
|
|
2148
2263
|
min: "0",
|
|
2149
2264
|
max: "320px",
|
|
@@ -2156,12 +2271,13 @@ export default {
|
|
|
2156
2271
|
item: "width",
|
|
2157
2272
|
subitem: "xxs",
|
|
2158
2273
|
value: {
|
|
2159
|
-
min: 0,
|
|
2274
|
+
min: "0",
|
|
2160
2275
|
max: "320px",
|
|
2161
2276
|
},
|
|
2162
2277
|
description: "Small handheld devices and mini-windows",
|
|
2163
2278
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2164
2279
|
isSource: true,
|
|
2280
|
+
key: "{semantic.container-size.width.xxs}",
|
|
2165
2281
|
name: "calcite-semantic-container-size-width-xxs",
|
|
2166
2282
|
path: ["semantic", "container-size", "width", "xxs"],
|
|
2167
2283
|
comment: "Small handheld devices and mini-windows",
|
|
@@ -2182,7 +2298,7 @@ export default {
|
|
|
2182
2298
|
isSource: true,
|
|
2183
2299
|
original: {
|
|
2184
2300
|
value: {
|
|
2185
|
-
min: 0,
|
|
2301
|
+
min: "0",
|
|
2186
2302
|
max: "{core.container-size.320}",
|
|
2187
2303
|
},
|
|
2188
2304
|
type: "dimension",
|
|
@@ -2190,13 +2306,14 @@ export default {
|
|
|
2190
2306
|
attributes: {
|
|
2191
2307
|
category: "breakpoint",
|
|
2192
2308
|
},
|
|
2309
|
+
key: "{semantic.container-size.width.xxs}",
|
|
2193
2310
|
},
|
|
2194
2311
|
name: "Container Size Width Xxs",
|
|
2195
2312
|
path: ["semantic", "container-size", "width", "xxs"],
|
|
2196
2313
|
comment: "Small handheld devices and mini-windows",
|
|
2197
|
-
key: "{semantic.container-size.width.xxs}",
|
|
2198
2314
|
},
|
|
2199
2315
|
xs: {
|
|
2316
|
+
key: "{semantic.container-size.width.xs}",
|
|
2200
2317
|
value: {
|
|
2201
2318
|
min: "321px",
|
|
2202
2319
|
max: "476px",
|
|
@@ -2215,6 +2332,7 @@ export default {
|
|
|
2215
2332
|
description: "Handheld devices",
|
|
2216
2333
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2217
2334
|
isSource: true,
|
|
2335
|
+
key: "{semantic.container-size.width.xs}",
|
|
2218
2336
|
name: "calcite-semantic-container-size-width-xs",
|
|
2219
2337
|
path: ["semantic", "container-size", "width", "xs"],
|
|
2220
2338
|
comment: "Handheld devices",
|
|
@@ -2243,13 +2361,14 @@ export default {
|
|
|
2243
2361
|
attributes: {
|
|
2244
2362
|
category: "breakpoint",
|
|
2245
2363
|
},
|
|
2364
|
+
key: "{semantic.container-size.width.xs}",
|
|
2246
2365
|
},
|
|
2247
2366
|
name: "Container Size Width Xs",
|
|
2248
2367
|
path: ["semantic", "container-size", "width", "xs"],
|
|
2249
2368
|
comment: "Handheld devices",
|
|
2250
|
-
key: "{semantic.container-size.width.xs}",
|
|
2251
2369
|
},
|
|
2252
2370
|
sm: {
|
|
2371
|
+
key: "{semantic.container-size.width.sm}",
|
|
2253
2372
|
value: {
|
|
2254
2373
|
min: "477px",
|
|
2255
2374
|
max: "768px",
|
|
@@ -2268,6 +2387,7 @@ export default {
|
|
|
2268
2387
|
description: "Small tablets",
|
|
2269
2388
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2270
2389
|
isSource: true,
|
|
2390
|
+
key: "{semantic.container-size.width.sm}",
|
|
2271
2391
|
name: "calcite-semantic-container-size-width-sm",
|
|
2272
2392
|
path: ["semantic", "container-size", "width", "sm"],
|
|
2273
2393
|
comment: "Small tablets",
|
|
@@ -2296,13 +2416,14 @@ export default {
|
|
|
2296
2416
|
attributes: {
|
|
2297
2417
|
category: "breakpoint",
|
|
2298
2418
|
},
|
|
2419
|
+
key: "{semantic.container-size.width.sm}",
|
|
2299
2420
|
},
|
|
2300
2421
|
name: "Container Size Width Sm",
|
|
2301
2422
|
path: ["semantic", "container-size", "width", "sm"],
|
|
2302
2423
|
comment: "Small tablets",
|
|
2303
|
-
key: "{semantic.container-size.width.sm}",
|
|
2304
2424
|
},
|
|
2305
2425
|
md: {
|
|
2426
|
+
key: "{semantic.container-size.width.md}",
|
|
2306
2427
|
value: {
|
|
2307
2428
|
min: "769px",
|
|
2308
2429
|
max: "1152px",
|
|
@@ -2321,6 +2442,7 @@ export default {
|
|
|
2321
2442
|
description: "Small laptops",
|
|
2322
2443
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2323
2444
|
isSource: true,
|
|
2445
|
+
key: "{semantic.container-size.width.md}",
|
|
2324
2446
|
name: "calcite-semantic-container-size-width-md",
|
|
2325
2447
|
path: ["semantic", "container-size", "width", "md"],
|
|
2326
2448
|
comment: "Small laptops",
|
|
@@ -2349,13 +2471,14 @@ export default {
|
|
|
2349
2471
|
attributes: {
|
|
2350
2472
|
category: "breakpoint",
|
|
2351
2473
|
},
|
|
2474
|
+
key: "{semantic.container-size.width.md}",
|
|
2352
2475
|
},
|
|
2353
2476
|
name: "Container Size Width Md",
|
|
2354
2477
|
path: ["semantic", "container-size", "width", "md"],
|
|
2355
2478
|
comment: "Small laptops",
|
|
2356
|
-
key: "{semantic.container-size.width.md}",
|
|
2357
2479
|
},
|
|
2358
2480
|
lg: {
|
|
2481
|
+
key: "{semantic.container-size.width.lg}",
|
|
2359
2482
|
value: {
|
|
2360
2483
|
min: "1153px",
|
|
2361
2484
|
max: "1440px",
|
|
@@ -2374,6 +2497,7 @@ export default {
|
|
|
2374
2497
|
description: "Large laptops and desktop computers",
|
|
2375
2498
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2376
2499
|
isSource: true,
|
|
2500
|
+
key: "{semantic.container-size.width.lg}",
|
|
2377
2501
|
name: "calcite-semantic-container-size-width-lg",
|
|
2378
2502
|
path: ["semantic", "container-size", "width", "lg"],
|
|
2379
2503
|
comment: "Large laptops and desktop computers",
|
|
@@ -2402,13 +2526,14 @@ export default {
|
|
|
2402
2526
|
attributes: {
|
|
2403
2527
|
category: "breakpoint",
|
|
2404
2528
|
},
|
|
2529
|
+
key: "{semantic.container-size.width.lg}",
|
|
2405
2530
|
},
|
|
2406
2531
|
name: "Container Size Width Lg",
|
|
2407
2532
|
path: ["semantic", "container-size", "width", "lg"],
|
|
2408
2533
|
comment: "Large laptops and desktop computers",
|
|
2409
|
-
key: "{semantic.container-size.width.lg}",
|
|
2410
2534
|
},
|
|
2411
2535
|
xl: {
|
|
2536
|
+
key: "{semantic.container-size.width.xl}",
|
|
2412
2537
|
value: {
|
|
2413
2538
|
min: "1441px",
|
|
2414
2539
|
},
|
|
@@ -2425,6 +2550,7 @@ export default {
|
|
|
2425
2550
|
description: "Projectors and televisions",
|
|
2426
2551
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2427
2552
|
isSource: true,
|
|
2553
|
+
key: "{semantic.container-size.width.xl}",
|
|
2428
2554
|
name: "calcite-semantic-container-size-width-xl",
|
|
2429
2555
|
path: ["semantic", "container-size", "width", "xl"],
|
|
2430
2556
|
comment: "Projectors and televisions",
|
|
@@ -2452,14 +2578,15 @@ export default {
|
|
|
2452
2578
|
attributes: {
|
|
2453
2579
|
category: "breakpoint",
|
|
2454
2580
|
},
|
|
2581
|
+
key: "{semantic.container-size.width.xl}",
|
|
2455
2582
|
},
|
|
2456
2583
|
name: "Container Size Width Xl",
|
|
2457
2584
|
path: ["semantic", "container-size", "width", "xl"],
|
|
2458
2585
|
comment: "Projectors and televisions",
|
|
2459
|
-
key: "{semantic.container-size.width.xl}",
|
|
2460
2586
|
},
|
|
2461
2587
|
},
|
|
2462
2588
|
margin: {
|
|
2589
|
+
key: "{semantic.container-size.margin}",
|
|
2463
2590
|
value: "24px",
|
|
2464
2591
|
type: "dimension",
|
|
2465
2592
|
attributes: {
|
|
@@ -2487,12 +2614,13 @@ export default {
|
|
|
2487
2614
|
attributes: {
|
|
2488
2615
|
category: "breakpoint",
|
|
2489
2616
|
},
|
|
2617
|
+
key: "{semantic.container-size.margin}",
|
|
2490
2618
|
},
|
|
2491
2619
|
name: "Container Size Margin",
|
|
2492
2620
|
path: ["semantic", "container-size", "margin"],
|
|
2493
|
-
key: "{semantic.container-size.margin}",
|
|
2494
2621
|
},
|
|
2495
2622
|
gutter: {
|
|
2623
|
+
key: "{semantic.container-size.gutter}",
|
|
2496
2624
|
value: "16px",
|
|
2497
2625
|
type: "dimension",
|
|
2498
2626
|
attributes: {
|
|
@@ -2520,13 +2648,14 @@ export default {
|
|
|
2520
2648
|
attributes: {
|
|
2521
2649
|
category: "breakpoint",
|
|
2522
2650
|
},
|
|
2651
|
+
key: "{semantic.container-size.gutter}",
|
|
2523
2652
|
},
|
|
2524
2653
|
name: "Container Size Gutter",
|
|
2525
2654
|
path: ["semantic", "container-size", "gutter"],
|
|
2526
|
-
key: "{semantic.container-size.gutter}",
|
|
2527
2655
|
},
|
|
2528
2656
|
content: {
|
|
2529
2657
|
fluid: {
|
|
2658
|
+
key: "{semantic.container-size.content.fluid}",
|
|
2530
2659
|
value: "100%",
|
|
2531
2660
|
type: "dimension",
|
|
2532
2661
|
description: "for fluid grid widths",
|
|
@@ -2539,6 +2668,7 @@ export default {
|
|
|
2539
2668
|
description: "for fluid grid widths",
|
|
2540
2669
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2541
2670
|
isSource: true,
|
|
2671
|
+
key: "{semantic.container-size.content.fluid}",
|
|
2542
2672
|
name: "calcite-semantic-container-size-content-fluid",
|
|
2543
2673
|
path: ["semantic", "container-size", "content", "fluid"],
|
|
2544
2674
|
comment: "for fluid grid widths",
|
|
@@ -2564,13 +2694,14 @@ export default {
|
|
|
2564
2694
|
attributes: {
|
|
2565
2695
|
category: "breakpoint",
|
|
2566
2696
|
},
|
|
2697
|
+
key: "{semantic.container-size.content.fluid}",
|
|
2567
2698
|
},
|
|
2568
2699
|
name: "Container Size Content Fluid",
|
|
2569
2700
|
path: ["semantic", "container-size", "content", "fluid"],
|
|
2570
2701
|
comment: "for fluid grid widths",
|
|
2571
|
-
key: "{semantic.container-size.content.fluid}",
|
|
2572
2702
|
},
|
|
2573
2703
|
fixed: {
|
|
2704
|
+
key: "{semantic.container-size.content.fixed}",
|
|
2574
2705
|
value: "1440px",
|
|
2575
2706
|
type: "dimension",
|
|
2576
2707
|
description: "only for lg breakpoint fixed grid width",
|
|
@@ -2583,6 +2714,7 @@ export default {
|
|
|
2583
2714
|
description: "only for lg breakpoint fixed grid width",
|
|
2584
2715
|
filePath: "src/tokens/semantic/container-size.json",
|
|
2585
2716
|
isSource: true,
|
|
2717
|
+
key: "{semantic.container-size.content.fixed}",
|
|
2586
2718
|
name: "calcite-semantic-container-size-content-fixed",
|
|
2587
2719
|
path: ["semantic", "container-size", "content", "fixed"],
|
|
2588
2720
|
comment: "only for lg breakpoint fixed grid width",
|
|
@@ -2608,17 +2740,18 @@ export default {
|
|
|
2608
2740
|
attributes: {
|
|
2609
2741
|
category: "breakpoint",
|
|
2610
2742
|
},
|
|
2743
|
+
key: "{semantic.container-size.content.fixed}",
|
|
2611
2744
|
},
|
|
2612
2745
|
name: "Container Size Content Fixed",
|
|
2613
2746
|
path: ["semantic", "container-size", "content", "fixed"],
|
|
2614
2747
|
comment: "only for lg breakpoint fixed grid width",
|
|
2615
|
-
key: "{semantic.container-size.content.fixed}",
|
|
2616
2748
|
},
|
|
2617
2749
|
},
|
|
2618
2750
|
},
|
|
2619
2751
|
corner: {
|
|
2620
2752
|
radius: {
|
|
2621
2753
|
default: {
|
|
2754
|
+
key: "{semantic.corner.radius.default}",
|
|
2622
2755
|
value: "0",
|
|
2623
2756
|
type: "dimension",
|
|
2624
2757
|
attributes: {
|
|
@@ -2647,12 +2780,13 @@ export default {
|
|
|
2647
2780
|
attributes: {
|
|
2648
2781
|
category: "corner",
|
|
2649
2782
|
},
|
|
2783
|
+
key: "{semantic.corner.radius.default}",
|
|
2650
2784
|
},
|
|
2651
2785
|
name: "Corner Radius",
|
|
2652
2786
|
path: ["semantic", "corner", "radius", "default"],
|
|
2653
|
-
key: "{semantic.corner.radius.default}",
|
|
2654
2787
|
},
|
|
2655
2788
|
sharp: {
|
|
2789
|
+
key: "{semantic.corner.radius.sharp}",
|
|
2656
2790
|
value: "0",
|
|
2657
2791
|
type: "dimension",
|
|
2658
2792
|
attributes: {
|
|
@@ -2661,12 +2795,13 @@ export default {
|
|
|
2661
2795
|
item: "radius",
|
|
2662
2796
|
subitem: "sharp",
|
|
2663
2797
|
value: "0",
|
|
2664
|
-
description: "deprecated, use --calcite-
|
|
2798
|
+
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
2665
2799
|
filePath: "src/tokens/semantic/corner.json",
|
|
2666
2800
|
isSource: true,
|
|
2801
|
+
key: "{semantic.corner.radius.sharp}",
|
|
2667
2802
|
name: "calcite-semantic-corner-radius-sharp",
|
|
2668
2803
|
path: ["semantic", "corner", "radius", "sharp"],
|
|
2669
|
-
comment: "deprecated, use --calcite-
|
|
2804
|
+
comment: "deprecated, use --calcite-corner-radius-none instead",
|
|
2670
2805
|
names: {
|
|
2671
2806
|
scss: "$calcite-corner-radius-sharp",
|
|
2672
2807
|
css: "var(--calcite-corner-radius-sharp)",
|
|
@@ -2680,7 +2815,7 @@ export default {
|
|
|
2680
2815
|
type: "dimension",
|
|
2681
2816
|
},
|
|
2682
2817
|
},
|
|
2683
|
-
description: "deprecated, use --calcite-
|
|
2818
|
+
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
2684
2819
|
filePath: "src/tokens/semantic/corner.json",
|
|
2685
2820
|
isSource: true,
|
|
2686
2821
|
original: {
|
|
@@ -2689,14 +2824,15 @@ export default {
|
|
|
2689
2824
|
attributes: {
|
|
2690
2825
|
category: "corner",
|
|
2691
2826
|
},
|
|
2692
|
-
description: "deprecated, use --calcite-
|
|
2827
|
+
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
2828
|
+
key: "{semantic.corner.radius.sharp}",
|
|
2693
2829
|
},
|
|
2694
2830
|
name: "Corner Radius Sharp",
|
|
2695
2831
|
path: ["semantic", "corner", "radius", "sharp"],
|
|
2696
|
-
comment: "deprecated, use --calcite-
|
|
2697
|
-
key: "{semantic.corner.radius.sharp}",
|
|
2832
|
+
comment: "deprecated, use --calcite-corner-radius-none instead",
|
|
2698
2833
|
},
|
|
2699
2834
|
none: {
|
|
2835
|
+
key: "{semantic.corner.radius.none}",
|
|
2700
2836
|
value: "0",
|
|
2701
2837
|
type: "dimension",
|
|
2702
2838
|
attributes: {
|
|
@@ -2725,12 +2861,13 @@ export default {
|
|
|
2725
2861
|
attributes: {
|
|
2726
2862
|
category: "corner",
|
|
2727
2863
|
},
|
|
2864
|
+
key: "{semantic.corner.radius.none}",
|
|
2728
2865
|
},
|
|
2729
2866
|
name: "Corner Radius None",
|
|
2730
2867
|
path: ["semantic", "corner", "radius", "none"],
|
|
2731
|
-
key: "{semantic.corner.radius.none}",
|
|
2732
2868
|
},
|
|
2733
2869
|
xs: {
|
|
2870
|
+
key: "{semantic.corner.radius.xs}",
|
|
2734
2871
|
value: "2px",
|
|
2735
2872
|
type: "dimension",
|
|
2736
2873
|
attributes: {
|
|
@@ -2759,12 +2896,13 @@ export default {
|
|
|
2759
2896
|
attributes: {
|
|
2760
2897
|
category: "corner",
|
|
2761
2898
|
},
|
|
2899
|
+
key: "{semantic.corner.radius.xs}",
|
|
2762
2900
|
},
|
|
2763
2901
|
name: "Corner Radius Xs",
|
|
2764
2902
|
path: ["semantic", "corner", "radius", "xs"],
|
|
2765
|
-
key: "{semantic.corner.radius.xs}",
|
|
2766
2903
|
},
|
|
2767
2904
|
sm: {
|
|
2905
|
+
key: "{semantic.corner.radius.sm}",
|
|
2768
2906
|
value: "4px",
|
|
2769
2907
|
type: "dimension",
|
|
2770
2908
|
attributes: {
|
|
@@ -2793,12 +2931,13 @@ export default {
|
|
|
2793
2931
|
attributes: {
|
|
2794
2932
|
category: "corner",
|
|
2795
2933
|
},
|
|
2934
|
+
key: "{semantic.corner.radius.sm}",
|
|
2796
2935
|
},
|
|
2797
2936
|
name: "Corner Radius Sm",
|
|
2798
2937
|
path: ["semantic", "corner", "radius", "sm"],
|
|
2799
|
-
key: "{semantic.corner.radius.sm}",
|
|
2800
2938
|
},
|
|
2801
2939
|
round: {
|
|
2940
|
+
key: "{semantic.corner.radius.round}",
|
|
2802
2941
|
value: "4px",
|
|
2803
2942
|
type: "dimension",
|
|
2804
2943
|
attributes: {
|
|
@@ -2810,6 +2949,7 @@ export default {
|
|
|
2810
2949
|
description: "deprecated, use --calcite-corner-radius-sm instead",
|
|
2811
2950
|
filePath: "src/tokens/semantic/corner.json",
|
|
2812
2951
|
isSource: true,
|
|
2952
|
+
key: "{semantic.corner.radius.round}",
|
|
2813
2953
|
name: "calcite-semantic-corner-radius-round",
|
|
2814
2954
|
path: ["semantic", "corner", "radius", "round"],
|
|
2815
2955
|
comment: "deprecated, use --calcite-corner-radius-sm instead",
|
|
@@ -2836,13 +2976,14 @@ export default {
|
|
|
2836
2976
|
category: "corner",
|
|
2837
2977
|
},
|
|
2838
2978
|
description: "deprecated, use --calcite-corner-radius-sm instead",
|
|
2979
|
+
key: "{semantic.corner.radius.round}",
|
|
2839
2980
|
},
|
|
2840
2981
|
name: "Corner Radius Round",
|
|
2841
2982
|
path: ["semantic", "corner", "radius", "round"],
|
|
2842
2983
|
comment: "deprecated, use --calcite-corner-radius-sm instead",
|
|
2843
|
-
key: "{semantic.corner.radius.round}",
|
|
2844
2984
|
},
|
|
2845
2985
|
pill: {
|
|
2986
|
+
key: "{semantic.corner.radius.pill}",
|
|
2846
2987
|
value: "100%",
|
|
2847
2988
|
type: "dimension",
|
|
2848
2989
|
attributes: {
|
|
@@ -2873,29 +3014,30 @@ export default {
|
|
|
2873
3014
|
element: "",
|
|
2874
3015
|
category: "corner",
|
|
2875
3016
|
},
|
|
3017
|
+
key: "{semantic.corner.radius.pill}",
|
|
2876
3018
|
},
|
|
2877
3019
|
name: "Corner Radius Pill",
|
|
2878
3020
|
path: ["semantic", "corner", "radius", "pill"],
|
|
2879
|
-
key: "{semantic.corner.radius.pill}",
|
|
2880
3021
|
},
|
|
2881
3022
|
},
|
|
2882
3023
|
},
|
|
2883
3024
|
font: {
|
|
2884
3025
|
family: {
|
|
2885
3026
|
default: {
|
|
3027
|
+
key: "{semantic.font.family.default}",
|
|
2886
3028
|
value: ["Avenir Next", "Avenir", "Helvetica Neue", "sans-serif"],
|
|
2887
3029
|
type: "fontFamily",
|
|
2888
|
-
description: "Primary font with fallbacks",
|
|
2889
3030
|
attributes: {
|
|
2890
3031
|
group: "family",
|
|
2891
3032
|
category: "semantic",
|
|
2892
3033
|
type: "fontFamily",
|
|
2893
3034
|
item: "family",
|
|
2894
3035
|
subitem: "default",
|
|
2895
|
-
value:
|
|
3036
|
+
value: "Avenir Next,Avenir,Helvetica Neue,sans-serif",
|
|
2896
3037
|
description: "Primary font with fallbacks",
|
|
2897
3038
|
filePath: "src/tokens/semantic/font.json",
|
|
2898
3039
|
isSource: true,
|
|
3040
|
+
key: "{semantic.font.family.default}",
|
|
2899
3041
|
name: "calcite-semantic-font-family-default",
|
|
2900
3042
|
path: ["semantic", "font", "family", "default"],
|
|
2901
3043
|
comment: "Primary font with fallbacks",
|
|
@@ -2912,27 +3054,25 @@ export default {
|
|
|
2912
3054
|
type: "fontFamily",
|
|
2913
3055
|
},
|
|
2914
3056
|
},
|
|
3057
|
+
description: "Primary font with fallbacks",
|
|
2915
3058
|
filePath: "src/tokens/semantic/font.json",
|
|
2916
3059
|
isSource: true,
|
|
2917
3060
|
original: {
|
|
2918
|
-
value:
|
|
2919
|
-
"{core.font.family.avenirNext}",
|
|
2920
|
-
"{core.font.family.avenir}",
|
|
2921
|
-
"{core.font.family.helveticaNeue}",
|
|
2922
|
-
"{core.font.family.sansSerif}",
|
|
2923
|
-
],
|
|
3061
|
+
value:
|
|
3062
|
+
"{core.font.family.avenirNext},{core.font.family.avenir},{core.font.family.helveticaNeue},{core.font.family.sansSerif}",
|
|
2924
3063
|
type: "fontFamily",
|
|
2925
|
-
description: "Primary font with fallbacks",
|
|
2926
3064
|
attributes: {
|
|
2927
3065
|
group: "family",
|
|
2928
3066
|
},
|
|
3067
|
+
description: "Primary font with fallbacks",
|
|
3068
|
+
key: "{semantic.font.family.default}",
|
|
2929
3069
|
},
|
|
2930
3070
|
name: "Font Family",
|
|
2931
3071
|
path: ["semantic", "font", "family", "default"],
|
|
2932
3072
|
comment: "Primary font with fallbacks",
|
|
2933
|
-
key: "{semantic.font.family.default}",
|
|
2934
3073
|
},
|
|
2935
3074
|
code: {
|
|
3075
|
+
key: "{semantic.font.family.code}",
|
|
2936
3076
|
value: [
|
|
2937
3077
|
"Monaco",
|
|
2938
3078
|
"Consolas",
|
|
@@ -2941,22 +3081,16 @@ export default {
|
|
|
2941
3081
|
"monospace",
|
|
2942
3082
|
],
|
|
2943
3083
|
type: "fontFamily",
|
|
2944
|
-
description: "Font family for code with fallbacks",
|
|
2945
3084
|
attributes: {
|
|
2946
3085
|
category: "font",
|
|
2947
3086
|
type: "fontFamily",
|
|
2948
3087
|
item: "family",
|
|
2949
3088
|
subitem: "code",
|
|
2950
|
-
value:
|
|
2951
|
-
"Monaco",
|
|
2952
|
-
"Consolas",
|
|
2953
|
-
"Andale Mono",
|
|
2954
|
-
"Lucida Console",
|
|
2955
|
-
"monospace",
|
|
2956
|
-
],
|
|
3089
|
+
value: "Monaco,Consolas,Andale Mono,Lucida Console,monospace",
|
|
2957
3090
|
description: "Font family for code with fallbacks",
|
|
2958
3091
|
filePath: "src/tokens/semantic/font.json",
|
|
2959
3092
|
isSource: true,
|
|
3093
|
+
key: "{semantic.font.family.code}",
|
|
2960
3094
|
name: "calcite-semantic-font-family-code",
|
|
2961
3095
|
path: ["semantic", "font", "family", "code"],
|
|
2962
3096
|
comment: "Font family for code with fallbacks",
|
|
@@ -2973,33 +3107,29 @@ export default {
|
|
|
2973
3107
|
type: "fontFamily",
|
|
2974
3108
|
},
|
|
2975
3109
|
},
|
|
3110
|
+
description: "Font family for code with fallbacks",
|
|
2976
3111
|
filePath: "src/tokens/semantic/font.json",
|
|
2977
3112
|
isSource: true,
|
|
2978
3113
|
original: {
|
|
2979
|
-
value:
|
|
2980
|
-
"{core.font.family.monaco}",
|
|
2981
|
-
"{core.font.family.consolas}",
|
|
2982
|
-
"{core.font.family.andaleMono}",
|
|
2983
|
-
"{core.font.family.lucidaConsole}",
|
|
2984
|
-
"{core.font.family.monospace}",
|
|
2985
|
-
],
|
|
3114
|
+
value:
|
|
3115
|
+
"{core.font.family.monaco},{core.font.family.consolas},{core.font.family.andaleMono},{core.font.family.lucidaConsole},{core.font.family.monospace}",
|
|
2986
3116
|
type: "fontFamily",
|
|
2987
|
-
description: "Font family for code with fallbacks",
|
|
2988
3117
|
attributes: {
|
|
2989
3118
|
category: "font",
|
|
2990
3119
|
},
|
|
3120
|
+
description: "Font family for code with fallbacks",
|
|
3121
|
+
key: "{semantic.font.family.code}",
|
|
2991
3122
|
},
|
|
2992
3123
|
name: "Font Family Code",
|
|
2993
3124
|
path: ["semantic", "font", "family", "code"],
|
|
2994
3125
|
comment: "Font family for code with fallbacks",
|
|
2995
|
-
key: "{semantic.font.family.code}",
|
|
2996
3126
|
},
|
|
2997
3127
|
},
|
|
2998
3128
|
weight: {
|
|
2999
3129
|
light: {
|
|
3130
|
+
key: "{semantic.font.weight.light}",
|
|
3000
3131
|
value: "300",
|
|
3001
3132
|
type: "fontWeight",
|
|
3002
|
-
description: "For Avenir Next World (secondary font family)",
|
|
3003
3133
|
attributes: {
|
|
3004
3134
|
category: "font",
|
|
3005
3135
|
type: "fontWeight",
|
|
@@ -3009,6 +3139,7 @@ export default {
|
|
|
3009
3139
|
description: "For Avenir Next World (secondary font family)",
|
|
3010
3140
|
filePath: "src/tokens/semantic/font.json",
|
|
3011
3141
|
isSource: true,
|
|
3142
|
+
key: "{semantic.font.weight.light}",
|
|
3012
3143
|
name: "calcite-semantic-font-weight-light",
|
|
3013
3144
|
path: ["semantic", "font", "weight", "light"],
|
|
3014
3145
|
comment: "For Avenir Next World (secondary font family)",
|
|
@@ -3025,26 +3156,26 @@ export default {
|
|
|
3025
3156
|
type: "fontWeight",
|
|
3026
3157
|
},
|
|
3027
3158
|
},
|
|
3159
|
+
description: "For Avenir Next World (secondary font family)",
|
|
3028
3160
|
filePath: "src/tokens/semantic/font.json",
|
|
3029
3161
|
isSource: true,
|
|
3030
3162
|
original: {
|
|
3031
3163
|
value: "{core.font.weight.light}",
|
|
3032
3164
|
type: "fontWeight",
|
|
3033
|
-
description: "For Avenir Next World (secondary font family)",
|
|
3034
3165
|
attributes: {
|
|
3035
3166
|
category: "font",
|
|
3036
3167
|
},
|
|
3168
|
+
description: "For Avenir Next World (secondary font family)",
|
|
3169
|
+
key: "{semantic.font.weight.light}",
|
|
3037
3170
|
},
|
|
3038
3171
|
name: "Font Weight Light",
|
|
3039
3172
|
path: ["semantic", "font", "weight", "light"],
|
|
3040
3173
|
comment: "For Avenir Next World (secondary font family)",
|
|
3041
|
-
key: "{semantic.font.weight.light}",
|
|
3042
3174
|
},
|
|
3043
3175
|
normal: {
|
|
3176
|
+
key: "{semantic.font.weight.normal}",
|
|
3044
3177
|
value: "400",
|
|
3045
3178
|
type: "fontWeight",
|
|
3046
|
-
description:
|
|
3047
|
-
'For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"',
|
|
3048
3179
|
extensions: {
|
|
3049
3180
|
"calcite.deprecated": true,
|
|
3050
3181
|
},
|
|
@@ -3054,13 +3185,14 @@ export default {
|
|
|
3054
3185
|
item: "weight",
|
|
3055
3186
|
subitem: "normal",
|
|
3056
3187
|
value: "400",
|
|
3057
|
-
description:
|
|
3058
|
-
'For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"',
|
|
3059
3188
|
extensions: {
|
|
3060
3189
|
"calcite.deprecated": true,
|
|
3061
3190
|
},
|
|
3191
|
+
description:
|
|
3192
|
+
'For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"',
|
|
3062
3193
|
filePath: "src/tokens/semantic/font.json",
|
|
3063
3194
|
isSource: true,
|
|
3195
|
+
key: "{semantic.font.weight.normal}",
|
|
3064
3196
|
name: "calcite-semantic-font-weight-normal",
|
|
3065
3197
|
path: ["semantic", "font", "weight", "normal"],
|
|
3066
3198
|
comment:
|
|
@@ -3078,27 +3210,30 @@ export default {
|
|
|
3078
3210
|
type: "fontWeight",
|
|
3079
3211
|
},
|
|
3080
3212
|
},
|
|
3213
|
+
description:
|
|
3214
|
+
'For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"',
|
|
3081
3215
|
filePath: "src/tokens/semantic/font.json",
|
|
3082
3216
|
isSource: true,
|
|
3083
3217
|
original: {
|
|
3084
3218
|
value: "{core.font.weight.regular}",
|
|
3085
3219
|
type: "fontWeight",
|
|
3086
|
-
description:
|
|
3087
|
-
'For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"',
|
|
3088
3220
|
extensions: {
|
|
3089
3221
|
"calcite.deprecated": true,
|
|
3090
3222
|
},
|
|
3091
3223
|
attributes: {
|
|
3092
3224
|
category: "font",
|
|
3093
3225
|
},
|
|
3226
|
+
description:
|
|
3227
|
+
'For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"',
|
|
3228
|
+
key: "{semantic.font.weight.normal}",
|
|
3094
3229
|
},
|
|
3095
3230
|
name: "Font Weight Normal",
|
|
3096
3231
|
path: ["semantic", "font", "weight", "normal"],
|
|
3097
3232
|
comment:
|
|
3098
3233
|
'For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"',
|
|
3099
|
-
key: "{semantic.font.weight.normal}",
|
|
3100
3234
|
},
|
|
3101
3235
|
regular: {
|
|
3236
|
+
key: "{semantic.font.weight.regular}",
|
|
3102
3237
|
value: "400",
|
|
3103
3238
|
type: "fontWeight",
|
|
3104
3239
|
attributes: {
|
|
@@ -3127,12 +3262,13 @@ export default {
|
|
|
3127
3262
|
attributes: {
|
|
3128
3263
|
category: "font",
|
|
3129
3264
|
},
|
|
3265
|
+
key: "{semantic.font.weight.regular}",
|
|
3130
3266
|
},
|
|
3131
3267
|
name: "Font Weight Regular",
|
|
3132
3268
|
path: ["semantic", "font", "weight", "regular"],
|
|
3133
|
-
key: "{semantic.font.weight.regular}",
|
|
3134
3269
|
},
|
|
3135
3270
|
medium: {
|
|
3271
|
+
key: "{semantic.font.weight.medium}",
|
|
3136
3272
|
value: "500",
|
|
3137
3273
|
type: "fontWeight",
|
|
3138
3274
|
attributes: {
|
|
@@ -3161,12 +3297,13 @@ export default {
|
|
|
3161
3297
|
attributes: {
|
|
3162
3298
|
category: "font",
|
|
3163
3299
|
},
|
|
3300
|
+
key: "{semantic.font.weight.medium}",
|
|
3164
3301
|
},
|
|
3165
3302
|
name: "Font Weight Medium",
|
|
3166
3303
|
path: ["semantic", "font", "weight", "medium"],
|
|
3167
|
-
key: "{semantic.font.weight.medium}",
|
|
3168
3304
|
},
|
|
3169
3305
|
semibold: {
|
|
3306
|
+
key: "{semantic.font.weight.semibold}",
|
|
3170
3307
|
value: "600",
|
|
3171
3308
|
type: "fontWeight",
|
|
3172
3309
|
attributes: {
|
|
@@ -3195,12 +3332,13 @@ export default {
|
|
|
3195
3332
|
attributes: {
|
|
3196
3333
|
category: "font",
|
|
3197
3334
|
},
|
|
3335
|
+
key: "{semantic.font.weight.semibold}",
|
|
3198
3336
|
},
|
|
3199
3337
|
name: "Font Weight Semibold",
|
|
3200
3338
|
path: ["semantic", "font", "weight", "semibold"],
|
|
3201
|
-
key: "{semantic.font.weight.semibold}",
|
|
3202
3339
|
},
|
|
3203
3340
|
bold: {
|
|
3341
|
+
key: "{semantic.font.weight.bold}",
|
|
3204
3342
|
value: "600",
|
|
3205
3343
|
type: "fontWeight",
|
|
3206
3344
|
attributes: {
|
|
@@ -3229,14 +3367,15 @@ export default {
|
|
|
3229
3367
|
attributes: {
|
|
3230
3368
|
category: "font",
|
|
3231
3369
|
},
|
|
3370
|
+
key: "{semantic.font.weight.bold}",
|
|
3232
3371
|
},
|
|
3233
3372
|
name: "Font Weight Bold",
|
|
3234
3373
|
path: ["semantic", "font", "weight", "bold"],
|
|
3235
|
-
key: "{semantic.font.weight.bold}",
|
|
3236
3374
|
},
|
|
3237
3375
|
},
|
|
3238
3376
|
size: {
|
|
3239
3377
|
xs: {
|
|
3378
|
+
key: "{semantic.font.size.xs}",
|
|
3240
3379
|
value: "10px",
|
|
3241
3380
|
type: "fontSize",
|
|
3242
3381
|
attributes: {
|
|
@@ -3265,12 +3404,13 @@ export default {
|
|
|
3265
3404
|
attributes: {
|
|
3266
3405
|
category: "font",
|
|
3267
3406
|
},
|
|
3407
|
+
key: "{semantic.font.size.xs}",
|
|
3268
3408
|
},
|
|
3269
3409
|
name: "Font Size Xs",
|
|
3270
3410
|
path: ["semantic", "font", "size", "xs"],
|
|
3271
|
-
key: "{semantic.font.size.xs}",
|
|
3272
3411
|
},
|
|
3273
3412
|
sm: {
|
|
3413
|
+
key: "{semantic.font.size.sm}",
|
|
3274
3414
|
value: "12px",
|
|
3275
3415
|
type: "fontSize",
|
|
3276
3416
|
attributes: {
|
|
@@ -3299,12 +3439,13 @@ export default {
|
|
|
3299
3439
|
attributes: {
|
|
3300
3440
|
category: "font",
|
|
3301
3441
|
},
|
|
3442
|
+
key: "{semantic.font.size.sm}",
|
|
3302
3443
|
},
|
|
3303
3444
|
name: "Font Size Sm",
|
|
3304
3445
|
path: ["semantic", "font", "size", "sm"],
|
|
3305
|
-
key: "{semantic.font.size.sm}",
|
|
3306
3446
|
},
|
|
3307
3447
|
default: {
|
|
3448
|
+
key: "{semantic.font.size.default}",
|
|
3308
3449
|
value: "14px",
|
|
3309
3450
|
type: "fontSize",
|
|
3310
3451
|
attributes: {
|
|
@@ -3333,12 +3474,13 @@ export default {
|
|
|
3333
3474
|
attributes: {
|
|
3334
3475
|
category: "font",
|
|
3335
3476
|
},
|
|
3477
|
+
key: "{semantic.font.size.default}",
|
|
3336
3478
|
},
|
|
3337
3479
|
name: "Font Size",
|
|
3338
3480
|
path: ["semantic", "font", "size", "default"],
|
|
3339
|
-
key: "{semantic.font.size.default}",
|
|
3340
3481
|
},
|
|
3341
3482
|
md: {
|
|
3483
|
+
key: "{semantic.font.size.md}",
|
|
3342
3484
|
value: "16px",
|
|
3343
3485
|
type: "fontSize",
|
|
3344
3486
|
attributes: {
|
|
@@ -3367,12 +3509,13 @@ export default {
|
|
|
3367
3509
|
attributes: {
|
|
3368
3510
|
category: "font",
|
|
3369
3511
|
},
|
|
3512
|
+
key: "{semantic.font.size.md}",
|
|
3370
3513
|
},
|
|
3371
3514
|
name: "Font Size Md",
|
|
3372
3515
|
path: ["semantic", "font", "size", "md"],
|
|
3373
|
-
key: "{semantic.font.size.md}",
|
|
3374
3516
|
},
|
|
3375
3517
|
lg: {
|
|
3518
|
+
key: "{semantic.font.size.lg}",
|
|
3376
3519
|
value: "18px",
|
|
3377
3520
|
type: "fontSize",
|
|
3378
3521
|
attributes: {
|
|
@@ -3401,12 +3544,13 @@ export default {
|
|
|
3401
3544
|
attributes: {
|
|
3402
3545
|
category: "font",
|
|
3403
3546
|
},
|
|
3547
|
+
key: "{semantic.font.size.lg}",
|
|
3404
3548
|
},
|
|
3405
3549
|
name: "Font Size Lg",
|
|
3406
3550
|
path: ["semantic", "font", "size", "lg"],
|
|
3407
|
-
key: "{semantic.font.size.lg}",
|
|
3408
3551
|
},
|
|
3409
3552
|
xl: {
|
|
3553
|
+
key: "{semantic.font.size.xl}",
|
|
3410
3554
|
value: "20px",
|
|
3411
3555
|
type: "fontSize",
|
|
3412
3556
|
attributes: {
|
|
@@ -3435,12 +3579,13 @@ export default {
|
|
|
3435
3579
|
attributes: {
|
|
3436
3580
|
category: "font",
|
|
3437
3581
|
},
|
|
3582
|
+
key: "{semantic.font.size.xl}",
|
|
3438
3583
|
},
|
|
3439
3584
|
name: "Font Size Xl",
|
|
3440
3585
|
path: ["semantic", "font", "size", "xl"],
|
|
3441
|
-
key: "{semantic.font.size.xl}",
|
|
3442
3586
|
},
|
|
3443
3587
|
xxl: {
|
|
3588
|
+
key: "{semantic.font.size.xxl}",
|
|
3444
3589
|
value: "24px",
|
|
3445
3590
|
type: "fontSize",
|
|
3446
3591
|
attributes: {
|
|
@@ -3469,14 +3614,15 @@ export default {
|
|
|
3469
3614
|
attributes: {
|
|
3470
3615
|
category: "font",
|
|
3471
3616
|
},
|
|
3617
|
+
key: "{semantic.font.size.xxl}",
|
|
3472
3618
|
},
|
|
3473
3619
|
name: "Font Size Xxl",
|
|
3474
3620
|
path: ["semantic", "font", "size", "xxl"],
|
|
3475
|
-
key: "{semantic.font.size.xxl}",
|
|
3476
3621
|
},
|
|
3477
3622
|
},
|
|
3478
3623
|
style: {
|
|
3479
3624
|
emphasis: {
|
|
3625
|
+
key: "{semantic.font.style.emphasis}",
|
|
3480
3626
|
value: "italic",
|
|
3481
3627
|
type: "fontStyle",
|
|
3482
3628
|
description: "used in ratings",
|
|
@@ -3489,6 +3635,7 @@ export default {
|
|
|
3489
3635
|
description: "used in ratings",
|
|
3490
3636
|
filePath: "src/tokens/semantic/font.json",
|
|
3491
3637
|
isSource: true,
|
|
3638
|
+
key: "{semantic.font.style.emphasis}",
|
|
3492
3639
|
name: "calcite-semantic-font-style-emphasis",
|
|
3493
3640
|
path: ["semantic", "font", "style", "emphasis"],
|
|
3494
3641
|
comment: "used in ratings",
|
|
@@ -3514,16 +3661,17 @@ export default {
|
|
|
3514
3661
|
attributes: {
|
|
3515
3662
|
category: "font",
|
|
3516
3663
|
},
|
|
3664
|
+
key: "{semantic.font.style.emphasis}",
|
|
3517
3665
|
},
|
|
3518
3666
|
name: "Font Style Emphasis",
|
|
3519
3667
|
path: ["semantic", "font", "style", "emphasis"],
|
|
3520
3668
|
comment: "used in ratings",
|
|
3521
|
-
key: "{semantic.font.style.emphasis}",
|
|
3522
3669
|
},
|
|
3523
3670
|
},
|
|
3524
3671
|
"line-height": {
|
|
3525
3672
|
fixed: {
|
|
3526
3673
|
sm: {
|
|
3674
|
+
key: "{semantic.font.line-height.fixed.sm}",
|
|
3527
3675
|
value: "12px",
|
|
3528
3676
|
type: "lineHeight",
|
|
3529
3677
|
attributes: {
|
|
@@ -3553,12 +3701,13 @@ export default {
|
|
|
3553
3701
|
attributes: {
|
|
3554
3702
|
category: "font",
|
|
3555
3703
|
},
|
|
3704
|
+
key: "{semantic.font.line-height.fixed.sm}",
|
|
3556
3705
|
},
|
|
3557
3706
|
name: "Font Line Height Fixed Sm",
|
|
3558
3707
|
path: ["semantic", "font", "line-height", "fixed", "sm"],
|
|
3559
|
-
key: "{semantic.font.line-height.fixed.sm}",
|
|
3560
3708
|
},
|
|
3561
3709
|
base: {
|
|
3710
|
+
key: "{semantic.font.line-height.fixed.base}",
|
|
3562
3711
|
value: "16px",
|
|
3563
3712
|
type: "lineHeight",
|
|
3564
3713
|
attributes: {
|
|
@@ -3588,12 +3737,13 @@ export default {
|
|
|
3588
3737
|
attributes: {
|
|
3589
3738
|
category: "font",
|
|
3590
3739
|
},
|
|
3740
|
+
key: "{semantic.font.line-height.fixed.base}",
|
|
3591
3741
|
},
|
|
3592
3742
|
name: "Font Line Height Fixed Base",
|
|
3593
3743
|
path: ["semantic", "font", "line-height", "fixed", "base"],
|
|
3594
|
-
key: "{semantic.font.line-height.fixed.base}",
|
|
3595
3744
|
},
|
|
3596
3745
|
lg: {
|
|
3746
|
+
key: "{semantic.font.line-height.fixed.lg}",
|
|
3597
3747
|
value: "20px",
|
|
3598
3748
|
type: "lineHeight",
|
|
3599
3749
|
attributes: {
|
|
@@ -3623,12 +3773,13 @@ export default {
|
|
|
3623
3773
|
attributes: {
|
|
3624
3774
|
category: "font",
|
|
3625
3775
|
},
|
|
3776
|
+
key: "{semantic.font.line-height.fixed.lg}",
|
|
3626
3777
|
},
|
|
3627
3778
|
name: "Font Line Height Fixed Lg",
|
|
3628
3779
|
path: ["semantic", "font", "line-height", "fixed", "lg"],
|
|
3629
|
-
key: "{semantic.font.line-height.fixed.lg}",
|
|
3630
3780
|
},
|
|
3631
3781
|
xl: {
|
|
3782
|
+
key: "{semantic.font.line-height.fixed.xl}",
|
|
3632
3783
|
value: "24px",
|
|
3633
3784
|
type: "lineHeight",
|
|
3634
3785
|
attributes: {
|
|
@@ -3658,14 +3809,15 @@ export default {
|
|
|
3658
3809
|
attributes: {
|
|
3659
3810
|
category: "font",
|
|
3660
3811
|
},
|
|
3812
|
+
key: "{semantic.font.line-height.fixed.xl}",
|
|
3661
3813
|
},
|
|
3662
3814
|
name: "Font Line Height Fixed Xl",
|
|
3663
3815
|
path: ["semantic", "font", "line-height", "fixed", "xl"],
|
|
3664
|
-
key: "{semantic.font.line-height.fixed.xl}",
|
|
3665
3816
|
},
|
|
3666
3817
|
},
|
|
3667
3818
|
relative: {
|
|
3668
3819
|
default: {
|
|
3820
|
+
key: "{semantic.font.line-height.relative.default}",
|
|
3669
3821
|
value: "auto",
|
|
3670
3822
|
type: "lineHeight",
|
|
3671
3823
|
description: "1",
|
|
@@ -3679,6 +3831,7 @@ export default {
|
|
|
3679
3831
|
description: "1",
|
|
3680
3832
|
filePath: "src/tokens/semantic/font.json",
|
|
3681
3833
|
isSource: true,
|
|
3834
|
+
key: "{semantic.font.line-height.relative.default}",
|
|
3682
3835
|
name: "calcite-semantic-font-line-height-relative-default",
|
|
3683
3836
|
path: ["semantic", "font", "line-height", "relative", "default"],
|
|
3684
3837
|
comment: "1",
|
|
@@ -3704,13 +3857,14 @@ export default {
|
|
|
3704
3857
|
attributes: {
|
|
3705
3858
|
category: "font",
|
|
3706
3859
|
},
|
|
3860
|
+
key: "{semantic.font.line-height.relative.default}",
|
|
3707
3861
|
},
|
|
3708
3862
|
name: "Font Line Height Relative",
|
|
3709
3863
|
path: ["semantic", "font", "line-height", "relative", "default"],
|
|
3710
3864
|
comment: "1",
|
|
3711
|
-
key: "{semantic.font.line-height.relative.default}",
|
|
3712
3865
|
},
|
|
3713
3866
|
tight: {
|
|
3867
|
+
key: "{semantic.font.line-height.relative.tight}",
|
|
3714
3868
|
value: "1.25",
|
|
3715
3869
|
type: "lineHeight",
|
|
3716
3870
|
description: "1.25",
|
|
@@ -3724,6 +3878,7 @@ export default {
|
|
|
3724
3878
|
description: "1.25",
|
|
3725
3879
|
filePath: "src/tokens/semantic/font.json",
|
|
3726
3880
|
isSource: true,
|
|
3881
|
+
key: "{semantic.font.line-height.relative.tight}",
|
|
3727
3882
|
name: "calcite-semantic-font-line-height-relative-tight",
|
|
3728
3883
|
path: ["semantic", "font", "line-height", "relative", "tight"],
|
|
3729
3884
|
comment: "1.25",
|
|
@@ -3749,13 +3904,14 @@ export default {
|
|
|
3749
3904
|
attributes: {
|
|
3750
3905
|
category: "font",
|
|
3751
3906
|
},
|
|
3907
|
+
key: "{semantic.font.line-height.relative.tight}",
|
|
3752
3908
|
},
|
|
3753
3909
|
name: "Font Line Height Relative Tight",
|
|
3754
3910
|
path: ["semantic", "font", "line-height", "relative", "tight"],
|
|
3755
3911
|
comment: "1.25",
|
|
3756
|
-
key: "{semantic.font.line-height.relative.tight}",
|
|
3757
3912
|
},
|
|
3758
3913
|
snug: {
|
|
3914
|
+
key: "{semantic.font.line-height.relative.snug}",
|
|
3759
3915
|
value: "1.375",
|
|
3760
3916
|
type: "lineHeight",
|
|
3761
3917
|
description: "1.375",
|
|
@@ -3769,6 +3925,7 @@ export default {
|
|
|
3769
3925
|
description: "1.375",
|
|
3770
3926
|
filePath: "src/tokens/semantic/font.json",
|
|
3771
3927
|
isSource: true,
|
|
3928
|
+
key: "{semantic.font.line-height.relative.snug}",
|
|
3772
3929
|
name: "calcite-semantic-font-line-height-relative-snug",
|
|
3773
3930
|
path: ["semantic", "font", "line-height", "relative", "snug"],
|
|
3774
3931
|
comment: "1.375",
|
|
@@ -3794,13 +3951,14 @@ export default {
|
|
|
3794
3951
|
attributes: {
|
|
3795
3952
|
category: "font",
|
|
3796
3953
|
},
|
|
3954
|
+
key: "{semantic.font.line-height.relative.snug}",
|
|
3797
3955
|
},
|
|
3798
3956
|
name: "Font Line Height Relative Snug",
|
|
3799
3957
|
path: ["semantic", "font", "line-height", "relative", "snug"],
|
|
3800
3958
|
comment: "1.375",
|
|
3801
|
-
key: "{semantic.font.line-height.relative.snug}",
|
|
3802
3959
|
},
|
|
3803
3960
|
normal: {
|
|
3961
|
+
key: "{semantic.font.line-height.relative.normal}",
|
|
3804
3962
|
value: "1.5",
|
|
3805
3963
|
type: "lineHeight",
|
|
3806
3964
|
description: "1.5",
|
|
@@ -3814,6 +3972,7 @@ export default {
|
|
|
3814
3972
|
description: "1.5",
|
|
3815
3973
|
filePath: "src/tokens/semantic/font.json",
|
|
3816
3974
|
isSource: true,
|
|
3975
|
+
key: "{semantic.font.line-height.relative.normal}",
|
|
3817
3976
|
name: "calcite-semantic-font-line-height-relative-normal",
|
|
3818
3977
|
path: ["semantic", "font", "line-height", "relative", "normal"],
|
|
3819
3978
|
comment: "1.5",
|
|
@@ -3839,13 +3998,14 @@ export default {
|
|
|
3839
3998
|
attributes: {
|
|
3840
3999
|
category: "font",
|
|
3841
4000
|
},
|
|
4001
|
+
key: "{semantic.font.line-height.relative.normal}",
|
|
3842
4002
|
},
|
|
3843
4003
|
name: "Font Line Height Relative Normal",
|
|
3844
4004
|
path: ["semantic", "font", "line-height", "relative", "normal"],
|
|
3845
4005
|
comment: "1.5",
|
|
3846
|
-
key: "{semantic.font.line-height.relative.normal}",
|
|
3847
4006
|
},
|
|
3848
4007
|
relaxed: {
|
|
4008
|
+
key: "{semantic.font.line-height.relative.relaxed}",
|
|
3849
4009
|
value: "1.625",
|
|
3850
4010
|
type: "lineHeight",
|
|
3851
4011
|
description: "1.625",
|
|
@@ -3859,6 +4019,7 @@ export default {
|
|
|
3859
4019
|
description: "1.625",
|
|
3860
4020
|
filePath: "src/tokens/semantic/font.json",
|
|
3861
4021
|
isSource: true,
|
|
4022
|
+
key: "{semantic.font.line-height.relative.relaxed}",
|
|
3862
4023
|
name: "calcite-semantic-font-line-height-relative-relaxed",
|
|
3863
4024
|
path: ["semantic", "font", "line-height", "relative", "relaxed"],
|
|
3864
4025
|
comment: "1.625",
|
|
@@ -3884,13 +4045,14 @@ export default {
|
|
|
3884
4045
|
attributes: {
|
|
3885
4046
|
category: "font",
|
|
3886
4047
|
},
|
|
4048
|
+
key: "{semantic.font.line-height.relative.relaxed}",
|
|
3887
4049
|
},
|
|
3888
4050
|
name: "Font Line Height Relative Relaxed",
|
|
3889
4051
|
path: ["semantic", "font", "line-height", "relative", "relaxed"],
|
|
3890
4052
|
comment: "1.625",
|
|
3891
|
-
key: "{semantic.font.line-height.relative.relaxed}",
|
|
3892
4053
|
},
|
|
3893
4054
|
loose: {
|
|
4055
|
+
key: "{semantic.font.line-height.relative.loose}",
|
|
3894
4056
|
value: "2",
|
|
3895
4057
|
type: "lineHeight",
|
|
3896
4058
|
description: "2",
|
|
@@ -3904,6 +4066,7 @@ export default {
|
|
|
3904
4066
|
description: "2",
|
|
3905
4067
|
filePath: "src/tokens/semantic/font.json",
|
|
3906
4068
|
isSource: true,
|
|
4069
|
+
key: "{semantic.font.line-height.relative.loose}",
|
|
3907
4070
|
name: "calcite-semantic-font-line-height-relative-loose",
|
|
3908
4071
|
path: ["semantic", "font", "line-height", "relative", "loose"],
|
|
3909
4072
|
comment: "2",
|
|
@@ -3929,16 +4092,17 @@ export default {
|
|
|
3929
4092
|
attributes: {
|
|
3930
4093
|
category: "font",
|
|
3931
4094
|
},
|
|
4095
|
+
key: "{semantic.font.line-height.relative.loose}",
|
|
3932
4096
|
},
|
|
3933
4097
|
name: "Font Line Height Relative Loose",
|
|
3934
4098
|
path: ["semantic", "font", "line-height", "relative", "loose"],
|
|
3935
4099
|
comment: "2",
|
|
3936
|
-
key: "{semantic.font.line-height.relative.loose}",
|
|
3937
4100
|
},
|
|
3938
4101
|
},
|
|
3939
4102
|
},
|
|
3940
4103
|
"letter-spacing": {
|
|
3941
4104
|
tight: {
|
|
4105
|
+
key: "{semantic.font.letter-spacing.tight}",
|
|
3942
4106
|
value: "-0.4px",
|
|
3943
4107
|
type: "dimension",
|
|
3944
4108
|
description: "Deprecated",
|
|
@@ -3951,6 +4115,7 @@ export default {
|
|
|
3951
4115
|
description: "Deprecated",
|
|
3952
4116
|
filePath: "src/tokens/semantic/font.json",
|
|
3953
4117
|
isSource: true,
|
|
4118
|
+
key: "{semantic.font.letter-spacing.tight}",
|
|
3954
4119
|
name: "calcite-semantic-font-letter-spacing-tight",
|
|
3955
4120
|
path: ["semantic", "font", "letter-spacing", "tight"],
|
|
3956
4121
|
comment: "Deprecated",
|
|
@@ -3976,13 +4141,14 @@ export default {
|
|
|
3976
4141
|
attributes: {
|
|
3977
4142
|
category: "font",
|
|
3978
4143
|
},
|
|
4144
|
+
key: "{semantic.font.letter-spacing.tight}",
|
|
3979
4145
|
},
|
|
3980
4146
|
name: "Font Letter Spacing Tight",
|
|
3981
4147
|
path: ["semantic", "font", "letter-spacing", "tight"],
|
|
3982
4148
|
comment: "Deprecated",
|
|
3983
|
-
key: "{semantic.font.letter-spacing.tight}",
|
|
3984
4149
|
},
|
|
3985
4150
|
normal: {
|
|
4151
|
+
key: "{semantic.font.letter-spacing.normal}",
|
|
3986
4152
|
value: "0",
|
|
3987
4153
|
type: "dimension",
|
|
3988
4154
|
description: "Deprecated",
|
|
@@ -3995,6 +4161,7 @@ export default {
|
|
|
3995
4161
|
description: "Deprecated",
|
|
3996
4162
|
filePath: "src/tokens/semantic/font.json",
|
|
3997
4163
|
isSource: true,
|
|
4164
|
+
key: "{semantic.font.letter-spacing.normal}",
|
|
3998
4165
|
name: "calcite-semantic-font-letter-spacing-normal",
|
|
3999
4166
|
path: ["semantic", "font", "letter-spacing", "normal"],
|
|
4000
4167
|
comment: "Deprecated",
|
|
@@ -4020,13 +4187,14 @@ export default {
|
|
|
4020
4187
|
attributes: {
|
|
4021
4188
|
category: "font",
|
|
4022
4189
|
},
|
|
4190
|
+
key: "{semantic.font.letter-spacing.normal}",
|
|
4023
4191
|
},
|
|
4024
4192
|
name: "Font Letter Spacing Normal",
|
|
4025
4193
|
path: ["semantic", "font", "letter-spacing", "normal"],
|
|
4026
4194
|
comment: "Deprecated",
|
|
4027
|
-
key: "{semantic.font.letter-spacing.normal}",
|
|
4028
4195
|
},
|
|
4029
4196
|
wide: {
|
|
4197
|
+
key: "{semantic.font.letter-spacing.wide}",
|
|
4030
4198
|
value: "0.4px",
|
|
4031
4199
|
type: "dimension",
|
|
4032
4200
|
description: "Deprecated",
|
|
@@ -4039,6 +4207,7 @@ export default {
|
|
|
4039
4207
|
description: "Deprecated",
|
|
4040
4208
|
filePath: "src/tokens/semantic/font.json",
|
|
4041
4209
|
isSource: true,
|
|
4210
|
+
key: "{semantic.font.letter-spacing.wide}",
|
|
4042
4211
|
name: "calcite-semantic-font-letter-spacing-wide",
|
|
4043
4212
|
path: ["semantic", "font", "letter-spacing", "wide"],
|
|
4044
4213
|
comment: "Deprecated",
|
|
@@ -4064,15 +4233,16 @@ export default {
|
|
|
4064
4233
|
attributes: {
|
|
4065
4234
|
category: "font",
|
|
4066
4235
|
},
|
|
4236
|
+
key: "{semantic.font.letter-spacing.wide}",
|
|
4067
4237
|
},
|
|
4068
4238
|
name: "Font Letter Spacing Wide",
|
|
4069
4239
|
path: ["semantic", "font", "letter-spacing", "wide"],
|
|
4070
4240
|
comment: "Deprecated",
|
|
4071
|
-
key: "{semantic.font.letter-spacing.wide}",
|
|
4072
4241
|
},
|
|
4073
4242
|
},
|
|
4074
4243
|
"paragraph-spacing": {
|
|
4075
4244
|
normal: {
|
|
4245
|
+
key: "{semantic.font.paragraph-spacing.normal}",
|
|
4076
4246
|
value: "4px",
|
|
4077
4247
|
type: "dimension",
|
|
4078
4248
|
description: "Deprecated",
|
|
@@ -4085,6 +4255,7 @@ export default {
|
|
|
4085
4255
|
description: "Deprecated",
|
|
4086
4256
|
filePath: "src/tokens/semantic/font.json",
|
|
4087
4257
|
isSource: true,
|
|
4258
|
+
key: "{semantic.font.paragraph-spacing.normal}",
|
|
4088
4259
|
name: "calcite-semantic-font-paragraph-spacing-normal",
|
|
4089
4260
|
path: ["semantic", "font", "paragraph-spacing", "normal"],
|
|
4090
4261
|
comment: "Deprecated",
|
|
@@ -4110,15 +4281,16 @@ export default {
|
|
|
4110
4281
|
attributes: {
|
|
4111
4282
|
category: "font",
|
|
4112
4283
|
},
|
|
4284
|
+
key: "{semantic.font.paragraph-spacing.normal}",
|
|
4113
4285
|
},
|
|
4114
4286
|
name: "Font Paragraph Spacing Normal",
|
|
4115
4287
|
path: ["semantic", "font", "paragraph-spacing", "normal"],
|
|
4116
4288
|
comment: "Deprecated",
|
|
4117
|
-
key: "{semantic.font.paragraph-spacing.normal}",
|
|
4118
4289
|
},
|
|
4119
4290
|
},
|
|
4120
4291
|
"text-decoration": {
|
|
4121
4292
|
none: {
|
|
4293
|
+
key: "{semantic.font.text-decoration.none}",
|
|
4122
4294
|
value: "none",
|
|
4123
4295
|
type: "textDecoration",
|
|
4124
4296
|
description: "Deprecated",
|
|
@@ -4131,6 +4303,7 @@ export default {
|
|
|
4131
4303
|
description: "Deprecated",
|
|
4132
4304
|
filePath: "src/tokens/semantic/font.json",
|
|
4133
4305
|
isSource: true,
|
|
4306
|
+
key: "{semantic.font.text-decoration.none}",
|
|
4134
4307
|
name: "calcite-semantic-font-text-decoration-none",
|
|
4135
4308
|
path: ["semantic", "font", "text-decoration", "none"],
|
|
4136
4309
|
comment: "Deprecated",
|
|
@@ -4156,13 +4329,14 @@ export default {
|
|
|
4156
4329
|
attributes: {
|
|
4157
4330
|
category: "font",
|
|
4158
4331
|
},
|
|
4332
|
+
key: "{semantic.font.text-decoration.none}",
|
|
4159
4333
|
},
|
|
4160
4334
|
name: "Font Text Decoration None",
|
|
4161
4335
|
path: ["semantic", "font", "text-decoration", "none"],
|
|
4162
4336
|
comment: "Deprecated",
|
|
4163
|
-
key: "{semantic.font.text-decoration.none}",
|
|
4164
4337
|
},
|
|
4165
4338
|
underline: {
|
|
4339
|
+
key: "{semantic.font.text-decoration.underline}",
|
|
4166
4340
|
value: "underline",
|
|
4167
4341
|
type: "textDecoration",
|
|
4168
4342
|
description: "Deprecated",
|
|
@@ -4175,6 +4349,7 @@ export default {
|
|
|
4175
4349
|
description: "Deprecated",
|
|
4176
4350
|
filePath: "src/tokens/semantic/font.json",
|
|
4177
4351
|
isSource: true,
|
|
4352
|
+
key: "{semantic.font.text-decoration.underline}",
|
|
4178
4353
|
name: "calcite-semantic-font-text-decoration-underline",
|
|
4179
4354
|
path: ["semantic", "font", "text-decoration", "underline"],
|
|
4180
4355
|
comment: "Deprecated",
|
|
@@ -4200,15 +4375,16 @@ export default {
|
|
|
4200
4375
|
attributes: {
|
|
4201
4376
|
category: "font",
|
|
4202
4377
|
},
|
|
4378
|
+
key: "{semantic.font.text-decoration.underline}",
|
|
4203
4379
|
},
|
|
4204
4380
|
name: "Font Text Decoration Underline",
|
|
4205
4381
|
path: ["semantic", "font", "text-decoration", "underline"],
|
|
4206
4382
|
comment: "Deprecated",
|
|
4207
|
-
key: "{semantic.font.text-decoration.underline}",
|
|
4208
4383
|
},
|
|
4209
4384
|
},
|
|
4210
4385
|
"text-case": {
|
|
4211
4386
|
none: {
|
|
4387
|
+
key: "{semantic.font.text-case.none}",
|
|
4212
4388
|
value: "none",
|
|
4213
4389
|
type: "textCase",
|
|
4214
4390
|
description: "Deprecated",
|
|
@@ -4221,6 +4397,7 @@ export default {
|
|
|
4221
4397
|
description: "Deprecated",
|
|
4222
4398
|
filePath: "src/tokens/semantic/font.json",
|
|
4223
4399
|
isSource: true,
|
|
4400
|
+
key: "{semantic.font.text-case.none}",
|
|
4224
4401
|
name: "calcite-semantic-font-text-case-none",
|
|
4225
4402
|
path: ["semantic", "font", "text-case", "none"],
|
|
4226
4403
|
comment: "Deprecated",
|
|
@@ -4246,13 +4423,14 @@ export default {
|
|
|
4246
4423
|
attributes: {
|
|
4247
4424
|
category: "font",
|
|
4248
4425
|
},
|
|
4426
|
+
key: "{semantic.font.text-case.none}",
|
|
4249
4427
|
},
|
|
4250
4428
|
name: "Font Text Case None",
|
|
4251
4429
|
path: ["semantic", "font", "text-case", "none"],
|
|
4252
4430
|
comment: "Deprecated",
|
|
4253
|
-
key: "{semantic.font.text-case.none}",
|
|
4254
4431
|
},
|
|
4255
4432
|
uppercase: {
|
|
4433
|
+
key: "{semantic.font.text-case.uppercase}",
|
|
4256
4434
|
value: "uppercase",
|
|
4257
4435
|
type: "textCase",
|
|
4258
4436
|
description: "Deprecated",
|
|
@@ -4265,6 +4443,7 @@ export default {
|
|
|
4265
4443
|
description: "Deprecated",
|
|
4266
4444
|
filePath: "src/tokens/semantic/font.json",
|
|
4267
4445
|
isSource: true,
|
|
4446
|
+
key: "{semantic.font.text-case.uppercase}",
|
|
4268
4447
|
name: "calcite-semantic-font-text-case-uppercase",
|
|
4269
4448
|
path: ["semantic", "font", "text-case", "uppercase"],
|
|
4270
4449
|
comment: "Deprecated",
|
|
@@ -4290,13 +4469,14 @@ export default {
|
|
|
4290
4469
|
attributes: {
|
|
4291
4470
|
category: "font",
|
|
4292
4471
|
},
|
|
4472
|
+
key: "{semantic.font.text-case.uppercase}",
|
|
4293
4473
|
},
|
|
4294
4474
|
name: "Font Text Case Uppercase",
|
|
4295
4475
|
path: ["semantic", "font", "text-case", "uppercase"],
|
|
4296
4476
|
comment: "Deprecated",
|
|
4297
|
-
key: "{semantic.font.text-case.uppercase}",
|
|
4298
4477
|
},
|
|
4299
4478
|
lowercase: {
|
|
4479
|
+
key: "{semantic.font.text-case.lowercase}",
|
|
4300
4480
|
value: "lowercase",
|
|
4301
4481
|
type: "textCase",
|
|
4302
4482
|
description: "Deprecated",
|
|
@@ -4309,6 +4489,7 @@ export default {
|
|
|
4309
4489
|
description: "Deprecated",
|
|
4310
4490
|
filePath: "src/tokens/semantic/font.json",
|
|
4311
4491
|
isSource: true,
|
|
4492
|
+
key: "{semantic.font.text-case.lowercase}",
|
|
4312
4493
|
name: "calcite-semantic-font-text-case-lowercase",
|
|
4313
4494
|
path: ["semantic", "font", "text-case", "lowercase"],
|
|
4314
4495
|
comment: "Deprecated",
|
|
@@ -4334,13 +4515,14 @@ export default {
|
|
|
4334
4515
|
attributes: {
|
|
4335
4516
|
category: "font",
|
|
4336
4517
|
},
|
|
4518
|
+
key: "{semantic.font.text-case.lowercase}",
|
|
4337
4519
|
},
|
|
4338
4520
|
name: "Font Text Case Lowercase",
|
|
4339
4521
|
path: ["semantic", "font", "text-case", "lowercase"],
|
|
4340
4522
|
comment: "Deprecated",
|
|
4341
|
-
key: "{semantic.font.text-case.lowercase}",
|
|
4342
4523
|
},
|
|
4343
4524
|
capitalize: {
|
|
4525
|
+
key: "{semantic.font.text-case.capitalize}",
|
|
4344
4526
|
value: "capitalize",
|
|
4345
4527
|
type: "textCase",
|
|
4346
4528
|
description: "Deprecated",
|
|
@@ -4353,6 +4535,7 @@ export default {
|
|
|
4353
4535
|
description: "Deprecated",
|
|
4354
4536
|
filePath: "src/tokens/semantic/font.json",
|
|
4355
4537
|
isSource: true,
|
|
4538
|
+
key: "{semantic.font.text-case.capitalize}",
|
|
4356
4539
|
name: "calcite-semantic-font-text-case-capitalize",
|
|
4357
4540
|
path: ["semantic", "font", "text-case", "capitalize"],
|
|
4358
4541
|
comment: "Deprecated",
|
|
@@ -4378,16 +4561,17 @@ export default {
|
|
|
4378
4561
|
attributes: {
|
|
4379
4562
|
category: "font",
|
|
4380
4563
|
},
|
|
4564
|
+
key: "{semantic.font.text-case.capitalize}",
|
|
4381
4565
|
},
|
|
4382
4566
|
name: "Font Text Case Capitalize",
|
|
4383
4567
|
path: ["semantic", "font", "text-case", "capitalize"],
|
|
4384
4568
|
comment: "Deprecated",
|
|
4385
|
-
key: "{semantic.font.text-case.capitalize}",
|
|
4386
4569
|
},
|
|
4387
4570
|
},
|
|
4388
4571
|
},
|
|
4389
4572
|
opacity: {
|
|
4390
4573
|
light: {
|
|
4574
|
+
key: "{semantic.opacity.light}",
|
|
4391
4575
|
value: "0.4",
|
|
4392
4576
|
type: "opacity",
|
|
4393
4577
|
attributes: {
|
|
@@ -4415,12 +4599,13 @@ export default {
|
|
|
4415
4599
|
attributes: {
|
|
4416
4600
|
category: "opacity",
|
|
4417
4601
|
},
|
|
4602
|
+
key: "{semantic.opacity.light}",
|
|
4418
4603
|
},
|
|
4419
4604
|
name: "Opacity Light",
|
|
4420
4605
|
path: ["semantic", "opacity", "light"],
|
|
4421
|
-
key: "{semantic.opacity.light}",
|
|
4422
4606
|
},
|
|
4423
4607
|
half: {
|
|
4608
|
+
key: "{semantic.opacity.half}",
|
|
4424
4609
|
value: "0.5",
|
|
4425
4610
|
type: "opacity",
|
|
4426
4611
|
attributes: {
|
|
@@ -4448,12 +4633,13 @@ export default {
|
|
|
4448
4633
|
attributes: {
|
|
4449
4634
|
category: "opacity",
|
|
4450
4635
|
},
|
|
4636
|
+
key: "{semantic.opacity.half}",
|
|
4451
4637
|
},
|
|
4452
4638
|
name: "Opacity Half",
|
|
4453
4639
|
path: ["semantic", "opacity", "half"],
|
|
4454
|
-
key: "{semantic.opacity.half}",
|
|
4455
4640
|
},
|
|
4456
4641
|
dark: {
|
|
4642
|
+
key: "{semantic.opacity.dark}",
|
|
4457
4643
|
value: "0.85",
|
|
4458
4644
|
type: "opacity",
|
|
4459
4645
|
attributes: {
|
|
@@ -4481,12 +4667,13 @@ export default {
|
|
|
4481
4667
|
attributes: {
|
|
4482
4668
|
category: "opacity",
|
|
4483
4669
|
},
|
|
4670
|
+
key: "{semantic.opacity.dark}",
|
|
4484
4671
|
},
|
|
4485
4672
|
name: "Opacity Dark",
|
|
4486
4673
|
path: ["semantic", "opacity", "dark"],
|
|
4487
|
-
key: "{semantic.opacity.dark}",
|
|
4488
4674
|
},
|
|
4489
4675
|
full: {
|
|
4676
|
+
key: "{semantic.opacity.full}",
|
|
4490
4677
|
value: "1",
|
|
4491
4678
|
type: "opacity",
|
|
4492
4679
|
attributes: {
|
|
@@ -4514,12 +4701,13 @@ export default {
|
|
|
4514
4701
|
attributes: {
|
|
4515
4702
|
category: "opacity",
|
|
4516
4703
|
},
|
|
4704
|
+
key: "{semantic.opacity.full}",
|
|
4517
4705
|
},
|
|
4518
4706
|
name: "Opacity Full",
|
|
4519
4707
|
path: ["semantic", "opacity", "full"],
|
|
4520
|
-
key: "{semantic.opacity.full}",
|
|
4521
4708
|
},
|
|
4522
4709
|
disabled: {
|
|
4710
|
+
key: "{semantic.opacity.disabled}",
|
|
4523
4711
|
value: "0.5",
|
|
4524
4712
|
type: "opacity",
|
|
4525
4713
|
attributes: {
|
|
@@ -4547,14 +4735,15 @@ export default {
|
|
|
4547
4735
|
attributes: {
|
|
4548
4736
|
category: "opacity",
|
|
4549
4737
|
},
|
|
4738
|
+
key: "{semantic.opacity.disabled}",
|
|
4550
4739
|
},
|
|
4551
4740
|
name: "Opacity Disabled",
|
|
4552
4741
|
path: ["semantic", "opacity", "disabled"],
|
|
4553
|
-
key: "{semantic.opacity.disabled}",
|
|
4554
4742
|
},
|
|
4555
4743
|
},
|
|
4556
4744
|
shadow: {
|
|
4557
4745
|
none: {
|
|
4746
|
+
key: "{semantic.shadow.none}",
|
|
4558
4747
|
value: {
|
|
4559
4748
|
blur: "0",
|
|
4560
4749
|
spread: "0",
|
|
@@ -4583,23 +4772,18 @@ export default {
|
|
|
4583
4772
|
filePath: "src/tokens/semantic/shadow.json",
|
|
4584
4773
|
isSource: true,
|
|
4585
4774
|
original: {
|
|
4586
|
-
value: {
|
|
4587
|
-
blur: "0",
|
|
4588
|
-
spread: "0",
|
|
4589
|
-
color: "rgba({core.color.neutral.blk-240}, {core.opacity.0})",
|
|
4590
|
-
offsetX: "0",
|
|
4591
|
-
offsetY: "0",
|
|
4592
|
-
},
|
|
4775
|
+
value: "{core.shadow.0}",
|
|
4593
4776
|
type: "shadow",
|
|
4594
4777
|
attributes: {
|
|
4595
4778
|
category: "shadow",
|
|
4596
4779
|
},
|
|
4780
|
+
key: "{semantic.shadow.none}",
|
|
4597
4781
|
},
|
|
4598
4782
|
name: "Shadow None",
|
|
4599
4783
|
path: ["semantic", "shadow", "none"],
|
|
4600
|
-
key: "{semantic.shadow.none}",
|
|
4601
4784
|
},
|
|
4602
4785
|
sm: {
|
|
4786
|
+
key: "{semantic.shadow.sm}",
|
|
4603
4787
|
value: [
|
|
4604
4788
|
{
|
|
4605
4789
|
blur: "8px",
|
|
@@ -4642,12 +4826,13 @@ export default {
|
|
|
4642
4826
|
attributes: {
|
|
4643
4827
|
category: "shadow",
|
|
4644
4828
|
},
|
|
4829
|
+
key: "{semantic.shadow.sm}",
|
|
4645
4830
|
},
|
|
4646
4831
|
name: "Shadow Sm",
|
|
4647
4832
|
path: ["semantic", "shadow", "sm"],
|
|
4648
|
-
key: "{semantic.shadow.sm}",
|
|
4649
4833
|
},
|
|
4650
4834
|
md: {
|
|
4835
|
+
key: "{semantic.shadow.md}",
|
|
4651
4836
|
value: [
|
|
4652
4837
|
{
|
|
4653
4838
|
blur: "20px",
|
|
@@ -4690,18 +4875,18 @@ export default {
|
|
|
4690
4875
|
attributes: {
|
|
4691
4876
|
category: "shadow",
|
|
4692
4877
|
},
|
|
4878
|
+
key: "{semantic.shadow.md}",
|
|
4693
4879
|
},
|
|
4694
4880
|
name: "Shadow Md",
|
|
4695
4881
|
path: ["semantic", "shadow", "md"],
|
|
4696
|
-
key: "{semantic.shadow.md}",
|
|
4697
4882
|
},
|
|
4698
4883
|
},
|
|
4699
4884
|
size: {
|
|
4700
4885
|
fixed: {
|
|
4701
4886
|
xxxs: {
|
|
4887
|
+
key: "{semantic.size.fixed.xxxs}",
|
|
4702
4888
|
value: "2px",
|
|
4703
4889
|
type: "dimension",
|
|
4704
|
-
description: "deprecated",
|
|
4705
4890
|
attributes: {
|
|
4706
4891
|
category: "size",
|
|
4707
4892
|
type: "dimension",
|
|
@@ -4711,6 +4896,7 @@ export default {
|
|
|
4711
4896
|
description: "deprecated",
|
|
4712
4897
|
filePath: "src/tokens/semantic/size.json",
|
|
4713
4898
|
isSource: true,
|
|
4899
|
+
key: "{semantic.size.fixed.xxxs}",
|
|
4714
4900
|
name: "calcite-semantic-size-fixed-xxxs",
|
|
4715
4901
|
path: ["semantic", "size", "fixed", "xxxs"],
|
|
4716
4902
|
comment: "deprecated",
|
|
@@ -4727,25 +4913,26 @@ export default {
|
|
|
4727
4913
|
type: "dimension",
|
|
4728
4914
|
},
|
|
4729
4915
|
},
|
|
4916
|
+
description: "deprecated",
|
|
4730
4917
|
filePath: "src/tokens/semantic/size.json",
|
|
4731
4918
|
isSource: true,
|
|
4732
4919
|
original: {
|
|
4733
4920
|
value: "{core.size.default.2}",
|
|
4734
4921
|
type: "dimension",
|
|
4735
|
-
description: "deprecated",
|
|
4736
4922
|
attributes: {
|
|
4737
4923
|
category: "size",
|
|
4738
4924
|
},
|
|
4925
|
+
description: "deprecated",
|
|
4926
|
+
key: "{semantic.size.fixed.xxxs}",
|
|
4739
4927
|
},
|
|
4740
4928
|
name: "Size Fixed Xxxs",
|
|
4741
4929
|
path: ["semantic", "size", "fixed", "xxxs"],
|
|
4742
4930
|
comment: "deprecated",
|
|
4743
|
-
key: "{semantic.size.fixed.xxxs}",
|
|
4744
4931
|
},
|
|
4745
4932
|
xxs: {
|
|
4933
|
+
key: "{semantic.size.fixed.xxs}",
|
|
4746
4934
|
value: "4px",
|
|
4747
4935
|
type: "dimension",
|
|
4748
|
-
description: "deprecated",
|
|
4749
4936
|
attributes: {
|
|
4750
4937
|
category: "size",
|
|
4751
4938
|
type: "dimension",
|
|
@@ -4755,6 +4942,7 @@ export default {
|
|
|
4755
4942
|
description: "deprecated",
|
|
4756
4943
|
filePath: "src/tokens/semantic/size.json",
|
|
4757
4944
|
isSource: true,
|
|
4945
|
+
key: "{semantic.size.fixed.xxs}",
|
|
4758
4946
|
name: "calcite-semantic-size-fixed-xxs",
|
|
4759
4947
|
path: ["semantic", "size", "fixed", "xxs"],
|
|
4760
4948
|
comment: "deprecated",
|
|
@@ -4771,25 +4959,26 @@ export default {
|
|
|
4771
4959
|
type: "dimension",
|
|
4772
4960
|
},
|
|
4773
4961
|
},
|
|
4962
|
+
description: "deprecated",
|
|
4774
4963
|
filePath: "src/tokens/semantic/size.json",
|
|
4775
4964
|
isSource: true,
|
|
4776
4965
|
original: {
|
|
4777
4966
|
value: "{core.size.default.4}",
|
|
4778
4967
|
type: "dimension",
|
|
4779
|
-
description: "deprecated",
|
|
4780
4968
|
attributes: {
|
|
4781
4969
|
category: "size",
|
|
4782
4970
|
},
|
|
4971
|
+
description: "deprecated",
|
|
4972
|
+
key: "{semantic.size.fixed.xxs}",
|
|
4783
4973
|
},
|
|
4784
4974
|
name: "Size Fixed Xxs",
|
|
4785
4975
|
path: ["semantic", "size", "fixed", "xxs"],
|
|
4786
4976
|
comment: "deprecated",
|
|
4787
|
-
key: "{semantic.size.fixed.xxs}",
|
|
4788
4977
|
},
|
|
4789
4978
|
xs: {
|
|
4979
|
+
key: "{semantic.size.fixed.xs}",
|
|
4790
4980
|
value: "6px",
|
|
4791
4981
|
type: "dimension",
|
|
4792
|
-
description: "deprecated",
|
|
4793
4982
|
attributes: {
|
|
4794
4983
|
category: "size",
|
|
4795
4984
|
type: "dimension",
|
|
@@ -4799,6 +4988,7 @@ export default {
|
|
|
4799
4988
|
description: "deprecated",
|
|
4800
4989
|
filePath: "src/tokens/semantic/size.json",
|
|
4801
4990
|
isSource: true,
|
|
4991
|
+
key: "{semantic.size.fixed.xs}",
|
|
4802
4992
|
name: "calcite-semantic-size-fixed-xs",
|
|
4803
4993
|
path: ["semantic", "size", "fixed", "xs"],
|
|
4804
4994
|
comment: "deprecated",
|
|
@@ -4815,25 +5005,26 @@ export default {
|
|
|
4815
5005
|
type: "dimension",
|
|
4816
5006
|
},
|
|
4817
5007
|
},
|
|
5008
|
+
description: "deprecated",
|
|
4818
5009
|
filePath: "src/tokens/semantic/size.json",
|
|
4819
5010
|
isSource: true,
|
|
4820
5011
|
original: {
|
|
4821
5012
|
value: "{core.size.default.6}",
|
|
4822
5013
|
type: "dimension",
|
|
4823
|
-
description: "deprecated",
|
|
4824
5014
|
attributes: {
|
|
4825
5015
|
category: "size",
|
|
4826
5016
|
},
|
|
5017
|
+
description: "deprecated",
|
|
5018
|
+
key: "{semantic.size.fixed.xs}",
|
|
4827
5019
|
},
|
|
4828
5020
|
name: "Size Fixed Xs",
|
|
4829
5021
|
path: ["semantic", "size", "fixed", "xs"],
|
|
4830
5022
|
comment: "deprecated",
|
|
4831
|
-
key: "{semantic.size.fixed.xs}",
|
|
4832
5023
|
},
|
|
4833
5024
|
sm: {
|
|
5025
|
+
key: "{semantic.size.fixed.sm}",
|
|
4834
5026
|
value: "8px",
|
|
4835
5027
|
type: "dimension",
|
|
4836
|
-
description: "deprecated",
|
|
4837
5028
|
attributes: {
|
|
4838
5029
|
category: "size",
|
|
4839
5030
|
type: "dimension",
|
|
@@ -4843,6 +5034,7 @@ export default {
|
|
|
4843
5034
|
description: "deprecated",
|
|
4844
5035
|
filePath: "src/tokens/semantic/size.json",
|
|
4845
5036
|
isSource: true,
|
|
5037
|
+
key: "{semantic.size.fixed.sm}",
|
|
4846
5038
|
name: "calcite-semantic-size-fixed-sm",
|
|
4847
5039
|
path: ["semantic", "size", "fixed", "sm"],
|
|
4848
5040
|
comment: "deprecated",
|
|
@@ -4859,25 +5051,26 @@ export default {
|
|
|
4859
5051
|
type: "dimension",
|
|
4860
5052
|
},
|
|
4861
5053
|
},
|
|
5054
|
+
description: "deprecated",
|
|
4862
5055
|
filePath: "src/tokens/semantic/size.json",
|
|
4863
5056
|
isSource: true,
|
|
4864
5057
|
original: {
|
|
4865
5058
|
value: "{core.size.default.8}",
|
|
4866
5059
|
type: "dimension",
|
|
4867
|
-
description: "deprecated",
|
|
4868
5060
|
attributes: {
|
|
4869
5061
|
category: "size",
|
|
4870
5062
|
},
|
|
5063
|
+
description: "deprecated",
|
|
5064
|
+
key: "{semantic.size.fixed.sm}",
|
|
4871
5065
|
},
|
|
4872
5066
|
name: "Size Fixed Sm",
|
|
4873
5067
|
path: ["semantic", "size", "fixed", "sm"],
|
|
4874
5068
|
comment: "deprecated",
|
|
4875
|
-
key: "{semantic.size.fixed.sm}",
|
|
4876
5069
|
},
|
|
4877
5070
|
"sm+": {
|
|
5071
|
+
key: "{semantic.size.fixed.sm+}",
|
|
4878
5072
|
value: "10px",
|
|
4879
5073
|
type: "dimension",
|
|
4880
|
-
description: "deprecated",
|
|
4881
5074
|
attributes: {
|
|
4882
5075
|
category: "size",
|
|
4883
5076
|
type: "dimension",
|
|
@@ -4887,6 +5080,7 @@ export default {
|
|
|
4887
5080
|
description: "deprecated",
|
|
4888
5081
|
filePath: "src/tokens/semantic/size.json",
|
|
4889
5082
|
isSource: true,
|
|
5083
|
+
key: "{semantic.size.fixed.sm+}",
|
|
4890
5084
|
name: "calcite-semantic-size-fixed-sm",
|
|
4891
5085
|
path: ["semantic", "size", "fixed", "sm+"],
|
|
4892
5086
|
comment: "deprecated",
|
|
@@ -4903,25 +5097,26 @@ export default {
|
|
|
4903
5097
|
type: "dimension",
|
|
4904
5098
|
},
|
|
4905
5099
|
},
|
|
5100
|
+
description: "deprecated",
|
|
4906
5101
|
filePath: "src/tokens/semantic/size.json",
|
|
4907
5102
|
isSource: true,
|
|
4908
5103
|
original: {
|
|
4909
5104
|
value: "{core.size.default.10}",
|
|
4910
5105
|
type: "dimension",
|
|
4911
|
-
description: "deprecated",
|
|
4912
5106
|
attributes: {
|
|
4913
5107
|
category: "size",
|
|
4914
5108
|
},
|
|
5109
|
+
description: "deprecated",
|
|
5110
|
+
key: "{semantic.size.fixed.sm+}",
|
|
4915
5111
|
},
|
|
4916
5112
|
name: "Size Fixed Sm Plus",
|
|
4917
5113
|
path: ["semantic", "size", "fixed", "sm+"],
|
|
4918
5114
|
comment: "deprecated",
|
|
4919
|
-
key: "{semantic.size.fixed.sm+}",
|
|
4920
5115
|
},
|
|
4921
5116
|
md: {
|
|
5117
|
+
key: "{semantic.size.fixed.md}",
|
|
4922
5118
|
value: "12px",
|
|
4923
5119
|
type: "dimension",
|
|
4924
|
-
description: "deprecated",
|
|
4925
5120
|
attributes: {
|
|
4926
5121
|
category: "size",
|
|
4927
5122
|
type: "dimension",
|
|
@@ -4931,6 +5126,7 @@ export default {
|
|
|
4931
5126
|
description: "deprecated",
|
|
4932
5127
|
filePath: "src/tokens/semantic/size.json",
|
|
4933
5128
|
isSource: true,
|
|
5129
|
+
key: "{semantic.size.fixed.md}",
|
|
4934
5130
|
name: "calcite-semantic-size-fixed-md",
|
|
4935
5131
|
path: ["semantic", "size", "fixed", "md"],
|
|
4936
5132
|
comment: "deprecated",
|
|
@@ -4947,25 +5143,26 @@ export default {
|
|
|
4947
5143
|
type: "dimension",
|
|
4948
5144
|
},
|
|
4949
5145
|
},
|
|
5146
|
+
description: "deprecated",
|
|
4950
5147
|
filePath: "src/tokens/semantic/size.json",
|
|
4951
5148
|
isSource: true,
|
|
4952
5149
|
original: {
|
|
4953
5150
|
value: "{core.size.default.12}",
|
|
4954
5151
|
type: "dimension",
|
|
4955
|
-
description: "deprecated",
|
|
4956
5152
|
attributes: {
|
|
4957
5153
|
category: "size",
|
|
4958
5154
|
},
|
|
5155
|
+
description: "deprecated",
|
|
5156
|
+
key: "{semantic.size.fixed.md}",
|
|
4959
5157
|
},
|
|
4960
5158
|
name: "Size Fixed Md",
|
|
4961
5159
|
path: ["semantic", "size", "fixed", "md"],
|
|
4962
5160
|
comment: "deprecated",
|
|
4963
|
-
key: "{semantic.size.fixed.md}",
|
|
4964
5161
|
},
|
|
4965
5162
|
"md+": {
|
|
5163
|
+
key: "{semantic.size.fixed.md+}",
|
|
4966
5164
|
value: "14px",
|
|
4967
5165
|
type: "dimension",
|
|
4968
|
-
description: "deprecated",
|
|
4969
5166
|
attributes: {
|
|
4970
5167
|
category: "size",
|
|
4971
5168
|
type: "dimension",
|
|
@@ -4975,6 +5172,7 @@ export default {
|
|
|
4975
5172
|
description: "deprecated",
|
|
4976
5173
|
filePath: "src/tokens/semantic/size.json",
|
|
4977
5174
|
isSource: true,
|
|
5175
|
+
key: "{semantic.size.fixed.md+}",
|
|
4978
5176
|
name: "calcite-semantic-size-fixed-md",
|
|
4979
5177
|
path: ["semantic", "size", "fixed", "md+"],
|
|
4980
5178
|
comment: "deprecated",
|
|
@@ -4991,25 +5189,26 @@ export default {
|
|
|
4991
5189
|
type: "dimension",
|
|
4992
5190
|
},
|
|
4993
5191
|
},
|
|
5192
|
+
description: "deprecated",
|
|
4994
5193
|
filePath: "src/tokens/semantic/size.json",
|
|
4995
5194
|
isSource: true,
|
|
4996
5195
|
original: {
|
|
4997
5196
|
value: "{core.size.default.14}",
|
|
4998
5197
|
type: "dimension",
|
|
4999
|
-
description: "deprecated",
|
|
5000
5198
|
attributes: {
|
|
5001
5199
|
category: "size",
|
|
5002
5200
|
},
|
|
5201
|
+
description: "deprecated",
|
|
5202
|
+
key: "{semantic.size.fixed.md+}",
|
|
5003
5203
|
},
|
|
5004
5204
|
name: "Size Fixed Md Plus",
|
|
5005
5205
|
path: ["semantic", "size", "fixed", "md+"],
|
|
5006
5206
|
comment: "deprecated",
|
|
5007
|
-
key: "{semantic.size.fixed.md+}",
|
|
5008
5207
|
},
|
|
5009
5208
|
lg: {
|
|
5209
|
+
key: "{semantic.size.fixed.lg}",
|
|
5010
5210
|
value: "16px",
|
|
5011
5211
|
type: "dimension",
|
|
5012
|
-
description: "deprecated",
|
|
5013
5212
|
attributes: {
|
|
5014
5213
|
category: "size",
|
|
5015
5214
|
type: "dimension",
|
|
@@ -5019,6 +5218,7 @@ export default {
|
|
|
5019
5218
|
description: "deprecated",
|
|
5020
5219
|
filePath: "src/tokens/semantic/size.json",
|
|
5021
5220
|
isSource: true,
|
|
5221
|
+
key: "{semantic.size.fixed.lg}",
|
|
5022
5222
|
name: "calcite-semantic-size-fixed-lg",
|
|
5023
5223
|
path: ["semantic", "size", "fixed", "lg"],
|
|
5024
5224
|
comment: "deprecated",
|
|
@@ -5035,25 +5235,26 @@ export default {
|
|
|
5035
5235
|
type: "dimension",
|
|
5036
5236
|
},
|
|
5037
5237
|
},
|
|
5238
|
+
description: "deprecated",
|
|
5038
5239
|
filePath: "src/tokens/semantic/size.json",
|
|
5039
5240
|
isSource: true,
|
|
5040
5241
|
original: {
|
|
5041
5242
|
value: "{core.size.default.16}",
|
|
5042
5243
|
type: "dimension",
|
|
5043
|
-
description: "deprecated",
|
|
5044
5244
|
attributes: {
|
|
5045
5245
|
category: "size",
|
|
5046
5246
|
},
|
|
5247
|
+
description: "deprecated",
|
|
5248
|
+
key: "{semantic.size.fixed.lg}",
|
|
5047
5249
|
},
|
|
5048
5250
|
name: "Size Fixed Lg",
|
|
5049
5251
|
path: ["semantic", "size", "fixed", "lg"],
|
|
5050
5252
|
comment: "deprecated",
|
|
5051
|
-
key: "{semantic.size.fixed.lg}",
|
|
5052
5253
|
},
|
|
5053
5254
|
xl: {
|
|
5255
|
+
key: "{semantic.size.fixed.xl}",
|
|
5054
5256
|
value: "20px",
|
|
5055
5257
|
type: "dimension",
|
|
5056
|
-
description: "deprecated",
|
|
5057
5258
|
attributes: {
|
|
5058
5259
|
category: "size",
|
|
5059
5260
|
type: "dimension",
|
|
@@ -5063,6 +5264,7 @@ export default {
|
|
|
5063
5264
|
description: "deprecated",
|
|
5064
5265
|
filePath: "src/tokens/semantic/size.json",
|
|
5065
5266
|
isSource: true,
|
|
5267
|
+
key: "{semantic.size.fixed.xl}",
|
|
5066
5268
|
name: "calcite-semantic-size-fixed-xl",
|
|
5067
5269
|
path: ["semantic", "size", "fixed", "xl"],
|
|
5068
5270
|
comment: "deprecated",
|
|
@@ -5079,25 +5281,26 @@ export default {
|
|
|
5079
5281
|
type: "dimension",
|
|
5080
5282
|
},
|
|
5081
5283
|
},
|
|
5284
|
+
description: "deprecated",
|
|
5082
5285
|
filePath: "src/tokens/semantic/size.json",
|
|
5083
5286
|
isSource: true,
|
|
5084
5287
|
original: {
|
|
5085
5288
|
value: "{core.size.default.20}",
|
|
5086
5289
|
type: "dimension",
|
|
5087
|
-
description: "deprecated",
|
|
5088
5290
|
attributes: {
|
|
5089
5291
|
category: "size",
|
|
5090
5292
|
},
|
|
5293
|
+
description: "deprecated",
|
|
5294
|
+
key: "{semantic.size.fixed.xl}",
|
|
5091
5295
|
},
|
|
5092
5296
|
name: "Size Fixed Xl",
|
|
5093
5297
|
path: ["semantic", "size", "fixed", "xl"],
|
|
5094
5298
|
comment: "deprecated",
|
|
5095
|
-
key: "{semantic.size.fixed.xl}",
|
|
5096
5299
|
},
|
|
5097
5300
|
xxl: {
|
|
5301
|
+
key: "{semantic.size.fixed.xxl}",
|
|
5098
5302
|
value: "24px",
|
|
5099
5303
|
type: "dimension",
|
|
5100
|
-
description: "deprecated",
|
|
5101
5304
|
attributes: {
|
|
5102
5305
|
category: "size",
|
|
5103
5306
|
type: "dimension",
|
|
@@ -5107,6 +5310,7 @@ export default {
|
|
|
5107
5310
|
description: "deprecated",
|
|
5108
5311
|
filePath: "src/tokens/semantic/size.json",
|
|
5109
5312
|
isSource: true,
|
|
5313
|
+
key: "{semantic.size.fixed.xxl}",
|
|
5110
5314
|
name: "calcite-semantic-size-fixed-xxl",
|
|
5111
5315
|
path: ["semantic", "size", "fixed", "xxl"],
|
|
5112
5316
|
comment: "deprecated",
|
|
@@ -5123,25 +5327,26 @@ export default {
|
|
|
5123
5327
|
type: "dimension",
|
|
5124
5328
|
},
|
|
5125
5329
|
},
|
|
5330
|
+
description: "deprecated",
|
|
5126
5331
|
filePath: "src/tokens/semantic/size.json",
|
|
5127
5332
|
isSource: true,
|
|
5128
5333
|
original: {
|
|
5129
5334
|
value: "{core.size.default.24}",
|
|
5130
5335
|
type: "dimension",
|
|
5131
|
-
description: "deprecated",
|
|
5132
5336
|
attributes: {
|
|
5133
5337
|
category: "size",
|
|
5134
5338
|
},
|
|
5339
|
+
description: "deprecated",
|
|
5340
|
+
key: "{semantic.size.fixed.xxl}",
|
|
5135
5341
|
},
|
|
5136
5342
|
name: "Size Fixed Xxl",
|
|
5137
5343
|
path: ["semantic", "size", "fixed", "xxl"],
|
|
5138
5344
|
comment: "deprecated",
|
|
5139
|
-
key: "{semantic.size.fixed.xxl}",
|
|
5140
5345
|
},
|
|
5141
5346
|
xxxl: {
|
|
5347
|
+
key: "{semantic.size.fixed.xxxl}",
|
|
5142
5348
|
value: "32px",
|
|
5143
5349
|
type: "dimension",
|
|
5144
|
-
description: "deprecated",
|
|
5145
5350
|
attributes: {
|
|
5146
5351
|
category: "size",
|
|
5147
5352
|
type: "dimension",
|
|
@@ -5151,6 +5356,7 @@ export default {
|
|
|
5151
5356
|
description: "deprecated",
|
|
5152
5357
|
filePath: "src/tokens/semantic/size.json",
|
|
5153
5358
|
isSource: true,
|
|
5359
|
+
key: "{semantic.size.fixed.xxxl}",
|
|
5154
5360
|
name: "calcite-semantic-size-fixed-xxxl",
|
|
5155
5361
|
path: ["semantic", "size", "fixed", "xxxl"],
|
|
5156
5362
|
comment: "deprecated",
|
|
@@ -5167,24 +5373,26 @@ export default {
|
|
|
5167
5373
|
type: "dimension",
|
|
5168
5374
|
},
|
|
5169
5375
|
},
|
|
5376
|
+
description: "deprecated",
|
|
5170
5377
|
filePath: "src/tokens/semantic/size.json",
|
|
5171
5378
|
isSource: true,
|
|
5172
5379
|
original: {
|
|
5173
5380
|
value: "{core.size.default.32}",
|
|
5174
5381
|
type: "dimension",
|
|
5175
|
-
description: "deprecated",
|
|
5176
5382
|
attributes: {
|
|
5177
5383
|
category: "size",
|
|
5178
5384
|
},
|
|
5385
|
+
description: "deprecated",
|
|
5386
|
+
key: "{semantic.size.fixed.xxxl}",
|
|
5179
5387
|
},
|
|
5180
5388
|
name: "Size Fixed Xxxl",
|
|
5181
5389
|
path: ["semantic", "size", "fixed", "xxxl"],
|
|
5182
5390
|
comment: "deprecated",
|
|
5183
|
-
key: "{semantic.size.fixed.xxxl}",
|
|
5184
5391
|
},
|
|
5185
5392
|
},
|
|
5186
5393
|
default: {
|
|
5187
5394
|
px: {
|
|
5395
|
+
key: "{semantic.size.default.px}",
|
|
5188
5396
|
value: "1px",
|
|
5189
5397
|
type: "dimension",
|
|
5190
5398
|
attributes: {
|
|
@@ -5213,12 +5421,13 @@ export default {
|
|
|
5213
5421
|
attributes: {
|
|
5214
5422
|
category: "size",
|
|
5215
5423
|
},
|
|
5424
|
+
key: "{semantic.size.default.px}",
|
|
5216
5425
|
},
|
|
5217
5426
|
name: "Size Px",
|
|
5218
5427
|
path: ["semantic", "size", "default", "px"],
|
|
5219
|
-
key: "{semantic.size.default.px}",
|
|
5220
5428
|
},
|
|
5221
5429
|
xxxs: {
|
|
5430
|
+
key: "{semantic.size.default.xxxs}",
|
|
5222
5431
|
value: "0.75rem",
|
|
5223
5432
|
type: "dimension",
|
|
5224
5433
|
attributes: {
|
|
@@ -5247,12 +5456,13 @@ export default {
|
|
|
5247
5456
|
attributes: {
|
|
5248
5457
|
category: "size",
|
|
5249
5458
|
},
|
|
5459
|
+
key: "{semantic.size.default.xxxs}",
|
|
5250
5460
|
},
|
|
5251
5461
|
name: "Size Xxxs",
|
|
5252
5462
|
path: ["semantic", "size", "default", "xxxs"],
|
|
5253
|
-
key: "{semantic.size.default.xxxs}",
|
|
5254
5463
|
},
|
|
5255
5464
|
xxs: {
|
|
5465
|
+
key: "{semantic.size.default.xxs}",
|
|
5256
5466
|
value: "0.875rem",
|
|
5257
5467
|
type: "dimension",
|
|
5258
5468
|
attributes: {
|
|
@@ -5281,12 +5491,13 @@ export default {
|
|
|
5281
5491
|
attributes: {
|
|
5282
5492
|
category: "size",
|
|
5283
5493
|
},
|
|
5494
|
+
key: "{semantic.size.default.xxs}",
|
|
5284
5495
|
},
|
|
5285
5496
|
name: "Size Xxs",
|
|
5286
5497
|
path: ["semantic", "size", "default", "xxs"],
|
|
5287
|
-
key: "{semantic.size.default.xxs}",
|
|
5288
5498
|
},
|
|
5289
5499
|
xs: {
|
|
5500
|
+
key: "{semantic.size.default.xs}",
|
|
5290
5501
|
value: "1rem",
|
|
5291
5502
|
type: "dimension",
|
|
5292
5503
|
attributes: {
|
|
@@ -5315,12 +5526,13 @@ export default {
|
|
|
5315
5526
|
attributes: {
|
|
5316
5527
|
category: "size",
|
|
5317
5528
|
},
|
|
5529
|
+
key: "{semantic.size.default.xs}",
|
|
5318
5530
|
},
|
|
5319
5531
|
name: "Size Xs",
|
|
5320
5532
|
path: ["semantic", "size", "default", "xs"],
|
|
5321
|
-
key: "{semantic.size.default.xs}",
|
|
5322
5533
|
},
|
|
5323
5534
|
sm: {
|
|
5535
|
+
key: "{semantic.size.default.sm}",
|
|
5324
5536
|
value: "1.5rem",
|
|
5325
5537
|
type: "dimension",
|
|
5326
5538
|
attributes: {
|
|
@@ -5349,12 +5561,13 @@ export default {
|
|
|
5349
5561
|
attributes: {
|
|
5350
5562
|
category: "size",
|
|
5351
5563
|
},
|
|
5564
|
+
key: "{semantic.size.default.sm}",
|
|
5352
5565
|
},
|
|
5353
5566
|
name: "Size Sm",
|
|
5354
5567
|
path: ["semantic", "size", "default", "sm"],
|
|
5355
|
-
key: "{semantic.size.default.sm}",
|
|
5356
5568
|
},
|
|
5357
5569
|
md: {
|
|
5570
|
+
key: "{semantic.size.default.md}",
|
|
5358
5571
|
value: "2rem",
|
|
5359
5572
|
type: "dimension",
|
|
5360
5573
|
attributes: {
|
|
@@ -5383,12 +5596,13 @@ export default {
|
|
|
5383
5596
|
attributes: {
|
|
5384
5597
|
category: "size",
|
|
5385
5598
|
},
|
|
5599
|
+
key: "{semantic.size.default.md}",
|
|
5386
5600
|
},
|
|
5387
5601
|
name: "Size Md",
|
|
5388
5602
|
path: ["semantic", "size", "default", "md"],
|
|
5389
|
-
key: "{semantic.size.default.md}",
|
|
5390
5603
|
},
|
|
5391
5604
|
lg: {
|
|
5605
|
+
key: "{semantic.size.default.lg}",
|
|
5392
5606
|
value: "2.75rem",
|
|
5393
5607
|
type: "dimension",
|
|
5394
5608
|
attributes: {
|
|
@@ -5417,12 +5631,13 @@ export default {
|
|
|
5417
5631
|
attributes: {
|
|
5418
5632
|
category: "size",
|
|
5419
5633
|
},
|
|
5634
|
+
key: "{semantic.size.default.lg}",
|
|
5420
5635
|
},
|
|
5421
5636
|
name: "Size Lg",
|
|
5422
5637
|
path: ["semantic", "size", "default", "lg"],
|
|
5423
|
-
key: "{semantic.size.default.lg}",
|
|
5424
5638
|
},
|
|
5425
5639
|
xl: {
|
|
5640
|
+
key: "{semantic.size.default.xl}",
|
|
5426
5641
|
value: "3rem",
|
|
5427
5642
|
type: "dimension",
|
|
5428
5643
|
attributes: {
|
|
@@ -5451,12 +5666,13 @@ export default {
|
|
|
5451
5666
|
attributes: {
|
|
5452
5667
|
category: "size",
|
|
5453
5668
|
},
|
|
5669
|
+
key: "{semantic.size.default.xl}",
|
|
5454
5670
|
},
|
|
5455
5671
|
name: "Size Xl",
|
|
5456
5672
|
path: ["semantic", "size", "default", "xl"],
|
|
5457
|
-
key: "{semantic.size.default.xl}",
|
|
5458
5673
|
},
|
|
5459
5674
|
xxl: {
|
|
5675
|
+
key: "{semantic.size.default.xxl}",
|
|
5460
5676
|
value: "4rem",
|
|
5461
5677
|
type: "dimension",
|
|
5462
5678
|
attributes: {
|
|
@@ -5485,12 +5701,13 @@ export default {
|
|
|
5485
5701
|
attributes: {
|
|
5486
5702
|
category: "size",
|
|
5487
5703
|
},
|
|
5704
|
+
key: "{semantic.size.default.xxl}",
|
|
5488
5705
|
},
|
|
5489
5706
|
name: "Size Xxl",
|
|
5490
5707
|
path: ["semantic", "size", "default", "xxl"],
|
|
5491
|
-
key: "{semantic.size.default.xxl}",
|
|
5492
5708
|
},
|
|
5493
5709
|
xxxl: {
|
|
5710
|
+
key: "{semantic.size.default.xxxl}",
|
|
5494
5711
|
value: "6rem",
|
|
5495
5712
|
type: "dimension",
|
|
5496
5713
|
attributes: {
|
|
@@ -5519,19 +5736,19 @@ export default {
|
|
|
5519
5736
|
attributes: {
|
|
5520
5737
|
category: "size",
|
|
5521
5738
|
},
|
|
5739
|
+
key: "{semantic.size.default.xxxl}",
|
|
5522
5740
|
},
|
|
5523
5741
|
name: "Size Xxxl",
|
|
5524
5742
|
path: ["semantic", "size", "default", "xxxl"],
|
|
5525
|
-
key: "{semantic.size.default.xxxl}",
|
|
5526
5743
|
},
|
|
5527
5744
|
},
|
|
5528
5745
|
},
|
|
5529
5746
|
spacing: {
|
|
5530
5747
|
fixed: {
|
|
5531
5748
|
xxs: {
|
|
5749
|
+
key: "{semantic.spacing.fixed.xxs}",
|
|
5532
5750
|
value: "4px",
|
|
5533
5751
|
type: "dimension",
|
|
5534
|
-
description: "deprecated",
|
|
5535
5752
|
attributes: {
|
|
5536
5753
|
category: "space",
|
|
5537
5754
|
type: "dimension",
|
|
@@ -5541,6 +5758,7 @@ export default {
|
|
|
5541
5758
|
description: "deprecated",
|
|
5542
5759
|
filePath: "src/tokens/semantic/space.json",
|
|
5543
5760
|
isSource: true,
|
|
5761
|
+
key: "{semantic.spacing.fixed.xxs}",
|
|
5544
5762
|
name: "calcite-semantic-spacing-fixed-xxs",
|
|
5545
5763
|
path: ["semantic", "spacing", "fixed", "xxs"],
|
|
5546
5764
|
comment: "deprecated",
|
|
@@ -5557,25 +5775,26 @@ export default {
|
|
|
5557
5775
|
type: "dimension",
|
|
5558
5776
|
},
|
|
5559
5777
|
},
|
|
5778
|
+
description: "deprecated",
|
|
5560
5779
|
filePath: "src/tokens/semantic/space.json",
|
|
5561
5780
|
isSource: true,
|
|
5562
5781
|
original: {
|
|
5563
5782
|
value: "{core.size.default.4}",
|
|
5564
5783
|
type: "dimension",
|
|
5565
|
-
description: "deprecated",
|
|
5566
5784
|
attributes: {
|
|
5567
5785
|
category: "space",
|
|
5568
5786
|
},
|
|
5787
|
+
description: "deprecated",
|
|
5788
|
+
key: "{semantic.spacing.fixed.xxs}",
|
|
5569
5789
|
},
|
|
5570
5790
|
name: "Spacing Fixed Xxs",
|
|
5571
5791
|
path: ["semantic", "spacing", "fixed", "xxs"],
|
|
5572
5792
|
comment: "deprecated",
|
|
5573
|
-
key: "{semantic.spacing.fixed.xxs}",
|
|
5574
5793
|
},
|
|
5575
5794
|
xs: {
|
|
5795
|
+
key: "{semantic.spacing.fixed.xs}",
|
|
5576
5796
|
value: "6px",
|
|
5577
5797
|
type: "dimension",
|
|
5578
|
-
description: "deprecated",
|
|
5579
5798
|
attributes: {
|
|
5580
5799
|
category: "space",
|
|
5581
5800
|
type: "dimension",
|
|
@@ -5585,6 +5804,7 @@ export default {
|
|
|
5585
5804
|
description: "deprecated",
|
|
5586
5805
|
filePath: "src/tokens/semantic/space.json",
|
|
5587
5806
|
isSource: true,
|
|
5807
|
+
key: "{semantic.spacing.fixed.xs}",
|
|
5588
5808
|
name: "calcite-semantic-spacing-fixed-xs",
|
|
5589
5809
|
path: ["semantic", "spacing", "fixed", "xs"],
|
|
5590
5810
|
comment: "deprecated",
|
|
@@ -5601,25 +5821,26 @@ export default {
|
|
|
5601
5821
|
type: "dimension",
|
|
5602
5822
|
},
|
|
5603
5823
|
},
|
|
5824
|
+
description: "deprecated",
|
|
5604
5825
|
filePath: "src/tokens/semantic/space.json",
|
|
5605
5826
|
isSource: true,
|
|
5606
5827
|
original: {
|
|
5607
5828
|
value: "{core.size.default.6}",
|
|
5608
5829
|
type: "dimension",
|
|
5609
|
-
description: "deprecated",
|
|
5610
5830
|
attributes: {
|
|
5611
5831
|
category: "space",
|
|
5612
5832
|
},
|
|
5833
|
+
description: "deprecated",
|
|
5834
|
+
key: "{semantic.spacing.fixed.xs}",
|
|
5613
5835
|
},
|
|
5614
5836
|
name: "Spacing Fixed Xs",
|
|
5615
5837
|
path: ["semantic", "spacing", "fixed", "xs"],
|
|
5616
5838
|
comment: "deprecated",
|
|
5617
|
-
key: "{semantic.spacing.fixed.xs}",
|
|
5618
5839
|
},
|
|
5619
5840
|
sm: {
|
|
5841
|
+
key: "{semantic.spacing.fixed.sm}",
|
|
5620
5842
|
value: "8px",
|
|
5621
5843
|
type: "dimension",
|
|
5622
|
-
description: "deprecated",
|
|
5623
5844
|
attributes: {
|
|
5624
5845
|
category: "space",
|
|
5625
5846
|
type: "dimension",
|
|
@@ -5629,6 +5850,7 @@ export default {
|
|
|
5629
5850
|
description: "deprecated",
|
|
5630
5851
|
filePath: "src/tokens/semantic/space.json",
|
|
5631
5852
|
isSource: true,
|
|
5853
|
+
key: "{semantic.spacing.fixed.sm}",
|
|
5632
5854
|
name: "calcite-semantic-spacing-fixed-sm",
|
|
5633
5855
|
path: ["semantic", "spacing", "fixed", "sm"],
|
|
5634
5856
|
comment: "deprecated",
|
|
@@ -5645,25 +5867,26 @@ export default {
|
|
|
5645
5867
|
type: "dimension",
|
|
5646
5868
|
},
|
|
5647
5869
|
},
|
|
5870
|
+
description: "deprecated",
|
|
5648
5871
|
filePath: "src/tokens/semantic/space.json",
|
|
5649
5872
|
isSource: true,
|
|
5650
5873
|
original: {
|
|
5651
5874
|
value: "{core.size.default.8}",
|
|
5652
5875
|
type: "dimension",
|
|
5653
|
-
description: "deprecated",
|
|
5654
5876
|
attributes: {
|
|
5655
5877
|
category: "space",
|
|
5656
5878
|
},
|
|
5879
|
+
description: "deprecated",
|
|
5880
|
+
key: "{semantic.spacing.fixed.sm}",
|
|
5657
5881
|
},
|
|
5658
5882
|
name: "Spacing Fixed Sm",
|
|
5659
5883
|
path: ["semantic", "spacing", "fixed", "sm"],
|
|
5660
5884
|
comment: "deprecated",
|
|
5661
|
-
key: "{semantic.spacing.fixed.sm}",
|
|
5662
5885
|
},
|
|
5663
5886
|
md: {
|
|
5887
|
+
key: "{semantic.spacing.fixed.md}",
|
|
5664
5888
|
value: "12px",
|
|
5665
5889
|
type: "dimension",
|
|
5666
|
-
description: "deprecated",
|
|
5667
5890
|
attributes: {
|
|
5668
5891
|
category: "space",
|
|
5669
5892
|
type: "dimension",
|
|
@@ -5673,6 +5896,7 @@ export default {
|
|
|
5673
5896
|
description: "deprecated",
|
|
5674
5897
|
filePath: "src/tokens/semantic/space.json",
|
|
5675
5898
|
isSource: true,
|
|
5899
|
+
key: "{semantic.spacing.fixed.md}",
|
|
5676
5900
|
name: "calcite-semantic-spacing-fixed-md",
|
|
5677
5901
|
path: ["semantic", "spacing", "fixed", "md"],
|
|
5678
5902
|
comment: "deprecated",
|
|
@@ -5689,25 +5913,26 @@ export default {
|
|
|
5689
5913
|
type: "dimension",
|
|
5690
5914
|
},
|
|
5691
5915
|
},
|
|
5916
|
+
description: "deprecated",
|
|
5692
5917
|
filePath: "src/tokens/semantic/space.json",
|
|
5693
5918
|
isSource: true,
|
|
5694
5919
|
original: {
|
|
5695
5920
|
value: "{core.size.default.12}",
|
|
5696
5921
|
type: "dimension",
|
|
5697
|
-
description: "deprecated",
|
|
5698
5922
|
attributes: {
|
|
5699
5923
|
category: "space",
|
|
5700
5924
|
},
|
|
5925
|
+
description: "deprecated",
|
|
5926
|
+
key: "{semantic.spacing.fixed.md}",
|
|
5701
5927
|
},
|
|
5702
5928
|
name: "Spacing Fixed Md",
|
|
5703
5929
|
path: ["semantic", "spacing", "fixed", "md"],
|
|
5704
5930
|
comment: "deprecated",
|
|
5705
|
-
key: "{semantic.spacing.fixed.md}",
|
|
5706
5931
|
},
|
|
5707
5932
|
lg: {
|
|
5933
|
+
key: "{semantic.spacing.fixed.lg}",
|
|
5708
5934
|
value: "14px",
|
|
5709
5935
|
type: "dimension",
|
|
5710
|
-
description: "deprecated",
|
|
5711
5936
|
attributes: {
|
|
5712
5937
|
category: "space",
|
|
5713
5938
|
type: "dimension",
|
|
@@ -5717,6 +5942,7 @@ export default {
|
|
|
5717
5942
|
description: "deprecated",
|
|
5718
5943
|
filePath: "src/tokens/semantic/space.json",
|
|
5719
5944
|
isSource: true,
|
|
5945
|
+
key: "{semantic.spacing.fixed.lg}",
|
|
5720
5946
|
name: "calcite-semantic-spacing-fixed-lg",
|
|
5721
5947
|
path: ["semantic", "spacing", "fixed", "lg"],
|
|
5722
5948
|
comment: "deprecated",
|
|
@@ -5733,25 +5959,26 @@ export default {
|
|
|
5733
5959
|
type: "dimension",
|
|
5734
5960
|
},
|
|
5735
5961
|
},
|
|
5962
|
+
description: "deprecated",
|
|
5736
5963
|
filePath: "src/tokens/semantic/space.json",
|
|
5737
5964
|
isSource: true,
|
|
5738
5965
|
original: {
|
|
5739
5966
|
value: "{core.size.default.14}",
|
|
5740
5967
|
type: "dimension",
|
|
5741
|
-
description: "deprecated",
|
|
5742
5968
|
attributes: {
|
|
5743
5969
|
category: "space",
|
|
5744
5970
|
},
|
|
5971
|
+
description: "deprecated",
|
|
5972
|
+
key: "{semantic.spacing.fixed.lg}",
|
|
5745
5973
|
},
|
|
5746
5974
|
name: "Spacing Fixed Lg",
|
|
5747
5975
|
path: ["semantic", "spacing", "fixed", "lg"],
|
|
5748
5976
|
comment: "deprecated",
|
|
5749
|
-
key: "{semantic.spacing.fixed.lg}",
|
|
5750
5977
|
},
|
|
5751
5978
|
xl: {
|
|
5979
|
+
key: "{semantic.spacing.fixed.xl}",
|
|
5752
5980
|
value: "16px",
|
|
5753
5981
|
type: "dimension",
|
|
5754
|
-
description: "deprecated",
|
|
5755
5982
|
attributes: {
|
|
5756
5983
|
category: "space",
|
|
5757
5984
|
type: "dimension",
|
|
@@ -5761,6 +5988,7 @@ export default {
|
|
|
5761
5988
|
description: "deprecated",
|
|
5762
5989
|
filePath: "src/tokens/semantic/space.json",
|
|
5763
5990
|
isSource: true,
|
|
5991
|
+
key: "{semantic.spacing.fixed.xl}",
|
|
5764
5992
|
name: "calcite-semantic-spacing-fixed-xl",
|
|
5765
5993
|
path: ["semantic", "spacing", "fixed", "xl"],
|
|
5766
5994
|
comment: "deprecated",
|
|
@@ -5777,25 +6005,26 @@ export default {
|
|
|
5777
6005
|
type: "dimension",
|
|
5778
6006
|
},
|
|
5779
6007
|
},
|
|
6008
|
+
description: "deprecated",
|
|
5780
6009
|
filePath: "src/tokens/semantic/space.json",
|
|
5781
6010
|
isSource: true,
|
|
5782
6011
|
original: {
|
|
5783
6012
|
value: "{core.size.default.16}",
|
|
5784
6013
|
type: "dimension",
|
|
5785
|
-
description: "deprecated",
|
|
5786
6014
|
attributes: {
|
|
5787
6015
|
category: "space",
|
|
5788
6016
|
},
|
|
6017
|
+
description: "deprecated",
|
|
6018
|
+
key: "{semantic.spacing.fixed.xl}",
|
|
5789
6019
|
},
|
|
5790
6020
|
name: "Spacing Fixed Xl",
|
|
5791
6021
|
path: ["semantic", "spacing", "fixed", "xl"],
|
|
5792
6022
|
comment: "deprecated",
|
|
5793
|
-
key: "{semantic.spacing.fixed.xl}",
|
|
5794
6023
|
},
|
|
5795
6024
|
xxl: {
|
|
6025
|
+
key: "{semantic.spacing.fixed.xxl}",
|
|
5796
6026
|
value: "20px",
|
|
5797
6027
|
type: "dimension",
|
|
5798
|
-
description: "deprecated",
|
|
5799
6028
|
attributes: {
|
|
5800
6029
|
category: "space",
|
|
5801
6030
|
type: "dimension",
|
|
@@ -5805,6 +6034,7 @@ export default {
|
|
|
5805
6034
|
description: "deprecated",
|
|
5806
6035
|
filePath: "src/tokens/semantic/space.json",
|
|
5807
6036
|
isSource: true,
|
|
6037
|
+
key: "{semantic.spacing.fixed.xxl}",
|
|
5808
6038
|
name: "calcite-semantic-spacing-fixed-xxl",
|
|
5809
6039
|
path: ["semantic", "spacing", "fixed", "xxl"],
|
|
5810
6040
|
comment: "deprecated",
|
|
@@ -5821,25 +6051,26 @@ export default {
|
|
|
5821
6051
|
type: "dimension",
|
|
5822
6052
|
},
|
|
5823
6053
|
},
|
|
6054
|
+
description: "deprecated",
|
|
5824
6055
|
filePath: "src/tokens/semantic/space.json",
|
|
5825
6056
|
isSource: true,
|
|
5826
6057
|
original: {
|
|
5827
6058
|
value: "{core.size.default.20}",
|
|
5828
6059
|
type: "dimension",
|
|
5829
|
-
description: "deprecated",
|
|
5830
6060
|
attributes: {
|
|
5831
6061
|
category: "space",
|
|
5832
6062
|
},
|
|
6063
|
+
description: "deprecated",
|
|
6064
|
+
key: "{semantic.spacing.fixed.xxl}",
|
|
5833
6065
|
},
|
|
5834
6066
|
name: "Spacing Fixed Xxl",
|
|
5835
6067
|
path: ["semantic", "spacing", "fixed", "xxl"],
|
|
5836
6068
|
comment: "deprecated",
|
|
5837
|
-
key: "{semantic.spacing.fixed.xxl}",
|
|
5838
6069
|
},
|
|
5839
6070
|
xxxl: {
|
|
6071
|
+
key: "{semantic.spacing.fixed.xxxl}",
|
|
5840
6072
|
value: "32px",
|
|
5841
6073
|
type: "dimension",
|
|
5842
|
-
description: "deprecated",
|
|
5843
6074
|
attributes: {
|
|
5844
6075
|
category: "space",
|
|
5845
6076
|
type: "dimension",
|
|
@@ -5849,6 +6080,7 @@ export default {
|
|
|
5849
6080
|
description: "deprecated",
|
|
5850
6081
|
filePath: "src/tokens/semantic/space.json",
|
|
5851
6082
|
isSource: true,
|
|
6083
|
+
key: "{semantic.spacing.fixed.xxxl}",
|
|
5852
6084
|
name: "calcite-semantic-spacing-fixed-xxxl",
|
|
5853
6085
|
path: ["semantic", "spacing", "fixed", "xxxl"],
|
|
5854
6086
|
comment: "deprecated",
|
|
@@ -5865,24 +6097,26 @@ export default {
|
|
|
5865
6097
|
type: "dimension",
|
|
5866
6098
|
},
|
|
5867
6099
|
},
|
|
6100
|
+
description: "deprecated",
|
|
5868
6101
|
filePath: "src/tokens/semantic/space.json",
|
|
5869
6102
|
isSource: true,
|
|
5870
6103
|
original: {
|
|
5871
6104
|
value: "{core.size.default.32}",
|
|
5872
6105
|
type: "dimension",
|
|
5873
|
-
description: "deprecated",
|
|
5874
6106
|
attributes: {
|
|
5875
6107
|
category: "space",
|
|
5876
6108
|
},
|
|
6109
|
+
description: "deprecated",
|
|
6110
|
+
key: "{semantic.spacing.fixed.xxxl}",
|
|
5877
6111
|
},
|
|
5878
6112
|
name: "Spacing Fixed Xxxl",
|
|
5879
6113
|
path: ["semantic", "spacing", "fixed", "xxxl"],
|
|
5880
6114
|
comment: "deprecated",
|
|
5881
|
-
key: "{semantic.spacing.fixed.xxxl}",
|
|
5882
6115
|
},
|
|
5883
6116
|
},
|
|
5884
6117
|
default: {
|
|
5885
6118
|
none: {
|
|
6119
|
+
key: "{semantic.spacing.default.none}",
|
|
5886
6120
|
value: "0",
|
|
5887
6121
|
type: "dimension",
|
|
5888
6122
|
attributes: {
|
|
@@ -5913,12 +6147,13 @@ export default {
|
|
|
5913
6147
|
pattern: "",
|
|
5914
6148
|
category: "space",
|
|
5915
6149
|
},
|
|
6150
|
+
key: "{semantic.spacing.default.none}",
|
|
5916
6151
|
},
|
|
5917
6152
|
name: "Spacing None",
|
|
5918
6153
|
path: ["semantic", "spacing", "default", "none"],
|
|
5919
|
-
key: "{semantic.spacing.default.none}",
|
|
5920
6154
|
},
|
|
5921
6155
|
px: {
|
|
6156
|
+
key: "{semantic.spacing.default.px}",
|
|
5922
6157
|
value: "1px",
|
|
5923
6158
|
type: "dimension",
|
|
5924
6159
|
attributes: {
|
|
@@ -5949,12 +6184,13 @@ export default {
|
|
|
5949
6184
|
pattern: "",
|
|
5950
6185
|
category: "space",
|
|
5951
6186
|
},
|
|
6187
|
+
key: "{semantic.spacing.default.px}",
|
|
5952
6188
|
},
|
|
5953
6189
|
name: "Spacing Px",
|
|
5954
6190
|
path: ["semantic", "spacing", "default", "px"],
|
|
5955
|
-
key: "{semantic.spacing.default.px}",
|
|
5956
6191
|
},
|
|
5957
6192
|
base: {
|
|
6193
|
+
key: "{semantic.spacing.default.base}",
|
|
5958
6194
|
value: "2px",
|
|
5959
6195
|
type: "dimension",
|
|
5960
6196
|
attributes: {
|
|
@@ -5985,12 +6221,13 @@ export default {
|
|
|
5985
6221
|
pattern: "",
|
|
5986
6222
|
category: "space",
|
|
5987
6223
|
},
|
|
6224
|
+
key: "{semantic.spacing.default.base}",
|
|
5988
6225
|
},
|
|
5989
6226
|
name: "Spacing Base",
|
|
5990
6227
|
path: ["semantic", "spacing", "default", "base"],
|
|
5991
|
-
key: "{semantic.spacing.default.base}",
|
|
5992
6228
|
},
|
|
5993
6229
|
xxs: {
|
|
6230
|
+
key: "{semantic.spacing.default.xxs}",
|
|
5994
6231
|
value: "0.25rem",
|
|
5995
6232
|
type: "dimension",
|
|
5996
6233
|
attributes: {
|
|
@@ -6019,12 +6256,13 @@ export default {
|
|
|
6019
6256
|
attributes: {
|
|
6020
6257
|
category: "size",
|
|
6021
6258
|
},
|
|
6259
|
+
key: "{semantic.spacing.default.xxs}",
|
|
6022
6260
|
},
|
|
6023
6261
|
name: "Spacing Xxs",
|
|
6024
6262
|
path: ["semantic", "spacing", "default", "xxs"],
|
|
6025
|
-
key: "{semantic.spacing.default.xxs}",
|
|
6026
6263
|
},
|
|
6027
6264
|
xs: {
|
|
6265
|
+
key: "{semantic.spacing.default.xs}",
|
|
6028
6266
|
value: "0.375rem",
|
|
6029
6267
|
type: "dimension",
|
|
6030
6268
|
attributes: {
|
|
@@ -6053,12 +6291,13 @@ export default {
|
|
|
6053
6291
|
attributes: {
|
|
6054
6292
|
category: "size",
|
|
6055
6293
|
},
|
|
6294
|
+
key: "{semantic.spacing.default.xs}",
|
|
6056
6295
|
},
|
|
6057
6296
|
name: "Spacing Xs",
|
|
6058
6297
|
path: ["semantic", "spacing", "default", "xs"],
|
|
6059
|
-
key: "{semantic.spacing.default.xs}",
|
|
6060
6298
|
},
|
|
6061
6299
|
sm: {
|
|
6300
|
+
key: "{semantic.spacing.default.sm}",
|
|
6062
6301
|
value: "0.5rem",
|
|
6063
6302
|
type: "dimension",
|
|
6064
6303
|
attributes: {
|
|
@@ -6087,12 +6326,13 @@ export default {
|
|
|
6087
6326
|
attributes: {
|
|
6088
6327
|
category: "size",
|
|
6089
6328
|
},
|
|
6329
|
+
key: "{semantic.spacing.default.sm}",
|
|
6090
6330
|
},
|
|
6091
6331
|
name: "Spacing Sm",
|
|
6092
6332
|
path: ["semantic", "spacing", "default", "sm"],
|
|
6093
|
-
key: "{semantic.spacing.default.sm}",
|
|
6094
6333
|
},
|
|
6095
6334
|
"sm+": {
|
|
6335
|
+
key: "{semantic.spacing.default.sm+}",
|
|
6096
6336
|
value: "0.625rem",
|
|
6097
6337
|
type: "dimension",
|
|
6098
6338
|
attributes: {
|
|
@@ -6121,12 +6361,13 @@ export default {
|
|
|
6121
6361
|
attributes: {
|
|
6122
6362
|
category: "space",
|
|
6123
6363
|
},
|
|
6364
|
+
key: "{semantic.spacing.default.sm+}",
|
|
6124
6365
|
},
|
|
6125
6366
|
name: "Spacing Sm Plus",
|
|
6126
6367
|
path: ["semantic", "spacing", "default", "sm+"],
|
|
6127
|
-
key: "{semantic.spacing.default.sm+}",
|
|
6128
6368
|
},
|
|
6129
6369
|
md: {
|
|
6370
|
+
key: "{semantic.spacing.default.md}",
|
|
6130
6371
|
value: "0.75rem",
|
|
6131
6372
|
type: "dimension",
|
|
6132
6373
|
attributes: {
|
|
@@ -6155,12 +6396,13 @@ export default {
|
|
|
6155
6396
|
attributes: {
|
|
6156
6397
|
category: "space",
|
|
6157
6398
|
},
|
|
6399
|
+
key: "{semantic.spacing.default.md}",
|
|
6158
6400
|
},
|
|
6159
6401
|
name: "Spacing Md",
|
|
6160
6402
|
path: ["semantic", "spacing", "default", "md"],
|
|
6161
|
-
key: "{semantic.spacing.default.md}",
|
|
6162
6403
|
},
|
|
6163
6404
|
"md+": {
|
|
6405
|
+
key: "{semantic.spacing.default.md+}",
|
|
6164
6406
|
value: "0.875rem",
|
|
6165
6407
|
type: "dimension",
|
|
6166
6408
|
attributes: {
|
|
@@ -6189,12 +6431,13 @@ export default {
|
|
|
6189
6431
|
attributes: {
|
|
6190
6432
|
category: "space",
|
|
6191
6433
|
},
|
|
6434
|
+
key: "{semantic.spacing.default.md+}",
|
|
6192
6435
|
},
|
|
6193
6436
|
name: "Spacing Md Plus",
|
|
6194
6437
|
path: ["semantic", "spacing", "default", "md+"],
|
|
6195
|
-
key: "{semantic.spacing.default.md+}",
|
|
6196
6438
|
},
|
|
6197
6439
|
lg: {
|
|
6440
|
+
key: "{semantic.spacing.default.lg}",
|
|
6198
6441
|
value: "1rem",
|
|
6199
6442
|
type: "dimension",
|
|
6200
6443
|
attributes: {
|
|
@@ -6223,12 +6466,13 @@ export default {
|
|
|
6223
6466
|
attributes: {
|
|
6224
6467
|
category: "space",
|
|
6225
6468
|
},
|
|
6469
|
+
key: "{semantic.spacing.default.lg}",
|
|
6226
6470
|
},
|
|
6227
6471
|
name: "Spacing Lg",
|
|
6228
6472
|
path: ["semantic", "spacing", "default", "lg"],
|
|
6229
|
-
key: "{semantic.spacing.default.lg}",
|
|
6230
6473
|
},
|
|
6231
6474
|
xl: {
|
|
6475
|
+
key: "{semantic.spacing.default.xl}",
|
|
6232
6476
|
value: "1.25rem",
|
|
6233
6477
|
type: "dimension",
|
|
6234
6478
|
attributes: {
|
|
@@ -6257,12 +6501,13 @@ export default {
|
|
|
6257
6501
|
attributes: {
|
|
6258
6502
|
category: "space",
|
|
6259
6503
|
},
|
|
6504
|
+
key: "{semantic.spacing.default.xl}",
|
|
6260
6505
|
},
|
|
6261
6506
|
name: "Spacing Xl",
|
|
6262
6507
|
path: ["semantic", "spacing", "default", "xl"],
|
|
6263
|
-
key: "{semantic.spacing.default.xl}",
|
|
6264
6508
|
},
|
|
6265
6509
|
xxl: {
|
|
6510
|
+
key: "{semantic.spacing.default.xxl}",
|
|
6266
6511
|
value: "1.5rem",
|
|
6267
6512
|
type: "dimension",
|
|
6268
6513
|
attributes: {
|
|
@@ -6291,12 +6536,13 @@ export default {
|
|
|
6291
6536
|
attributes: {
|
|
6292
6537
|
category: "space",
|
|
6293
6538
|
},
|
|
6539
|
+
key: "{semantic.spacing.default.xxl}",
|
|
6294
6540
|
},
|
|
6295
6541
|
name: "Spacing Xxl",
|
|
6296
6542
|
path: ["semantic", "spacing", "default", "xxl"],
|
|
6297
|
-
key: "{semantic.spacing.default.xxl}",
|
|
6298
6543
|
},
|
|
6299
6544
|
xxxl: {
|
|
6545
|
+
key: "{semantic.spacing.default.xxxl}",
|
|
6300
6546
|
value: "2rem",
|
|
6301
6547
|
type: "dimension",
|
|
6302
6548
|
attributes: {
|
|
@@ -6325,16 +6571,17 @@ export default {
|
|
|
6325
6571
|
attributes: {
|
|
6326
6572
|
category: "space",
|
|
6327
6573
|
},
|
|
6574
|
+
key: "{semantic.spacing.default.xxxl}",
|
|
6328
6575
|
},
|
|
6329
6576
|
name: "Spacing Xxxl",
|
|
6330
6577
|
path: ["semantic", "spacing", "default", "xxxl"],
|
|
6331
|
-
key: "{semantic.spacing.default.xxxl}",
|
|
6332
6578
|
},
|
|
6333
6579
|
},
|
|
6334
6580
|
},
|
|
6335
6581
|
typography: {
|
|
6336
6582
|
default: {
|
|
6337
6583
|
default: {
|
|
6584
|
+
key: "{semantic.typography.default.default}",
|
|
6338
6585
|
type: "typography",
|
|
6339
6586
|
value: {
|
|
6340
6587
|
fontFamily: [
|
|
@@ -6386,13 +6633,14 @@ export default {
|
|
|
6386
6633
|
attributes: {
|
|
6387
6634
|
category: "",
|
|
6388
6635
|
},
|
|
6636
|
+
key: "{semantic.typography.default.default}",
|
|
6389
6637
|
},
|
|
6390
6638
|
name: "Typography",
|
|
6391
6639
|
path: ["semantic", "typography", "default", "default"],
|
|
6392
|
-
key: "{semantic.typography.default.default}",
|
|
6393
6640
|
},
|
|
6394
6641
|
light: {
|
|
6395
6642
|
"-3h": {
|
|
6643
|
+
key: "{semantic.typography.default.light.-3h}",
|
|
6396
6644
|
value: {
|
|
6397
6645
|
fontSize: "10px",
|
|
6398
6646
|
fontWeight: "300",
|
|
@@ -6450,12 +6698,13 @@ export default {
|
|
|
6450
6698
|
attributes: {
|
|
6451
6699
|
category: "",
|
|
6452
6700
|
},
|
|
6701
|
+
key: "{semantic.typography.default.light.-3h}",
|
|
6453
6702
|
},
|
|
6454
6703
|
name: "Typography Light Minus 3h",
|
|
6455
6704
|
path: ["semantic", "typography", "default", "light", "-3h"],
|
|
6456
|
-
key: "{semantic.typography.default.light.-3h}",
|
|
6457
6705
|
},
|
|
6458
6706
|
"-2h": {
|
|
6707
|
+
key: "{semantic.typography.default.light.-2h}",
|
|
6459
6708
|
value: {
|
|
6460
6709
|
fontSize: "12px",
|
|
6461
6710
|
fontWeight: "300",
|
|
@@ -6511,12 +6760,13 @@ export default {
|
|
|
6511
6760
|
attributes: {
|
|
6512
6761
|
category: "default",
|
|
6513
6762
|
},
|
|
6763
|
+
key: "{semantic.typography.default.light.-2h}",
|
|
6514
6764
|
},
|
|
6515
6765
|
name: "Typography Light Minus 2h",
|
|
6516
6766
|
path: ["semantic", "typography", "default", "light", "-2h"],
|
|
6517
|
-
key: "{semantic.typography.default.light.-2h}",
|
|
6518
6767
|
},
|
|
6519
6768
|
"-1h": {
|
|
6769
|
+
key: "{semantic.typography.default.light.-1h}",
|
|
6520
6770
|
value: {
|
|
6521
6771
|
fontWeight: "300",
|
|
6522
6772
|
},
|
|
@@ -6570,12 +6820,13 @@ export default {
|
|
|
6570
6820
|
attributes: {
|
|
6571
6821
|
category: "default",
|
|
6572
6822
|
},
|
|
6823
|
+
key: "{semantic.typography.default.light.-1h}",
|
|
6573
6824
|
},
|
|
6574
6825
|
name: "Typography Light Minus 1h",
|
|
6575
6826
|
path: ["semantic", "typography", "default", "light", "-1h"],
|
|
6576
|
-
key: "{semantic.typography.default.light.-1h}",
|
|
6577
6827
|
},
|
|
6578
6828
|
"0h": {
|
|
6829
|
+
key: "{semantic.typography.default.light.0h}",
|
|
6579
6830
|
value: {
|
|
6580
6831
|
fontSize: "16px",
|
|
6581
6832
|
fontWeight: "300",
|
|
@@ -6633,12 +6884,13 @@ export default {
|
|
|
6633
6884
|
attributes: {
|
|
6634
6885
|
category: "default",
|
|
6635
6886
|
},
|
|
6887
|
+
key: "{semantic.typography.default.light.0h}",
|
|
6636
6888
|
},
|
|
6637
6889
|
name: "Typography Light 0h",
|
|
6638
6890
|
path: ["semantic", "typography", "default", "light", "0h"],
|
|
6639
|
-
key: "{semantic.typography.default.light.0h}",
|
|
6640
6891
|
},
|
|
6641
6892
|
"1h": {
|
|
6893
|
+
key: "{semantic.typography.default.light.1h}",
|
|
6642
6894
|
value: {
|
|
6643
6895
|
fontSize: "18px",
|
|
6644
6896
|
fontWeight: "300",
|
|
@@ -6696,14 +6948,15 @@ export default {
|
|
|
6696
6948
|
attributes: {
|
|
6697
6949
|
category: "default",
|
|
6698
6950
|
},
|
|
6951
|
+
key: "{semantic.typography.default.light.1h}",
|
|
6699
6952
|
},
|
|
6700
6953
|
name: "Typography Light 1h",
|
|
6701
6954
|
path: ["semantic", "typography", "default", "light", "1h"],
|
|
6702
|
-
key: "{semantic.typography.default.light.1h}",
|
|
6703
6955
|
},
|
|
6704
6956
|
},
|
|
6705
6957
|
regular: {
|
|
6706
6958
|
"-3h": {
|
|
6959
|
+
key: "{semantic.typography.default.regular.-3h}",
|
|
6707
6960
|
value: {
|
|
6708
6961
|
lineHeight: "12px",
|
|
6709
6962
|
fontSize: "10px",
|
|
@@ -6759,12 +7012,13 @@ export default {
|
|
|
6759
7012
|
attributes: {
|
|
6760
7013
|
category: "default",
|
|
6761
7014
|
},
|
|
7015
|
+
key: "{semantic.typography.default.regular.-3h}",
|
|
6762
7016
|
},
|
|
6763
7017
|
name: "Typography Regular Minus 3h",
|
|
6764
7018
|
path: ["semantic", "typography", "default", "regular", "-3h"],
|
|
6765
|
-
key: "{semantic.typography.default.regular.-3h}",
|
|
6766
7019
|
},
|
|
6767
7020
|
"-2h": {
|
|
7021
|
+
key: "{semantic.typography.default.regular.-2h}",
|
|
6768
7022
|
value: {
|
|
6769
7023
|
fontSize: "12px",
|
|
6770
7024
|
},
|
|
@@ -6818,12 +7072,13 @@ export default {
|
|
|
6818
7072
|
attributes: {
|
|
6819
7073
|
category: "default",
|
|
6820
7074
|
},
|
|
7075
|
+
key: "{semantic.typography.default.regular.-2h}",
|
|
6821
7076
|
},
|
|
6822
7077
|
name: "Typography Regular Minus 2h",
|
|
6823
7078
|
path: ["semantic", "typography", "default", "regular", "-2h"],
|
|
6824
|
-
key: "{semantic.typography.default.regular.-2h}",
|
|
6825
7079
|
},
|
|
6826
7080
|
"-1h": {
|
|
7081
|
+
key: "{semantic.typography.default.regular.-1h}",
|
|
6827
7082
|
value: {
|
|
6828
7083
|
fontFamily: [
|
|
6829
7084
|
"Avenir Next",
|
|
@@ -6862,26 +7117,18 @@ export default {
|
|
|
6862
7117
|
filePath: "src/tokens/semantic/typography.json",
|
|
6863
7118
|
isSource: true,
|
|
6864
7119
|
original: {
|
|
6865
|
-
value: {
|
|
6866
|
-
fontFamily: "{semantic.font.family.default}",
|
|
6867
|
-
fontSize: "{semantic.font.size.default}",
|
|
6868
|
-
fontWeight: "{semantic.font.weight.regular}",
|
|
6869
|
-
letterSpacing: "{semantic.font.letter-spacing.normal}",
|
|
6870
|
-
lineHeight: "{semantic.font.line-height.fixed.base}",
|
|
6871
|
-
paragraphSpacing: "{semantic.font.paragraph-spacing.normal}",
|
|
6872
|
-
textCase: "{semantic.font.text-case.none}",
|
|
6873
|
-
textDecoration: "{semantic.font.text-decoration.none}",
|
|
6874
|
-
},
|
|
7120
|
+
value: "{semantic.typography.default.default}",
|
|
6875
7121
|
type: "typography",
|
|
6876
7122
|
attributes: {
|
|
6877
7123
|
category: "default",
|
|
6878
7124
|
},
|
|
7125
|
+
key: "{semantic.typography.default.regular.-1h}",
|
|
6879
7126
|
},
|
|
6880
7127
|
name: "Typography Regular Minus 1h",
|
|
6881
7128
|
path: ["semantic", "typography", "default", "regular", "-1h"],
|
|
6882
|
-
key: "{semantic.typography.default.regular.-1h}",
|
|
6883
7129
|
},
|
|
6884
7130
|
"0h": {
|
|
7131
|
+
key: "{semantic.typography.default.regular.0h}",
|
|
6885
7132
|
value: {
|
|
6886
7133
|
lineHeight: "20px",
|
|
6887
7134
|
fontSize: "16px",
|
|
@@ -6937,12 +7184,13 @@ export default {
|
|
|
6937
7184
|
attributes: {
|
|
6938
7185
|
category: "default",
|
|
6939
7186
|
},
|
|
7187
|
+
key: "{semantic.typography.default.regular.0h}",
|
|
6940
7188
|
},
|
|
6941
7189
|
name: "Typography Regular 0h",
|
|
6942
7190
|
path: ["semantic", "typography", "default", "regular", "0h"],
|
|
6943
|
-
key: "{semantic.typography.default.regular.0h}",
|
|
6944
7191
|
},
|
|
6945
7192
|
"1h": {
|
|
7193
|
+
key: "{semantic.typography.default.regular.1h}",
|
|
6946
7194
|
value: {
|
|
6947
7195
|
lineHeight: "24px",
|
|
6948
7196
|
fontSize: "18px",
|
|
@@ -6998,14 +7246,15 @@ export default {
|
|
|
6998
7246
|
attributes: {
|
|
6999
7247
|
category: "default",
|
|
7000
7248
|
},
|
|
7249
|
+
key: "{semantic.typography.default.regular.1h}",
|
|
7001
7250
|
},
|
|
7002
7251
|
name: "Typography Regular 1h",
|
|
7003
7252
|
path: ["semantic", "typography", "default", "regular", "1h"],
|
|
7004
|
-
key: "{semantic.typography.default.regular.1h}",
|
|
7005
7253
|
},
|
|
7006
7254
|
},
|
|
7007
7255
|
medium: {
|
|
7008
7256
|
"-3h": {
|
|
7257
|
+
key: "{semantic.typography.default.medium.-3h}",
|
|
7009
7258
|
value: {
|
|
7010
7259
|
fontWeight: "500",
|
|
7011
7260
|
lineHeight: "12px",
|
|
@@ -7063,12 +7312,13 @@ export default {
|
|
|
7063
7312
|
attributes: {
|
|
7064
7313
|
category: "default",
|
|
7065
7314
|
},
|
|
7315
|
+
key: "{semantic.typography.default.medium.-3h}",
|
|
7066
7316
|
},
|
|
7067
7317
|
name: "Typography Medium Minus 3h",
|
|
7068
7318
|
path: ["semantic", "typography", "default", "medium", "-3h"],
|
|
7069
|
-
key: "{semantic.typography.default.medium.-3h}",
|
|
7070
7319
|
},
|
|
7071
7320
|
"-2h": {
|
|
7321
|
+
key: "{semantic.typography.default.medium.-2h}",
|
|
7072
7322
|
value: {
|
|
7073
7323
|
fontWeight: "500",
|
|
7074
7324
|
fontSize: "12px",
|
|
@@ -7124,12 +7374,13 @@ export default {
|
|
|
7124
7374
|
attributes: {
|
|
7125
7375
|
category: "default",
|
|
7126
7376
|
},
|
|
7377
|
+
key: "{semantic.typography.default.medium.-2h}",
|
|
7127
7378
|
},
|
|
7128
7379
|
name: "Typography Medium Minus 2h",
|
|
7129
7380
|
path: ["semantic", "typography", "default", "medium", "-2h"],
|
|
7130
|
-
key: "{semantic.typography.default.medium.-2h}",
|
|
7131
7381
|
},
|
|
7132
7382
|
"-1h": {
|
|
7383
|
+
key: "{semantic.typography.default.medium.-1h}",
|
|
7133
7384
|
value: {
|
|
7134
7385
|
fontWeight: "500",
|
|
7135
7386
|
},
|
|
@@ -7183,12 +7434,13 @@ export default {
|
|
|
7183
7434
|
attributes: {
|
|
7184
7435
|
category: "default",
|
|
7185
7436
|
},
|
|
7437
|
+
key: "{semantic.typography.default.medium.-1h}",
|
|
7186
7438
|
},
|
|
7187
7439
|
name: "Typography Medium Minus 1h",
|
|
7188
7440
|
path: ["semantic", "typography", "default", "medium", "-1h"],
|
|
7189
|
-
key: "{semantic.typography.default.medium.-1h}",
|
|
7190
7441
|
},
|
|
7191
7442
|
"0h": {
|
|
7443
|
+
key: "{semantic.typography.default.medium.0h}",
|
|
7192
7444
|
value: {
|
|
7193
7445
|
fontWeight: "500",
|
|
7194
7446
|
lineHeight: "20px",
|
|
@@ -7246,12 +7498,13 @@ export default {
|
|
|
7246
7498
|
attributes: {
|
|
7247
7499
|
category: "default",
|
|
7248
7500
|
},
|
|
7501
|
+
key: "{semantic.typography.default.medium.0h}",
|
|
7249
7502
|
},
|
|
7250
7503
|
name: "Typography Medium 0h",
|
|
7251
7504
|
path: ["semantic", "typography", "default", "medium", "0h"],
|
|
7252
|
-
key: "{semantic.typography.default.medium.0h}",
|
|
7253
7505
|
},
|
|
7254
7506
|
"1h": {
|
|
7507
|
+
key: "{semantic.typography.default.medium.1h}",
|
|
7255
7508
|
value: {
|
|
7256
7509
|
fontWeight: "500",
|
|
7257
7510
|
lineHeight: "24px",
|
|
@@ -7309,14 +7562,15 @@ export default {
|
|
|
7309
7562
|
attributes: {
|
|
7310
7563
|
category: "default",
|
|
7311
7564
|
},
|
|
7565
|
+
key: "{semantic.typography.default.medium.1h}",
|
|
7312
7566
|
},
|
|
7313
7567
|
name: "Typography Medium 1h",
|
|
7314
7568
|
path: ["semantic", "typography", "default", "medium", "1h"],
|
|
7315
|
-
key: "{semantic.typography.default.medium.1h}",
|
|
7316
7569
|
},
|
|
7317
7570
|
},
|
|
7318
7571
|
bold: {
|
|
7319
7572
|
"-3h": {
|
|
7573
|
+
key: "{semantic.typography.default.bold.-3h}",
|
|
7320
7574
|
value: {
|
|
7321
7575
|
fontWeight: "600",
|
|
7322
7576
|
lineHeight: "12px",
|
|
@@ -7374,12 +7628,13 @@ export default {
|
|
|
7374
7628
|
attributes: {
|
|
7375
7629
|
category: "default",
|
|
7376
7630
|
},
|
|
7631
|
+
key: "{semantic.typography.default.bold.-3h}",
|
|
7377
7632
|
},
|
|
7378
7633
|
name: "Typography Bold Minus 3h",
|
|
7379
7634
|
path: ["semantic", "typography", "default", "bold", "-3h"],
|
|
7380
|
-
key: "{semantic.typography.default.bold.-3h}",
|
|
7381
7635
|
},
|
|
7382
7636
|
"-2h": {
|
|
7637
|
+
key: "{semantic.typography.default.bold.-2h}",
|
|
7383
7638
|
value: {
|
|
7384
7639
|
fontWeight: "600",
|
|
7385
7640
|
fontSize: "12px",
|
|
@@ -7435,12 +7690,13 @@ export default {
|
|
|
7435
7690
|
attributes: {
|
|
7436
7691
|
category: "default",
|
|
7437
7692
|
},
|
|
7693
|
+
key: "{semantic.typography.default.bold.-2h}",
|
|
7438
7694
|
},
|
|
7439
7695
|
name: "Typography Bold Minus 2h",
|
|
7440
7696
|
path: ["semantic", "typography", "default", "bold", "-2h"],
|
|
7441
|
-
key: "{semantic.typography.default.bold.-2h}",
|
|
7442
7697
|
},
|
|
7443
7698
|
"-1h": {
|
|
7699
|
+
key: "{semantic.typography.default.bold.-1h}",
|
|
7444
7700
|
value: {
|
|
7445
7701
|
fontWeight: "600",
|
|
7446
7702
|
},
|
|
@@ -7494,12 +7750,13 @@ export default {
|
|
|
7494
7750
|
attributes: {
|
|
7495
7751
|
category: "default",
|
|
7496
7752
|
},
|
|
7753
|
+
key: "{semantic.typography.default.bold.-1h}",
|
|
7497
7754
|
},
|
|
7498
7755
|
name: "Typography Bold Minus 1h",
|
|
7499
7756
|
path: ["semantic", "typography", "default", "bold", "-1h"],
|
|
7500
|
-
key: "{semantic.typography.default.bold.-1h}",
|
|
7501
7757
|
},
|
|
7502
7758
|
"0h": {
|
|
7759
|
+
key: "{semantic.typography.default.bold.0h}",
|
|
7503
7760
|
value: {
|
|
7504
7761
|
fontWeight: "600",
|
|
7505
7762
|
lineHeight: "20px",
|
|
@@ -7557,12 +7814,13 @@ export default {
|
|
|
7557
7814
|
attributes: {
|
|
7558
7815
|
category: "default",
|
|
7559
7816
|
},
|
|
7817
|
+
key: "{semantic.typography.default.bold.0h}",
|
|
7560
7818
|
},
|
|
7561
7819
|
name: "Typography Bold 0h",
|
|
7562
7820
|
path: ["semantic", "typography", "default", "bold", "0h"],
|
|
7563
|
-
key: "{semantic.typography.default.bold.0h}",
|
|
7564
7821
|
},
|
|
7565
7822
|
"1h": {
|
|
7823
|
+
key: "{semantic.typography.default.bold.1h}",
|
|
7566
7824
|
value: {
|
|
7567
7825
|
fontWeight: "600",
|
|
7568
7826
|
lineHeight: "24px",
|
|
@@ -7620,16 +7878,17 @@ export default {
|
|
|
7620
7878
|
attributes: {
|
|
7621
7879
|
category: "default",
|
|
7622
7880
|
},
|
|
7881
|
+
key: "{semantic.typography.default.bold.1h}",
|
|
7623
7882
|
},
|
|
7624
7883
|
name: "Typography Bold 1h",
|
|
7625
7884
|
path: ["semantic", "typography", "default", "bold", "1h"],
|
|
7626
|
-
key: "{semantic.typography.default.bold.1h}",
|
|
7627
7885
|
},
|
|
7628
7886
|
},
|
|
7629
7887
|
},
|
|
7630
7888
|
wrap: {
|
|
7631
7889
|
light: {
|
|
7632
7890
|
0: {
|
|
7891
|
+
key: "{semantic.typography.wrap.light.0}",
|
|
7633
7892
|
value: {
|
|
7634
7893
|
fontWeight: "300",
|
|
7635
7894
|
lineHeight: "1.375",
|
|
@@ -7687,12 +7946,13 @@ export default {
|
|
|
7687
7946
|
attributes: {
|
|
7688
7947
|
category: "wrap",
|
|
7689
7948
|
},
|
|
7949
|
+
key: "{semantic.typography.wrap.light.0}",
|
|
7690
7950
|
},
|
|
7691
7951
|
name: "Typography Wrap Light 0",
|
|
7692
7952
|
path: ["semantic", "typography", "wrap", "light", "0"],
|
|
7693
|
-
key: "{semantic.typography.wrap.light.0}",
|
|
7694
7953
|
},
|
|
7695
7954
|
1: {
|
|
7955
|
+
key: "{semantic.typography.wrap.light.1}",
|
|
7696
7956
|
value: {
|
|
7697
7957
|
fontWeight: "300",
|
|
7698
7958
|
lineHeight: "1.375",
|
|
@@ -7750,12 +8010,13 @@ export default {
|
|
|
7750
8010
|
attributes: {
|
|
7751
8011
|
category: "wrap",
|
|
7752
8012
|
},
|
|
8013
|
+
key: "{semantic.typography.wrap.light.1}",
|
|
7753
8014
|
},
|
|
7754
8015
|
name: "Typography Wrap Light 1",
|
|
7755
8016
|
path: ["semantic", "typography", "wrap", "light", "1"],
|
|
7756
|
-
key: "{semantic.typography.wrap.light.1}",
|
|
7757
8017
|
},
|
|
7758
8018
|
2: {
|
|
8019
|
+
key: "{semantic.typography.wrap.light.2}",
|
|
7759
8020
|
value: {
|
|
7760
8021
|
fontWeight: "300",
|
|
7761
8022
|
lineHeight: "1.375",
|
|
@@ -7813,12 +8074,13 @@ export default {
|
|
|
7813
8074
|
attributes: {
|
|
7814
8075
|
category: "wrap",
|
|
7815
8076
|
},
|
|
8077
|
+
key: "{semantic.typography.wrap.light.2}",
|
|
7816
8078
|
},
|
|
7817
8079
|
name: "Typography Wrap Light 2",
|
|
7818
8080
|
path: ["semantic", "typography", "wrap", "light", "2"],
|
|
7819
|
-
key: "{semantic.typography.wrap.light.2}",
|
|
7820
8081
|
},
|
|
7821
8082
|
3: {
|
|
8083
|
+
key: "{semantic.typography.wrap.light.3}",
|
|
7822
8084
|
value: {
|
|
7823
8085
|
fontWeight: "300",
|
|
7824
8086
|
lineHeight: "1.25",
|
|
@@ -7876,12 +8138,13 @@ export default {
|
|
|
7876
8138
|
attributes: {
|
|
7877
8139
|
category: "wrap",
|
|
7878
8140
|
},
|
|
8141
|
+
key: "{semantic.typography.wrap.light.3}",
|
|
7879
8142
|
},
|
|
7880
8143
|
name: "Typography Wrap Light 3",
|
|
7881
8144
|
path: ["semantic", "typography", "wrap", "light", "3"],
|
|
7882
|
-
key: "{semantic.typography.wrap.light.3}",
|
|
7883
8145
|
},
|
|
7884
8146
|
"-2": {
|
|
8147
|
+
key: "{semantic.typography.wrap.light.-2}",
|
|
7885
8148
|
value: {
|
|
7886
8149
|
fontWeight: "300",
|
|
7887
8150
|
lineHeight: "1.375",
|
|
@@ -7939,12 +8202,13 @@ export default {
|
|
|
7939
8202
|
attributes: {
|
|
7940
8203
|
category: "wrap",
|
|
7941
8204
|
},
|
|
8205
|
+
key: "{semantic.typography.wrap.light.-2}",
|
|
7942
8206
|
},
|
|
7943
8207
|
name: "Typography Wrap Light Minus 2",
|
|
7944
8208
|
path: ["semantic", "typography", "wrap", "light", "-2"],
|
|
7945
|
-
key: "{semantic.typography.wrap.light.-2}",
|
|
7946
8209
|
},
|
|
7947
8210
|
"-1": {
|
|
8211
|
+
key: "{semantic.typography.wrap.light.-1}",
|
|
7948
8212
|
value: {
|
|
7949
8213
|
fontWeight: "300",
|
|
7950
8214
|
lineHeight: "1.375",
|
|
@@ -8000,14 +8264,15 @@ export default {
|
|
|
8000
8264
|
attributes: {
|
|
8001
8265
|
category: "wrap",
|
|
8002
8266
|
},
|
|
8267
|
+
key: "{semantic.typography.wrap.light.-1}",
|
|
8003
8268
|
},
|
|
8004
8269
|
name: "Typography Wrap Light Minus 1",
|
|
8005
8270
|
path: ["semantic", "typography", "wrap", "light", "-1"],
|
|
8006
|
-
key: "{semantic.typography.wrap.light.-1}",
|
|
8007
8271
|
},
|
|
8008
8272
|
},
|
|
8009
8273
|
regular: {
|
|
8010
8274
|
0: {
|
|
8275
|
+
key: "{semantic.typography.wrap.regular.0}",
|
|
8011
8276
|
value: {
|
|
8012
8277
|
lineHeight: "1.375",
|
|
8013
8278
|
fontSize: "16px",
|
|
@@ -8063,12 +8328,13 @@ export default {
|
|
|
8063
8328
|
attributes: {
|
|
8064
8329
|
category: "wrap",
|
|
8065
8330
|
},
|
|
8331
|
+
key: "{semantic.typography.wrap.regular.0}",
|
|
8066
8332
|
},
|
|
8067
8333
|
name: "Typography Wrap Regular 0",
|
|
8068
8334
|
path: ["semantic", "typography", "wrap", "regular", "0"],
|
|
8069
|
-
key: "{semantic.typography.wrap.regular.0}",
|
|
8070
8335
|
},
|
|
8071
8336
|
1: {
|
|
8337
|
+
key: "{semantic.typography.wrap.regular.1}",
|
|
8072
8338
|
value: {
|
|
8073
8339
|
lineHeight: "1.375",
|
|
8074
8340
|
fontSize: "18px",
|
|
@@ -8124,12 +8390,13 @@ export default {
|
|
|
8124
8390
|
attributes: {
|
|
8125
8391
|
category: "wrap",
|
|
8126
8392
|
},
|
|
8393
|
+
key: "{semantic.typography.wrap.regular.1}",
|
|
8127
8394
|
},
|
|
8128
8395
|
name: "Typography Wrap Regular 1",
|
|
8129
8396
|
path: ["semantic", "typography", "wrap", "regular", "1"],
|
|
8130
|
-
key: "{semantic.typography.wrap.regular.1}",
|
|
8131
8397
|
},
|
|
8132
8398
|
2: {
|
|
8399
|
+
key: "{semantic.typography.wrap.regular.2}",
|
|
8133
8400
|
value: {
|
|
8134
8401
|
lineHeight: "1.375",
|
|
8135
8402
|
fontSize: "20px",
|
|
@@ -8185,12 +8452,13 @@ export default {
|
|
|
8185
8452
|
attributes: {
|
|
8186
8453
|
category: "wrap",
|
|
8187
8454
|
},
|
|
8455
|
+
key: "{semantic.typography.wrap.regular.2}",
|
|
8188
8456
|
},
|
|
8189
8457
|
name: "Typography Wrap Regular 2",
|
|
8190
8458
|
path: ["semantic", "typography", "wrap", "regular", "2"],
|
|
8191
|
-
key: "{semantic.typography.wrap.regular.2}",
|
|
8192
8459
|
},
|
|
8193
8460
|
3: {
|
|
8461
|
+
key: "{semantic.typography.wrap.regular.3}",
|
|
8194
8462
|
value: {
|
|
8195
8463
|
lineHeight: "1.375",
|
|
8196
8464
|
fontSize: "24px",
|
|
@@ -8246,12 +8514,13 @@ export default {
|
|
|
8246
8514
|
attributes: {
|
|
8247
8515
|
category: "wrap",
|
|
8248
8516
|
},
|
|
8517
|
+
key: "{semantic.typography.wrap.regular.3}",
|
|
8249
8518
|
},
|
|
8250
8519
|
name: "Typography Wrap Regular 3",
|
|
8251
8520
|
path: ["semantic", "typography", "wrap", "regular", "3"],
|
|
8252
|
-
key: "{semantic.typography.wrap.regular.3}",
|
|
8253
8521
|
},
|
|
8254
8522
|
"-2": {
|
|
8523
|
+
key: "{semantic.typography.wrap.regular.-2}",
|
|
8255
8524
|
value: {
|
|
8256
8525
|
lineHeight: "1.375",
|
|
8257
8526
|
fontSize: "12px",
|
|
@@ -8307,12 +8576,13 @@ export default {
|
|
|
8307
8576
|
attributes: {
|
|
8308
8577
|
category: "wrap",
|
|
8309
8578
|
},
|
|
8579
|
+
key: "{semantic.typography.wrap.regular.-2}",
|
|
8310
8580
|
},
|
|
8311
8581
|
name: "Typography Wrap Regular Minus 2",
|
|
8312
8582
|
path: ["semantic", "typography", "wrap", "regular", "-2"],
|
|
8313
|
-
key: "{semantic.typography.wrap.regular.-2}",
|
|
8314
8583
|
},
|
|
8315
8584
|
"-1": {
|
|
8585
|
+
key: "{semantic.typography.wrap.regular.-1}",
|
|
8316
8586
|
value: {
|
|
8317
8587
|
lineHeight: "1.375",
|
|
8318
8588
|
},
|
|
@@ -8366,14 +8636,15 @@ export default {
|
|
|
8366
8636
|
attributes: {
|
|
8367
8637
|
category: "wrap",
|
|
8368
8638
|
},
|
|
8639
|
+
key: "{semantic.typography.wrap.regular.-1}",
|
|
8369
8640
|
},
|
|
8370
8641
|
name: "Typography Wrap Regular Minus 1",
|
|
8371
8642
|
path: ["semantic", "typography", "wrap", "regular", "-1"],
|
|
8372
|
-
key: "{semantic.typography.wrap.regular.-1}",
|
|
8373
8643
|
},
|
|
8374
8644
|
},
|
|
8375
8645
|
medium: {
|
|
8376
8646
|
0: {
|
|
8647
|
+
key: "{semantic.typography.wrap.medium.0}",
|
|
8377
8648
|
value: {
|
|
8378
8649
|
fontWeight: "500",
|
|
8379
8650
|
lineHeight: "1.375",
|
|
@@ -8431,12 +8702,13 @@ export default {
|
|
|
8431
8702
|
attributes: {
|
|
8432
8703
|
category: "wrap",
|
|
8433
8704
|
},
|
|
8705
|
+
key: "{semantic.typography.wrap.medium.0}",
|
|
8434
8706
|
},
|
|
8435
8707
|
name: "Typography Wrap Medium 0",
|
|
8436
8708
|
path: ["semantic", "typography", "wrap", "medium", "0"],
|
|
8437
|
-
key: "{semantic.typography.wrap.medium.0}",
|
|
8438
8709
|
},
|
|
8439
8710
|
1: {
|
|
8711
|
+
key: "{semantic.typography.wrap.medium.1}",
|
|
8440
8712
|
value: {
|
|
8441
8713
|
fontWeight: "500",
|
|
8442
8714
|
lineHeight: "1.375",
|
|
@@ -8494,12 +8766,13 @@ export default {
|
|
|
8494
8766
|
attributes: {
|
|
8495
8767
|
category: "wrap",
|
|
8496
8768
|
},
|
|
8769
|
+
key: "{semantic.typography.wrap.medium.1}",
|
|
8497
8770
|
},
|
|
8498
8771
|
name: "Typography Wrap Medium 1",
|
|
8499
8772
|
path: ["semantic", "typography", "wrap", "medium", "1"],
|
|
8500
|
-
key: "{semantic.typography.wrap.medium.1}",
|
|
8501
8773
|
},
|
|
8502
8774
|
2: {
|
|
8775
|
+
key: "{semantic.typography.wrap.medium.2}",
|
|
8503
8776
|
value: {
|
|
8504
8777
|
fontWeight: "500",
|
|
8505
8778
|
lineHeight: "1.375",
|
|
@@ -8557,12 +8830,13 @@ export default {
|
|
|
8557
8830
|
attributes: {
|
|
8558
8831
|
category: "wrap",
|
|
8559
8832
|
},
|
|
8833
|
+
key: "{semantic.typography.wrap.medium.2}",
|
|
8560
8834
|
},
|
|
8561
8835
|
name: "Typography Wrap Medium 2",
|
|
8562
8836
|
path: ["semantic", "typography", "wrap", "medium", "2"],
|
|
8563
|
-
key: "{semantic.typography.wrap.medium.2}",
|
|
8564
8837
|
},
|
|
8565
8838
|
3: {
|
|
8839
|
+
key: "{semantic.typography.wrap.medium.3}",
|
|
8566
8840
|
value: {
|
|
8567
8841
|
fontWeight: "500",
|
|
8568
8842
|
lineHeight: "1.375",
|
|
@@ -8620,12 +8894,13 @@ export default {
|
|
|
8620
8894
|
attributes: {
|
|
8621
8895
|
category: "wrap",
|
|
8622
8896
|
},
|
|
8897
|
+
key: "{semantic.typography.wrap.medium.3}",
|
|
8623
8898
|
},
|
|
8624
8899
|
name: "Typography Wrap Medium 3",
|
|
8625
8900
|
path: ["semantic", "typography", "wrap", "medium", "3"],
|
|
8626
|
-
key: "{semantic.typography.wrap.medium.3}",
|
|
8627
8901
|
},
|
|
8628
8902
|
"-2": {
|
|
8903
|
+
key: "{semantic.typography.wrap.medium.-2}",
|
|
8629
8904
|
value: {
|
|
8630
8905
|
fontWeight: "500",
|
|
8631
8906
|
lineHeight: "1.375",
|
|
@@ -8683,12 +8958,13 @@ export default {
|
|
|
8683
8958
|
attributes: {
|
|
8684
8959
|
category: "wrap",
|
|
8685
8960
|
},
|
|
8961
|
+
key: "{semantic.typography.wrap.medium.-2}",
|
|
8686
8962
|
},
|
|
8687
8963
|
name: "Typography Wrap Medium Minus 2",
|
|
8688
8964
|
path: ["semantic", "typography", "wrap", "medium", "-2"],
|
|
8689
|
-
key: "{semantic.typography.wrap.medium.-2}",
|
|
8690
8965
|
},
|
|
8691
8966
|
"-1": {
|
|
8967
|
+
key: "{semantic.typography.wrap.medium.-1}",
|
|
8692
8968
|
value: {
|
|
8693
8969
|
fontWeight: "500",
|
|
8694
8970
|
lineHeight: "1.375",
|
|
@@ -8744,14 +9020,15 @@ export default {
|
|
|
8744
9020
|
attributes: {
|
|
8745
9021
|
category: "wrap",
|
|
8746
9022
|
},
|
|
9023
|
+
key: "{semantic.typography.wrap.medium.-1}",
|
|
8747
9024
|
},
|
|
8748
9025
|
name: "Typography Wrap Medium Minus 1",
|
|
8749
9026
|
path: ["semantic", "typography", "wrap", "medium", "-1"],
|
|
8750
|
-
key: "{semantic.typography.wrap.medium.-1}",
|
|
8751
9027
|
},
|
|
8752
9028
|
},
|
|
8753
9029
|
bold: {
|
|
8754
9030
|
0: {
|
|
9031
|
+
key: "{semantic.typography.wrap.bold.0}",
|
|
8755
9032
|
value: {
|
|
8756
9033
|
fontWeight: "600",
|
|
8757
9034
|
lineHeight: "1.375",
|
|
@@ -8809,12 +9086,13 @@ export default {
|
|
|
8809
9086
|
attributes: {
|
|
8810
9087
|
category: "wrap",
|
|
8811
9088
|
},
|
|
9089
|
+
key: "{semantic.typography.wrap.bold.0}",
|
|
8812
9090
|
},
|
|
8813
9091
|
name: "Typography Wrap Bold 0",
|
|
8814
9092
|
path: ["semantic", "typography", "wrap", "bold", "0"],
|
|
8815
|
-
key: "{semantic.typography.wrap.bold.0}",
|
|
8816
9093
|
},
|
|
8817
9094
|
1: {
|
|
9095
|
+
key: "{semantic.typography.wrap.bold.1}",
|
|
8818
9096
|
value: {
|
|
8819
9097
|
fontWeight: "600",
|
|
8820
9098
|
lineHeight: "1.375",
|
|
@@ -8872,12 +9150,13 @@ export default {
|
|
|
8872
9150
|
attributes: {
|
|
8873
9151
|
category: "wrap",
|
|
8874
9152
|
},
|
|
9153
|
+
key: "{semantic.typography.wrap.bold.1}",
|
|
8875
9154
|
},
|
|
8876
9155
|
name: "Typography Wrap Bold 1",
|
|
8877
9156
|
path: ["semantic", "typography", "wrap", "bold", "1"],
|
|
8878
|
-
key: "{semantic.typography.wrap.bold.1}",
|
|
8879
9157
|
},
|
|
8880
9158
|
2: {
|
|
9159
|
+
key: "{semantic.typography.wrap.bold.2}",
|
|
8881
9160
|
value: {
|
|
8882
9161
|
fontWeight: "600",
|
|
8883
9162
|
lineHeight: "1.375",
|
|
@@ -8935,12 +9214,13 @@ export default {
|
|
|
8935
9214
|
attributes: {
|
|
8936
9215
|
category: "wrap",
|
|
8937
9216
|
},
|
|
9217
|
+
key: "{semantic.typography.wrap.bold.2}",
|
|
8938
9218
|
},
|
|
8939
9219
|
name: "Typography Wrap Bold 2",
|
|
8940
9220
|
path: ["semantic", "typography", "wrap", "bold", "2"],
|
|
8941
|
-
key: "{semantic.typography.wrap.bold.2}",
|
|
8942
9221
|
},
|
|
8943
9222
|
3: {
|
|
9223
|
+
key: "{semantic.typography.wrap.bold.3}",
|
|
8944
9224
|
value: {
|
|
8945
9225
|
fontWeight: "600",
|
|
8946
9226
|
lineHeight: "1.375",
|
|
@@ -8998,12 +9278,13 @@ export default {
|
|
|
8998
9278
|
attributes: {
|
|
8999
9279
|
category: "wrap",
|
|
9000
9280
|
},
|
|
9281
|
+
key: "{semantic.typography.wrap.bold.3}",
|
|
9001
9282
|
},
|
|
9002
9283
|
name: "Typography Wrap Bold 3",
|
|
9003
9284
|
path: ["semantic", "typography", "wrap", "bold", "3"],
|
|
9004
|
-
key: "{semantic.typography.wrap.bold.3}",
|
|
9005
9285
|
},
|
|
9006
9286
|
"-2": {
|
|
9287
|
+
key: "{semantic.typography.wrap.bold.-2}",
|
|
9007
9288
|
value: {
|
|
9008
9289
|
fontWeight: "600",
|
|
9009
9290
|
lineHeight: "1.375",
|
|
@@ -9061,12 +9342,13 @@ export default {
|
|
|
9061
9342
|
attributes: {
|
|
9062
9343
|
category: "wrap",
|
|
9063
9344
|
},
|
|
9345
|
+
key: "{semantic.typography.wrap.bold.-2}",
|
|
9064
9346
|
},
|
|
9065
9347
|
name: "Typography Wrap Bold Minus 2",
|
|
9066
9348
|
path: ["semantic", "typography", "wrap", "bold", "-2"],
|
|
9067
|
-
key: "{semantic.typography.wrap.bold.-2}",
|
|
9068
9349
|
},
|
|
9069
9350
|
"-1": {
|
|
9351
|
+
key: "{semantic.typography.wrap.bold.-1}",
|
|
9070
9352
|
value: {
|
|
9071
9353
|
fontWeight: "600",
|
|
9072
9354
|
lineHeight: "1.375",
|
|
@@ -9122,16 +9404,17 @@ export default {
|
|
|
9122
9404
|
attributes: {
|
|
9123
9405
|
category: "wrap",
|
|
9124
9406
|
},
|
|
9407
|
+
key: "{semantic.typography.wrap.bold.-1}",
|
|
9125
9408
|
},
|
|
9126
9409
|
name: "Typography Wrap Bold Minus 1",
|
|
9127
9410
|
path: ["semantic", "typography", "wrap", "bold", "-1"],
|
|
9128
|
-
key: "{semantic.typography.wrap.bold.-1}",
|
|
9129
9411
|
},
|
|
9130
9412
|
},
|
|
9131
9413
|
},
|
|
9132
9414
|
hierarchy: {
|
|
9133
9415
|
display: {
|
|
9134
9416
|
1: {
|
|
9417
|
+
key: "{semantic.typography.hierarchy.display.1}",
|
|
9135
9418
|
value: {
|
|
9136
9419
|
fontWeight: "600",
|
|
9137
9420
|
lineHeight: "1.375",
|
|
@@ -9160,21 +9443,18 @@ export default {
|
|
|
9160
9443
|
filePath: "src/tokens/semantic/typography.json",
|
|
9161
9444
|
isSource: true,
|
|
9162
9445
|
original: {
|
|
9163
|
-
value: {
|
|
9164
|
-
fontWeight: "{semantic.font.weight.semibold}",
|
|
9165
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9166
|
-
fontSize: "{semantic.font.size.xxl}",
|
|
9167
|
-
},
|
|
9446
|
+
value: "{semantic.typography.wrap.bold.3}",
|
|
9168
9447
|
type: "typography",
|
|
9169
9448
|
attributes: {
|
|
9170
9449
|
category: "hierarchy",
|
|
9171
9450
|
},
|
|
9451
|
+
key: "{semantic.typography.hierarchy.display.1}",
|
|
9172
9452
|
},
|
|
9173
9453
|
name: "Typography Hierarchy Display 1",
|
|
9174
9454
|
path: ["semantic", "typography", "hierarchy", "display", "1"],
|
|
9175
|
-
key: "{semantic.typography.hierarchy.display.1}",
|
|
9176
9455
|
},
|
|
9177
9456
|
2: {
|
|
9457
|
+
key: "{semantic.typography.hierarchy.display.2}",
|
|
9178
9458
|
value: {
|
|
9179
9459
|
fontWeight: "600",
|
|
9180
9460
|
lineHeight: "1.375",
|
|
@@ -9203,23 +9483,20 @@ export default {
|
|
|
9203
9483
|
filePath: "src/tokens/semantic/typography.json",
|
|
9204
9484
|
isSource: true,
|
|
9205
9485
|
original: {
|
|
9206
|
-
value: {
|
|
9207
|
-
fontWeight: "{semantic.font.weight.semibold}",
|
|
9208
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9209
|
-
fontSize: "{semantic.font.size.xl}",
|
|
9210
|
-
},
|
|
9486
|
+
value: "{semantic.typography.wrap.bold.2}",
|
|
9211
9487
|
type: "typography",
|
|
9212
9488
|
attributes: {
|
|
9213
9489
|
category: "hierarchy",
|
|
9214
9490
|
},
|
|
9491
|
+
key: "{semantic.typography.hierarchy.display.2}",
|
|
9215
9492
|
},
|
|
9216
9493
|
name: "Typography Hierarchy Display 2",
|
|
9217
9494
|
path: ["semantic", "typography", "hierarchy", "display", "2"],
|
|
9218
|
-
key: "{semantic.typography.hierarchy.display.2}",
|
|
9219
9495
|
},
|
|
9220
9496
|
},
|
|
9221
9497
|
heading: {
|
|
9222
9498
|
1: {
|
|
9499
|
+
key: "{semantic.typography.hierarchy.heading.1}",
|
|
9223
9500
|
value: {
|
|
9224
9501
|
fontWeight: "500",
|
|
9225
9502
|
lineHeight: "1.375",
|
|
@@ -9248,21 +9525,18 @@ export default {
|
|
|
9248
9525
|
filePath: "src/tokens/semantic/typography.json",
|
|
9249
9526
|
isSource: true,
|
|
9250
9527
|
original: {
|
|
9251
|
-
value: {
|
|
9252
|
-
fontWeight: "{semantic.font.weight.medium}",
|
|
9253
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9254
|
-
fontSize: "{semantic.font.size.xxl}",
|
|
9255
|
-
},
|
|
9528
|
+
value: "{semantic.typography.wrap.medium.3}",
|
|
9256
9529
|
type: "typography",
|
|
9257
9530
|
attributes: {
|
|
9258
9531
|
category: "hierarchy",
|
|
9259
9532
|
},
|
|
9533
|
+
key: "{semantic.typography.hierarchy.heading.1}",
|
|
9260
9534
|
},
|
|
9261
9535
|
name: "Typography Hierarchy Heading 1",
|
|
9262
9536
|
path: ["semantic", "typography", "hierarchy", "heading", "1"],
|
|
9263
|
-
key: "{semantic.typography.hierarchy.heading.1}",
|
|
9264
9537
|
},
|
|
9265
9538
|
2: {
|
|
9539
|
+
key: "{semantic.typography.hierarchy.heading.2}",
|
|
9266
9540
|
value: {
|
|
9267
9541
|
fontWeight: "500",
|
|
9268
9542
|
lineHeight: "1.375",
|
|
@@ -9291,21 +9565,18 @@ export default {
|
|
|
9291
9565
|
filePath: "src/tokens/semantic/typography.json",
|
|
9292
9566
|
isSource: true,
|
|
9293
9567
|
original: {
|
|
9294
|
-
value: {
|
|
9295
|
-
fontWeight: "{semantic.font.weight.medium}",
|
|
9296
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9297
|
-
fontSize: "{semantic.font.size.xl}",
|
|
9298
|
-
},
|
|
9568
|
+
value: "{semantic.typography.wrap.medium.2}",
|
|
9299
9569
|
type: "typography",
|
|
9300
9570
|
attributes: {
|
|
9301
9571
|
category: "hierarchy",
|
|
9302
9572
|
},
|
|
9573
|
+
key: "{semantic.typography.hierarchy.heading.2}",
|
|
9303
9574
|
},
|
|
9304
9575
|
name: "Typography Hierarchy Heading 2",
|
|
9305
9576
|
path: ["semantic", "typography", "hierarchy", "heading", "2"],
|
|
9306
|
-
key: "{semantic.typography.hierarchy.heading.2}",
|
|
9307
9577
|
},
|
|
9308
9578
|
3: {
|
|
9579
|
+
key: "{semantic.typography.hierarchy.heading.3}",
|
|
9309
9580
|
value: {
|
|
9310
9581
|
fontWeight: "500",
|
|
9311
9582
|
lineHeight: "1.375",
|
|
@@ -9334,21 +9605,18 @@ export default {
|
|
|
9334
9605
|
filePath: "src/tokens/semantic/typography.json",
|
|
9335
9606
|
isSource: true,
|
|
9336
9607
|
original: {
|
|
9337
|
-
value: {
|
|
9338
|
-
fontWeight: "{semantic.font.weight.medium}",
|
|
9339
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9340
|
-
fontSize: "{semantic.font.size.lg}",
|
|
9341
|
-
},
|
|
9608
|
+
value: "{semantic.typography.wrap.medium.1}",
|
|
9342
9609
|
type: "typography",
|
|
9343
9610
|
attributes: {
|
|
9344
9611
|
category: "hierarchy",
|
|
9345
9612
|
},
|
|
9613
|
+
key: "{semantic.typography.hierarchy.heading.3}",
|
|
9346
9614
|
},
|
|
9347
9615
|
name: "Typography Hierarchy Heading 3",
|
|
9348
9616
|
path: ["semantic", "typography", "hierarchy", "heading", "3"],
|
|
9349
|
-
key: "{semantic.typography.hierarchy.heading.3}",
|
|
9350
9617
|
},
|
|
9351
9618
|
4: {
|
|
9619
|
+
key: "{semantic.typography.hierarchy.heading.4}",
|
|
9352
9620
|
value: {
|
|
9353
9621
|
fontWeight: "500",
|
|
9354
9622
|
lineHeight: "1.375",
|
|
@@ -9377,21 +9645,18 @@ export default {
|
|
|
9377
9645
|
filePath: "src/tokens/semantic/typography.json",
|
|
9378
9646
|
isSource: true,
|
|
9379
9647
|
original: {
|
|
9380
|
-
value: {
|
|
9381
|
-
fontWeight: "{semantic.font.weight.medium}",
|
|
9382
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9383
|
-
fontSize: "{semantic.font.size.md}",
|
|
9384
|
-
},
|
|
9648
|
+
value: "{semantic.typography.wrap.medium.0}",
|
|
9385
9649
|
type: "typography",
|
|
9386
9650
|
attributes: {
|
|
9387
9651
|
category: "hierarchy",
|
|
9388
9652
|
},
|
|
9653
|
+
key: "{semantic.typography.hierarchy.heading.4}",
|
|
9389
9654
|
},
|
|
9390
9655
|
name: "Typography Hierarchy Heading 4",
|
|
9391
9656
|
path: ["semantic", "typography", "hierarchy", "heading", "4"],
|
|
9392
|
-
key: "{semantic.typography.hierarchy.heading.4}",
|
|
9393
9657
|
},
|
|
9394
9658
|
5: {
|
|
9659
|
+
key: "{semantic.typography.hierarchy.heading.5}",
|
|
9395
9660
|
value: {
|
|
9396
9661
|
fontWeight: "500",
|
|
9397
9662
|
lineHeight: "1.375",
|
|
@@ -9419,22 +9684,20 @@ export default {
|
|
|
9419
9684
|
filePath: "src/tokens/semantic/typography.json",
|
|
9420
9685
|
isSource: true,
|
|
9421
9686
|
original: {
|
|
9422
|
-
value: {
|
|
9423
|
-
fontWeight: "{semantic.font.weight.medium}",
|
|
9424
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9425
|
-
},
|
|
9687
|
+
value: "{semantic.typography.wrap.medium.-1}",
|
|
9426
9688
|
type: "typography",
|
|
9427
9689
|
attributes: {
|
|
9428
9690
|
category: "hierarchy",
|
|
9429
9691
|
},
|
|
9692
|
+
key: "{semantic.typography.hierarchy.heading.5}",
|
|
9430
9693
|
},
|
|
9431
9694
|
name: "Typography Hierarchy Heading 5",
|
|
9432
9695
|
path: ["semantic", "typography", "hierarchy", "heading", "5"],
|
|
9433
|
-
key: "{semantic.typography.hierarchy.heading.5}",
|
|
9434
9696
|
},
|
|
9435
9697
|
},
|
|
9436
9698
|
body: {
|
|
9437
9699
|
snug: {
|
|
9700
|
+
key: "{semantic.typography.hierarchy.body.snug}",
|
|
9438
9701
|
value: {
|
|
9439
9702
|
lineHeight: "1.375",
|
|
9440
9703
|
},
|
|
@@ -9461,19 +9724,18 @@ export default {
|
|
|
9461
9724
|
filePath: "src/tokens/semantic/typography.json",
|
|
9462
9725
|
isSource: true,
|
|
9463
9726
|
original: {
|
|
9464
|
-
value: {
|
|
9465
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9466
|
-
},
|
|
9727
|
+
value: "{semantic.typography.wrap.regular.-1}",
|
|
9467
9728
|
type: "typography",
|
|
9468
9729
|
attributes: {
|
|
9469
9730
|
category: "hierarchy",
|
|
9470
9731
|
},
|
|
9732
|
+
key: "{semantic.typography.hierarchy.body.snug}",
|
|
9471
9733
|
},
|
|
9472
9734
|
name: "Typography Hierarchy Body Snug",
|
|
9473
9735
|
path: ["semantic", "typography", "hierarchy", "body", "snug"],
|
|
9474
|
-
key: "{semantic.typography.hierarchy.body.snug}",
|
|
9475
9736
|
},
|
|
9476
9737
|
default: {
|
|
9738
|
+
key: "{semantic.typography.hierarchy.body.default}",
|
|
9477
9739
|
value: {
|
|
9478
9740
|
fontFamily: [
|
|
9479
9741
|
"Avenir Next",
|
|
@@ -9512,27 +9774,19 @@ export default {
|
|
|
9512
9774
|
filePath: "src/tokens/semantic/typography.json",
|
|
9513
9775
|
isSource: true,
|
|
9514
9776
|
original: {
|
|
9515
|
-
value: {
|
|
9516
|
-
fontFamily: "{semantic.font.family.default}",
|
|
9517
|
-
fontSize: "{semantic.font.size.default}",
|
|
9518
|
-
fontWeight: "{semantic.font.weight.regular}",
|
|
9519
|
-
letterSpacing: "{semantic.font.letter-spacing.normal}",
|
|
9520
|
-
lineHeight: "{semantic.font.line-height.fixed.base}",
|
|
9521
|
-
paragraphSpacing: "{semantic.font.paragraph-spacing.normal}",
|
|
9522
|
-
textCase: "{semantic.font.text-case.none}",
|
|
9523
|
-
textDecoration: "{semantic.font.text-decoration.none}",
|
|
9524
|
-
},
|
|
9777
|
+
value: "{semantic.typography.default.default}",
|
|
9525
9778
|
type: "typography",
|
|
9526
9779
|
attributes: {
|
|
9527
9780
|
category: "hierarchy",
|
|
9528
9781
|
},
|
|
9782
|
+
key: "{semantic.typography.hierarchy.body.default}",
|
|
9529
9783
|
},
|
|
9530
9784
|
name: "Typography Hierarchy Body",
|
|
9531
9785
|
path: ["semantic", "typography", "hierarchy", "body", "default"],
|
|
9532
|
-
key: "{semantic.typography.hierarchy.body.default}",
|
|
9533
9786
|
},
|
|
9534
9787
|
},
|
|
9535
9788
|
overline: {
|
|
9789
|
+
key: "{semantic.typography.hierarchy.overline}",
|
|
9536
9790
|
value: {
|
|
9537
9791
|
lineHeight: "12px",
|
|
9538
9792
|
textCase: "uppercase",
|
|
@@ -9569,12 +9823,13 @@ export default {
|
|
|
9569
9823
|
attributes: {
|
|
9570
9824
|
category: "hierarchy",
|
|
9571
9825
|
},
|
|
9826
|
+
key: "{semantic.typography.hierarchy.overline}",
|
|
9572
9827
|
},
|
|
9573
9828
|
name: "Typography Hierarchy Overline",
|
|
9574
9829
|
path: ["semantic", "typography", "hierarchy", "overline"],
|
|
9575
|
-
key: "{semantic.typography.hierarchy.overline}",
|
|
9576
9830
|
},
|
|
9577
9831
|
caption: {
|
|
9832
|
+
key: "{semantic.typography.hierarchy.caption}",
|
|
9578
9833
|
value: {
|
|
9579
9834
|
lineHeight: "1.375",
|
|
9580
9835
|
fontSize: "12px",
|
|
@@ -9601,23 +9856,21 @@ export default {
|
|
|
9601
9856
|
filePath: "src/tokens/semantic/typography.json",
|
|
9602
9857
|
isSource: true,
|
|
9603
9858
|
original: {
|
|
9604
|
-
value: {
|
|
9605
|
-
lineHeight: "{semantic.font.line-height.relative.snug}",
|
|
9606
|
-
fontSize: "{semantic.font.size.sm}",
|
|
9607
|
-
},
|
|
9859
|
+
value: "{semantic.typography.wrap.regular.-2}",
|
|
9608
9860
|
type: "typography",
|
|
9609
9861
|
attributes: {
|
|
9610
9862
|
category: "hierarchy",
|
|
9611
9863
|
},
|
|
9864
|
+
key: "{semantic.typography.hierarchy.caption}",
|
|
9612
9865
|
},
|
|
9613
9866
|
name: "Typography Hierarchy Caption",
|
|
9614
9867
|
path: ["semantic", "typography", "hierarchy", "caption"],
|
|
9615
|
-
key: "{semantic.typography.hierarchy.caption}",
|
|
9616
9868
|
},
|
|
9617
9869
|
},
|
|
9618
9870
|
},
|
|
9619
9871
|
"z-index": {
|
|
9620
9872
|
deep: {
|
|
9873
|
+
key: "{semantic.z-index.deep}",
|
|
9621
9874
|
value: "-999999",
|
|
9622
9875
|
type: "z-index",
|
|
9623
9876
|
attributes: {
|
|
@@ -9645,12 +9898,13 @@ export default {
|
|
|
9645
9898
|
attributes: {
|
|
9646
9899
|
category: "z-index",
|
|
9647
9900
|
},
|
|
9901
|
+
key: "{semantic.z-index.deep}",
|
|
9648
9902
|
},
|
|
9649
9903
|
name: "Z Index Deep",
|
|
9650
9904
|
path: ["semantic", "z-index", "deep"],
|
|
9651
|
-
key: "{semantic.z-index.deep}",
|
|
9652
9905
|
},
|
|
9653
9906
|
default: {
|
|
9907
|
+
key: "{semantic.z-index.default}",
|
|
9654
9908
|
value: "1",
|
|
9655
9909
|
type: "z-index",
|
|
9656
9910
|
attributes: {
|
|
@@ -9678,12 +9932,13 @@ export default {
|
|
|
9678
9932
|
attributes: {
|
|
9679
9933
|
category: "z-index",
|
|
9680
9934
|
},
|
|
9935
|
+
key: "{semantic.z-index.default}",
|
|
9681
9936
|
},
|
|
9682
9937
|
name: "Z Index",
|
|
9683
9938
|
path: ["semantic", "z-index", "default"],
|
|
9684
|
-
key: "{semantic.z-index.default}",
|
|
9685
9939
|
},
|
|
9686
9940
|
sticky: {
|
|
9941
|
+
key: "{semantic.z-index.sticky}",
|
|
9687
9942
|
value: "300",
|
|
9688
9943
|
type: "z-index",
|
|
9689
9944
|
attributes: {
|
|
@@ -9711,12 +9966,13 @@ export default {
|
|
|
9711
9966
|
attributes: {
|
|
9712
9967
|
category: "z-index",
|
|
9713
9968
|
},
|
|
9969
|
+
key: "{semantic.z-index.sticky}",
|
|
9714
9970
|
},
|
|
9715
9971
|
name: "Z Index Sticky",
|
|
9716
9972
|
path: ["semantic", "z-index", "sticky"],
|
|
9717
|
-
key: "{semantic.z-index.sticky}",
|
|
9718
9973
|
},
|
|
9719
9974
|
header: {
|
|
9975
|
+
key: "{semantic.z-index.header}",
|
|
9720
9976
|
value: "400",
|
|
9721
9977
|
type: "z-index",
|
|
9722
9978
|
attributes: {
|
|
@@ -9744,12 +10000,13 @@ export default {
|
|
|
9744
10000
|
attributes: {
|
|
9745
10001
|
category: "z-index",
|
|
9746
10002
|
},
|
|
10003
|
+
key: "{semantic.z-index.header}",
|
|
9747
10004
|
},
|
|
9748
10005
|
name: "Z Index Header",
|
|
9749
10006
|
path: ["semantic", "z-index", "header"],
|
|
9750
|
-
key: "{semantic.z-index.header}",
|
|
9751
10007
|
},
|
|
9752
10008
|
toast: {
|
|
10009
|
+
key: "{semantic.z-index.toast}",
|
|
9753
10010
|
value: "500",
|
|
9754
10011
|
type: "z-index",
|
|
9755
10012
|
attributes: {
|
|
@@ -9777,12 +10034,13 @@ export default {
|
|
|
9777
10034
|
attributes: {
|
|
9778
10035
|
category: "z-index",
|
|
9779
10036
|
},
|
|
10037
|
+
key: "{semantic.z-index.toast}",
|
|
9780
10038
|
},
|
|
9781
10039
|
name: "Z Index Toast",
|
|
9782
10040
|
path: ["semantic", "z-index", "toast"],
|
|
9783
|
-
key: "{semantic.z-index.toast}",
|
|
9784
10041
|
},
|
|
9785
10042
|
dropdown: {
|
|
10043
|
+
key: "{semantic.z-index.dropdown}",
|
|
9786
10044
|
value: "600",
|
|
9787
10045
|
type: "z-index",
|
|
9788
10046
|
attributes: {
|
|
@@ -9810,12 +10068,13 @@ export default {
|
|
|
9810
10068
|
attributes: {
|
|
9811
10069
|
category: "z-index",
|
|
9812
10070
|
},
|
|
10071
|
+
key: "{semantic.z-index.dropdown}",
|
|
9813
10072
|
},
|
|
9814
10073
|
name: "Z Index Dropdown",
|
|
9815
10074
|
path: ["semantic", "z-index", "dropdown"],
|
|
9816
|
-
key: "{semantic.z-index.dropdown}",
|
|
9817
10075
|
},
|
|
9818
10076
|
overlay: {
|
|
10077
|
+
key: "{semantic.z-index.overlay}",
|
|
9819
10078
|
value: "700",
|
|
9820
10079
|
type: "z-index",
|
|
9821
10080
|
attributes: {
|
|
@@ -9843,12 +10102,13 @@ export default {
|
|
|
9843
10102
|
attributes: {
|
|
9844
10103
|
category: "z-index",
|
|
9845
10104
|
},
|
|
10105
|
+
key: "{semantic.z-index.overlay}",
|
|
9846
10106
|
},
|
|
9847
10107
|
name: "Z Index Overlay",
|
|
9848
10108
|
path: ["semantic", "z-index", "overlay"],
|
|
9849
|
-
key: "{semantic.z-index.overlay}",
|
|
9850
10109
|
},
|
|
9851
10110
|
modal: {
|
|
10111
|
+
key: "{semantic.z-index.modal}",
|
|
9852
10112
|
value: "800",
|
|
9853
10113
|
type: "z-index",
|
|
9854
10114
|
attributes: {
|
|
@@ -9876,12 +10136,13 @@ export default {
|
|
|
9876
10136
|
attributes: {
|
|
9877
10137
|
category: "z-index",
|
|
9878
10138
|
},
|
|
10139
|
+
key: "{semantic.z-index.modal}",
|
|
9879
10140
|
},
|
|
9880
10141
|
name: "Z Index Modal",
|
|
9881
10142
|
path: ["semantic", "z-index", "modal"],
|
|
9882
|
-
key: "{semantic.z-index.modal}",
|
|
9883
10143
|
},
|
|
9884
10144
|
popup: {
|
|
10145
|
+
key: "{semantic.z-index.popup}",
|
|
9885
10146
|
value: "900",
|
|
9886
10147
|
type: "z-index",
|
|
9887
10148
|
attributes: {
|
|
@@ -9909,12 +10170,13 @@ export default {
|
|
|
9909
10170
|
attributes: {
|
|
9910
10171
|
category: "z-index",
|
|
9911
10172
|
},
|
|
10173
|
+
key: "{semantic.z-index.popup}",
|
|
9912
10174
|
},
|
|
9913
10175
|
name: "Z Index Popup",
|
|
9914
10176
|
path: ["semantic", "z-index", "popup"],
|
|
9915
|
-
key: "{semantic.z-index.popup}",
|
|
9916
10177
|
},
|
|
9917
10178
|
tooltip: {
|
|
10179
|
+
key: "{semantic.z-index.tooltip}",
|
|
9918
10180
|
value: "901",
|
|
9919
10181
|
type: "z-index",
|
|
9920
10182
|
attributes: {
|
|
@@ -9942,10 +10204,10 @@ export default {
|
|
|
9942
10204
|
attributes: {
|
|
9943
10205
|
category: "z-index",
|
|
9944
10206
|
},
|
|
10207
|
+
key: "{semantic.z-index.tooltip}",
|
|
9945
10208
|
},
|
|
9946
10209
|
name: "Z Index Tooltip",
|
|
9947
10210
|
path: ["semantic", "z-index", "tooltip"],
|
|
9948
|
-
key: "{semantic.z-index.tooltip}",
|
|
9949
10211
|
},
|
|
9950
10212
|
},
|
|
9951
10213
|
},
|