@esri/calcite-design-tokens 3.0.2-next.2 → 3.0.2-next.4
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/dark.css +2 -1
- package/dist/css/global.css +1 -1
- package/dist/css/index.css +5 -0
- package/dist/css/light.css +1 -0
- package/dist/docs/core.json +79 -79
- package/dist/docs/dark.json +1130 -0
- package/dist/docs/global.json +300 -300
- package/dist/docs/light.json +1130 -0
- package/dist/docs/semantic.json +69 -69
- package/dist/es6/dark.d.ts +46 -0
- package/dist/es6/dark.js +46 -0
- package/dist/es6/global.d.ts +5 -8
- package/dist/es6/global.js +4 -4
- package/dist/es6/light.d.ts +46 -0
- package/dist/es6/light.js +46 -0
- package/dist/js/core.js +117 -117
- package/dist/js/dark.d.ts +46 -0
- package/dist/js/dark.js +2147 -0
- package/dist/js/global.d.ts +8 -8
- package/dist/js/global.js +534 -654
- package/dist/js/light.d.ts +46 -0
- package/dist/js/light.js +2148 -0
- package/dist/js/semantic.js +92 -92
- package/dist/scss/dark.scss +2 -1
- package/dist/scss/global.scss +1 -1
- package/dist/scss/index.scss +2 -0
- package/dist/scss/light.scss +1 -0
- package/package.json +3 -6
package/dist/js/global.js
CHANGED
|
@@ -6,214 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
export default {
|
|
8
8
|
semantic: {
|
|
9
|
-
border: {
|
|
10
|
-
width: {
|
|
11
|
-
none: {
|
|
12
|
-
value: "0",
|
|
13
|
-
type: "dimension",
|
|
14
|
-
attributes: {
|
|
15
|
-
"calcite-schema": {
|
|
16
|
-
system: "calcite",
|
|
17
|
-
tier: "semantic",
|
|
18
|
-
type: "dimension",
|
|
19
|
-
},
|
|
20
|
-
category: "semantic",
|
|
21
|
-
type: "border",
|
|
22
|
-
item: "width",
|
|
23
|
-
subitem: "none",
|
|
24
|
-
names: {
|
|
25
|
-
scss: "$calcite-border-width-none",
|
|
26
|
-
css: "var(--calcite-border-width-none)",
|
|
27
|
-
js: "semantic.border.width.none",
|
|
28
|
-
docs: "semantic.border.width.none",
|
|
29
|
-
es6: "calciteBorderWidthNone",
|
|
30
|
-
},
|
|
31
|
-
},
|
|
32
|
-
filePath: "src/tokens/semantic/border.json",
|
|
33
|
-
isSource: true,
|
|
34
|
-
original: {
|
|
35
|
-
value: "{core.size.default.none}",
|
|
36
|
-
type: "dimension",
|
|
37
|
-
attributes: {
|
|
38
|
-
"calcite-schema": {
|
|
39
|
-
system: "calcite",
|
|
40
|
-
tier: "semantic",
|
|
41
|
-
domain: "",
|
|
42
|
-
component: "",
|
|
43
|
-
pattern: "",
|
|
44
|
-
element: "",
|
|
45
|
-
category: "border",
|
|
46
|
-
group: "width",
|
|
47
|
-
kind: "",
|
|
48
|
-
appearance: "",
|
|
49
|
-
property: "",
|
|
50
|
-
variant: "",
|
|
51
|
-
state: "",
|
|
52
|
-
scale: "none",
|
|
53
|
-
context: "",
|
|
54
|
-
mode: "",
|
|
55
|
-
},
|
|
56
|
-
},
|
|
57
|
-
},
|
|
58
|
-
name: "Border Width None",
|
|
59
|
-
path: ["semantic", "border", "width", "none"],
|
|
60
|
-
key: "{semantic.border.width.none}",
|
|
61
|
-
},
|
|
62
|
-
sm: {
|
|
63
|
-
value: "1px",
|
|
64
|
-
type: "dimension",
|
|
65
|
-
attributes: {
|
|
66
|
-
"calcite-schema": {
|
|
67
|
-
system: "calcite",
|
|
68
|
-
tier: "semantic",
|
|
69
|
-
type: "dimension",
|
|
70
|
-
},
|
|
71
|
-
category: "semantic",
|
|
72
|
-
type: "border",
|
|
73
|
-
item: "width",
|
|
74
|
-
subitem: "sm",
|
|
75
|
-
names: {
|
|
76
|
-
scss: "$calcite-border-width-sm",
|
|
77
|
-
css: "var(--calcite-border-width-sm)",
|
|
78
|
-
js: "semantic.border.width.sm",
|
|
79
|
-
docs: "semantic.border.width.sm",
|
|
80
|
-
es6: "calciteBorderWidthSm",
|
|
81
|
-
},
|
|
82
|
-
},
|
|
83
|
-
filePath: "src/tokens/semantic/border.json",
|
|
84
|
-
isSource: true,
|
|
85
|
-
original: {
|
|
86
|
-
value: "{core.size.default.1}",
|
|
87
|
-
type: "dimension",
|
|
88
|
-
attributes: {
|
|
89
|
-
"calcite-schema": {
|
|
90
|
-
system: "calcite",
|
|
91
|
-
tier: "semantic",
|
|
92
|
-
domain: "",
|
|
93
|
-
component: "",
|
|
94
|
-
pattern: "",
|
|
95
|
-
element: "",
|
|
96
|
-
category: "border",
|
|
97
|
-
group: "width",
|
|
98
|
-
kind: "",
|
|
99
|
-
appearance: "",
|
|
100
|
-
property: "",
|
|
101
|
-
variant: "",
|
|
102
|
-
state: "",
|
|
103
|
-
scale: "sm",
|
|
104
|
-
context: "",
|
|
105
|
-
mode: "",
|
|
106
|
-
},
|
|
107
|
-
},
|
|
108
|
-
},
|
|
109
|
-
name: "Border Width Sm",
|
|
110
|
-
path: ["semantic", "border", "width", "sm"],
|
|
111
|
-
key: "{semantic.border.width.sm}",
|
|
112
|
-
},
|
|
113
|
-
md: {
|
|
114
|
-
value: "2px",
|
|
115
|
-
type: "dimension",
|
|
116
|
-
attributes: {
|
|
117
|
-
"calcite-schema": {
|
|
118
|
-
system: "calcite",
|
|
119
|
-
tier: "semantic",
|
|
120
|
-
type: "dimension",
|
|
121
|
-
},
|
|
122
|
-
category: "semantic",
|
|
123
|
-
type: "border",
|
|
124
|
-
item: "width",
|
|
125
|
-
subitem: "md",
|
|
126
|
-
names: {
|
|
127
|
-
scss: "$calcite-border-width-md",
|
|
128
|
-
css: "var(--calcite-border-width-md)",
|
|
129
|
-
js: "semantic.border.width.md",
|
|
130
|
-
docs: "semantic.border.width.md",
|
|
131
|
-
es6: "calciteBorderWidthMd",
|
|
132
|
-
},
|
|
133
|
-
},
|
|
134
|
-
filePath: "src/tokens/semantic/border.json",
|
|
135
|
-
isSource: true,
|
|
136
|
-
original: {
|
|
137
|
-
value: "{core.size.default.2}",
|
|
138
|
-
type: "dimension",
|
|
139
|
-
attributes: {
|
|
140
|
-
"calcite-schema": {
|
|
141
|
-
system: "calcite",
|
|
142
|
-
tier: "semantic",
|
|
143
|
-
domain: "",
|
|
144
|
-
component: "",
|
|
145
|
-
pattern: "",
|
|
146
|
-
element: "",
|
|
147
|
-
category: "border",
|
|
148
|
-
group: "width",
|
|
149
|
-
kind: "",
|
|
150
|
-
appearance: "",
|
|
151
|
-
property: "",
|
|
152
|
-
variant: "",
|
|
153
|
-
state: "",
|
|
154
|
-
scale: "md",
|
|
155
|
-
context: "",
|
|
156
|
-
mode: "",
|
|
157
|
-
},
|
|
158
|
-
},
|
|
159
|
-
},
|
|
160
|
-
name: "Border Width Md",
|
|
161
|
-
path: ["semantic", "border", "width", "md"],
|
|
162
|
-
key: "{semantic.border.width.md}",
|
|
163
|
-
},
|
|
164
|
-
lg: {
|
|
165
|
-
value: "4px",
|
|
166
|
-
type: "dimension",
|
|
167
|
-
attributes: {
|
|
168
|
-
"calcite-schema": {
|
|
169
|
-
system: "calcite",
|
|
170
|
-
tier: "semantic",
|
|
171
|
-
type: "dimension",
|
|
172
|
-
},
|
|
173
|
-
category: "semantic",
|
|
174
|
-
type: "border",
|
|
175
|
-
item: "width",
|
|
176
|
-
subitem: "lg",
|
|
177
|
-
names: {
|
|
178
|
-
scss: "$calcite-border-width-lg",
|
|
179
|
-
css: "var(--calcite-border-width-lg)",
|
|
180
|
-
js: "semantic.border.width.lg",
|
|
181
|
-
docs: "semantic.border.width.lg",
|
|
182
|
-
es6: "calciteBorderWidthLg",
|
|
183
|
-
},
|
|
184
|
-
},
|
|
185
|
-
filePath: "src/tokens/semantic/border.json",
|
|
186
|
-
isSource: true,
|
|
187
|
-
original: {
|
|
188
|
-
value: "{core.size.default.4}",
|
|
189
|
-
type: "dimension",
|
|
190
|
-
attributes: {
|
|
191
|
-
"calcite-schema": {
|
|
192
|
-
system: "calcite",
|
|
193
|
-
tier: "semantic",
|
|
194
|
-
domain: "",
|
|
195
|
-
component: "",
|
|
196
|
-
pattern: "",
|
|
197
|
-
element: "",
|
|
198
|
-
category: "border",
|
|
199
|
-
group: "width",
|
|
200
|
-
kind: "",
|
|
201
|
-
appearance: "",
|
|
202
|
-
property: "",
|
|
203
|
-
variant: "",
|
|
204
|
-
state: "",
|
|
205
|
-
scale: "lg",
|
|
206
|
-
context: "",
|
|
207
|
-
mode: "",
|
|
208
|
-
},
|
|
209
|
-
},
|
|
210
|
-
},
|
|
211
|
-
name: "Border Width Lg",
|
|
212
|
-
path: ["semantic", "border", "width", "lg"],
|
|
213
|
-
key: "{semantic.border.width.lg}",
|
|
214
|
-
},
|
|
215
|
-
},
|
|
216
|
-
},
|
|
217
9
|
color: {
|
|
218
10
|
background: {
|
|
219
11
|
default: {
|
|
@@ -225,7 +17,7 @@ export default {
|
|
|
225
17
|
attributes: {
|
|
226
18
|
"calcite-schema": {
|
|
227
19
|
system: "calcite",
|
|
228
|
-
tier: "
|
|
20
|
+
tier: "color",
|
|
229
21
|
type: "color",
|
|
230
22
|
},
|
|
231
23
|
category: "semantic",
|
|
@@ -240,13 +32,10 @@ export default {
|
|
|
240
32
|
es6: "calciteColorBackground",
|
|
241
33
|
},
|
|
242
34
|
},
|
|
243
|
-
filePath: "src/tokens/semantic/color.json",
|
|
244
|
-
isSource:
|
|
35
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
36
|
+
isSource: false,
|
|
245
37
|
original: {
|
|
246
|
-
value: {
|
|
247
|
-
light: "{core.color.neutral.blk-005}",
|
|
248
|
-
dark: "{core.color.neutral.blk-190}",
|
|
249
|
-
},
|
|
38
|
+
value: "{core.color.neutral.blk-005}",
|
|
250
39
|
type: "color",
|
|
251
40
|
attributes: {
|
|
252
41
|
"calcite-schema": {
|
|
@@ -279,7 +68,7 @@ export default {
|
|
|
279
68
|
attributes: {
|
|
280
69
|
"calcite-schema": {
|
|
281
70
|
system: "calcite",
|
|
282
|
-
tier: "
|
|
71
|
+
tier: "color",
|
|
283
72
|
type: "color",
|
|
284
73
|
},
|
|
285
74
|
category: "semantic",
|
|
@@ -294,8 +83,8 @@ export default {
|
|
|
294
83
|
es6: "calciteColorBackgroundNone",
|
|
295
84
|
},
|
|
296
85
|
},
|
|
297
|
-
filePath: "src/tokens/semantic/color.json",
|
|
298
|
-
isSource:
|
|
86
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
87
|
+
isSource: false,
|
|
299
88
|
original: {
|
|
300
89
|
value: "rgba({core.color.neutral.blk-000}, {core.opacity.0})",
|
|
301
90
|
type: "color",
|
|
@@ -335,7 +124,7 @@ export default {
|
|
|
335
124
|
attributes: {
|
|
336
125
|
"calcite-schema": {
|
|
337
126
|
system: "calcite",
|
|
338
|
-
tier: "
|
|
127
|
+
tier: "color",
|
|
339
128
|
type: "color",
|
|
340
129
|
},
|
|
341
130
|
category: "semantic",
|
|
@@ -350,13 +139,10 @@ export default {
|
|
|
350
139
|
es6: "calciteColorForeground1",
|
|
351
140
|
},
|
|
352
141
|
},
|
|
353
|
-
filePath: "src/tokens/semantic/color.json",
|
|
354
|
-
isSource:
|
|
142
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
143
|
+
isSource: false,
|
|
355
144
|
original: {
|
|
356
|
-
value: {
|
|
357
|
-
light: "{core.color.neutral.blk-000}",
|
|
358
|
-
dark: "{core.color.neutral.blk-200}",
|
|
359
|
-
},
|
|
145
|
+
value: "{core.color.neutral.blk-000}",
|
|
360
146
|
type: "color",
|
|
361
147
|
attributes: {
|
|
362
148
|
"calcite-schema": {
|
|
@@ -391,7 +177,7 @@ export default {
|
|
|
391
177
|
attributes: {
|
|
392
178
|
"calcite-schema": {
|
|
393
179
|
system: "calcite",
|
|
394
|
-
tier: "
|
|
180
|
+
tier: "color",
|
|
395
181
|
type: "color",
|
|
396
182
|
},
|
|
397
183
|
category: "semantic",
|
|
@@ -406,13 +192,10 @@ export default {
|
|
|
406
192
|
es6: "calciteColorForeground2",
|
|
407
193
|
},
|
|
408
194
|
},
|
|
409
|
-
filePath: "src/tokens/semantic/color.json",
|
|
410
|
-
isSource:
|
|
195
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
196
|
+
isSource: false,
|
|
411
197
|
original: {
|
|
412
|
-
value: {
|
|
413
|
-
light: "{core.color.neutral.blk-010}",
|
|
414
|
-
dark: "{core.color.neutral.blk-210}",
|
|
415
|
-
},
|
|
198
|
+
value: "{core.color.neutral.blk-010}",
|
|
416
199
|
type: "color",
|
|
417
200
|
attributes: {
|
|
418
201
|
"calcite-schema": {
|
|
@@ -448,7 +231,7 @@ export default {
|
|
|
448
231
|
attributes: {
|
|
449
232
|
"calcite-schema": {
|
|
450
233
|
system: "calcite",
|
|
451
|
-
tier: "
|
|
234
|
+
tier: "color",
|
|
452
235
|
type: "color",
|
|
453
236
|
},
|
|
454
237
|
category: "semantic",
|
|
@@ -463,13 +246,10 @@ export default {
|
|
|
463
246
|
es6: "calciteColorForeground3",
|
|
464
247
|
},
|
|
465
248
|
},
|
|
466
|
-
filePath: "src/tokens/semantic/color.json",
|
|
467
|
-
isSource:
|
|
249
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
250
|
+
isSource: false,
|
|
468
251
|
original: {
|
|
469
|
-
value: {
|
|
470
|
-
light: "{core.color.neutral.blk-020}",
|
|
471
|
-
dark: "{core.color.neutral.blk-220}",
|
|
472
|
-
},
|
|
252
|
+
value: "{core.color.neutral.blk-020}",
|
|
473
253
|
type: "color",
|
|
474
254
|
attributes: {
|
|
475
255
|
"calcite-schema": {
|
|
@@ -505,7 +285,7 @@ export default {
|
|
|
505
285
|
attributes: {
|
|
506
286
|
"calcite-schema": {
|
|
507
287
|
system: "calcite",
|
|
508
|
-
tier: "
|
|
288
|
+
tier: "color",
|
|
509
289
|
type: "color",
|
|
510
290
|
},
|
|
511
291
|
category: "semantic",
|
|
@@ -520,13 +300,10 @@ export default {
|
|
|
520
300
|
es6: "calciteColorForegroundCurrent",
|
|
521
301
|
},
|
|
522
302
|
},
|
|
523
|
-
filePath: "src/tokens/semantic/color.json",
|
|
524
|
-
isSource:
|
|
303
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
304
|
+
isSource: false,
|
|
525
305
|
original: {
|
|
526
|
-
value: {
|
|
527
|
-
light: "{core.color.high-saturation.blue.h-bb-010}",
|
|
528
|
-
dark: "#214155",
|
|
529
|
-
},
|
|
306
|
+
value: "{core.color.high-saturation.blue.h-bb-010}",
|
|
530
307
|
type: "color",
|
|
531
308
|
attributes: {
|
|
532
309
|
"calcite-schema": {
|
|
@@ -565,7 +342,7 @@ export default {
|
|
|
565
342
|
attributes: {
|
|
566
343
|
"calcite-schema": {
|
|
567
344
|
system: "calcite",
|
|
568
|
-
tier: "
|
|
345
|
+
tier: "color",
|
|
569
346
|
type: "color",
|
|
570
347
|
},
|
|
571
348
|
category: "semantic",
|
|
@@ -581,13 +358,10 @@ export default {
|
|
|
581
358
|
es6: "calciteColorTransparent",
|
|
582
359
|
},
|
|
583
360
|
},
|
|
584
|
-
filePath: "src/tokens/semantic/color.json",
|
|
585
|
-
isSource:
|
|
361
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
362
|
+
isSource: false,
|
|
586
363
|
original: {
|
|
587
|
-
value: {
|
|
588
|
-
light: "rgba({core.color.neutral.blk-240}, {core.opacity.0})",
|
|
589
|
-
dark: "rgba({core.color.neutral.blk-000}, {core.opacity.0})",
|
|
590
|
-
},
|
|
364
|
+
value: "rgba({core.color.neutral.blk-240}, {core.opacity.0})",
|
|
591
365
|
type: "color",
|
|
592
366
|
attributes: {
|
|
593
367
|
"calcite-schema": {
|
|
@@ -623,7 +397,7 @@ export default {
|
|
|
623
397
|
attributes: {
|
|
624
398
|
"calcite-schema": {
|
|
625
399
|
system: "calcite",
|
|
626
|
-
tier: "
|
|
400
|
+
tier: "color",
|
|
627
401
|
type: "color",
|
|
628
402
|
},
|
|
629
403
|
category: "semantic",
|
|
@@ -639,13 +413,10 @@ export default {
|
|
|
639
413
|
es6: "calciteColorTransparentHover",
|
|
640
414
|
},
|
|
641
415
|
},
|
|
642
|
-
filePath: "src/tokens/semantic/color.json",
|
|
643
|
-
isSource:
|
|
416
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
417
|
+
isSource: false,
|
|
644
418
|
original: {
|
|
645
|
-
value: {
|
|
646
|
-
light: "rgba({core.color.neutral.blk-240}, {core.opacity.4})",
|
|
647
|
-
dark: "rgba({core.color.neutral.blk-000}, {core.opacity.4})",
|
|
648
|
-
},
|
|
419
|
+
value: "rgba({core.color.neutral.blk-240}, {core.opacity.4})",
|
|
649
420
|
type: "color",
|
|
650
421
|
attributes: {
|
|
651
422
|
"calcite-schema": {
|
|
@@ -681,7 +452,7 @@ export default {
|
|
|
681
452
|
attributes: {
|
|
682
453
|
"calcite-schema": {
|
|
683
454
|
system: "calcite",
|
|
684
|
-
tier: "
|
|
455
|
+
tier: "color",
|
|
685
456
|
type: "color",
|
|
686
457
|
},
|
|
687
458
|
category: "semantic",
|
|
@@ -697,13 +468,10 @@ export default {
|
|
|
697
468
|
es6: "calciteColorTransparentPress",
|
|
698
469
|
},
|
|
699
470
|
},
|
|
700
|
-
filePath: "src/tokens/semantic/color.json",
|
|
701
|
-
isSource:
|
|
471
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
472
|
+
isSource: false,
|
|
702
473
|
original: {
|
|
703
|
-
value: {
|
|
704
|
-
light: "rgba({core.color.neutral.blk-240}, {core.opacity.8})",
|
|
705
|
-
dark: "rgba({core.color.neutral.blk-000}, {core.opacity.8})",
|
|
706
|
-
},
|
|
474
|
+
value: "rgba({core.color.neutral.blk-240}, {core.opacity.8})",
|
|
707
475
|
type: "color",
|
|
708
476
|
attributes: {
|
|
709
477
|
"calcite-schema": {
|
|
@@ -740,7 +508,7 @@ export default {
|
|
|
740
508
|
attributes: {
|
|
741
509
|
"calcite-schema": {
|
|
742
510
|
system: "calcite",
|
|
743
|
-
tier: "
|
|
511
|
+
tier: "color",
|
|
744
512
|
type: "color",
|
|
745
513
|
},
|
|
746
514
|
category: "semantic",
|
|
@@ -755,13 +523,10 @@ export default {
|
|
|
755
523
|
es6: "calciteColorTransparentScrim",
|
|
756
524
|
},
|
|
757
525
|
},
|
|
758
|
-
filePath: "src/tokens/semantic/color.json",
|
|
759
|
-
isSource:
|
|
526
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
527
|
+
isSource: false,
|
|
760
528
|
original: {
|
|
761
|
-
value: {
|
|
762
|
-
light: "rgba({core.color.neutral.blk-000}, {core.opacity.85})",
|
|
763
|
-
dark: "rgba({core.color.neutral.blk-240}, {core.opacity.85})",
|
|
764
|
-
},
|
|
529
|
+
value: "rgba({core.color.neutral.blk-000}, {core.opacity.85})",
|
|
765
530
|
type: "color",
|
|
766
531
|
attributes: {
|
|
767
532
|
"calcite-schema": {
|
|
@@ -797,7 +562,7 @@ export default {
|
|
|
797
562
|
attributes: {
|
|
798
563
|
"calcite-schema": {
|
|
799
564
|
system: "calcite",
|
|
800
|
-
tier: "
|
|
565
|
+
tier: "color",
|
|
801
566
|
type: "color",
|
|
802
567
|
},
|
|
803
568
|
category: "semantic",
|
|
@@ -812,13 +577,10 @@ export default {
|
|
|
812
577
|
es6: "calciteColorTransparentTint",
|
|
813
578
|
},
|
|
814
579
|
},
|
|
815
|
-
filePath: "src/tokens/semantic/color.json",
|
|
816
|
-
isSource:
|
|
580
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
581
|
+
isSource: false,
|
|
817
582
|
original: {
|
|
818
|
-
value: {
|
|
819
|
-
light: "rgba({core.color.neutral.blk-000}, {core.opacity.80})",
|
|
820
|
-
dark: "rgba({core.color.neutral.blk-200}, {core.opacity.80})",
|
|
821
|
-
},
|
|
583
|
+
value: "rgba({core.color.neutral.blk-000}, {core.opacity.80})",
|
|
822
584
|
type: "color",
|
|
823
585
|
attributes: {
|
|
824
586
|
"calcite-schema": {
|
|
@@ -857,7 +619,7 @@ export default {
|
|
|
857
619
|
attributes: {
|
|
858
620
|
"calcite-schema": {
|
|
859
621
|
system: "calcite",
|
|
860
|
-
tier: "
|
|
622
|
+
tier: "color",
|
|
861
623
|
type: "color",
|
|
862
624
|
},
|
|
863
625
|
category: "semantic",
|
|
@@ -873,13 +635,10 @@ export default {
|
|
|
873
635
|
es6: "calciteColorBrand",
|
|
874
636
|
},
|
|
875
637
|
},
|
|
876
|
-
filePath: "src/tokens/semantic/color.json",
|
|
877
|
-
isSource:
|
|
638
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
639
|
+
isSource: false,
|
|
878
640
|
original: {
|
|
879
|
-
value: {
|
|
880
|
-
light: "{core.color.high-saturation.blue.h-bb-060}",
|
|
881
|
-
dark: "{core.color.vibrant.blue.v-bb-160}",
|
|
882
|
-
},
|
|
641
|
+
value: "{core.color.high-saturation.blue.h-bb-060}",
|
|
883
642
|
type: "color",
|
|
884
643
|
attributes: {
|
|
885
644
|
"calcite-schema": {
|
|
@@ -915,7 +674,7 @@ export default {
|
|
|
915
674
|
attributes: {
|
|
916
675
|
"calcite-schema": {
|
|
917
676
|
system: "calcite",
|
|
918
|
-
tier: "
|
|
677
|
+
tier: "color",
|
|
919
678
|
type: "color",
|
|
920
679
|
},
|
|
921
680
|
category: "semantic",
|
|
@@ -931,13 +690,10 @@ export default {
|
|
|
931
690
|
es6: "calciteColorBrandHover",
|
|
932
691
|
},
|
|
933
692
|
},
|
|
934
|
-
filePath: "src/tokens/semantic/color.json",
|
|
935
|
-
isSource:
|
|
693
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
694
|
+
isSource: false,
|
|
936
695
|
original: {
|
|
937
|
-
value: {
|
|
938
|
-
light: "{core.color.high-saturation.blue.h-bb-070}",
|
|
939
|
-
dark: "{core.color.high-saturation.blue.h-bb-060}",
|
|
940
|
-
},
|
|
696
|
+
value: "{core.color.high-saturation.blue.h-bb-070}",
|
|
941
697
|
type: "color",
|
|
942
698
|
attributes: {
|
|
943
699
|
"calcite-schema": {
|
|
@@ -973,7 +729,7 @@ export default {
|
|
|
973
729
|
attributes: {
|
|
974
730
|
"calcite-schema": {
|
|
975
731
|
system: "calcite",
|
|
976
|
-
tier: "
|
|
732
|
+
tier: "color",
|
|
977
733
|
type: "color",
|
|
978
734
|
},
|
|
979
735
|
category: "semantic",
|
|
@@ -989,13 +745,10 @@ export default {
|
|
|
989
745
|
es6: "calciteColorBrandPress",
|
|
990
746
|
},
|
|
991
747
|
},
|
|
992
|
-
filePath: "src/tokens/semantic/color.json",
|
|
993
|
-
isSource:
|
|
748
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
749
|
+
isSource: false,
|
|
994
750
|
original: {
|
|
995
|
-
value: {
|
|
996
|
-
light: "{core.color.high-saturation.blue.h-bb-080}",
|
|
997
|
-
dark: "{core.color.high-saturation.blue.h-bb-070}",
|
|
998
|
-
},
|
|
751
|
+
value: "{core.color.high-saturation.blue.h-bb-080}",
|
|
999
752
|
type: "color",
|
|
1000
753
|
attributes: {
|
|
1001
754
|
"calcite-schema": {
|
|
@@ -1032,7 +785,7 @@ export default {
|
|
|
1032
785
|
attributes: {
|
|
1033
786
|
"calcite-schema": {
|
|
1034
787
|
system: "calcite",
|
|
1035
|
-
tier: "
|
|
788
|
+
tier: "color",
|
|
1036
789
|
type: "color",
|
|
1037
790
|
},
|
|
1038
791
|
category: "semantic",
|
|
@@ -1047,15 +800,12 @@ export default {
|
|
|
1047
800
|
es6: "calciteColorBrandUnderline",
|
|
1048
801
|
},
|
|
1049
802
|
},
|
|
1050
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1051
|
-
isSource:
|
|
803
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
804
|
+
isSource: false,
|
|
1052
805
|
original: {
|
|
1053
806
|
type: "color",
|
|
1054
|
-
value:
|
|
1055
|
-
|
|
1056
|
-
"rgba({core.color.high-saturation.blue.h-bb-070}, {core.opacity.40})",
|
|
1057
|
-
dark: "rgba({core.color.dark.blue.d-bb-420}, {core.opacity.40})",
|
|
1058
|
-
},
|
|
807
|
+
value:
|
|
808
|
+
"rgba({core.color.high-saturation.blue.h-bb-070}, {core.opacity.40})",
|
|
1059
809
|
attributes: {
|
|
1060
810
|
"calcite-schema": {
|
|
1061
811
|
system: "calcite",
|
|
@@ -1093,7 +843,7 @@ export default {
|
|
|
1093
843
|
attributes: {
|
|
1094
844
|
"calcite-schema": {
|
|
1095
845
|
system: "calcite",
|
|
1096
|
-
tier: "
|
|
846
|
+
tier: "color",
|
|
1097
847
|
type: "color",
|
|
1098
848
|
},
|
|
1099
849
|
category: "semantic",
|
|
@@ -1109,13 +859,10 @@ export default {
|
|
|
1109
859
|
es6: "calciteColorStatusInfo",
|
|
1110
860
|
},
|
|
1111
861
|
},
|
|
1112
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1113
|
-
isSource:
|
|
862
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
863
|
+
isSource: false,
|
|
1114
864
|
original: {
|
|
1115
|
-
value: {
|
|
1116
|
-
light: "{core.color.high-saturation.blue.h-bb-070}",
|
|
1117
|
-
dark: "{core.color.dark.blue.d-bb-420}",
|
|
1118
|
-
},
|
|
865
|
+
value: "{core.color.high-saturation.blue.h-bb-070}",
|
|
1119
866
|
type: "color",
|
|
1120
867
|
attributes: {
|
|
1121
868
|
"calcite-schema": {
|
|
@@ -1151,7 +898,7 @@ export default {
|
|
|
1151
898
|
attributes: {
|
|
1152
899
|
"calcite-schema": {
|
|
1153
900
|
system: "calcite",
|
|
1154
|
-
tier: "
|
|
901
|
+
tier: "color",
|
|
1155
902
|
type: "color",
|
|
1156
903
|
},
|
|
1157
904
|
category: "semantic",
|
|
@@ -1167,13 +914,10 @@ export default {
|
|
|
1167
914
|
es6: "calciteColorStatusInfoHover",
|
|
1168
915
|
},
|
|
1169
916
|
},
|
|
1170
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1171
|
-
isSource:
|
|
917
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
918
|
+
isSource: false,
|
|
1172
919
|
original: {
|
|
1173
|
-
value: {
|
|
1174
|
-
light: "{core.color.high-saturation.blue.h-bb-080}",
|
|
1175
|
-
dark: "{core.color.vibrant.blue.v-bb-140}",
|
|
1176
|
-
},
|
|
920
|
+
value: "{core.color.high-saturation.blue.h-bb-080}",
|
|
1177
921
|
type: "color",
|
|
1178
922
|
attributes: {
|
|
1179
923
|
"calcite-schema": {
|
|
@@ -1209,7 +953,7 @@ export default {
|
|
|
1209
953
|
attributes: {
|
|
1210
954
|
"calcite-schema": {
|
|
1211
955
|
system: "calcite",
|
|
1212
|
-
tier: "
|
|
956
|
+
tier: "color",
|
|
1213
957
|
type: "color",
|
|
1214
958
|
},
|
|
1215
959
|
category: "semantic",
|
|
@@ -1225,13 +969,10 @@ export default {
|
|
|
1225
969
|
es6: "calciteColorStatusInfoPress",
|
|
1226
970
|
},
|
|
1227
971
|
},
|
|
1228
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1229
|
-
isSource:
|
|
972
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
973
|
+
isSource: false,
|
|
1230
974
|
original: {
|
|
1231
|
-
value: {
|
|
1232
|
-
light: "{core.color.high-saturation.blue.h-bb-090}",
|
|
1233
|
-
dark: "{core.color.vibrant.blue.v-bb-160}",
|
|
1234
|
-
},
|
|
975
|
+
value: "{core.color.high-saturation.blue.h-bb-090}",
|
|
1235
976
|
type: "color",
|
|
1236
977
|
attributes: {
|
|
1237
978
|
"calcite-schema": {
|
|
@@ -1269,7 +1010,7 @@ export default {
|
|
|
1269
1010
|
attributes: {
|
|
1270
1011
|
"calcite-schema": {
|
|
1271
1012
|
system: "calcite",
|
|
1272
|
-
tier: "
|
|
1013
|
+
tier: "color",
|
|
1273
1014
|
type: "color",
|
|
1274
1015
|
},
|
|
1275
1016
|
category: "semantic",
|
|
@@ -1285,13 +1026,10 @@ export default {
|
|
|
1285
1026
|
es6: "calciteColorStatusSuccess",
|
|
1286
1027
|
},
|
|
1287
1028
|
},
|
|
1288
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1289
|
-
isSource:
|
|
1029
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1030
|
+
isSource: false,
|
|
1290
1031
|
original: {
|
|
1291
|
-
value: {
|
|
1292
|
-
light: "{core.color.high-saturation.green.h-gg-060}",
|
|
1293
|
-
dark: "{core.color.dark.green.d-gg-420}",
|
|
1294
|
-
},
|
|
1032
|
+
value: "{core.color.high-saturation.green.h-gg-060}",
|
|
1295
1033
|
type: "color",
|
|
1296
1034
|
attributes: {
|
|
1297
1035
|
"calcite-schema": {
|
|
@@ -1327,7 +1065,7 @@ export default {
|
|
|
1327
1065
|
attributes: {
|
|
1328
1066
|
"calcite-schema": {
|
|
1329
1067
|
system: "calcite",
|
|
1330
|
-
tier: "
|
|
1068
|
+
tier: "color",
|
|
1331
1069
|
type: "color",
|
|
1332
1070
|
},
|
|
1333
1071
|
category: "semantic",
|
|
@@ -1343,13 +1081,10 @@ export default {
|
|
|
1343
1081
|
es6: "calciteColorStatusSuccessHover",
|
|
1344
1082
|
},
|
|
1345
1083
|
},
|
|
1346
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1347
|
-
isSource:
|
|
1084
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1085
|
+
isSource: false,
|
|
1348
1086
|
original: {
|
|
1349
|
-
value: {
|
|
1350
|
-
light: "{core.color.high-saturation.green.h-gg-070}",
|
|
1351
|
-
dark: "{core.color.vibrant.green.v-gg-140}",
|
|
1352
|
-
},
|
|
1087
|
+
value: "{core.color.high-saturation.green.h-gg-070}",
|
|
1353
1088
|
type: "color",
|
|
1354
1089
|
attributes: {
|
|
1355
1090
|
"calcite-schema": {
|
|
@@ -1385,7 +1120,7 @@ export default {
|
|
|
1385
1120
|
attributes: {
|
|
1386
1121
|
"calcite-schema": {
|
|
1387
1122
|
system: "calcite",
|
|
1388
|
-
tier: "
|
|
1123
|
+
tier: "color",
|
|
1389
1124
|
type: "color",
|
|
1390
1125
|
},
|
|
1391
1126
|
category: "semantic",
|
|
@@ -1401,13 +1136,10 @@ export default {
|
|
|
1401
1136
|
es6: "calciteColorStatusSuccessPress",
|
|
1402
1137
|
},
|
|
1403
1138
|
},
|
|
1404
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1405
|
-
isSource:
|
|
1139
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1140
|
+
isSource: false,
|
|
1406
1141
|
original: {
|
|
1407
|
-
value: {
|
|
1408
|
-
light: "{core.color.high-saturation.green.h-gg-080}",
|
|
1409
|
-
dark: "{core.color.vibrant.green.v-gg-160}",
|
|
1410
|
-
},
|
|
1142
|
+
value: "{core.color.high-saturation.green.h-gg-080}",
|
|
1411
1143
|
type: "color",
|
|
1412
1144
|
attributes: {
|
|
1413
1145
|
"calcite-schema": {
|
|
@@ -1445,7 +1177,7 @@ export default {
|
|
|
1445
1177
|
attributes: {
|
|
1446
1178
|
"calcite-schema": {
|
|
1447
1179
|
system: "calcite",
|
|
1448
|
-
tier: "
|
|
1180
|
+
tier: "color",
|
|
1449
1181
|
type: "color",
|
|
1450
1182
|
},
|
|
1451
1183
|
category: "semantic",
|
|
@@ -1461,13 +1193,10 @@ export default {
|
|
|
1461
1193
|
es6: "calciteColorStatusWarning",
|
|
1462
1194
|
},
|
|
1463
1195
|
},
|
|
1464
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1465
|
-
isSource:
|
|
1196
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1197
|
+
isSource: false,
|
|
1466
1198
|
original: {
|
|
1467
|
-
value: {
|
|
1468
|
-
light: "{core.color.high-saturation.yellow.h-yy-060}",
|
|
1469
|
-
dark: "{core.color.dark.yellow.d-yy-420}",
|
|
1470
|
-
},
|
|
1199
|
+
value: "{core.color.high-saturation.yellow.h-yy-060}",
|
|
1471
1200
|
type: "color",
|
|
1472
1201
|
attributes: {
|
|
1473
1202
|
"calcite-schema": {
|
|
@@ -1503,7 +1232,7 @@ export default {
|
|
|
1503
1232
|
attributes: {
|
|
1504
1233
|
"calcite-schema": {
|
|
1505
1234
|
system: "calcite",
|
|
1506
|
-
tier: "
|
|
1235
|
+
tier: "color",
|
|
1507
1236
|
type: "color",
|
|
1508
1237
|
},
|
|
1509
1238
|
category: "semantic",
|
|
@@ -1519,13 +1248,10 @@ export default {
|
|
|
1519
1248
|
es6: "calciteColorStatusWarningHover",
|
|
1520
1249
|
},
|
|
1521
1250
|
},
|
|
1522
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1523
|
-
isSource:
|
|
1251
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1252
|
+
isSource: false,
|
|
1524
1253
|
original: {
|
|
1525
|
-
value: {
|
|
1526
|
-
light: "{core.color.high-saturation.yellow.h-yy-070}",
|
|
1527
|
-
dark: "{core.color.vibrant.yellow.v-yy-140}",
|
|
1528
|
-
},
|
|
1254
|
+
value: "{core.color.high-saturation.yellow.h-yy-070}",
|
|
1529
1255
|
type: "color",
|
|
1530
1256
|
attributes: {
|
|
1531
1257
|
"calcite-schema": {
|
|
@@ -1561,7 +1287,7 @@ export default {
|
|
|
1561
1287
|
attributes: {
|
|
1562
1288
|
"calcite-schema": {
|
|
1563
1289
|
system: "calcite",
|
|
1564
|
-
tier: "
|
|
1290
|
+
tier: "color",
|
|
1565
1291
|
type: "color",
|
|
1566
1292
|
},
|
|
1567
1293
|
category: "semantic",
|
|
@@ -1577,13 +1303,10 @@ export default {
|
|
|
1577
1303
|
es6: "calciteColorStatusWarningPress",
|
|
1578
1304
|
},
|
|
1579
1305
|
},
|
|
1580
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1581
|
-
isSource:
|
|
1306
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1307
|
+
isSource: false,
|
|
1582
1308
|
original: {
|
|
1583
|
-
value: {
|
|
1584
|
-
light: "{core.color.high-saturation.yellow.h-yy-080}",
|
|
1585
|
-
dark: "{core.color.vibrant.yellow.v-yy-160}",
|
|
1586
|
-
},
|
|
1309
|
+
value: "{core.color.high-saturation.yellow.h-yy-080}",
|
|
1587
1310
|
type: "color",
|
|
1588
1311
|
attributes: {
|
|
1589
1312
|
"calcite-schema": {
|
|
@@ -1621,7 +1344,7 @@ export default {
|
|
|
1621
1344
|
attributes: {
|
|
1622
1345
|
"calcite-schema": {
|
|
1623
1346
|
system: "calcite",
|
|
1624
|
-
tier: "
|
|
1347
|
+
tier: "color",
|
|
1625
1348
|
type: "color",
|
|
1626
1349
|
},
|
|
1627
1350
|
category: "semantic",
|
|
@@ -1637,13 +1360,10 @@ export default {
|
|
|
1637
1360
|
es6: "calciteColorStatusDanger",
|
|
1638
1361
|
},
|
|
1639
1362
|
},
|
|
1640
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1641
|
-
isSource:
|
|
1363
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1364
|
+
isSource: false,
|
|
1642
1365
|
original: {
|
|
1643
|
-
value: {
|
|
1644
|
-
light: "{core.color.high-saturation.red.h-rr-060}",
|
|
1645
|
-
dark: "{core.color.dark.red.d-rr-420}",
|
|
1646
|
-
},
|
|
1366
|
+
value: "{core.color.high-saturation.red.h-rr-060}",
|
|
1647
1367
|
type: "color",
|
|
1648
1368
|
attributes: {
|
|
1649
1369
|
"calcite-schema": {
|
|
@@ -1679,7 +1399,7 @@ export default {
|
|
|
1679
1399
|
attributes: {
|
|
1680
1400
|
"calcite-schema": {
|
|
1681
1401
|
system: "calcite",
|
|
1682
|
-
tier: "
|
|
1402
|
+
tier: "color",
|
|
1683
1403
|
type: "color",
|
|
1684
1404
|
},
|
|
1685
1405
|
category: "semantic",
|
|
@@ -1695,13 +1415,10 @@ export default {
|
|
|
1695
1415
|
es6: "calciteColorStatusDangerHover",
|
|
1696
1416
|
},
|
|
1697
1417
|
},
|
|
1698
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1699
|
-
isSource:
|
|
1418
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1419
|
+
isSource: false,
|
|
1700
1420
|
original: {
|
|
1701
|
-
value: {
|
|
1702
|
-
light: "{core.color.high-saturation.red.h-rr-070}",
|
|
1703
|
-
dark: "{core.color.vibrant.red.v-rr-140}",
|
|
1704
|
-
},
|
|
1421
|
+
value: "{core.color.high-saturation.red.h-rr-070}",
|
|
1705
1422
|
type: "color",
|
|
1706
1423
|
attributes: {
|
|
1707
1424
|
"calcite-schema": {
|
|
@@ -1737,7 +1454,7 @@ export default {
|
|
|
1737
1454
|
attributes: {
|
|
1738
1455
|
"calcite-schema": {
|
|
1739
1456
|
system: "calcite",
|
|
1740
|
-
tier: "
|
|
1457
|
+
tier: "color",
|
|
1741
1458
|
type: "color",
|
|
1742
1459
|
},
|
|
1743
1460
|
category: "semantic",
|
|
@@ -1753,13 +1470,10 @@ export default {
|
|
|
1753
1470
|
es6: "calciteColorStatusDangerPress",
|
|
1754
1471
|
},
|
|
1755
1472
|
},
|
|
1756
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1757
|
-
isSource:
|
|
1473
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1474
|
+
isSource: false,
|
|
1758
1475
|
original: {
|
|
1759
|
-
value: {
|
|
1760
|
-
light: "{core.color.high-saturation.red.h-rr-080}",
|
|
1761
|
-
dark: "{core.color.vibrant.red.v-rr-160}",
|
|
1762
|
-
},
|
|
1476
|
+
value: "{core.color.high-saturation.red.h-rr-080}",
|
|
1763
1477
|
type: "color",
|
|
1764
1478
|
attributes: {
|
|
1765
1479
|
"calcite-schema": {
|
|
@@ -1798,7 +1512,7 @@ export default {
|
|
|
1798
1512
|
attributes: {
|
|
1799
1513
|
"calcite-schema": {
|
|
1800
1514
|
system: "calcite",
|
|
1801
|
-
tier: "
|
|
1515
|
+
tier: "color",
|
|
1802
1516
|
type: "color",
|
|
1803
1517
|
},
|
|
1804
1518
|
category: "semantic",
|
|
@@ -1813,13 +1527,10 @@ export default {
|
|
|
1813
1527
|
es6: "calciteColorInverse",
|
|
1814
1528
|
},
|
|
1815
1529
|
},
|
|
1816
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1817
|
-
isSource:
|
|
1530
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1531
|
+
isSource: false,
|
|
1818
1532
|
original: {
|
|
1819
|
-
value: {
|
|
1820
|
-
light: "{core.color.neutral.blk-190}",
|
|
1821
|
-
dark: "{core.color.neutral.blk-005}",
|
|
1822
|
-
},
|
|
1533
|
+
value: "{core.color.neutral.blk-190}",
|
|
1823
1534
|
type: "color",
|
|
1824
1535
|
attributes: {
|
|
1825
1536
|
"calcite-schema": {
|
|
@@ -1855,7 +1566,7 @@ export default {
|
|
|
1855
1566
|
attributes: {
|
|
1856
1567
|
"calcite-schema": {
|
|
1857
1568
|
system: "calcite",
|
|
1858
|
-
tier: "
|
|
1569
|
+
tier: "color",
|
|
1859
1570
|
type: "color",
|
|
1860
1571
|
},
|
|
1861
1572
|
category: "semantic",
|
|
@@ -1870,13 +1581,10 @@ export default {
|
|
|
1870
1581
|
es6: "calciteColorInverseHover",
|
|
1871
1582
|
},
|
|
1872
1583
|
},
|
|
1873
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1874
|
-
isSource:
|
|
1584
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1585
|
+
isSource: false,
|
|
1875
1586
|
original: {
|
|
1876
|
-
value: {
|
|
1877
|
-
light: "{core.color.neutral.blk-200}",
|
|
1878
|
-
dark: "{core.color.neutral.blk-000}",
|
|
1879
|
-
},
|
|
1587
|
+
value: "{core.color.neutral.blk-200}",
|
|
1880
1588
|
type: "color",
|
|
1881
1589
|
attributes: {
|
|
1882
1590
|
"calcite-schema": {
|
|
@@ -1912,7 +1620,7 @@ export default {
|
|
|
1912
1620
|
attributes: {
|
|
1913
1621
|
"calcite-schema": {
|
|
1914
1622
|
system: "calcite",
|
|
1915
|
-
tier: "
|
|
1623
|
+
tier: "color",
|
|
1916
1624
|
type: "color",
|
|
1917
1625
|
},
|
|
1918
1626
|
category: "semantic",
|
|
@@ -1927,13 +1635,10 @@ export default {
|
|
|
1927
1635
|
es6: "calciteColorInversePress",
|
|
1928
1636
|
},
|
|
1929
1637
|
},
|
|
1930
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1931
|
-
isSource:
|
|
1638
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1639
|
+
isSource: false,
|
|
1932
1640
|
original: {
|
|
1933
|
-
value: {
|
|
1934
|
-
light: "{core.color.neutral.blk-210}",
|
|
1935
|
-
dark: "{core.color.neutral.blk-010}",
|
|
1936
|
-
},
|
|
1641
|
+
value: "{core.color.neutral.blk-210}",
|
|
1937
1642
|
type: "color",
|
|
1938
1643
|
attributes: {
|
|
1939
1644
|
"calcite-schema": {
|
|
@@ -1971,7 +1676,7 @@ export default {
|
|
|
1971
1676
|
attributes: {
|
|
1972
1677
|
"calcite-schema": {
|
|
1973
1678
|
system: "calcite",
|
|
1974
|
-
tier: "
|
|
1679
|
+
tier: "color",
|
|
1975
1680
|
type: "color",
|
|
1976
1681
|
},
|
|
1977
1682
|
category: "semantic",
|
|
@@ -1986,13 +1691,10 @@ export default {
|
|
|
1986
1691
|
es6: "calciteColorText1",
|
|
1987
1692
|
},
|
|
1988
1693
|
},
|
|
1989
|
-
filePath: "src/tokens/semantic/color.json",
|
|
1990
|
-
isSource:
|
|
1694
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1695
|
+
isSource: false,
|
|
1991
1696
|
original: {
|
|
1992
|
-
value: {
|
|
1993
|
-
light: "{core.color.neutral.blk-220}",
|
|
1994
|
-
dark: "{core.color.neutral.blk-000}",
|
|
1995
|
-
},
|
|
1697
|
+
value: "{core.color.neutral.blk-220}",
|
|
1996
1698
|
type: "color",
|
|
1997
1699
|
attributes: {
|
|
1998
1700
|
"calcite-schema": {
|
|
@@ -2028,7 +1730,7 @@ export default {
|
|
|
2028
1730
|
attributes: {
|
|
2029
1731
|
"calcite-schema": {
|
|
2030
1732
|
system: "calcite",
|
|
2031
|
-
tier: "
|
|
1733
|
+
tier: "color",
|
|
2032
1734
|
type: "color",
|
|
2033
1735
|
},
|
|
2034
1736
|
category: "semantic",
|
|
@@ -2043,13 +1745,10 @@ export default {
|
|
|
2043
1745
|
es6: "calciteColorText2",
|
|
2044
1746
|
},
|
|
2045
1747
|
},
|
|
2046
|
-
filePath: "src/tokens/semantic/color.json",
|
|
2047
|
-
isSource:
|
|
1748
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1749
|
+
isSource: false,
|
|
2048
1750
|
original: {
|
|
2049
|
-
value: {
|
|
2050
|
-
light: "{core.color.neutral.blk-170}",
|
|
2051
|
-
dark: "{core.color.neutral.blk-060}",
|
|
2052
|
-
},
|
|
1751
|
+
value: "{core.color.neutral.blk-170}",
|
|
2053
1752
|
type: "color",
|
|
2054
1753
|
attributes: {
|
|
2055
1754
|
"calcite-schema": {
|
|
@@ -2085,7 +1784,7 @@ export default {
|
|
|
2085
1784
|
attributes: {
|
|
2086
1785
|
"calcite-schema": {
|
|
2087
1786
|
system: "calcite",
|
|
2088
|
-
tier: "
|
|
1787
|
+
tier: "color",
|
|
2089
1788
|
type: "color",
|
|
2090
1789
|
},
|
|
2091
1790
|
category: "semantic",
|
|
@@ -2100,13 +1799,10 @@ export default {
|
|
|
2100
1799
|
es6: "calciteColorText3",
|
|
2101
1800
|
},
|
|
2102
1801
|
},
|
|
2103
|
-
filePath: "src/tokens/semantic/color.json",
|
|
2104
|
-
isSource:
|
|
1802
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1803
|
+
isSource: false,
|
|
2105
1804
|
original: {
|
|
2106
|
-
value: {
|
|
2107
|
-
light: "{core.color.neutral.blk-140}",
|
|
2108
|
-
dark: "{core.color.neutral.blk-090}",
|
|
2109
|
-
},
|
|
1805
|
+
value: "{core.color.neutral.blk-140}",
|
|
2110
1806
|
type: "color",
|
|
2111
1807
|
attributes: {
|
|
2112
1808
|
"calcite-schema": {
|
|
@@ -2142,7 +1838,7 @@ export default {
|
|
|
2142
1838
|
attributes: {
|
|
2143
1839
|
"calcite-schema": {
|
|
2144
1840
|
system: "calcite",
|
|
2145
|
-
tier: "
|
|
1841
|
+
tier: "color",
|
|
2146
1842
|
type: "color",
|
|
2147
1843
|
},
|
|
2148
1844
|
category: "semantic",
|
|
@@ -2157,13 +1853,10 @@ export default {
|
|
|
2157
1853
|
es6: "calciteColorTextInverse",
|
|
2158
1854
|
},
|
|
2159
1855
|
},
|
|
2160
|
-
filePath: "src/tokens/semantic/color.json",
|
|
2161
|
-
isSource:
|
|
1856
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1857
|
+
isSource: false,
|
|
2162
1858
|
original: {
|
|
2163
|
-
value: {
|
|
2164
|
-
light: "{core.color.neutral.blk-000}",
|
|
2165
|
-
dark: "{core.color.neutral.blk-220}",
|
|
2166
|
-
},
|
|
1859
|
+
value: "{core.color.neutral.blk-000}",
|
|
2167
1860
|
type: "color",
|
|
2168
1861
|
attributes: {
|
|
2169
1862
|
"calcite-schema": {
|
|
@@ -2199,7 +1892,7 @@ export default {
|
|
|
2199
1892
|
attributes: {
|
|
2200
1893
|
"calcite-schema": {
|
|
2201
1894
|
system: "calcite",
|
|
2202
|
-
tier: "
|
|
1895
|
+
tier: "color",
|
|
2203
1896
|
type: "color",
|
|
2204
1897
|
},
|
|
2205
1898
|
category: "semantic",
|
|
@@ -2214,13 +1907,10 @@ export default {
|
|
|
2214
1907
|
es6: "calciteColorTextLink",
|
|
2215
1908
|
},
|
|
2216
1909
|
},
|
|
2217
|
-
filePath: "src/tokens/semantic/color.json",
|
|
2218
|
-
isSource:
|
|
1910
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1911
|
+
isSource: false,
|
|
2219
1912
|
original: {
|
|
2220
|
-
value: {
|
|
2221
|
-
light: "{core.color.high-saturation.blue.h-bb-070}",
|
|
2222
|
-
dark: "{core.color.dark.blue.d-bb-420}",
|
|
2223
|
-
},
|
|
1913
|
+
value: "{core.color.high-saturation.blue.h-bb-070}",
|
|
2224
1914
|
type: "color",
|
|
2225
1915
|
attributes: {
|
|
2226
1916
|
"calcite-schema": {
|
|
@@ -2258,7 +1948,7 @@ export default {
|
|
|
2258
1948
|
attributes: {
|
|
2259
1949
|
"calcite-schema": {
|
|
2260
1950
|
system: "calcite",
|
|
2261
|
-
tier: "
|
|
1951
|
+
tier: "color",
|
|
2262
1952
|
type: "color",
|
|
2263
1953
|
},
|
|
2264
1954
|
category: "semantic",
|
|
@@ -2273,13 +1963,10 @@ export default {
|
|
|
2273
1963
|
es6: "calciteColorBorder1",
|
|
2274
1964
|
},
|
|
2275
1965
|
},
|
|
2276
|
-
filePath: "src/tokens/semantic/color.json",
|
|
2277
|
-
isSource:
|
|
1966
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
1967
|
+
isSource: false,
|
|
2278
1968
|
original: {
|
|
2279
|
-
value: {
|
|
2280
|
-
light: "{core.color.neutral.blk-050}",
|
|
2281
|
-
dark: "{core.color.neutral.blk-160}",
|
|
2282
|
-
},
|
|
1969
|
+
value: "{core.color.neutral.blk-050}",
|
|
2283
1970
|
type: "color",
|
|
2284
1971
|
attributes: {
|
|
2285
1972
|
"calcite-schema": {
|
|
@@ -2315,7 +2002,7 @@ export default {
|
|
|
2315
2002
|
attributes: {
|
|
2316
2003
|
"calcite-schema": {
|
|
2317
2004
|
system: "calcite",
|
|
2318
|
-
tier: "
|
|
2005
|
+
tier: "color",
|
|
2319
2006
|
type: "color",
|
|
2320
2007
|
},
|
|
2321
2008
|
category: "semantic",
|
|
@@ -2330,13 +2017,10 @@ export default {
|
|
|
2330
2017
|
es6: "calciteColorBorder2",
|
|
2331
2018
|
},
|
|
2332
2019
|
},
|
|
2333
|
-
filePath: "src/tokens/semantic/color.json",
|
|
2334
|
-
isSource:
|
|
2020
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
2021
|
+
isSource: false,
|
|
2335
2022
|
original: {
|
|
2336
|
-
value: {
|
|
2337
|
-
light: "{core.color.neutral.blk-040}",
|
|
2338
|
-
dark: "{core.color.neutral.blk-170}",
|
|
2339
|
-
},
|
|
2023
|
+
value: "{core.color.neutral.blk-040}",
|
|
2340
2024
|
type: "color",
|
|
2341
2025
|
attributes: {
|
|
2342
2026
|
"calcite-schema": {
|
|
@@ -2372,7 +2056,7 @@ export default {
|
|
|
2372
2056
|
attributes: {
|
|
2373
2057
|
"calcite-schema": {
|
|
2374
2058
|
system: "calcite",
|
|
2375
|
-
tier: "
|
|
2059
|
+
tier: "color",
|
|
2376
2060
|
type: "color",
|
|
2377
2061
|
},
|
|
2378
2062
|
category: "semantic",
|
|
@@ -2387,14 +2071,228 @@ export default {
|
|
|
2387
2071
|
es6: "calciteColorBorder3",
|
|
2388
2072
|
},
|
|
2389
2073
|
},
|
|
2390
|
-
filePath: "src/tokens/semantic/color.json",
|
|
2074
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
2075
|
+
isSource: false,
|
|
2076
|
+
original: {
|
|
2077
|
+
value: "{core.color.neutral.blk-030}",
|
|
2078
|
+
type: "color",
|
|
2079
|
+
attributes: {
|
|
2080
|
+
"calcite-schema": {
|
|
2081
|
+
system: "calcite",
|
|
2082
|
+
tier: "semantic",
|
|
2083
|
+
domain: "",
|
|
2084
|
+
component: "",
|
|
2085
|
+
pattern: "",
|
|
2086
|
+
element: "",
|
|
2087
|
+
category: "color",
|
|
2088
|
+
group: "border",
|
|
2089
|
+
kind: "",
|
|
2090
|
+
appearance: "",
|
|
2091
|
+
property: "",
|
|
2092
|
+
variant: "3",
|
|
2093
|
+
state: "",
|
|
2094
|
+
scale: "",
|
|
2095
|
+
context: "",
|
|
2096
|
+
mode: "",
|
|
2097
|
+
},
|
|
2098
|
+
},
|
|
2099
|
+
},
|
|
2100
|
+
name: "Color Border 3",
|
|
2101
|
+
path: ["semantic", "color", "border", "3"],
|
|
2102
|
+
key: "{semantic.color.border.3}",
|
|
2103
|
+
},
|
|
2104
|
+
input: {
|
|
2105
|
+
value: {
|
|
2106
|
+
light: "#949494",
|
|
2107
|
+
dark: "#757575",
|
|
2108
|
+
},
|
|
2109
|
+
type: "color",
|
|
2110
|
+
attributes: {
|
|
2111
|
+
"calcite-schema": {
|
|
2112
|
+
system: "calcite",
|
|
2113
|
+
tier: "color",
|
|
2114
|
+
type: "color",
|
|
2115
|
+
},
|
|
2116
|
+
category: "semantic",
|
|
2117
|
+
type: "color",
|
|
2118
|
+
item: "border",
|
|
2119
|
+
subitem: "input",
|
|
2120
|
+
names: {
|
|
2121
|
+
scss: "$calcite-color-border-input",
|
|
2122
|
+
css: "var(--calcite-color-border-input)",
|
|
2123
|
+
js: "semantic.color.border.input",
|
|
2124
|
+
docs: "semantic.color.border.input",
|
|
2125
|
+
es6: "calciteColorBorderInput",
|
|
2126
|
+
},
|
|
2127
|
+
},
|
|
2128
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
2129
|
+
isSource: false,
|
|
2130
|
+
original: {
|
|
2131
|
+
value: "{core.color.neutral.blk-100}",
|
|
2132
|
+
type: "color",
|
|
2133
|
+
attributes: {
|
|
2134
|
+
"calcite-schema": {
|
|
2135
|
+
system: "calcite",
|
|
2136
|
+
tier: "semantic",
|
|
2137
|
+
domain: "",
|
|
2138
|
+
component: "",
|
|
2139
|
+
pattern: "",
|
|
2140
|
+
element: "",
|
|
2141
|
+
category: "color",
|
|
2142
|
+
group: "border",
|
|
2143
|
+
kind: "",
|
|
2144
|
+
appearance: "",
|
|
2145
|
+
property: "",
|
|
2146
|
+
variant: "input",
|
|
2147
|
+
state: "",
|
|
2148
|
+
scale: "",
|
|
2149
|
+
context: "",
|
|
2150
|
+
mode: "",
|
|
2151
|
+
},
|
|
2152
|
+
},
|
|
2153
|
+
},
|
|
2154
|
+
name: "Color Border Input",
|
|
2155
|
+
path: ["semantic", "color", "border", "input"],
|
|
2156
|
+
key: "{semantic.color.border.input}",
|
|
2157
|
+
},
|
|
2158
|
+
ghost: {
|
|
2159
|
+
value: {
|
|
2160
|
+
light: "rgba(0, 0, 0, 0.3)",
|
|
2161
|
+
dark: "rgba(117, 117, 117, 0.3)",
|
|
2162
|
+
},
|
|
2163
|
+
type: "color",
|
|
2164
|
+
attributes: {
|
|
2165
|
+
"calcite-schema": {
|
|
2166
|
+
system: "calcite",
|
|
2167
|
+
tier: "color",
|
|
2168
|
+
type: "color",
|
|
2169
|
+
},
|
|
2170
|
+
category: "semantic",
|
|
2171
|
+
type: "color",
|
|
2172
|
+
item: "border",
|
|
2173
|
+
subitem: "ghost",
|
|
2174
|
+
names: {
|
|
2175
|
+
scss: "$calcite-color-border-ghost",
|
|
2176
|
+
css: "var(--calcite-color-border-ghost)",
|
|
2177
|
+
js: "semantic.color.border.ghost",
|
|
2178
|
+
docs: "semantic.color.border.ghost",
|
|
2179
|
+
es6: "calciteColorBorderGhost",
|
|
2180
|
+
},
|
|
2181
|
+
},
|
|
2182
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
2183
|
+
isSource: false,
|
|
2184
|
+
original: {
|
|
2185
|
+
value: "rgba({core.color.neutral.blk-240}, {core.opacity.30})",
|
|
2186
|
+
type: "color",
|
|
2187
|
+
attributes: {
|
|
2188
|
+
"calcite-schema": {
|
|
2189
|
+
system: "calcite",
|
|
2190
|
+
tier: "semantic",
|
|
2191
|
+
domain: "",
|
|
2192
|
+
component: "",
|
|
2193
|
+
pattern: "",
|
|
2194
|
+
element: "",
|
|
2195
|
+
category: "color",
|
|
2196
|
+
group: "border",
|
|
2197
|
+
kind: "",
|
|
2198
|
+
appearance: "",
|
|
2199
|
+
property: "",
|
|
2200
|
+
variant: "ghost",
|
|
2201
|
+
state: "",
|
|
2202
|
+
scale: "",
|
|
2203
|
+
context: "",
|
|
2204
|
+
mode: "",
|
|
2205
|
+
},
|
|
2206
|
+
},
|
|
2207
|
+
},
|
|
2208
|
+
name: "Color Border Ghost",
|
|
2209
|
+
path: ["semantic", "color", "border", "ghost"],
|
|
2210
|
+
key: "{semantic.color.border.ghost}",
|
|
2211
|
+
},
|
|
2212
|
+
white: {
|
|
2213
|
+
value: {
|
|
2214
|
+
light: "#ffffff",
|
|
2215
|
+
dark: "#f8f8f8",
|
|
2216
|
+
},
|
|
2217
|
+
type: "color",
|
|
2218
|
+
attributes: {
|
|
2219
|
+
"calcite-schema": {
|
|
2220
|
+
system: "calcite",
|
|
2221
|
+
tier: "color",
|
|
2222
|
+
type: "color",
|
|
2223
|
+
},
|
|
2224
|
+
category: "semantic",
|
|
2225
|
+
type: "color",
|
|
2226
|
+
item: "border",
|
|
2227
|
+
subitem: "white",
|
|
2228
|
+
names: {
|
|
2229
|
+
scss: "$calcite-color-border-white",
|
|
2230
|
+
css: "var(--calcite-color-border-white)",
|
|
2231
|
+
js: "semantic.color.border.white",
|
|
2232
|
+
docs: "semantic.color.border.white",
|
|
2233
|
+
es6: "calciteColorBorderWhite",
|
|
2234
|
+
},
|
|
2235
|
+
},
|
|
2236
|
+
filePath: "src/tokens/semantic/color/light.json",
|
|
2237
|
+
isSource: false,
|
|
2238
|
+
original: {
|
|
2239
|
+
value: "{core.color.neutral.blk-000}",
|
|
2240
|
+
type: "color",
|
|
2241
|
+
attributes: {
|
|
2242
|
+
"calcite-schema": {
|
|
2243
|
+
system: "calcite",
|
|
2244
|
+
tier: "semantic",
|
|
2245
|
+
domain: "",
|
|
2246
|
+
component: "",
|
|
2247
|
+
pattern: "",
|
|
2248
|
+
element: "",
|
|
2249
|
+
category: "color",
|
|
2250
|
+
group: "border",
|
|
2251
|
+
kind: "",
|
|
2252
|
+
appearance: "",
|
|
2253
|
+
property: "",
|
|
2254
|
+
variant: "white",
|
|
2255
|
+
state: "",
|
|
2256
|
+
scale: "",
|
|
2257
|
+
context: "",
|
|
2258
|
+
mode: "",
|
|
2259
|
+
},
|
|
2260
|
+
},
|
|
2261
|
+
},
|
|
2262
|
+
name: "Color Border White",
|
|
2263
|
+
path: ["semantic", "color", "border", "white"],
|
|
2264
|
+
key: "{semantic.color.border.white}",
|
|
2265
|
+
},
|
|
2266
|
+
},
|
|
2267
|
+
},
|
|
2268
|
+
border: {
|
|
2269
|
+
width: {
|
|
2270
|
+
none: {
|
|
2271
|
+
value: "0",
|
|
2272
|
+
type: "dimension",
|
|
2273
|
+
attributes: {
|
|
2274
|
+
"calcite-schema": {
|
|
2275
|
+
system: "calcite",
|
|
2276
|
+
tier: "semantic",
|
|
2277
|
+
type: "dimension",
|
|
2278
|
+
},
|
|
2279
|
+
category: "semantic",
|
|
2280
|
+
type: "border",
|
|
2281
|
+
item: "width",
|
|
2282
|
+
subitem: "none",
|
|
2283
|
+
names: {
|
|
2284
|
+
scss: "$calcite-border-width-none",
|
|
2285
|
+
css: "var(--calcite-border-width-none)",
|
|
2286
|
+
js: "semantic.border.width.none",
|
|
2287
|
+
docs: "semantic.border.width.none",
|
|
2288
|
+
es6: "calciteBorderWidthNone",
|
|
2289
|
+
},
|
|
2290
|
+
},
|
|
2291
|
+
filePath: "src/tokens/semantic/border.json",
|
|
2391
2292
|
isSource: true,
|
|
2392
2293
|
original: {
|
|
2393
|
-
value: {
|
|
2394
|
-
|
|
2395
|
-
dark: "{core.color.neutral.blk-180}",
|
|
2396
|
-
},
|
|
2397
|
-
type: "color",
|
|
2294
|
+
value: "{core.size.default.none}",
|
|
2295
|
+
type: "dimension",
|
|
2398
2296
|
attributes: {
|
|
2399
2297
|
"calcite-schema": {
|
|
2400
2298
|
system: "calcite",
|
|
@@ -2403,55 +2301,49 @@ export default {
|
|
|
2403
2301
|
component: "",
|
|
2404
2302
|
pattern: "",
|
|
2405
2303
|
element: "",
|
|
2406
|
-
category: "
|
|
2407
|
-
group: "
|
|
2304
|
+
category: "border",
|
|
2305
|
+
group: "width",
|
|
2408
2306
|
kind: "",
|
|
2409
2307
|
appearance: "",
|
|
2410
2308
|
property: "",
|
|
2411
|
-
variant: "
|
|
2309
|
+
variant: "",
|
|
2412
2310
|
state: "",
|
|
2413
|
-
scale: "",
|
|
2311
|
+
scale: "none",
|
|
2414
2312
|
context: "",
|
|
2415
2313
|
mode: "",
|
|
2416
2314
|
},
|
|
2417
2315
|
},
|
|
2418
2316
|
},
|
|
2419
|
-
name: "
|
|
2420
|
-
path: ["semantic", "
|
|
2421
|
-
key: "{semantic.
|
|
2317
|
+
name: "Border Width None",
|
|
2318
|
+
path: ["semantic", "border", "width", "none"],
|
|
2319
|
+
key: "{semantic.border.width.none}",
|
|
2422
2320
|
},
|
|
2423
|
-
|
|
2424
|
-
value:
|
|
2425
|
-
|
|
2426
|
-
dark: "#757575",
|
|
2427
|
-
},
|
|
2428
|
-
type: "color",
|
|
2321
|
+
sm: {
|
|
2322
|
+
value: "1px",
|
|
2323
|
+
type: "dimension",
|
|
2429
2324
|
attributes: {
|
|
2430
2325
|
"calcite-schema": {
|
|
2431
2326
|
system: "calcite",
|
|
2432
2327
|
tier: "semantic",
|
|
2433
|
-
type: "
|
|
2328
|
+
type: "dimension",
|
|
2434
2329
|
},
|
|
2435
2330
|
category: "semantic",
|
|
2436
|
-
type: "
|
|
2437
|
-
item: "
|
|
2438
|
-
subitem: "
|
|
2331
|
+
type: "border",
|
|
2332
|
+
item: "width",
|
|
2333
|
+
subitem: "sm",
|
|
2439
2334
|
names: {
|
|
2440
|
-
scss: "$calcite-
|
|
2441
|
-
css: "var(--calcite-
|
|
2442
|
-
js: "semantic.
|
|
2443
|
-
docs: "semantic.
|
|
2444
|
-
es6: "
|
|
2335
|
+
scss: "$calcite-border-width-sm",
|
|
2336
|
+
css: "var(--calcite-border-width-sm)",
|
|
2337
|
+
js: "semantic.border.width.sm",
|
|
2338
|
+
docs: "semantic.border.width.sm",
|
|
2339
|
+
es6: "calciteBorderWidthSm",
|
|
2445
2340
|
},
|
|
2446
2341
|
},
|
|
2447
|
-
filePath: "src/tokens/semantic/
|
|
2342
|
+
filePath: "src/tokens/semantic/border.json",
|
|
2448
2343
|
isSource: true,
|
|
2449
2344
|
original: {
|
|
2450
|
-
value: {
|
|
2451
|
-
|
|
2452
|
-
dark: "{core.color.neutral.blk-130}",
|
|
2453
|
-
},
|
|
2454
|
-
type: "color",
|
|
2345
|
+
value: "{core.size.default.1}",
|
|
2346
|
+
type: "dimension",
|
|
2455
2347
|
attributes: {
|
|
2456
2348
|
"calcite-schema": {
|
|
2457
2349
|
system: "calcite",
|
|
@@ -2460,55 +2352,49 @@ export default {
|
|
|
2460
2352
|
component: "",
|
|
2461
2353
|
pattern: "",
|
|
2462
2354
|
element: "",
|
|
2463
|
-
category: "
|
|
2464
|
-
group: "
|
|
2355
|
+
category: "border",
|
|
2356
|
+
group: "width",
|
|
2465
2357
|
kind: "",
|
|
2466
2358
|
appearance: "",
|
|
2467
2359
|
property: "",
|
|
2468
|
-
variant: "
|
|
2360
|
+
variant: "",
|
|
2469
2361
|
state: "",
|
|
2470
|
-
scale: "",
|
|
2362
|
+
scale: "sm",
|
|
2471
2363
|
context: "",
|
|
2472
2364
|
mode: "",
|
|
2473
2365
|
},
|
|
2474
2366
|
},
|
|
2475
2367
|
},
|
|
2476
|
-
name: "
|
|
2477
|
-
path: ["semantic", "
|
|
2478
|
-
key: "{semantic.
|
|
2368
|
+
name: "Border Width Sm",
|
|
2369
|
+
path: ["semantic", "border", "width", "sm"],
|
|
2370
|
+
key: "{semantic.border.width.sm}",
|
|
2479
2371
|
},
|
|
2480
|
-
|
|
2481
|
-
value:
|
|
2482
|
-
|
|
2483
|
-
dark: "rgba(117, 117, 117, 0.3)",
|
|
2484
|
-
},
|
|
2485
|
-
type: "color",
|
|
2372
|
+
md: {
|
|
2373
|
+
value: "2px",
|
|
2374
|
+
type: "dimension",
|
|
2486
2375
|
attributes: {
|
|
2487
2376
|
"calcite-schema": {
|
|
2488
2377
|
system: "calcite",
|
|
2489
2378
|
tier: "semantic",
|
|
2490
|
-
type: "
|
|
2379
|
+
type: "dimension",
|
|
2491
2380
|
},
|
|
2492
2381
|
category: "semantic",
|
|
2493
|
-
type: "
|
|
2494
|
-
item: "
|
|
2495
|
-
subitem: "
|
|
2382
|
+
type: "border",
|
|
2383
|
+
item: "width",
|
|
2384
|
+
subitem: "md",
|
|
2496
2385
|
names: {
|
|
2497
|
-
scss: "$calcite-
|
|
2498
|
-
css: "var(--calcite-
|
|
2499
|
-
js: "semantic.
|
|
2500
|
-
docs: "semantic.
|
|
2501
|
-
es6: "
|
|
2386
|
+
scss: "$calcite-border-width-md",
|
|
2387
|
+
css: "var(--calcite-border-width-md)",
|
|
2388
|
+
js: "semantic.border.width.md",
|
|
2389
|
+
docs: "semantic.border.width.md",
|
|
2390
|
+
es6: "calciteBorderWidthMd",
|
|
2502
2391
|
},
|
|
2503
2392
|
},
|
|
2504
|
-
filePath: "src/tokens/semantic/
|
|
2393
|
+
filePath: "src/tokens/semantic/border.json",
|
|
2505
2394
|
isSource: true,
|
|
2506
2395
|
original: {
|
|
2507
|
-
value: {
|
|
2508
|
-
|
|
2509
|
-
dark: "rgba({core.color.neutral.blk-130}, {core.opacity.30})",
|
|
2510
|
-
},
|
|
2511
|
-
type: "color",
|
|
2396
|
+
value: "{core.size.default.2}",
|
|
2397
|
+
type: "dimension",
|
|
2512
2398
|
attributes: {
|
|
2513
2399
|
"calcite-schema": {
|
|
2514
2400
|
system: "calcite",
|
|
@@ -2517,55 +2403,49 @@ export default {
|
|
|
2517
2403
|
component: "",
|
|
2518
2404
|
pattern: "",
|
|
2519
2405
|
element: "",
|
|
2520
|
-
category: "
|
|
2521
|
-
group: "
|
|
2406
|
+
category: "border",
|
|
2407
|
+
group: "width",
|
|
2522
2408
|
kind: "",
|
|
2523
2409
|
appearance: "",
|
|
2524
2410
|
property: "",
|
|
2525
|
-
variant: "
|
|
2411
|
+
variant: "",
|
|
2526
2412
|
state: "",
|
|
2527
|
-
scale: "",
|
|
2413
|
+
scale: "md",
|
|
2528
2414
|
context: "",
|
|
2529
2415
|
mode: "",
|
|
2530
2416
|
},
|
|
2531
2417
|
},
|
|
2532
2418
|
},
|
|
2533
|
-
name: "
|
|
2534
|
-
path: ["semantic", "
|
|
2535
|
-
key: "{semantic.
|
|
2419
|
+
name: "Border Width Md",
|
|
2420
|
+
path: ["semantic", "border", "width", "md"],
|
|
2421
|
+
key: "{semantic.border.width.md}",
|
|
2536
2422
|
},
|
|
2537
|
-
|
|
2538
|
-
value:
|
|
2539
|
-
|
|
2540
|
-
dark: "#f8f8f8",
|
|
2541
|
-
},
|
|
2542
|
-
type: "color",
|
|
2423
|
+
lg: {
|
|
2424
|
+
value: "4px",
|
|
2425
|
+
type: "dimension",
|
|
2543
2426
|
attributes: {
|
|
2544
2427
|
"calcite-schema": {
|
|
2545
2428
|
system: "calcite",
|
|
2546
2429
|
tier: "semantic",
|
|
2547
|
-
type: "
|
|
2430
|
+
type: "dimension",
|
|
2548
2431
|
},
|
|
2549
2432
|
category: "semantic",
|
|
2550
|
-
type: "
|
|
2551
|
-
item: "
|
|
2552
|
-
subitem: "
|
|
2433
|
+
type: "border",
|
|
2434
|
+
item: "width",
|
|
2435
|
+
subitem: "lg",
|
|
2553
2436
|
names: {
|
|
2554
|
-
scss: "$calcite-
|
|
2555
|
-
css: "var(--calcite-
|
|
2556
|
-
js: "semantic.
|
|
2557
|
-
docs: "semantic.
|
|
2558
|
-
es6: "
|
|
2437
|
+
scss: "$calcite-border-width-lg",
|
|
2438
|
+
css: "var(--calcite-border-width-lg)",
|
|
2439
|
+
js: "semantic.border.width.lg",
|
|
2440
|
+
docs: "semantic.border.width.lg",
|
|
2441
|
+
es6: "calciteBorderWidthLg",
|
|
2559
2442
|
},
|
|
2560
2443
|
},
|
|
2561
|
-
filePath: "src/tokens/semantic/
|
|
2444
|
+
filePath: "src/tokens/semantic/border.json",
|
|
2562
2445
|
isSource: true,
|
|
2563
2446
|
original: {
|
|
2564
|
-
value: {
|
|
2565
|
-
|
|
2566
|
-
dark: "{core.color.neutral.blk-005}",
|
|
2567
|
-
},
|
|
2568
|
-
type: "color",
|
|
2447
|
+
value: "{core.size.default.4}",
|
|
2448
|
+
type: "dimension",
|
|
2569
2449
|
attributes: {
|
|
2570
2450
|
"calcite-schema": {
|
|
2571
2451
|
system: "calcite",
|
|
@@ -2574,22 +2454,22 @@ export default {
|
|
|
2574
2454
|
component: "",
|
|
2575
2455
|
pattern: "",
|
|
2576
2456
|
element: "",
|
|
2577
|
-
category: "
|
|
2578
|
-
group: "
|
|
2457
|
+
category: "border",
|
|
2458
|
+
group: "width",
|
|
2579
2459
|
kind: "",
|
|
2580
2460
|
appearance: "",
|
|
2581
2461
|
property: "",
|
|
2582
|
-
variant: "
|
|
2462
|
+
variant: "",
|
|
2583
2463
|
state: "",
|
|
2584
|
-
scale: "",
|
|
2464
|
+
scale: "lg",
|
|
2585
2465
|
context: "",
|
|
2586
2466
|
mode: "",
|
|
2587
2467
|
},
|
|
2588
2468
|
},
|
|
2589
2469
|
},
|
|
2590
|
-
name: "
|
|
2591
|
-
path: ["semantic", "
|
|
2592
|
-
key: "{semantic.
|
|
2470
|
+
name: "Border Width Lg",
|
|
2471
|
+
path: ["semantic", "border", "width", "lg"],
|
|
2472
|
+
key: "{semantic.border.width.lg}",
|
|
2593
2473
|
},
|
|
2594
2474
|
},
|
|
2595
2475
|
},
|
|
@@ -2600,16 +2480,16 @@ export default {
|
|
|
2600
2480
|
min: "0",
|
|
2601
2481
|
max: "154px",
|
|
2602
2482
|
},
|
|
2603
|
-
type: "
|
|
2483
|
+
type: "dimension",
|
|
2604
2484
|
description: "Small handheld devices and mini-windows",
|
|
2605
2485
|
attributes: {
|
|
2606
2486
|
"calcite-schema": {
|
|
2607
2487
|
system: "calcite",
|
|
2608
2488
|
tier: "semantic",
|
|
2609
|
-
type: "
|
|
2489
|
+
type: "dimension",
|
|
2610
2490
|
},
|
|
2611
2491
|
category: "semantic",
|
|
2612
|
-
type: "
|
|
2492
|
+
type: "dimension",
|
|
2613
2493
|
item: "height",
|
|
2614
2494
|
subitem: "xxs",
|
|
2615
2495
|
value: {
|
|
@@ -2637,7 +2517,7 @@ export default {
|
|
|
2637
2517
|
min: "0",
|
|
2638
2518
|
max: "{core.container-size.154}",
|
|
2639
2519
|
},
|
|
2640
|
-
type: "
|
|
2520
|
+
type: "dimension",
|
|
2641
2521
|
description: "Small handheld devices and mini-windows",
|
|
2642
2522
|
attributes: {
|
|
2643
2523
|
"calcite-schema": {
|
|
@@ -2670,16 +2550,16 @@ export default {
|
|
|
2670
2550
|
min: "155px",
|
|
2671
2551
|
max: "328px",
|
|
2672
2552
|
},
|
|
2673
|
-
type: "
|
|
2553
|
+
type: "dimension",
|
|
2674
2554
|
description: "Handheld devices",
|
|
2675
2555
|
attributes: {
|
|
2676
2556
|
"calcite-schema": {
|
|
2677
2557
|
system: "calcite",
|
|
2678
2558
|
tier: "semantic",
|
|
2679
|
-
type: "
|
|
2559
|
+
type: "dimension",
|
|
2680
2560
|
},
|
|
2681
2561
|
category: "semantic",
|
|
2682
|
-
type: "
|
|
2562
|
+
type: "dimension",
|
|
2683
2563
|
item: "height",
|
|
2684
2564
|
subitem: "xs",
|
|
2685
2565
|
value: {
|
|
@@ -2707,7 +2587,7 @@ export default {
|
|
|
2707
2587
|
min: "{core.container-size.154} + 1",
|
|
2708
2588
|
max: "{core.container-size.328}",
|
|
2709
2589
|
},
|
|
2710
|
-
type: "
|
|
2590
|
+
type: "dimension",
|
|
2711
2591
|
description: "Handheld devices",
|
|
2712
2592
|
attributes: {
|
|
2713
2593
|
"calcite-schema": {
|
|
@@ -2740,16 +2620,16 @@ export default {
|
|
|
2740
2620
|
min: "329px",
|
|
2741
2621
|
max: "504px",
|
|
2742
2622
|
},
|
|
2743
|
-
type: "
|
|
2623
|
+
type: "dimension",
|
|
2744
2624
|
description: "Small tablets",
|
|
2745
2625
|
attributes: {
|
|
2746
2626
|
"calcite-schema": {
|
|
2747
2627
|
system: "calcite",
|
|
2748
2628
|
tier: "semantic",
|
|
2749
|
-
type: "
|
|
2629
|
+
type: "dimension",
|
|
2750
2630
|
},
|
|
2751
2631
|
category: "semantic",
|
|
2752
|
-
type: "
|
|
2632
|
+
type: "dimension",
|
|
2753
2633
|
item: "height",
|
|
2754
2634
|
subitem: "sm",
|
|
2755
2635
|
value: {
|
|
@@ -2777,7 +2657,7 @@ export default {
|
|
|
2777
2657
|
min: "{core.container-size.328} + 1",
|
|
2778
2658
|
max: "{core.container-size.504}",
|
|
2779
2659
|
},
|
|
2780
|
-
type: "
|
|
2660
|
+
type: "dimension",
|
|
2781
2661
|
description: "Small tablets",
|
|
2782
2662
|
attributes: {
|
|
2783
2663
|
"calcite-schema": {
|
|
@@ -2810,16 +2690,16 @@ export default {
|
|
|
2810
2690
|
min: "505px",
|
|
2811
2691
|
max: "678px",
|
|
2812
2692
|
},
|
|
2813
|
-
type: "
|
|
2693
|
+
type: "dimension",
|
|
2814
2694
|
description: "Small laptops",
|
|
2815
2695
|
attributes: {
|
|
2816
2696
|
"calcite-schema": {
|
|
2817
2697
|
system: "calcite",
|
|
2818
2698
|
tier: "semantic",
|
|
2819
|
-
type: "
|
|
2699
|
+
type: "dimension",
|
|
2820
2700
|
},
|
|
2821
2701
|
category: "semantic",
|
|
2822
|
-
type: "
|
|
2702
|
+
type: "dimension",
|
|
2823
2703
|
item: "height",
|
|
2824
2704
|
subitem: "md",
|
|
2825
2705
|
value: {
|
|
@@ -2847,7 +2727,7 @@ export default {
|
|
|
2847
2727
|
min: "{core.container-size.504} + 1",
|
|
2848
2728
|
max: "{core.container-size.678}",
|
|
2849
2729
|
},
|
|
2850
|
-
type: "
|
|
2730
|
+
type: "dimension",
|
|
2851
2731
|
description: "Small laptops",
|
|
2852
2732
|
attributes: {
|
|
2853
2733
|
"calcite-schema": {
|
|
@@ -2880,16 +2760,16 @@ export default {
|
|
|
2880
2760
|
min: "679px",
|
|
2881
2761
|
max: "854px",
|
|
2882
2762
|
},
|
|
2883
|
-
type: "
|
|
2763
|
+
type: "dimension",
|
|
2884
2764
|
description: "Large laptops and desktop computers",
|
|
2885
2765
|
attributes: {
|
|
2886
2766
|
"calcite-schema": {
|
|
2887
2767
|
system: "calcite",
|
|
2888
2768
|
tier: "semantic",
|
|
2889
|
-
type: "
|
|
2769
|
+
type: "dimension",
|
|
2890
2770
|
},
|
|
2891
2771
|
category: "semantic",
|
|
2892
|
-
type: "
|
|
2772
|
+
type: "dimension",
|
|
2893
2773
|
item: "height",
|
|
2894
2774
|
subitem: "lg",
|
|
2895
2775
|
value: {
|
|
@@ -2917,7 +2797,7 @@ export default {
|
|
|
2917
2797
|
min: "{core.container-size.678} + 1",
|
|
2918
2798
|
max: "{core.container-size.854}",
|
|
2919
2799
|
},
|
|
2920
|
-
type: "
|
|
2800
|
+
type: "dimension",
|
|
2921
2801
|
description: "Large laptops and desktop computers",
|
|
2922
2802
|
attributes: {
|
|
2923
2803
|
"calcite-schema": {
|
|
@@ -2949,16 +2829,16 @@ export default {
|
|
|
2949
2829
|
value: {
|
|
2950
2830
|
min: "855px",
|
|
2951
2831
|
},
|
|
2952
|
-
type: "
|
|
2832
|
+
type: "dimension",
|
|
2953
2833
|
description: "Projectors and televisions",
|
|
2954
2834
|
attributes: {
|
|
2955
2835
|
"calcite-schema": {
|
|
2956
2836
|
system: "calcite",
|
|
2957
2837
|
tier: "semantic",
|
|
2958
|
-
type: "
|
|
2838
|
+
type: "dimension",
|
|
2959
2839
|
},
|
|
2960
2840
|
category: "semantic",
|
|
2961
|
-
type: "
|
|
2841
|
+
type: "dimension",
|
|
2962
2842
|
item: "height",
|
|
2963
2843
|
subitem: "xl",
|
|
2964
2844
|
value: {
|
|
@@ -2984,7 +2864,7 @@ export default {
|
|
|
2984
2864
|
value: {
|
|
2985
2865
|
min: "{core.container-size.854} + 1",
|
|
2986
2866
|
},
|
|
2987
|
-
type: "
|
|
2867
|
+
type: "dimension",
|
|
2988
2868
|
description: "Projectors and televisions",
|
|
2989
2869
|
attributes: {
|
|
2990
2870
|
"calcite-schema": {
|
|
@@ -3019,16 +2899,16 @@ export default {
|
|
|
3019
2899
|
min: "0",
|
|
3020
2900
|
max: "320px",
|
|
3021
2901
|
},
|
|
3022
|
-
type: "
|
|
2902
|
+
type: "dimension",
|
|
3023
2903
|
description: "Small handheld devices and mini-windows",
|
|
3024
2904
|
attributes: {
|
|
3025
2905
|
"calcite-schema": {
|
|
3026
2906
|
system: "calcite",
|
|
3027
2907
|
tier: "semantic",
|
|
3028
|
-
type: "
|
|
2908
|
+
type: "dimension",
|
|
3029
2909
|
},
|
|
3030
2910
|
category: "semantic",
|
|
3031
|
-
type: "
|
|
2911
|
+
type: "dimension",
|
|
3032
2912
|
item: "width",
|
|
3033
2913
|
subitem: "xxs",
|
|
3034
2914
|
value: {
|
|
@@ -3056,7 +2936,7 @@ export default {
|
|
|
3056
2936
|
min: 0,
|
|
3057
2937
|
max: "{core.container-size.320}",
|
|
3058
2938
|
},
|
|
3059
|
-
type: "
|
|
2939
|
+
type: "dimension",
|
|
3060
2940
|
description: "Small handheld devices and mini-windows",
|
|
3061
2941
|
attributes: {
|
|
3062
2942
|
"calcite-schema": {
|
|
@@ -3089,16 +2969,16 @@ export default {
|
|
|
3089
2969
|
min: "321px",
|
|
3090
2970
|
max: "476px",
|
|
3091
2971
|
},
|
|
3092
|
-
type: "
|
|
2972
|
+
type: "dimension",
|
|
3093
2973
|
description: "Handheld devices",
|
|
3094
2974
|
attributes: {
|
|
3095
2975
|
"calcite-schema": {
|
|
3096
2976
|
system: "calcite",
|
|
3097
2977
|
tier: "semantic",
|
|
3098
|
-
type: "
|
|
2978
|
+
type: "dimension",
|
|
3099
2979
|
},
|
|
3100
2980
|
category: "semantic",
|
|
3101
|
-
type: "
|
|
2981
|
+
type: "dimension",
|
|
3102
2982
|
item: "width",
|
|
3103
2983
|
subitem: "xs",
|
|
3104
2984
|
value: {
|
|
@@ -3126,7 +3006,7 @@ export default {
|
|
|
3126
3006
|
min: "{core.container-size.320} + 1",
|
|
3127
3007
|
max: "{core.container-size.476}",
|
|
3128
3008
|
},
|
|
3129
|
-
type: "
|
|
3009
|
+
type: "dimension",
|
|
3130
3010
|
description: "Handheld devices",
|
|
3131
3011
|
attributes: {
|
|
3132
3012
|
"calcite-schema": {
|
|
@@ -3159,16 +3039,16 @@ export default {
|
|
|
3159
3039
|
min: "477px",
|
|
3160
3040
|
max: "768px",
|
|
3161
3041
|
},
|
|
3162
|
-
type: "
|
|
3042
|
+
type: "dimension",
|
|
3163
3043
|
description: "Small tablets",
|
|
3164
3044
|
attributes: {
|
|
3165
3045
|
"calcite-schema": {
|
|
3166
3046
|
system: "calcite",
|
|
3167
3047
|
tier: "semantic",
|
|
3168
|
-
type: "
|
|
3048
|
+
type: "dimension",
|
|
3169
3049
|
},
|
|
3170
3050
|
category: "semantic",
|
|
3171
|
-
type: "
|
|
3051
|
+
type: "dimension",
|
|
3172
3052
|
item: "width",
|
|
3173
3053
|
subitem: "sm",
|
|
3174
3054
|
value: {
|
|
@@ -3196,7 +3076,7 @@ export default {
|
|
|
3196
3076
|
min: "{core.container-size.476} + 1",
|
|
3197
3077
|
max: "{core.container-size.768}",
|
|
3198
3078
|
},
|
|
3199
|
-
type: "
|
|
3079
|
+
type: "dimension",
|
|
3200
3080
|
description: "Small tablets",
|
|
3201
3081
|
attributes: {
|
|
3202
3082
|
"calcite-schema": {
|
|
@@ -3229,16 +3109,16 @@ export default {
|
|
|
3229
3109
|
min: "769px",
|
|
3230
3110
|
max: "1152px",
|
|
3231
3111
|
},
|
|
3232
|
-
type: "
|
|
3112
|
+
type: "dimension",
|
|
3233
3113
|
description: "Small laptops",
|
|
3234
3114
|
attributes: {
|
|
3235
3115
|
"calcite-schema": {
|
|
3236
3116
|
system: "calcite",
|
|
3237
3117
|
tier: "semantic",
|
|
3238
|
-
type: "
|
|
3118
|
+
type: "dimension",
|
|
3239
3119
|
},
|
|
3240
3120
|
category: "semantic",
|
|
3241
|
-
type: "
|
|
3121
|
+
type: "dimension",
|
|
3242
3122
|
item: "width",
|
|
3243
3123
|
subitem: "md",
|
|
3244
3124
|
value: {
|
|
@@ -3266,7 +3146,7 @@ export default {
|
|
|
3266
3146
|
min: "{core.container-size.768} + 1",
|
|
3267
3147
|
max: "{core.container-size.1152}",
|
|
3268
3148
|
},
|
|
3269
|
-
type: "
|
|
3149
|
+
type: "dimension",
|
|
3270
3150
|
description: "Small laptops",
|
|
3271
3151
|
attributes: {
|
|
3272
3152
|
"calcite-schema": {
|
|
@@ -3299,16 +3179,16 @@ export default {
|
|
|
3299
3179
|
min: "1153px",
|
|
3300
3180
|
max: "1440px",
|
|
3301
3181
|
},
|
|
3302
|
-
type: "
|
|
3182
|
+
type: "dimension",
|
|
3303
3183
|
description: "Large laptops and desktop computers",
|
|
3304
3184
|
attributes: {
|
|
3305
3185
|
"calcite-schema": {
|
|
3306
3186
|
system: "calcite",
|
|
3307
3187
|
tier: "semantic",
|
|
3308
|
-
type: "
|
|
3188
|
+
type: "dimension",
|
|
3309
3189
|
},
|
|
3310
3190
|
category: "semantic",
|
|
3311
|
-
type: "
|
|
3191
|
+
type: "dimension",
|
|
3312
3192
|
item: "width",
|
|
3313
3193
|
subitem: "lg",
|
|
3314
3194
|
value: {
|
|
@@ -3336,7 +3216,7 @@ export default {
|
|
|
3336
3216
|
min: "{core.container-size.1152} + 1",
|
|
3337
3217
|
max: "{core.container-size.1440}",
|
|
3338
3218
|
},
|
|
3339
|
-
type: "
|
|
3219
|
+
type: "dimension",
|
|
3340
3220
|
description: "Large laptops and desktop computers",
|
|
3341
3221
|
attributes: {
|
|
3342
3222
|
"calcite-schema": {
|
|
@@ -3368,16 +3248,16 @@ export default {
|
|
|
3368
3248
|
value: {
|
|
3369
3249
|
min: "1441px",
|
|
3370
3250
|
},
|
|
3371
|
-
type: "
|
|
3251
|
+
type: "dimension",
|
|
3372
3252
|
description: "Projectors and televisions",
|
|
3373
3253
|
attributes: {
|
|
3374
3254
|
"calcite-schema": {
|
|
3375
3255
|
system: "calcite",
|
|
3376
3256
|
tier: "semantic",
|
|
3377
|
-
type: "
|
|
3257
|
+
type: "dimension",
|
|
3378
3258
|
},
|
|
3379
3259
|
category: "semantic",
|
|
3380
|
-
type: "
|
|
3260
|
+
type: "dimension",
|
|
3381
3261
|
item: "width",
|
|
3382
3262
|
subitem: "xl",
|
|
3383
3263
|
value: {
|
|
@@ -3403,7 +3283,7 @@ export default {
|
|
|
3403
3283
|
value: {
|
|
3404
3284
|
min: "{core.container-size.1440} + 1",
|
|
3405
3285
|
},
|
|
3406
|
-
type: "
|
|
3286
|
+
type: "dimension",
|
|
3407
3287
|
description: "Projectors and televisions",
|
|
3408
3288
|
attributes: {
|
|
3409
3289
|
"calcite-schema": {
|
|
@@ -7105,12 +6985,12 @@ export default {
|
|
|
7105
6985
|
default: {
|
|
7106
6986
|
px: {
|
|
7107
6987
|
value: "1px",
|
|
7108
|
-
type: "
|
|
6988
|
+
type: "dimension",
|
|
7109
6989
|
attributes: {
|
|
7110
6990
|
"calcite-schema": {
|
|
7111
6991
|
system: "calcite",
|
|
7112
6992
|
tier: "semantic",
|
|
7113
|
-
type: "
|
|
6993
|
+
type: "dimension",
|
|
7114
6994
|
},
|
|
7115
6995
|
category: "semantic",
|
|
7116
6996
|
type: "size",
|
|
@@ -7128,7 +7008,7 @@ export default {
|
|
|
7128
7008
|
isSource: true,
|
|
7129
7009
|
original: {
|
|
7130
7010
|
value: "{core.size.default.1}",
|
|
7131
|
-
type: "
|
|
7011
|
+
type: "dimension",
|
|
7132
7012
|
attributes: {
|
|
7133
7013
|
"calcite-schema": {
|
|
7134
7014
|
system: "calcite",
|
|
@@ -7615,16 +7495,16 @@ export default {
|
|
|
7615
7495
|
fixed: {
|
|
7616
7496
|
xxs: {
|
|
7617
7497
|
value: "4px",
|
|
7618
|
-
type: "
|
|
7498
|
+
type: "dimension",
|
|
7619
7499
|
description: "deprecated",
|
|
7620
7500
|
attributes: {
|
|
7621
7501
|
"calcite-schema": {
|
|
7622
7502
|
system: "calcite",
|
|
7623
7503
|
tier: "semantic",
|
|
7624
|
-
type: "
|
|
7504
|
+
type: "dimension",
|
|
7625
7505
|
},
|
|
7626
7506
|
category: "semantic",
|
|
7627
|
-
type: "
|
|
7507
|
+
type: "dimension",
|
|
7628
7508
|
item: "fixed",
|
|
7629
7509
|
subitem: "xxs",
|
|
7630
7510
|
value: "4px",
|
|
@@ -7646,7 +7526,7 @@ export default {
|
|
|
7646
7526
|
isSource: true,
|
|
7647
7527
|
original: {
|
|
7648
7528
|
value: "{core.size.default.4}",
|
|
7649
|
-
type: "
|
|
7529
|
+
type: "dimension",
|
|
7650
7530
|
description: "deprecated",
|
|
7651
7531
|
attributes: {
|
|
7652
7532
|
"calcite-schema": {
|
|
@@ -7676,16 +7556,16 @@ export default {
|
|
|
7676
7556
|
},
|
|
7677
7557
|
xs: {
|
|
7678
7558
|
value: "6px",
|
|
7679
|
-
type: "
|
|
7559
|
+
type: "dimension",
|
|
7680
7560
|
description: "deprecated",
|
|
7681
7561
|
attributes: {
|
|
7682
7562
|
"calcite-schema": {
|
|
7683
7563
|
system: "calcite",
|
|
7684
7564
|
tier: "semantic",
|
|
7685
|
-
type: "
|
|
7565
|
+
type: "dimension",
|
|
7686
7566
|
},
|
|
7687
7567
|
category: "semantic",
|
|
7688
|
-
type: "
|
|
7568
|
+
type: "dimension",
|
|
7689
7569
|
item: "fixed",
|
|
7690
7570
|
subitem: "xs",
|
|
7691
7571
|
value: "6px",
|
|
@@ -7707,7 +7587,7 @@ export default {
|
|
|
7707
7587
|
isSource: true,
|
|
7708
7588
|
original: {
|
|
7709
7589
|
value: "{core.size.default.6}",
|
|
7710
|
-
type: "
|
|
7590
|
+
type: "dimension",
|
|
7711
7591
|
description: "deprecated",
|
|
7712
7592
|
attributes: {
|
|
7713
7593
|
"calcite-schema": {
|
|
@@ -7737,16 +7617,16 @@ export default {
|
|
|
7737
7617
|
},
|
|
7738
7618
|
sm: {
|
|
7739
7619
|
value: "8px",
|
|
7740
|
-
type: "
|
|
7620
|
+
type: "dimension",
|
|
7741
7621
|
description: "deprecated",
|
|
7742
7622
|
attributes: {
|
|
7743
7623
|
"calcite-schema": {
|
|
7744
7624
|
system: "calcite",
|
|
7745
7625
|
tier: "semantic",
|
|
7746
|
-
type: "
|
|
7626
|
+
type: "dimension",
|
|
7747
7627
|
},
|
|
7748
7628
|
category: "semantic",
|
|
7749
|
-
type: "
|
|
7629
|
+
type: "dimension",
|
|
7750
7630
|
item: "fixed",
|
|
7751
7631
|
subitem: "sm",
|
|
7752
7632
|
value: "8px",
|
|
@@ -7768,7 +7648,7 @@ export default {
|
|
|
7768
7648
|
isSource: true,
|
|
7769
7649
|
original: {
|
|
7770
7650
|
value: "{core.size.default.8}",
|
|
7771
|
-
type: "
|
|
7651
|
+
type: "dimension",
|
|
7772
7652
|
description: "deprecated",
|
|
7773
7653
|
attributes: {
|
|
7774
7654
|
"calcite-schema": {
|
|
@@ -7798,16 +7678,16 @@ export default {
|
|
|
7798
7678
|
},
|
|
7799
7679
|
md: {
|
|
7800
7680
|
value: "12px",
|
|
7801
|
-
type: "
|
|
7681
|
+
type: "dimension",
|
|
7802
7682
|
description: "deprecated",
|
|
7803
7683
|
attributes: {
|
|
7804
7684
|
"calcite-schema": {
|
|
7805
7685
|
system: "calcite",
|
|
7806
7686
|
tier: "semantic",
|
|
7807
|
-
type: "
|
|
7687
|
+
type: "dimension",
|
|
7808
7688
|
},
|
|
7809
7689
|
category: "semantic",
|
|
7810
|
-
type: "
|
|
7690
|
+
type: "dimension",
|
|
7811
7691
|
item: "fixed",
|
|
7812
7692
|
subitem: "md",
|
|
7813
7693
|
value: "12px",
|
|
@@ -7829,7 +7709,7 @@ export default {
|
|
|
7829
7709
|
isSource: true,
|
|
7830
7710
|
original: {
|
|
7831
7711
|
value: "{core.size.default.12}",
|
|
7832
|
-
type: "
|
|
7712
|
+
type: "dimension",
|
|
7833
7713
|
description: "deprecated",
|
|
7834
7714
|
attributes: {
|
|
7835
7715
|
"calcite-schema": {
|
|
@@ -7859,16 +7739,16 @@ export default {
|
|
|
7859
7739
|
},
|
|
7860
7740
|
lg: {
|
|
7861
7741
|
value: "14px",
|
|
7862
|
-
type: "
|
|
7742
|
+
type: "dimension",
|
|
7863
7743
|
description: "deprecated",
|
|
7864
7744
|
attributes: {
|
|
7865
7745
|
"calcite-schema": {
|
|
7866
7746
|
system: "calcite",
|
|
7867
7747
|
tier: "semantic",
|
|
7868
|
-
type: "
|
|
7748
|
+
type: "dimension",
|
|
7869
7749
|
},
|
|
7870
7750
|
category: "semantic",
|
|
7871
|
-
type: "
|
|
7751
|
+
type: "dimension",
|
|
7872
7752
|
item: "fixed",
|
|
7873
7753
|
subitem: "lg",
|
|
7874
7754
|
value: "14px",
|
|
@@ -7890,7 +7770,7 @@ export default {
|
|
|
7890
7770
|
isSource: true,
|
|
7891
7771
|
original: {
|
|
7892
7772
|
value: "{core.size.default.14}",
|
|
7893
|
-
type: "
|
|
7773
|
+
type: "dimension",
|
|
7894
7774
|
description: "deprecated",
|
|
7895
7775
|
attributes: {
|
|
7896
7776
|
"calcite-schema": {
|
|
@@ -7920,16 +7800,16 @@ export default {
|
|
|
7920
7800
|
},
|
|
7921
7801
|
xl: {
|
|
7922
7802
|
value: "16px",
|
|
7923
|
-
type: "
|
|
7803
|
+
type: "dimension",
|
|
7924
7804
|
description: "deprecated",
|
|
7925
7805
|
attributes: {
|
|
7926
7806
|
"calcite-schema": {
|
|
7927
7807
|
system: "calcite",
|
|
7928
7808
|
tier: "semantic",
|
|
7929
|
-
type: "
|
|
7809
|
+
type: "dimension",
|
|
7930
7810
|
},
|
|
7931
7811
|
category: "semantic",
|
|
7932
|
-
type: "
|
|
7812
|
+
type: "dimension",
|
|
7933
7813
|
item: "fixed",
|
|
7934
7814
|
subitem: "xl",
|
|
7935
7815
|
value: "16px",
|
|
@@ -7951,7 +7831,7 @@ export default {
|
|
|
7951
7831
|
isSource: true,
|
|
7952
7832
|
original: {
|
|
7953
7833
|
value: "{core.size.default.16}",
|
|
7954
|
-
type: "
|
|
7834
|
+
type: "dimension",
|
|
7955
7835
|
description: "deprecated",
|
|
7956
7836
|
attributes: {
|
|
7957
7837
|
"calcite-schema": {
|
|
@@ -7981,16 +7861,16 @@ export default {
|
|
|
7981
7861
|
},
|
|
7982
7862
|
xxl: {
|
|
7983
7863
|
value: "20px",
|
|
7984
|
-
type: "
|
|
7864
|
+
type: "dimension",
|
|
7985
7865
|
description: "deprecated",
|
|
7986
7866
|
attributes: {
|
|
7987
7867
|
"calcite-schema": {
|
|
7988
7868
|
system: "calcite",
|
|
7989
7869
|
tier: "semantic",
|
|
7990
|
-
type: "
|
|
7870
|
+
type: "dimension",
|
|
7991
7871
|
},
|
|
7992
7872
|
category: "semantic",
|
|
7993
|
-
type: "
|
|
7873
|
+
type: "dimension",
|
|
7994
7874
|
item: "fixed",
|
|
7995
7875
|
subitem: "xxl",
|
|
7996
7876
|
value: "20px",
|
|
@@ -8012,7 +7892,7 @@ export default {
|
|
|
8012
7892
|
isSource: true,
|
|
8013
7893
|
original: {
|
|
8014
7894
|
value: "{core.size.default.20}",
|
|
8015
|
-
type: "
|
|
7895
|
+
type: "dimension",
|
|
8016
7896
|
description: "deprecated",
|
|
8017
7897
|
attributes: {
|
|
8018
7898
|
"calcite-schema": {
|
|
@@ -8042,16 +7922,16 @@ export default {
|
|
|
8042
7922
|
},
|
|
8043
7923
|
xxxl: {
|
|
8044
7924
|
value: "32px",
|
|
8045
|
-
type: "
|
|
7925
|
+
type: "dimension",
|
|
8046
7926
|
description: "deprecated",
|
|
8047
7927
|
attributes: {
|
|
8048
7928
|
"calcite-schema": {
|
|
8049
7929
|
system: "calcite",
|
|
8050
7930
|
tier: "semantic",
|
|
8051
|
-
type: "
|
|
7931
|
+
type: "dimension",
|
|
8052
7932
|
},
|
|
8053
7933
|
category: "semantic",
|
|
8054
|
-
type: "
|
|
7934
|
+
type: "dimension",
|
|
8055
7935
|
item: "fixed",
|
|
8056
7936
|
subitem: "xxxl",
|
|
8057
7937
|
value: "32px",
|
|
@@ -8073,7 +7953,7 @@ export default {
|
|
|
8073
7953
|
isSource: true,
|
|
8074
7954
|
original: {
|
|
8075
7955
|
value: "{core.size.default.32}",
|
|
8076
|
-
type: "
|
|
7956
|
+
type: "dimension",
|
|
8077
7957
|
description: "deprecated",
|
|
8078
7958
|
attributes: {
|
|
8079
7959
|
"calcite-schema": {
|
|
@@ -8105,12 +7985,12 @@ export default {
|
|
|
8105
7985
|
default: {
|
|
8106
7986
|
none: {
|
|
8107
7987
|
value: "0",
|
|
8108
|
-
type: "
|
|
7988
|
+
type: "dimension",
|
|
8109
7989
|
attributes: {
|
|
8110
7990
|
"calcite-schema": {
|
|
8111
7991
|
system: "calcite",
|
|
8112
7992
|
tier: "semantic",
|
|
8113
|
-
type: "
|
|
7993
|
+
type: "dimension",
|
|
8114
7994
|
},
|
|
8115
7995
|
category: "semantic",
|
|
8116
7996
|
type: "spacing",
|
|
@@ -8128,7 +8008,7 @@ export default {
|
|
|
8128
8008
|
isSource: true,
|
|
8129
8009
|
original: {
|
|
8130
8010
|
value: "{core.size.default.none}",
|
|
8131
|
-
type: "
|
|
8011
|
+
type: "dimension",
|
|
8132
8012
|
attributes: {
|
|
8133
8013
|
"calcite-schema": {
|
|
8134
8014
|
system: "calcite",
|
|
@@ -8156,12 +8036,12 @@ export default {
|
|
|
8156
8036
|
},
|
|
8157
8037
|
px: {
|
|
8158
8038
|
value: "1px",
|
|
8159
|
-
type: "
|
|
8039
|
+
type: "dimension",
|
|
8160
8040
|
attributes: {
|
|
8161
8041
|
"calcite-schema": {
|
|
8162
8042
|
system: "calcite",
|
|
8163
8043
|
tier: "semantic",
|
|
8164
|
-
type: "
|
|
8044
|
+
type: "dimension",
|
|
8165
8045
|
},
|
|
8166
8046
|
category: "semantic",
|
|
8167
8047
|
type: "spacing",
|
|
@@ -8179,7 +8059,7 @@ export default {
|
|
|
8179
8059
|
isSource: true,
|
|
8180
8060
|
original: {
|
|
8181
8061
|
value: "{core.size.default.1}",
|
|
8182
|
-
type: "
|
|
8062
|
+
type: "dimension",
|
|
8183
8063
|
attributes: {
|
|
8184
8064
|
"calcite-schema": {
|
|
8185
8065
|
system: "calcite",
|
|
@@ -8207,12 +8087,12 @@ export default {
|
|
|
8207
8087
|
},
|
|
8208
8088
|
base: {
|
|
8209
8089
|
value: "2px",
|
|
8210
|
-
type: "
|
|
8090
|
+
type: "dimension",
|
|
8211
8091
|
attributes: {
|
|
8212
8092
|
"calcite-schema": {
|
|
8213
8093
|
system: "calcite",
|
|
8214
8094
|
tier: "semantic",
|
|
8215
|
-
type: "
|
|
8095
|
+
type: "dimension",
|
|
8216
8096
|
},
|
|
8217
8097
|
category: "semantic",
|
|
8218
8098
|
type: "spacing",
|
|
@@ -8230,7 +8110,7 @@ export default {
|
|
|
8230
8110
|
isSource: true,
|
|
8231
8111
|
original: {
|
|
8232
8112
|
value: "{core.size.default.2}",
|
|
8233
|
-
type: "
|
|
8113
|
+
type: "dimension",
|
|
8234
8114
|
attributes: {
|
|
8235
8115
|
"calcite-schema": {
|
|
8236
8116
|
system: "calcite",
|