@esri/calcite-design-tokens 3.2.0-next.0 → 3.2.0-next.10
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/component.css +11 -0
- package/dist/css/dark.css +3 -2
- package/dist/css/index.css +10 -10
- package/dist/css/light.css +3 -2
- package/dist/css/semantic.css +0 -22
- package/dist/docs/core.json +464 -1
- package/dist/docs/dark.json +110 -24
- package/dist/docs/global.json +309 -183
- package/dist/docs/light.json +102 -14
- package/dist/docs/semantic.json +132 -572
- package/dist/es6/dark.d.ts +3 -2
- package/dist/es6/dark.js +3 -2
- package/dist/es6/global.d.ts +3 -2
- package/dist/es6/global.js +3 -2
- package/dist/es6/light.d.ts +3 -2
- package/dist/es6/light.js +3 -2
- package/dist/es6/semantic.d.ts +0 -24
- package/dist/es6/semantic.js +0 -12
- package/dist/js/core.js +926 -0
- package/dist/js/dark.d.ts +3 -2
- package/dist/js/dark.js +200 -38
- package/dist/js/global.d.ts +13 -10
- package/dist/js/global.js +669 -424
- package/dist/js/light.d.ts +3 -2
- package/dist/js/light.js +176 -16
- package/dist/js/semantic.d.ts +8 -26
- package/dist/js/semantic.js +358 -934
- package/dist/scss/dark.scss +3 -2
- package/dist/scss/index.scss +4 -4
- package/dist/scss/light.scss +3 -2
- package/dist/scss/semantic.scss +0 -22
- package/package.json +6 -6
package/dist/js/semantic.js
CHANGED
|
@@ -13,6 +13,7 @@ export default {
|
|
|
13
13
|
type: "dimension",
|
|
14
14
|
attributes: {
|
|
15
15
|
category: "border",
|
|
16
|
+
group: "width",
|
|
16
17
|
type: "border",
|
|
17
18
|
item: "width",
|
|
18
19
|
subitem: "none",
|
|
@@ -36,6 +37,7 @@ export default {
|
|
|
36
37
|
type: "dimension",
|
|
37
38
|
attributes: {
|
|
38
39
|
category: "border",
|
|
40
|
+
group: "width",
|
|
39
41
|
},
|
|
40
42
|
key: "{semantic.border.width.none}",
|
|
41
43
|
},
|
|
@@ -48,6 +50,7 @@ export default {
|
|
|
48
50
|
type: "dimension",
|
|
49
51
|
attributes: {
|
|
50
52
|
category: "border",
|
|
53
|
+
group: "width",
|
|
51
54
|
type: "border",
|
|
52
55
|
item: "width",
|
|
53
56
|
subitem: "sm",
|
|
@@ -71,6 +74,7 @@ export default {
|
|
|
71
74
|
type: "dimension",
|
|
72
75
|
attributes: {
|
|
73
76
|
category: "border",
|
|
77
|
+
group: "width",
|
|
74
78
|
},
|
|
75
79
|
key: "{semantic.border.width.sm}",
|
|
76
80
|
},
|
|
@@ -83,6 +87,7 @@ export default {
|
|
|
83
87
|
type: "dimension",
|
|
84
88
|
attributes: {
|
|
85
89
|
category: "border",
|
|
90
|
+
group: "width",
|
|
86
91
|
type: "border",
|
|
87
92
|
item: "width",
|
|
88
93
|
subitem: "md",
|
|
@@ -106,6 +111,7 @@ export default {
|
|
|
106
111
|
type: "dimension",
|
|
107
112
|
attributes: {
|
|
108
113
|
category: "border",
|
|
114
|
+
group: "width",
|
|
109
115
|
},
|
|
110
116
|
key: "{semantic.border.width.md}",
|
|
111
117
|
},
|
|
@@ -118,6 +124,7 @@ export default {
|
|
|
118
124
|
type: "dimension",
|
|
119
125
|
attributes: {
|
|
120
126
|
category: "border",
|
|
127
|
+
group: "width",
|
|
121
128
|
type: "border",
|
|
122
129
|
item: "width",
|
|
123
130
|
subitem: "lg",
|
|
@@ -141,6 +148,7 @@ export default {
|
|
|
141
148
|
type: "dimension",
|
|
142
149
|
attributes: {
|
|
143
150
|
category: "border",
|
|
151
|
+
group: "width",
|
|
144
152
|
},
|
|
145
153
|
key: "{semantic.border.width.lg}",
|
|
146
154
|
},
|
|
@@ -150,664 +158,6 @@ export default {
|
|
|
150
158
|
},
|
|
151
159
|
},
|
|
152
160
|
"container-size": {
|
|
153
|
-
height: {
|
|
154
|
-
xxs: {
|
|
155
|
-
key: "{semantic.container-size.height.xxs}",
|
|
156
|
-
value: {
|
|
157
|
-
min: "0",
|
|
158
|
-
max: "154px",
|
|
159
|
-
},
|
|
160
|
-
type: "dimension",
|
|
161
|
-
description: "Small handheld devices and mini-windows",
|
|
162
|
-
attributes: {
|
|
163
|
-
category: "breakpoint",
|
|
164
|
-
type: "dimension",
|
|
165
|
-
item: "height",
|
|
166
|
-
subitem: "xxs",
|
|
167
|
-
value: {
|
|
168
|
-
min: "0",
|
|
169
|
-
max: "154px",
|
|
170
|
-
},
|
|
171
|
-
description: "Small handheld devices and mini-windows",
|
|
172
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
173
|
-
isSource: true,
|
|
174
|
-
key: "{semantic.container-size.height.xxs}",
|
|
175
|
-
name: "calcite-semantic-container-size-height-xxs",
|
|
176
|
-
path: ["semantic", "container-size", "height", "xxs"],
|
|
177
|
-
comment: "Small handheld devices and mini-windows",
|
|
178
|
-
names: {
|
|
179
|
-
scss: "$calcite-container-size-height-xxs",
|
|
180
|
-
css: "var(--calcite-container-size-height-xxs)",
|
|
181
|
-
js: "semantic.container-size.height.xxs",
|
|
182
|
-
docs: "semantic.container-size.height.xxs",
|
|
183
|
-
es6: "calciteContainerSizeHeightXxs",
|
|
184
|
-
},
|
|
185
|
-
"calcite-schema": {
|
|
186
|
-
system: "calcite",
|
|
187
|
-
tier: "semantic",
|
|
188
|
-
type: "dimension",
|
|
189
|
-
},
|
|
190
|
-
},
|
|
191
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
192
|
-
isSource: true,
|
|
193
|
-
original: {
|
|
194
|
-
value: {
|
|
195
|
-
min: "0",
|
|
196
|
-
max: "{core.container-size.154}",
|
|
197
|
-
},
|
|
198
|
-
type: "dimension",
|
|
199
|
-
description: "Small handheld devices and mini-windows",
|
|
200
|
-
attributes: {
|
|
201
|
-
category: "breakpoint",
|
|
202
|
-
},
|
|
203
|
-
key: "{semantic.container-size.height.xxs}",
|
|
204
|
-
},
|
|
205
|
-
name: "Container Size Height Xxs",
|
|
206
|
-
path: ["semantic", "container-size", "height", "xxs"],
|
|
207
|
-
comment: "Small handheld devices and mini-windows",
|
|
208
|
-
},
|
|
209
|
-
xs: {
|
|
210
|
-
key: "{semantic.container-size.height.xs}",
|
|
211
|
-
value: {
|
|
212
|
-
min: "155px",
|
|
213
|
-
max: "328px",
|
|
214
|
-
},
|
|
215
|
-
type: "dimension",
|
|
216
|
-
description: "Handheld devices",
|
|
217
|
-
attributes: {
|
|
218
|
-
category: "breakpoint",
|
|
219
|
-
type: "dimension",
|
|
220
|
-
item: "height",
|
|
221
|
-
subitem: "xs",
|
|
222
|
-
value: {
|
|
223
|
-
min: "154px + 1",
|
|
224
|
-
max: "328px",
|
|
225
|
-
},
|
|
226
|
-
description: "Handheld devices",
|
|
227
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
228
|
-
isSource: true,
|
|
229
|
-
key: "{semantic.container-size.height.xs}",
|
|
230
|
-
name: "calcite-semantic-container-size-height-xs",
|
|
231
|
-
path: ["semantic", "container-size", "height", "xs"],
|
|
232
|
-
comment: "Handheld devices",
|
|
233
|
-
names: {
|
|
234
|
-
scss: "$calcite-container-size-height-xs",
|
|
235
|
-
css: "var(--calcite-container-size-height-xs)",
|
|
236
|
-
js: "semantic.container-size.height.xs",
|
|
237
|
-
docs: "semantic.container-size.height.xs",
|
|
238
|
-
es6: "calciteContainerSizeHeightXs",
|
|
239
|
-
},
|
|
240
|
-
"calcite-schema": {
|
|
241
|
-
system: "calcite",
|
|
242
|
-
tier: "semantic",
|
|
243
|
-
type: "dimension",
|
|
244
|
-
},
|
|
245
|
-
},
|
|
246
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
247
|
-
isSource: true,
|
|
248
|
-
original: {
|
|
249
|
-
value: {
|
|
250
|
-
min: "{core.container-size.154} + 1",
|
|
251
|
-
max: "{core.container-size.328}",
|
|
252
|
-
},
|
|
253
|
-
type: "dimension",
|
|
254
|
-
description: "Handheld devices",
|
|
255
|
-
attributes: {
|
|
256
|
-
category: "breakpoint",
|
|
257
|
-
},
|
|
258
|
-
key: "{semantic.container-size.height.xs}",
|
|
259
|
-
},
|
|
260
|
-
name: "Container Size Height Xs",
|
|
261
|
-
path: ["semantic", "container-size", "height", "xs"],
|
|
262
|
-
comment: "Handheld devices",
|
|
263
|
-
},
|
|
264
|
-
sm: {
|
|
265
|
-
key: "{semantic.container-size.height.sm}",
|
|
266
|
-
value: {
|
|
267
|
-
min: "329px",
|
|
268
|
-
max: "504px",
|
|
269
|
-
},
|
|
270
|
-
type: "dimension",
|
|
271
|
-
description: "Small tablets",
|
|
272
|
-
attributes: {
|
|
273
|
-
category: "breakpoint",
|
|
274
|
-
type: "dimension",
|
|
275
|
-
item: "height",
|
|
276
|
-
subitem: "sm",
|
|
277
|
-
value: {
|
|
278
|
-
min: "328px + 1",
|
|
279
|
-
max: "504px",
|
|
280
|
-
},
|
|
281
|
-
description: "Small tablets",
|
|
282
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
283
|
-
isSource: true,
|
|
284
|
-
key: "{semantic.container-size.height.sm}",
|
|
285
|
-
name: "calcite-semantic-container-size-height-sm",
|
|
286
|
-
path: ["semantic", "container-size", "height", "sm"],
|
|
287
|
-
comment: "Small tablets",
|
|
288
|
-
names: {
|
|
289
|
-
scss: "$calcite-container-size-height-sm",
|
|
290
|
-
css: "var(--calcite-container-size-height-sm)",
|
|
291
|
-
js: "semantic.container-size.height.sm",
|
|
292
|
-
docs: "semantic.container-size.height.sm",
|
|
293
|
-
es6: "calciteContainerSizeHeightSm",
|
|
294
|
-
},
|
|
295
|
-
"calcite-schema": {
|
|
296
|
-
system: "calcite",
|
|
297
|
-
tier: "semantic",
|
|
298
|
-
type: "dimension",
|
|
299
|
-
},
|
|
300
|
-
},
|
|
301
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
302
|
-
isSource: true,
|
|
303
|
-
original: {
|
|
304
|
-
value: {
|
|
305
|
-
min: "{core.container-size.328} + 1",
|
|
306
|
-
max: "{core.container-size.504}",
|
|
307
|
-
},
|
|
308
|
-
type: "dimension",
|
|
309
|
-
description: "Small tablets",
|
|
310
|
-
attributes: {
|
|
311
|
-
category: "breakpoint",
|
|
312
|
-
},
|
|
313
|
-
key: "{semantic.container-size.height.sm}",
|
|
314
|
-
},
|
|
315
|
-
name: "Container Size Height Sm",
|
|
316
|
-
path: ["semantic", "container-size", "height", "sm"],
|
|
317
|
-
comment: "Small tablets",
|
|
318
|
-
},
|
|
319
|
-
md: {
|
|
320
|
-
key: "{semantic.container-size.height.md}",
|
|
321
|
-
value: {
|
|
322
|
-
min: "505px",
|
|
323
|
-
max: "678px",
|
|
324
|
-
},
|
|
325
|
-
type: "dimension",
|
|
326
|
-
description: "Small laptops",
|
|
327
|
-
attributes: {
|
|
328
|
-
category: "breakpoint",
|
|
329
|
-
type: "dimension",
|
|
330
|
-
item: "height",
|
|
331
|
-
subitem: "md",
|
|
332
|
-
value: {
|
|
333
|
-
min: "504px + 1",
|
|
334
|
-
max: "678px",
|
|
335
|
-
},
|
|
336
|
-
description: "Small laptops",
|
|
337
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
338
|
-
isSource: true,
|
|
339
|
-
key: "{semantic.container-size.height.md}",
|
|
340
|
-
name: "calcite-semantic-container-size-height-md",
|
|
341
|
-
path: ["semantic", "container-size", "height", "md"],
|
|
342
|
-
comment: "Small laptops",
|
|
343
|
-
names: {
|
|
344
|
-
scss: "$calcite-container-size-height-md",
|
|
345
|
-
css: "var(--calcite-container-size-height-md)",
|
|
346
|
-
js: "semantic.container-size.height.md",
|
|
347
|
-
docs: "semantic.container-size.height.md",
|
|
348
|
-
es6: "calciteContainerSizeHeightMd",
|
|
349
|
-
},
|
|
350
|
-
"calcite-schema": {
|
|
351
|
-
system: "calcite",
|
|
352
|
-
tier: "semantic",
|
|
353
|
-
type: "dimension",
|
|
354
|
-
},
|
|
355
|
-
},
|
|
356
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
357
|
-
isSource: true,
|
|
358
|
-
original: {
|
|
359
|
-
value: {
|
|
360
|
-
min: "{core.container-size.504} + 1",
|
|
361
|
-
max: "{core.container-size.678}",
|
|
362
|
-
},
|
|
363
|
-
type: "dimension",
|
|
364
|
-
description: "Small laptops",
|
|
365
|
-
attributes: {
|
|
366
|
-
category: "breakpoint",
|
|
367
|
-
},
|
|
368
|
-
key: "{semantic.container-size.height.md}",
|
|
369
|
-
},
|
|
370
|
-
name: "Container Size Height Md",
|
|
371
|
-
path: ["semantic", "container-size", "height", "md"],
|
|
372
|
-
comment: "Small laptops",
|
|
373
|
-
},
|
|
374
|
-
lg: {
|
|
375
|
-
key: "{semantic.container-size.height.lg}",
|
|
376
|
-
value: {
|
|
377
|
-
min: "679px",
|
|
378
|
-
max: "854px",
|
|
379
|
-
},
|
|
380
|
-
type: "dimension",
|
|
381
|
-
description: "Large laptops and desktop computers",
|
|
382
|
-
attributes: {
|
|
383
|
-
category: "breakpoint",
|
|
384
|
-
type: "dimension",
|
|
385
|
-
item: "height",
|
|
386
|
-
subitem: "lg",
|
|
387
|
-
value: {
|
|
388
|
-
min: "678px + 1",
|
|
389
|
-
max: "854px",
|
|
390
|
-
},
|
|
391
|
-
description: "Large laptops and desktop computers",
|
|
392
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
393
|
-
isSource: true,
|
|
394
|
-
key: "{semantic.container-size.height.lg}",
|
|
395
|
-
name: "calcite-semantic-container-size-height-lg",
|
|
396
|
-
path: ["semantic", "container-size", "height", "lg"],
|
|
397
|
-
comment: "Large laptops and desktop computers",
|
|
398
|
-
names: {
|
|
399
|
-
scss: "$calcite-container-size-height-lg",
|
|
400
|
-
css: "var(--calcite-container-size-height-lg)",
|
|
401
|
-
js: "semantic.container-size.height.lg",
|
|
402
|
-
docs: "semantic.container-size.height.lg",
|
|
403
|
-
es6: "calciteContainerSizeHeightLg",
|
|
404
|
-
},
|
|
405
|
-
"calcite-schema": {
|
|
406
|
-
system: "calcite",
|
|
407
|
-
tier: "semantic",
|
|
408
|
-
type: "dimension",
|
|
409
|
-
},
|
|
410
|
-
},
|
|
411
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
412
|
-
isSource: true,
|
|
413
|
-
original: {
|
|
414
|
-
value: {
|
|
415
|
-
min: "{core.container-size.678} + 1",
|
|
416
|
-
max: "{core.container-size.854}",
|
|
417
|
-
},
|
|
418
|
-
type: "dimension",
|
|
419
|
-
description: "Large laptops and desktop computers",
|
|
420
|
-
attributes: {
|
|
421
|
-
category: "breakpoint",
|
|
422
|
-
},
|
|
423
|
-
key: "{semantic.container-size.height.lg}",
|
|
424
|
-
},
|
|
425
|
-
name: "Container Size Height Lg",
|
|
426
|
-
path: ["semantic", "container-size", "height", "lg"],
|
|
427
|
-
comment: "Large laptops and desktop computers",
|
|
428
|
-
},
|
|
429
|
-
xl: {
|
|
430
|
-
key: "{semantic.container-size.height.xl}",
|
|
431
|
-
value: {
|
|
432
|
-
min: "855px",
|
|
433
|
-
},
|
|
434
|
-
type: "dimension",
|
|
435
|
-
description: "Projectors and televisions",
|
|
436
|
-
attributes: {
|
|
437
|
-
category: "breakpoint",
|
|
438
|
-
type: "dimension",
|
|
439
|
-
item: "height",
|
|
440
|
-
subitem: "xl",
|
|
441
|
-
value: {
|
|
442
|
-
min: "854px + 1",
|
|
443
|
-
},
|
|
444
|
-
description: "Projectors and televisions",
|
|
445
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
446
|
-
isSource: true,
|
|
447
|
-
key: "{semantic.container-size.height.xl}",
|
|
448
|
-
name: "calcite-semantic-container-size-height-xl",
|
|
449
|
-
path: ["semantic", "container-size", "height", "xl"],
|
|
450
|
-
comment: "Projectors and televisions",
|
|
451
|
-
names: {
|
|
452
|
-
scss: "$calcite-container-size-height-xl",
|
|
453
|
-
css: "var(--calcite-container-size-height-xl)",
|
|
454
|
-
js: "semantic.container-size.height.xl",
|
|
455
|
-
docs: "semantic.container-size.height.xl",
|
|
456
|
-
es6: "calciteContainerSizeHeightXl",
|
|
457
|
-
},
|
|
458
|
-
"calcite-schema": {
|
|
459
|
-
system: "calcite",
|
|
460
|
-
tier: "semantic",
|
|
461
|
-
type: "dimension",
|
|
462
|
-
},
|
|
463
|
-
},
|
|
464
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
465
|
-
isSource: true,
|
|
466
|
-
original: {
|
|
467
|
-
value: {
|
|
468
|
-
min: "{core.container-size.854} + 1",
|
|
469
|
-
},
|
|
470
|
-
type: "dimension",
|
|
471
|
-
description: "Projectors and televisions",
|
|
472
|
-
attributes: {
|
|
473
|
-
category: "breakpoint",
|
|
474
|
-
},
|
|
475
|
-
key: "{semantic.container-size.height.xl}",
|
|
476
|
-
},
|
|
477
|
-
name: "Container Size Height Xl",
|
|
478
|
-
path: ["semantic", "container-size", "height", "xl"],
|
|
479
|
-
comment: "Projectors and televisions",
|
|
480
|
-
},
|
|
481
|
-
},
|
|
482
|
-
width: {
|
|
483
|
-
xxs: {
|
|
484
|
-
key: "{semantic.container-size.width.xxs}",
|
|
485
|
-
value: {
|
|
486
|
-
min: "0",
|
|
487
|
-
max: "320px",
|
|
488
|
-
},
|
|
489
|
-
type: "dimension",
|
|
490
|
-
description: "Small handheld devices and mini-windows",
|
|
491
|
-
attributes: {
|
|
492
|
-
category: "breakpoint",
|
|
493
|
-
type: "dimension",
|
|
494
|
-
item: "width",
|
|
495
|
-
subitem: "xxs",
|
|
496
|
-
value: {
|
|
497
|
-
min: "0",
|
|
498
|
-
max: "320px",
|
|
499
|
-
},
|
|
500
|
-
description: "Small handheld devices and mini-windows",
|
|
501
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
502
|
-
isSource: true,
|
|
503
|
-
key: "{semantic.container-size.width.xxs}",
|
|
504
|
-
name: "calcite-semantic-container-size-width-xxs",
|
|
505
|
-
path: ["semantic", "container-size", "width", "xxs"],
|
|
506
|
-
comment: "Small handheld devices and mini-windows",
|
|
507
|
-
names: {
|
|
508
|
-
scss: "$calcite-container-size-width-xxs",
|
|
509
|
-
css: "var(--calcite-container-size-width-xxs)",
|
|
510
|
-
js: "semantic.container-size.width.xxs",
|
|
511
|
-
docs: "semantic.container-size.width.xxs",
|
|
512
|
-
es6: "calciteContainerSizeWidthXxs",
|
|
513
|
-
},
|
|
514
|
-
"calcite-schema": {
|
|
515
|
-
system: "calcite",
|
|
516
|
-
tier: "semantic",
|
|
517
|
-
type: "dimension",
|
|
518
|
-
},
|
|
519
|
-
},
|
|
520
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
521
|
-
isSource: true,
|
|
522
|
-
original: {
|
|
523
|
-
value: {
|
|
524
|
-
min: "0",
|
|
525
|
-
max: "{core.container-size.320}",
|
|
526
|
-
},
|
|
527
|
-
type: "dimension",
|
|
528
|
-
description: "Small handheld devices and mini-windows",
|
|
529
|
-
attributes: {
|
|
530
|
-
category: "breakpoint",
|
|
531
|
-
},
|
|
532
|
-
key: "{semantic.container-size.width.xxs}",
|
|
533
|
-
},
|
|
534
|
-
name: "Container Size Width Xxs",
|
|
535
|
-
path: ["semantic", "container-size", "width", "xxs"],
|
|
536
|
-
comment: "Small handheld devices and mini-windows",
|
|
537
|
-
},
|
|
538
|
-
xs: {
|
|
539
|
-
key: "{semantic.container-size.width.xs}",
|
|
540
|
-
value: {
|
|
541
|
-
min: "321px",
|
|
542
|
-
max: "476px",
|
|
543
|
-
},
|
|
544
|
-
type: "dimension",
|
|
545
|
-
description: "Handheld devices",
|
|
546
|
-
attributes: {
|
|
547
|
-
category: "breakpoint",
|
|
548
|
-
type: "dimension",
|
|
549
|
-
item: "width",
|
|
550
|
-
subitem: "xs",
|
|
551
|
-
value: {
|
|
552
|
-
min: "320px + 1",
|
|
553
|
-
max: "476px",
|
|
554
|
-
},
|
|
555
|
-
description: "Handheld devices",
|
|
556
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
557
|
-
isSource: true,
|
|
558
|
-
key: "{semantic.container-size.width.xs}",
|
|
559
|
-
name: "calcite-semantic-container-size-width-xs",
|
|
560
|
-
path: ["semantic", "container-size", "width", "xs"],
|
|
561
|
-
comment: "Handheld devices",
|
|
562
|
-
names: {
|
|
563
|
-
scss: "$calcite-container-size-width-xs",
|
|
564
|
-
css: "var(--calcite-container-size-width-xs)",
|
|
565
|
-
js: "semantic.container-size.width.xs",
|
|
566
|
-
docs: "semantic.container-size.width.xs",
|
|
567
|
-
es6: "calciteContainerSizeWidthXs",
|
|
568
|
-
},
|
|
569
|
-
"calcite-schema": {
|
|
570
|
-
system: "calcite",
|
|
571
|
-
tier: "semantic",
|
|
572
|
-
type: "dimension",
|
|
573
|
-
},
|
|
574
|
-
},
|
|
575
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
576
|
-
isSource: true,
|
|
577
|
-
original: {
|
|
578
|
-
value: {
|
|
579
|
-
min: "{core.container-size.320} + 1",
|
|
580
|
-
max: "{core.container-size.476}",
|
|
581
|
-
},
|
|
582
|
-
type: "dimension",
|
|
583
|
-
description: "Handheld devices",
|
|
584
|
-
attributes: {
|
|
585
|
-
category: "breakpoint",
|
|
586
|
-
},
|
|
587
|
-
key: "{semantic.container-size.width.xs}",
|
|
588
|
-
},
|
|
589
|
-
name: "Container Size Width Xs",
|
|
590
|
-
path: ["semantic", "container-size", "width", "xs"],
|
|
591
|
-
comment: "Handheld devices",
|
|
592
|
-
},
|
|
593
|
-
sm: {
|
|
594
|
-
key: "{semantic.container-size.width.sm}",
|
|
595
|
-
value: {
|
|
596
|
-
min: "477px",
|
|
597
|
-
max: "768px",
|
|
598
|
-
},
|
|
599
|
-
type: "dimension",
|
|
600
|
-
description: "Small tablets",
|
|
601
|
-
attributes: {
|
|
602
|
-
category: "breakpoint",
|
|
603
|
-
type: "dimension",
|
|
604
|
-
item: "width",
|
|
605
|
-
subitem: "sm",
|
|
606
|
-
value: {
|
|
607
|
-
min: "476px + 1",
|
|
608
|
-
max: "768px",
|
|
609
|
-
},
|
|
610
|
-
description: "Small tablets",
|
|
611
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
612
|
-
isSource: true,
|
|
613
|
-
key: "{semantic.container-size.width.sm}",
|
|
614
|
-
name: "calcite-semantic-container-size-width-sm",
|
|
615
|
-
path: ["semantic", "container-size", "width", "sm"],
|
|
616
|
-
comment: "Small tablets",
|
|
617
|
-
names: {
|
|
618
|
-
scss: "$calcite-container-size-width-sm",
|
|
619
|
-
css: "var(--calcite-container-size-width-sm)",
|
|
620
|
-
js: "semantic.container-size.width.sm",
|
|
621
|
-
docs: "semantic.container-size.width.sm",
|
|
622
|
-
es6: "calciteContainerSizeWidthSm",
|
|
623
|
-
},
|
|
624
|
-
"calcite-schema": {
|
|
625
|
-
system: "calcite",
|
|
626
|
-
tier: "semantic",
|
|
627
|
-
type: "dimension",
|
|
628
|
-
},
|
|
629
|
-
},
|
|
630
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
631
|
-
isSource: true,
|
|
632
|
-
original: {
|
|
633
|
-
value: {
|
|
634
|
-
min: "{core.container-size.476} + 1",
|
|
635
|
-
max: "{core.container-size.768}",
|
|
636
|
-
},
|
|
637
|
-
type: "dimension",
|
|
638
|
-
description: "Small tablets",
|
|
639
|
-
attributes: {
|
|
640
|
-
category: "breakpoint",
|
|
641
|
-
},
|
|
642
|
-
key: "{semantic.container-size.width.sm}",
|
|
643
|
-
},
|
|
644
|
-
name: "Container Size Width Sm",
|
|
645
|
-
path: ["semantic", "container-size", "width", "sm"],
|
|
646
|
-
comment: "Small tablets",
|
|
647
|
-
},
|
|
648
|
-
md: {
|
|
649
|
-
key: "{semantic.container-size.width.md}",
|
|
650
|
-
value: {
|
|
651
|
-
min: "769px",
|
|
652
|
-
max: "1152px",
|
|
653
|
-
},
|
|
654
|
-
type: "dimension",
|
|
655
|
-
description: "Small laptops",
|
|
656
|
-
attributes: {
|
|
657
|
-
category: "breakpoint",
|
|
658
|
-
type: "dimension",
|
|
659
|
-
item: "width",
|
|
660
|
-
subitem: "md",
|
|
661
|
-
value: {
|
|
662
|
-
min: "768px + 1",
|
|
663
|
-
max: "1152px",
|
|
664
|
-
},
|
|
665
|
-
description: "Small laptops",
|
|
666
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
667
|
-
isSource: true,
|
|
668
|
-
key: "{semantic.container-size.width.md}",
|
|
669
|
-
name: "calcite-semantic-container-size-width-md",
|
|
670
|
-
path: ["semantic", "container-size", "width", "md"],
|
|
671
|
-
comment: "Small laptops",
|
|
672
|
-
names: {
|
|
673
|
-
scss: "$calcite-container-size-width-md",
|
|
674
|
-
css: "var(--calcite-container-size-width-md)",
|
|
675
|
-
js: "semantic.container-size.width.md",
|
|
676
|
-
docs: "semantic.container-size.width.md",
|
|
677
|
-
es6: "calciteContainerSizeWidthMd",
|
|
678
|
-
},
|
|
679
|
-
"calcite-schema": {
|
|
680
|
-
system: "calcite",
|
|
681
|
-
tier: "semantic",
|
|
682
|
-
type: "dimension",
|
|
683
|
-
},
|
|
684
|
-
},
|
|
685
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
686
|
-
isSource: true,
|
|
687
|
-
original: {
|
|
688
|
-
value: {
|
|
689
|
-
min: "{core.container-size.768} + 1",
|
|
690
|
-
max: "{core.container-size.1152}",
|
|
691
|
-
},
|
|
692
|
-
type: "dimension",
|
|
693
|
-
description: "Small laptops",
|
|
694
|
-
attributes: {
|
|
695
|
-
category: "breakpoint",
|
|
696
|
-
},
|
|
697
|
-
key: "{semantic.container-size.width.md}",
|
|
698
|
-
},
|
|
699
|
-
name: "Container Size Width Md",
|
|
700
|
-
path: ["semantic", "container-size", "width", "md"],
|
|
701
|
-
comment: "Small laptops",
|
|
702
|
-
},
|
|
703
|
-
lg: {
|
|
704
|
-
key: "{semantic.container-size.width.lg}",
|
|
705
|
-
value: {
|
|
706
|
-
min: "1153px",
|
|
707
|
-
max: "1440px",
|
|
708
|
-
},
|
|
709
|
-
type: "dimension",
|
|
710
|
-
description: "Large laptops and desktop computers",
|
|
711
|
-
attributes: {
|
|
712
|
-
category: "breakpoint",
|
|
713
|
-
type: "dimension",
|
|
714
|
-
item: "width",
|
|
715
|
-
subitem: "lg",
|
|
716
|
-
value: {
|
|
717
|
-
min: "1152px + 1",
|
|
718
|
-
max: "1440px",
|
|
719
|
-
},
|
|
720
|
-
description: "Large laptops and desktop computers",
|
|
721
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
722
|
-
isSource: true,
|
|
723
|
-
key: "{semantic.container-size.width.lg}",
|
|
724
|
-
name: "calcite-semantic-container-size-width-lg",
|
|
725
|
-
path: ["semantic", "container-size", "width", "lg"],
|
|
726
|
-
comment: "Large laptops and desktop computers",
|
|
727
|
-
names: {
|
|
728
|
-
scss: "$calcite-container-size-width-lg",
|
|
729
|
-
css: "var(--calcite-container-size-width-lg)",
|
|
730
|
-
js: "semantic.container-size.width.lg",
|
|
731
|
-
docs: "semantic.container-size.width.lg",
|
|
732
|
-
es6: "calciteContainerSizeWidthLg",
|
|
733
|
-
},
|
|
734
|
-
"calcite-schema": {
|
|
735
|
-
system: "calcite",
|
|
736
|
-
tier: "semantic",
|
|
737
|
-
type: "dimension",
|
|
738
|
-
},
|
|
739
|
-
},
|
|
740
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
741
|
-
isSource: true,
|
|
742
|
-
original: {
|
|
743
|
-
value: {
|
|
744
|
-
min: "{core.container-size.1152} + 1",
|
|
745
|
-
max: "{core.container-size.1440}",
|
|
746
|
-
},
|
|
747
|
-
type: "dimension",
|
|
748
|
-
description: "Large laptops and desktop computers",
|
|
749
|
-
attributes: {
|
|
750
|
-
category: "breakpoint",
|
|
751
|
-
},
|
|
752
|
-
key: "{semantic.container-size.width.lg}",
|
|
753
|
-
},
|
|
754
|
-
name: "Container Size Width Lg",
|
|
755
|
-
path: ["semantic", "container-size", "width", "lg"],
|
|
756
|
-
comment: "Large laptops and desktop computers",
|
|
757
|
-
},
|
|
758
|
-
xl: {
|
|
759
|
-
key: "{semantic.container-size.width.xl}",
|
|
760
|
-
value: {
|
|
761
|
-
min: "1441px",
|
|
762
|
-
},
|
|
763
|
-
type: "dimension",
|
|
764
|
-
description: "Projectors and televisions",
|
|
765
|
-
attributes: {
|
|
766
|
-
category: "breakpoint",
|
|
767
|
-
type: "dimension",
|
|
768
|
-
item: "width",
|
|
769
|
-
subitem: "xl",
|
|
770
|
-
value: {
|
|
771
|
-
min: "1440px + 1",
|
|
772
|
-
},
|
|
773
|
-
description: "Projectors and televisions",
|
|
774
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
775
|
-
isSource: true,
|
|
776
|
-
key: "{semantic.container-size.width.xl}",
|
|
777
|
-
name: "calcite-semantic-container-size-width-xl",
|
|
778
|
-
path: ["semantic", "container-size", "width", "xl"],
|
|
779
|
-
comment: "Projectors and televisions",
|
|
780
|
-
names: {
|
|
781
|
-
scss: "$calcite-container-size-width-xl",
|
|
782
|
-
css: "var(--calcite-container-size-width-xl)",
|
|
783
|
-
js: "semantic.container-size.width.xl",
|
|
784
|
-
docs: "semantic.container-size.width.xl",
|
|
785
|
-
es6: "calciteContainerSizeWidthXl",
|
|
786
|
-
},
|
|
787
|
-
"calcite-schema": {
|
|
788
|
-
system: "calcite",
|
|
789
|
-
tier: "semantic",
|
|
790
|
-
type: "dimension",
|
|
791
|
-
},
|
|
792
|
-
},
|
|
793
|
-
filePath: "src/tokens/semantic/container-size.json",
|
|
794
|
-
isSource: true,
|
|
795
|
-
original: {
|
|
796
|
-
value: {
|
|
797
|
-
min: "{core.container-size.1440} + 1",
|
|
798
|
-
},
|
|
799
|
-
type: "dimension",
|
|
800
|
-
description: "Projectors and televisions",
|
|
801
|
-
attributes: {
|
|
802
|
-
category: "breakpoint",
|
|
803
|
-
},
|
|
804
|
-
key: "{semantic.container-size.width.xl}",
|
|
805
|
-
},
|
|
806
|
-
name: "Container Size Width Xl",
|
|
807
|
-
path: ["semantic", "container-size", "width", "xl"],
|
|
808
|
-
comment: "Projectors and televisions",
|
|
809
|
-
},
|
|
810
|
-
},
|
|
811
161
|
margin: {
|
|
812
162
|
key: "{semantic.container-size.margin}",
|
|
813
163
|
value: "24px",
|
|
@@ -971,277 +321,266 @@ export default {
|
|
|
971
321
|
},
|
|
972
322
|
},
|
|
973
323
|
},
|
|
974
|
-
corner: {
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
docs: "semantic.corner.radius.default",
|
|
990
|
-
es6: "calciteCornerRadius",
|
|
991
|
-
},
|
|
992
|
-
"calcite-schema": {
|
|
993
|
-
system: "calcite",
|
|
994
|
-
tier: "semantic",
|
|
995
|
-
type: "dimension",
|
|
996
|
-
},
|
|
324
|
+
"corner-radius": {
|
|
325
|
+
default: {
|
|
326
|
+
key: "{semantic.corner-radius.default}",
|
|
327
|
+
value: "0",
|
|
328
|
+
type: "dimension",
|
|
329
|
+
attributes: {
|
|
330
|
+
category: "corner-radius",
|
|
331
|
+
type: "corner-radius",
|
|
332
|
+
item: "default",
|
|
333
|
+
names: {
|
|
334
|
+
scss: "$calcite-corner-radius",
|
|
335
|
+
css: "var(--calcite-corner-radius)",
|
|
336
|
+
js: "semantic.corner-radius.default",
|
|
337
|
+
docs: "semantic.corner-radius.default",
|
|
338
|
+
es6: "calciteCornerRadius",
|
|
997
339
|
},
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
value: "{semantic.corner.radius.none}",
|
|
340
|
+
"calcite-schema": {
|
|
341
|
+
system: "calcite",
|
|
342
|
+
tier: "semantic",
|
|
1002
343
|
type: "dimension",
|
|
1003
|
-
attributes: {
|
|
1004
|
-
category: "corner",
|
|
1005
|
-
},
|
|
1006
|
-
key: "{semantic.corner.radius.default}",
|
|
1007
344
|
},
|
|
1008
|
-
name: "Corner Radius",
|
|
1009
|
-
path: ["semantic", "corner", "radius", "default"],
|
|
1010
345
|
},
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
346
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
347
|
+
isSource: true,
|
|
348
|
+
original: {
|
|
349
|
+
value: "{semantic.corner-radius.none}",
|
|
1014
350
|
type: "dimension",
|
|
1015
351
|
attributes: {
|
|
1016
|
-
category: "corner",
|
|
1017
|
-
type: "dimension",
|
|
1018
|
-
item: "radius",
|
|
1019
|
-
subitem: "sharp",
|
|
1020
|
-
value: "0",
|
|
1021
|
-
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
1022
|
-
filePath: "src/tokens/semantic/corner.json",
|
|
1023
|
-
isSource: true,
|
|
1024
|
-
key: "{semantic.corner.radius.sharp}",
|
|
1025
|
-
name: "calcite-semantic-corner-radius-sharp",
|
|
1026
|
-
path: ["semantic", "corner", "radius", "sharp"],
|
|
1027
|
-
comment: "deprecated, use --calcite-corner-radius-none instead",
|
|
1028
|
-
names: {
|
|
1029
|
-
scss: "$calcite-corner-radius-sharp",
|
|
1030
|
-
css: "var(--calcite-corner-radius-sharp)",
|
|
1031
|
-
js: "semantic.corner.radius.sharp",
|
|
1032
|
-
docs: "semantic.corner.radius.sharp",
|
|
1033
|
-
es6: "calciteCornerRadiusSharp",
|
|
1034
|
-
},
|
|
1035
|
-
"calcite-schema": {
|
|
1036
|
-
system: "calcite",
|
|
1037
|
-
tier: "semantic",
|
|
1038
|
-
type: "dimension",
|
|
1039
|
-
},
|
|
352
|
+
category: "corner-radius",
|
|
1040
353
|
},
|
|
354
|
+
key: "{semantic.corner-radius.default}",
|
|
355
|
+
},
|
|
356
|
+
name: "Corner Radius",
|
|
357
|
+
path: ["semantic", "corner-radius", "default"],
|
|
358
|
+
},
|
|
359
|
+
sharp: {
|
|
360
|
+
key: "{semantic.corner-radius.sharp}",
|
|
361
|
+
value: "0",
|
|
362
|
+
type: "dimension",
|
|
363
|
+
attributes: {
|
|
364
|
+
category: "corner-radius",
|
|
365
|
+
type: "dimension",
|
|
366
|
+
item: "sharp",
|
|
367
|
+
value: "0",
|
|
1041
368
|
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
1042
|
-
filePath: "src/tokens/semantic/corner.json",
|
|
369
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
1043
370
|
isSource: true,
|
|
1044
|
-
|
|
1045
|
-
|
|
371
|
+
key: "{semantic.corner-radius.sharp}",
|
|
372
|
+
name: "calcite-semantic-corner-radius-sharp",
|
|
373
|
+
path: ["semantic", "corner-radius", "sharp"],
|
|
374
|
+
comment: "deprecated, use --calcite-corner-radius-none instead",
|
|
375
|
+
names: {
|
|
376
|
+
scss: "$calcite-corner-radius-sharp",
|
|
377
|
+
css: "var(--calcite-corner-radius-sharp)",
|
|
378
|
+
js: "semantic.corner-radius.sharp",
|
|
379
|
+
docs: "semantic.corner-radius.sharp",
|
|
380
|
+
es6: "calciteCornerRadiusSharp",
|
|
381
|
+
},
|
|
382
|
+
"calcite-schema": {
|
|
383
|
+
system: "calcite",
|
|
384
|
+
tier: "semantic",
|
|
1046
385
|
type: "dimension",
|
|
1047
|
-
attributes: {
|
|
1048
|
-
category: "corner",
|
|
1049
|
-
},
|
|
1050
|
-
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
1051
|
-
key: "{semantic.corner.radius.sharp}",
|
|
1052
386
|
},
|
|
1053
|
-
name: "Corner Radius Sharp",
|
|
1054
|
-
path: ["semantic", "corner", "radius", "sharp"],
|
|
1055
|
-
comment: "deprecated, use --calcite-corner-radius-none instead",
|
|
1056
387
|
},
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
388
|
+
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
389
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
390
|
+
isSource: true,
|
|
391
|
+
original: {
|
|
392
|
+
value: "{core.size.default.none}",
|
|
1060
393
|
type: "dimension",
|
|
1061
394
|
attributes: {
|
|
1062
|
-
category: "corner",
|
|
1063
|
-
type: "corner",
|
|
1064
|
-
item: "radius",
|
|
1065
|
-
subitem: "none",
|
|
1066
|
-
names: {
|
|
1067
|
-
scss: "$calcite-corner-radius-none",
|
|
1068
|
-
css: "var(--calcite-corner-radius-none)",
|
|
1069
|
-
js: "semantic.corner.radius.none",
|
|
1070
|
-
docs: "semantic.corner.radius.none",
|
|
1071
|
-
es6: "calciteCornerRadiusNone",
|
|
1072
|
-
},
|
|
1073
|
-
"calcite-schema": {
|
|
1074
|
-
system: "calcite",
|
|
1075
|
-
tier: "semantic",
|
|
1076
|
-
type: "dimension",
|
|
1077
|
-
},
|
|
395
|
+
category: "corner-radius",
|
|
1078
396
|
},
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
397
|
+
description: "deprecated, use --calcite-corner-radius-none instead",
|
|
398
|
+
key: "{semantic.corner-radius.sharp}",
|
|
399
|
+
},
|
|
400
|
+
name: "Corner Radius Sharp",
|
|
401
|
+
path: ["semantic", "corner-radius", "sharp"],
|
|
402
|
+
comment: "deprecated, use --calcite-corner-radius-none instead",
|
|
403
|
+
},
|
|
404
|
+
none: {
|
|
405
|
+
key: "{semantic.corner-radius.none}",
|
|
406
|
+
value: "0",
|
|
407
|
+
type: "dimension",
|
|
408
|
+
attributes: {
|
|
409
|
+
category: "corner-radius",
|
|
410
|
+
type: "corner-radius",
|
|
411
|
+
item: "none",
|
|
412
|
+
names: {
|
|
413
|
+
scss: "$calcite-corner-radius-none",
|
|
414
|
+
css: "var(--calcite-corner-radius-none)",
|
|
415
|
+
js: "semantic.corner-radius.none",
|
|
416
|
+
docs: "semantic.corner-radius.none",
|
|
417
|
+
es6: "calciteCornerRadiusNone",
|
|
418
|
+
},
|
|
419
|
+
"calcite-schema": {
|
|
420
|
+
system: "calcite",
|
|
421
|
+
tier: "semantic",
|
|
1083
422
|
type: "dimension",
|
|
1084
|
-
attributes: {
|
|
1085
|
-
category: "corner",
|
|
1086
|
-
},
|
|
1087
|
-
key: "{semantic.corner.radius.none}",
|
|
1088
423
|
},
|
|
1089
|
-
name: "Corner Radius None",
|
|
1090
|
-
path: ["semantic", "corner", "radius", "none"],
|
|
1091
424
|
},
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
425
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
426
|
+
isSource: true,
|
|
427
|
+
original: {
|
|
428
|
+
value: "{core.size.default.none}",
|
|
1095
429
|
type: "dimension",
|
|
1096
430
|
attributes: {
|
|
1097
|
-
category: "corner",
|
|
1098
|
-
type: "corner",
|
|
1099
|
-
item: "radius",
|
|
1100
|
-
subitem: "xs",
|
|
1101
|
-
names: {
|
|
1102
|
-
scss: "$calcite-corner-radius-xs",
|
|
1103
|
-
css: "var(--calcite-corner-radius-xs)",
|
|
1104
|
-
js: "semantic.corner.radius.xs",
|
|
1105
|
-
docs: "semantic.corner.radius.xs",
|
|
1106
|
-
es6: "calciteCornerRadiusXs",
|
|
1107
|
-
},
|
|
1108
|
-
"calcite-schema": {
|
|
1109
|
-
system: "calcite",
|
|
1110
|
-
tier: "semantic",
|
|
1111
|
-
type: "dimension",
|
|
1112
|
-
},
|
|
431
|
+
category: "corner-radius",
|
|
1113
432
|
},
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
433
|
+
key: "{semantic.corner-radius.none}",
|
|
434
|
+
},
|
|
435
|
+
name: "Corner Radius None",
|
|
436
|
+
path: ["semantic", "corner-radius", "none"],
|
|
437
|
+
},
|
|
438
|
+
xs: {
|
|
439
|
+
key: "{semantic.corner-radius.xs}",
|
|
440
|
+
value: "2px",
|
|
441
|
+
type: "dimension",
|
|
442
|
+
attributes: {
|
|
443
|
+
category: "corner-radius",
|
|
444
|
+
type: "corner-radius",
|
|
445
|
+
item: "xs",
|
|
446
|
+
names: {
|
|
447
|
+
scss: "$calcite-corner-radius-xs",
|
|
448
|
+
css: "var(--calcite-corner-radius-xs)",
|
|
449
|
+
js: "semantic.corner-radius.xs",
|
|
450
|
+
docs: "semantic.corner-radius.xs",
|
|
451
|
+
es6: "calciteCornerRadiusXs",
|
|
452
|
+
},
|
|
453
|
+
"calcite-schema": {
|
|
454
|
+
system: "calcite",
|
|
455
|
+
tier: "semantic",
|
|
1118
456
|
type: "dimension",
|
|
1119
|
-
attributes: {
|
|
1120
|
-
category: "corner",
|
|
1121
|
-
},
|
|
1122
|
-
key: "{semantic.corner.radius.xs}",
|
|
1123
457
|
},
|
|
1124
|
-
name: "Corner Radius Xs",
|
|
1125
|
-
path: ["semantic", "corner", "radius", "xs"],
|
|
1126
458
|
},
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
459
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
460
|
+
isSource: true,
|
|
461
|
+
original: {
|
|
462
|
+
value: "{core.size.default.2}",
|
|
1130
463
|
type: "dimension",
|
|
1131
464
|
attributes: {
|
|
1132
|
-
category: "corner",
|
|
1133
|
-
type: "corner",
|
|
1134
|
-
item: "radius",
|
|
1135
|
-
subitem: "sm",
|
|
1136
|
-
names: {
|
|
1137
|
-
scss: "$calcite-corner-radius-sm",
|
|
1138
|
-
css: "var(--calcite-corner-radius-sm)",
|
|
1139
|
-
js: "semantic.corner.radius.sm",
|
|
1140
|
-
docs: "semantic.corner.radius.sm",
|
|
1141
|
-
es6: "calciteCornerRadiusSm",
|
|
1142
|
-
},
|
|
1143
|
-
"calcite-schema": {
|
|
1144
|
-
system: "calcite",
|
|
1145
|
-
tier: "semantic",
|
|
1146
|
-
type: "dimension",
|
|
1147
|
-
},
|
|
465
|
+
category: "corner-radius",
|
|
1148
466
|
},
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
467
|
+
key: "{semantic.corner-radius.xs}",
|
|
468
|
+
},
|
|
469
|
+
name: "Corner Radius Xs",
|
|
470
|
+
path: ["semantic", "corner-radius", "xs"],
|
|
471
|
+
},
|
|
472
|
+
sm: {
|
|
473
|
+
key: "{semantic.corner-radius.sm}",
|
|
474
|
+
value: "4px",
|
|
475
|
+
type: "dimension",
|
|
476
|
+
attributes: {
|
|
477
|
+
category: "corner-radius",
|
|
478
|
+
type: "corner-radius",
|
|
479
|
+
item: "sm",
|
|
480
|
+
names: {
|
|
481
|
+
scss: "$calcite-corner-radius-sm",
|
|
482
|
+
css: "var(--calcite-corner-radius-sm)",
|
|
483
|
+
js: "semantic.corner-radius.sm",
|
|
484
|
+
docs: "semantic.corner-radius.sm",
|
|
485
|
+
es6: "calciteCornerRadiusSm",
|
|
486
|
+
},
|
|
487
|
+
"calcite-schema": {
|
|
488
|
+
system: "calcite",
|
|
489
|
+
tier: "semantic",
|
|
1153
490
|
type: "dimension",
|
|
1154
|
-
attributes: {
|
|
1155
|
-
category: "corner",
|
|
1156
|
-
},
|
|
1157
|
-
key: "{semantic.corner.radius.sm}",
|
|
1158
491
|
},
|
|
1159
|
-
name: "Corner Radius Sm",
|
|
1160
|
-
path: ["semantic", "corner", "radius", "sm"],
|
|
1161
492
|
},
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
493
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
494
|
+
isSource: true,
|
|
495
|
+
original: {
|
|
496
|
+
value: "{core.size.default.4}",
|
|
1165
497
|
type: "dimension",
|
|
1166
498
|
attributes: {
|
|
1167
|
-
category: "corner",
|
|
1168
|
-
type: "dimension",
|
|
1169
|
-
item: "radius",
|
|
1170
|
-
subitem: "round",
|
|
1171
|
-
value: "4px",
|
|
1172
|
-
description: "deprecated, use --calcite-corner-radius-sm instead",
|
|
1173
|
-
filePath: "src/tokens/semantic/corner.json",
|
|
1174
|
-
isSource: true,
|
|
1175
|
-
key: "{semantic.corner.radius.round}",
|
|
1176
|
-
name: "calcite-semantic-corner-radius-round",
|
|
1177
|
-
path: ["semantic", "corner", "radius", "round"],
|
|
1178
|
-
comment: "deprecated, use --calcite-corner-radius-sm instead",
|
|
1179
|
-
names: {
|
|
1180
|
-
scss: "$calcite-corner-radius-round",
|
|
1181
|
-
css: "var(--calcite-corner-radius-round)",
|
|
1182
|
-
js: "semantic.corner.radius.round",
|
|
1183
|
-
docs: "semantic.corner.radius.round",
|
|
1184
|
-
es6: "calciteCornerRadiusRound",
|
|
1185
|
-
},
|
|
1186
|
-
"calcite-schema": {
|
|
1187
|
-
system: "calcite",
|
|
1188
|
-
tier: "semantic",
|
|
1189
|
-
type: "dimension",
|
|
1190
|
-
},
|
|
499
|
+
category: "corner-radius",
|
|
1191
500
|
},
|
|
501
|
+
key: "{semantic.corner-radius.sm}",
|
|
502
|
+
},
|
|
503
|
+
name: "Corner Radius Sm",
|
|
504
|
+
path: ["semantic", "corner-radius", "sm"],
|
|
505
|
+
},
|
|
506
|
+
round: {
|
|
507
|
+
key: "{semantic.corner-radius.round}",
|
|
508
|
+
value: "4px",
|
|
509
|
+
type: "dimension",
|
|
510
|
+
attributes: {
|
|
511
|
+
category: "corner-radius",
|
|
512
|
+
type: "dimension",
|
|
513
|
+
item: "round",
|
|
514
|
+
value: "4px",
|
|
1192
515
|
description: "deprecated, use --calcite-corner-radius-sm instead",
|
|
1193
|
-
filePath: "src/tokens/semantic/corner.json",
|
|
516
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
1194
517
|
isSource: true,
|
|
1195
|
-
|
|
1196
|
-
|
|
518
|
+
key: "{semantic.corner-radius.round}",
|
|
519
|
+
name: "calcite-semantic-corner-radius-round",
|
|
520
|
+
path: ["semantic", "corner-radius", "round"],
|
|
521
|
+
comment: "deprecated, use --calcite-corner-radius-sm instead",
|
|
522
|
+
names: {
|
|
523
|
+
scss: "$calcite-corner-radius-round",
|
|
524
|
+
css: "var(--calcite-corner-radius-round)",
|
|
525
|
+
js: "semantic.corner-radius.round",
|
|
526
|
+
docs: "semantic.corner-radius.round",
|
|
527
|
+
es6: "calciteCornerRadiusRound",
|
|
528
|
+
},
|
|
529
|
+
"calcite-schema": {
|
|
530
|
+
system: "calcite",
|
|
531
|
+
tier: "semantic",
|
|
1197
532
|
type: "dimension",
|
|
1198
|
-
attributes: {
|
|
1199
|
-
category: "corner",
|
|
1200
|
-
},
|
|
1201
|
-
description: "deprecated, use --calcite-corner-radius-sm instead",
|
|
1202
|
-
key: "{semantic.corner.radius.round}",
|
|
1203
533
|
},
|
|
1204
|
-
name: "Corner Radius Round",
|
|
1205
|
-
path: ["semantic", "corner", "radius", "round"],
|
|
1206
|
-
comment: "deprecated, use --calcite-corner-radius-sm instead",
|
|
1207
534
|
},
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
535
|
+
description: "deprecated, use --calcite-corner-radius-sm instead",
|
|
536
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
537
|
+
isSource: true,
|
|
538
|
+
original: {
|
|
539
|
+
value: "{core.size.default.4}",
|
|
1211
540
|
type: "dimension",
|
|
1212
541
|
attributes: {
|
|
1213
|
-
|
|
1214
|
-
category: "corner",
|
|
1215
|
-
type: "corner",
|
|
1216
|
-
item: "radius",
|
|
1217
|
-
subitem: "pill",
|
|
1218
|
-
names: {
|
|
1219
|
-
scss: "$calcite-corner-radius-pill",
|
|
1220
|
-
css: "var(--calcite-corner-radius-pill)",
|
|
1221
|
-
js: "semantic.corner.radius.pill",
|
|
1222
|
-
docs: "semantic.corner.radius.pill",
|
|
1223
|
-
es6: "calciteCornerRadiusPill",
|
|
1224
|
-
},
|
|
1225
|
-
"calcite-schema": {
|
|
1226
|
-
system: "calcite",
|
|
1227
|
-
tier: "semantic",
|
|
1228
|
-
type: "dimension",
|
|
1229
|
-
},
|
|
542
|
+
category: "corner-radius",
|
|
1230
543
|
},
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
544
|
+
description: "deprecated, use --calcite-corner-radius-sm instead",
|
|
545
|
+
key: "{semantic.corner-radius.round}",
|
|
546
|
+
},
|
|
547
|
+
name: "Corner Radius Round",
|
|
548
|
+
path: ["semantic", "corner-radius", "round"],
|
|
549
|
+
comment: "deprecated, use --calcite-corner-radius-sm instead",
|
|
550
|
+
},
|
|
551
|
+
pill: {
|
|
552
|
+
key: "{semantic.corner-radius.pill}",
|
|
553
|
+
value: "100%",
|
|
554
|
+
type: "dimension",
|
|
555
|
+
attributes: {
|
|
556
|
+
category: "corner-radius",
|
|
557
|
+
type: "corner-radius",
|
|
558
|
+
item: "pill",
|
|
559
|
+
names: {
|
|
560
|
+
scss: "$calcite-corner-radius-pill",
|
|
561
|
+
css: "var(--calcite-corner-radius-pill)",
|
|
562
|
+
js: "semantic.corner-radius.pill",
|
|
563
|
+
docs: "semantic.corner-radius.pill",
|
|
564
|
+
es6: "calciteCornerRadiusPill",
|
|
565
|
+
},
|
|
566
|
+
"calcite-schema": {
|
|
567
|
+
system: "calcite",
|
|
568
|
+
tier: "semantic",
|
|
1235
569
|
type: "dimension",
|
|
1236
|
-
attributes: {
|
|
1237
|
-
element: "",
|
|
1238
|
-
category: "corner",
|
|
1239
|
-
},
|
|
1240
|
-
key: "{semantic.corner.radius.pill}",
|
|
1241
570
|
},
|
|
1242
|
-
name: "Corner Radius Pill",
|
|
1243
|
-
path: ["semantic", "corner", "radius", "pill"],
|
|
1244
571
|
},
|
|
572
|
+
filePath: "src/tokens/semantic/corner-radius.json",
|
|
573
|
+
isSource: true,
|
|
574
|
+
original: {
|
|
575
|
+
value: "{core.size.relative.100}",
|
|
576
|
+
type: "dimension",
|
|
577
|
+
attributes: {
|
|
578
|
+
category: "corner-radius",
|
|
579
|
+
},
|
|
580
|
+
key: "{semantic.corner-radius.pill}",
|
|
581
|
+
},
|
|
582
|
+
name: "Corner Radius Pill",
|
|
583
|
+
path: ["semantic", "corner-radius", "pill"],
|
|
1245
584
|
},
|
|
1246
585
|
},
|
|
1247
586
|
font: {
|
|
@@ -1251,8 +590,8 @@ export default {
|
|
|
1251
590
|
value: ["Avenir Next", "Avenir", "Helvetica Neue", "sans-serif"],
|
|
1252
591
|
type: "fontFamily",
|
|
1253
592
|
attributes: {
|
|
593
|
+
category: "font",
|
|
1254
594
|
group: "family",
|
|
1255
|
-
category: "semantic",
|
|
1256
595
|
type: "fontFamily",
|
|
1257
596
|
item: "family",
|
|
1258
597
|
subitem: "default",
|
|
@@ -1285,6 +624,7 @@ export default {
|
|
|
1285
624
|
"{core.font.family.avenirNext},{core.font.family.avenir},{core.font.family.helveticaNeue},{core.font.family.sansSerif}",
|
|
1286
625
|
type: "fontFamily",
|
|
1287
626
|
attributes: {
|
|
627
|
+
category: "font",
|
|
1288
628
|
group: "family",
|
|
1289
629
|
},
|
|
1290
630
|
description: "Primary font with fallbacks",
|
|
@@ -1306,6 +646,7 @@ export default {
|
|
|
1306
646
|
type: "fontFamily",
|
|
1307
647
|
attributes: {
|
|
1308
648
|
category: "font",
|
|
649
|
+
group: "family",
|
|
1309
650
|
type: "fontFamily",
|
|
1310
651
|
item: "family",
|
|
1311
652
|
subitem: "code",
|
|
@@ -1339,6 +680,7 @@ export default {
|
|
|
1339
680
|
type: "fontFamily",
|
|
1340
681
|
attributes: {
|
|
1341
682
|
category: "font",
|
|
683
|
+
group: "family",
|
|
1342
684
|
},
|
|
1343
685
|
description: "Font family for code with fallbacks",
|
|
1344
686
|
key: "{semantic.font.family.code}",
|
|
@@ -1355,6 +697,7 @@ export default {
|
|
|
1355
697
|
type: "fontWeight",
|
|
1356
698
|
attributes: {
|
|
1357
699
|
category: "font",
|
|
700
|
+
group: "weight",
|
|
1358
701
|
type: "fontWeight",
|
|
1359
702
|
item: "weight",
|
|
1360
703
|
subitem: "light",
|
|
@@ -1387,6 +730,7 @@ export default {
|
|
|
1387
730
|
type: "fontWeight",
|
|
1388
731
|
attributes: {
|
|
1389
732
|
category: "font",
|
|
733
|
+
group: "weight",
|
|
1390
734
|
},
|
|
1391
735
|
description: "For Avenir Next World (secondary font family)",
|
|
1392
736
|
key: "{semantic.font.weight.light}",
|
|
@@ -1404,6 +748,7 @@ export default {
|
|
|
1404
748
|
},
|
|
1405
749
|
attributes: {
|
|
1406
750
|
category: "font",
|
|
751
|
+
group: "weight",
|
|
1407
752
|
type: "fontWeight",
|
|
1408
753
|
item: "weight",
|
|
1409
754
|
subitem: "normal",
|
|
@@ -1445,6 +790,7 @@ export default {
|
|
|
1445
790
|
},
|
|
1446
791
|
attributes: {
|
|
1447
792
|
category: "font",
|
|
793
|
+
group: "weight",
|
|
1448
794
|
},
|
|
1449
795
|
description:
|
|
1450
796
|
'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"',
|
|
@@ -1461,6 +807,7 @@ export default {
|
|
|
1461
807
|
type: "fontWeight",
|
|
1462
808
|
attributes: {
|
|
1463
809
|
category: "font",
|
|
810
|
+
group: "weight",
|
|
1464
811
|
type: "font",
|
|
1465
812
|
item: "weight",
|
|
1466
813
|
subitem: "regular",
|
|
@@ -1484,6 +831,7 @@ export default {
|
|
|
1484
831
|
type: "fontWeight",
|
|
1485
832
|
attributes: {
|
|
1486
833
|
category: "font",
|
|
834
|
+
group: "weight",
|
|
1487
835
|
},
|
|
1488
836
|
key: "{semantic.font.weight.regular}",
|
|
1489
837
|
},
|
|
@@ -1496,6 +844,7 @@ export default {
|
|
|
1496
844
|
type: "fontWeight",
|
|
1497
845
|
attributes: {
|
|
1498
846
|
category: "font",
|
|
847
|
+
group: "weight",
|
|
1499
848
|
type: "font",
|
|
1500
849
|
item: "weight",
|
|
1501
850
|
subitem: "medium",
|
|
@@ -1519,6 +868,7 @@ export default {
|
|
|
1519
868
|
type: "fontWeight",
|
|
1520
869
|
attributes: {
|
|
1521
870
|
category: "font",
|
|
871
|
+
group: "weight",
|
|
1522
872
|
},
|
|
1523
873
|
key: "{semantic.font.weight.medium}",
|
|
1524
874
|
},
|
|
@@ -1531,6 +881,7 @@ export default {
|
|
|
1531
881
|
type: "fontWeight",
|
|
1532
882
|
attributes: {
|
|
1533
883
|
category: "font",
|
|
884
|
+
group: "weight",
|
|
1534
885
|
type: "font",
|
|
1535
886
|
item: "weight",
|
|
1536
887
|
subitem: "semibold",
|
|
@@ -1554,6 +905,7 @@ export default {
|
|
|
1554
905
|
type: "fontWeight",
|
|
1555
906
|
attributes: {
|
|
1556
907
|
category: "font",
|
|
908
|
+
group: "weight",
|
|
1557
909
|
},
|
|
1558
910
|
key: "{semantic.font.weight.semibold}",
|
|
1559
911
|
},
|
|
@@ -1566,6 +918,7 @@ export default {
|
|
|
1566
918
|
type: "fontWeight",
|
|
1567
919
|
attributes: {
|
|
1568
920
|
category: "font",
|
|
921
|
+
group: "weight",
|
|
1569
922
|
type: "font",
|
|
1570
923
|
item: "weight",
|
|
1571
924
|
subitem: "bold",
|
|
@@ -1589,6 +942,7 @@ export default {
|
|
|
1589
942
|
type: "fontWeight",
|
|
1590
943
|
attributes: {
|
|
1591
944
|
category: "font",
|
|
945
|
+
group: "weight",
|
|
1592
946
|
},
|
|
1593
947
|
key: "{semantic.font.weight.bold}",
|
|
1594
948
|
},
|
|
@@ -1603,6 +957,7 @@ export default {
|
|
|
1603
957
|
type: "fontSize",
|
|
1604
958
|
attributes: {
|
|
1605
959
|
category: "font",
|
|
960
|
+
group: "size",
|
|
1606
961
|
type: "font",
|
|
1607
962
|
item: "size",
|
|
1608
963
|
subitem: "xs",
|
|
@@ -1626,6 +981,7 @@ export default {
|
|
|
1626
981
|
type: "fontSize",
|
|
1627
982
|
attributes: {
|
|
1628
983
|
category: "font",
|
|
984
|
+
group: "size",
|
|
1629
985
|
},
|
|
1630
986
|
key: "{semantic.font.size.xs}",
|
|
1631
987
|
},
|
|
@@ -1638,6 +994,7 @@ export default {
|
|
|
1638
994
|
type: "fontSize",
|
|
1639
995
|
attributes: {
|
|
1640
996
|
category: "font",
|
|
997
|
+
group: "size",
|
|
1641
998
|
type: "font",
|
|
1642
999
|
item: "size",
|
|
1643
1000
|
subitem: "sm",
|
|
@@ -1661,6 +1018,7 @@ export default {
|
|
|
1661
1018
|
type: "fontSize",
|
|
1662
1019
|
attributes: {
|
|
1663
1020
|
category: "font",
|
|
1021
|
+
group: "size",
|
|
1664
1022
|
},
|
|
1665
1023
|
key: "{semantic.font.size.sm}",
|
|
1666
1024
|
},
|
|
@@ -1673,6 +1031,7 @@ export default {
|
|
|
1673
1031
|
type: "fontSize",
|
|
1674
1032
|
attributes: {
|
|
1675
1033
|
category: "font",
|
|
1034
|
+
group: "size",
|
|
1676
1035
|
type: "font",
|
|
1677
1036
|
item: "size",
|
|
1678
1037
|
subitem: "default",
|
|
@@ -1696,6 +1055,7 @@ export default {
|
|
|
1696
1055
|
type: "fontSize",
|
|
1697
1056
|
attributes: {
|
|
1698
1057
|
category: "font",
|
|
1058
|
+
group: "size",
|
|
1699
1059
|
},
|
|
1700
1060
|
key: "{semantic.font.size.default}",
|
|
1701
1061
|
},
|
|
@@ -1708,6 +1068,7 @@ export default {
|
|
|
1708
1068
|
type: "fontSize",
|
|
1709
1069
|
attributes: {
|
|
1710
1070
|
category: "font",
|
|
1071
|
+
group: "size",
|
|
1711
1072
|
type: "font",
|
|
1712
1073
|
item: "size",
|
|
1713
1074
|
subitem: "md",
|
|
@@ -1731,6 +1092,7 @@ export default {
|
|
|
1731
1092
|
type: "fontSize",
|
|
1732
1093
|
attributes: {
|
|
1733
1094
|
category: "font",
|
|
1095
|
+
group: "size",
|
|
1734
1096
|
},
|
|
1735
1097
|
key: "{semantic.font.size.md}",
|
|
1736
1098
|
},
|
|
@@ -1743,6 +1105,7 @@ export default {
|
|
|
1743
1105
|
type: "fontSize",
|
|
1744
1106
|
attributes: {
|
|
1745
1107
|
category: "font",
|
|
1108
|
+
group: "size",
|
|
1746
1109
|
type: "font",
|
|
1747
1110
|
item: "size",
|
|
1748
1111
|
subitem: "lg",
|
|
@@ -1766,6 +1129,7 @@ export default {
|
|
|
1766
1129
|
type: "fontSize",
|
|
1767
1130
|
attributes: {
|
|
1768
1131
|
category: "font",
|
|
1132
|
+
group: "size",
|
|
1769
1133
|
},
|
|
1770
1134
|
key: "{semantic.font.size.lg}",
|
|
1771
1135
|
},
|
|
@@ -1778,6 +1142,7 @@ export default {
|
|
|
1778
1142
|
type: "fontSize",
|
|
1779
1143
|
attributes: {
|
|
1780
1144
|
category: "font",
|
|
1145
|
+
group: "size",
|
|
1781
1146
|
type: "font",
|
|
1782
1147
|
item: "size",
|
|
1783
1148
|
subitem: "xl",
|
|
@@ -1801,6 +1166,7 @@ export default {
|
|
|
1801
1166
|
type: "fontSize",
|
|
1802
1167
|
attributes: {
|
|
1803
1168
|
category: "font",
|
|
1169
|
+
group: "size",
|
|
1804
1170
|
},
|
|
1805
1171
|
key: "{semantic.font.size.xl}",
|
|
1806
1172
|
},
|
|
@@ -1813,6 +1179,7 @@ export default {
|
|
|
1813
1179
|
type: "fontSize",
|
|
1814
1180
|
attributes: {
|
|
1815
1181
|
category: "font",
|
|
1182
|
+
group: "size",
|
|
1816
1183
|
type: "font",
|
|
1817
1184
|
item: "size",
|
|
1818
1185
|
subitem: "xxl",
|
|
@@ -1836,6 +1203,7 @@ export default {
|
|
|
1836
1203
|
type: "fontSize",
|
|
1837
1204
|
attributes: {
|
|
1838
1205
|
category: "font",
|
|
1206
|
+
group: "size",
|
|
1839
1207
|
},
|
|
1840
1208
|
key: "{semantic.font.size.xxl}",
|
|
1841
1209
|
},
|
|
@@ -1851,6 +1219,7 @@ export default {
|
|
|
1851
1219
|
description: "used in ratings",
|
|
1852
1220
|
attributes: {
|
|
1853
1221
|
category: "font",
|
|
1222
|
+
group: "style",
|
|
1854
1223
|
type: "fontStyle",
|
|
1855
1224
|
item: "style",
|
|
1856
1225
|
subitem: "emphasis",
|
|
@@ -1883,6 +1252,7 @@ export default {
|
|
|
1883
1252
|
description: "used in ratings",
|
|
1884
1253
|
attributes: {
|
|
1885
1254
|
category: "font",
|
|
1255
|
+
group: "style",
|
|
1886
1256
|
},
|
|
1887
1257
|
key: "{semantic.font.style.emphasis}",
|
|
1888
1258
|
},
|
|
@@ -1899,6 +1269,8 @@ export default {
|
|
|
1899
1269
|
type: "lineHeight",
|
|
1900
1270
|
attributes: {
|
|
1901
1271
|
category: "font",
|
|
1272
|
+
group: "line-height",
|
|
1273
|
+
kind: "fixed",
|
|
1902
1274
|
type: "font",
|
|
1903
1275
|
item: "line-height",
|
|
1904
1276
|
subitem: "fixed",
|
|
@@ -1923,6 +1295,8 @@ export default {
|
|
|
1923
1295
|
type: "lineHeight",
|
|
1924
1296
|
attributes: {
|
|
1925
1297
|
category: "font",
|
|
1298
|
+
group: "line-height",
|
|
1299
|
+
kind: "fixed",
|
|
1926
1300
|
},
|
|
1927
1301
|
key: "{semantic.font.line-height.fixed.sm}",
|
|
1928
1302
|
},
|
|
@@ -1935,6 +1309,8 @@ export default {
|
|
|
1935
1309
|
type: "lineHeight",
|
|
1936
1310
|
attributes: {
|
|
1937
1311
|
category: "font",
|
|
1312
|
+
group: "line-height",
|
|
1313
|
+
kind: "fixed",
|
|
1938
1314
|
type: "font",
|
|
1939
1315
|
item: "line-height",
|
|
1940
1316
|
subitem: "fixed",
|
|
@@ -1959,6 +1335,8 @@ export default {
|
|
|
1959
1335
|
type: "lineHeight",
|
|
1960
1336
|
attributes: {
|
|
1961
1337
|
category: "font",
|
|
1338
|
+
group: "line-height",
|
|
1339
|
+
kind: "fixed",
|
|
1962
1340
|
},
|
|
1963
1341
|
key: "{semantic.font.line-height.fixed.base}",
|
|
1964
1342
|
},
|
|
@@ -1971,6 +1349,8 @@ export default {
|
|
|
1971
1349
|
type: "lineHeight",
|
|
1972
1350
|
attributes: {
|
|
1973
1351
|
category: "font",
|
|
1352
|
+
group: "line-height",
|
|
1353
|
+
kind: "fixed",
|
|
1974
1354
|
type: "font",
|
|
1975
1355
|
item: "line-height",
|
|
1976
1356
|
subitem: "fixed",
|
|
@@ -1995,6 +1375,8 @@ export default {
|
|
|
1995
1375
|
type: "lineHeight",
|
|
1996
1376
|
attributes: {
|
|
1997
1377
|
category: "font",
|
|
1378
|
+
group: "line-height",
|
|
1379
|
+
kind: "fixed",
|
|
1998
1380
|
},
|
|
1999
1381
|
key: "{semantic.font.line-height.fixed.lg}",
|
|
2000
1382
|
},
|
|
@@ -2007,6 +1389,8 @@ export default {
|
|
|
2007
1389
|
type: "lineHeight",
|
|
2008
1390
|
attributes: {
|
|
2009
1391
|
category: "font",
|
|
1392
|
+
group: "line-height",
|
|
1393
|
+
kind: "fixed",
|
|
2010
1394
|
type: "font",
|
|
2011
1395
|
item: "line-height",
|
|
2012
1396
|
subitem: "fixed",
|
|
@@ -2031,6 +1415,8 @@ export default {
|
|
|
2031
1415
|
type: "lineHeight",
|
|
2032
1416
|
attributes: {
|
|
2033
1417
|
category: "font",
|
|
1418
|
+
group: "line-height",
|
|
1419
|
+
kind: "fixed",
|
|
2034
1420
|
},
|
|
2035
1421
|
key: "{semantic.font.line-height.fixed.xl}",
|
|
2036
1422
|
},
|
|
@@ -2046,6 +1432,8 @@ export default {
|
|
|
2046
1432
|
description: "1",
|
|
2047
1433
|
attributes: {
|
|
2048
1434
|
category: "font",
|
|
1435
|
+
group: "line-height",
|
|
1436
|
+
kind: "relative",
|
|
2049
1437
|
type: "lineHeight",
|
|
2050
1438
|
item: "line-height",
|
|
2051
1439
|
subitem: "relative",
|
|
@@ -2079,6 +1467,8 @@ export default {
|
|
|
2079
1467
|
description: "1",
|
|
2080
1468
|
attributes: {
|
|
2081
1469
|
category: "font",
|
|
1470
|
+
group: "line-height",
|
|
1471
|
+
kind: "relative",
|
|
2082
1472
|
},
|
|
2083
1473
|
key: "{semantic.font.line-height.relative.default}",
|
|
2084
1474
|
},
|
|
@@ -2093,6 +1483,8 @@ export default {
|
|
|
2093
1483
|
description: "1.25",
|
|
2094
1484
|
attributes: {
|
|
2095
1485
|
category: "font",
|
|
1486
|
+
group: "line-height",
|
|
1487
|
+
kind: "relative",
|
|
2096
1488
|
type: "lineHeight",
|
|
2097
1489
|
item: "line-height",
|
|
2098
1490
|
subitem: "relative",
|
|
@@ -2126,6 +1518,8 @@ export default {
|
|
|
2126
1518
|
description: "1.25",
|
|
2127
1519
|
attributes: {
|
|
2128
1520
|
category: "font",
|
|
1521
|
+
group: "line-height",
|
|
1522
|
+
kind: "relative",
|
|
2129
1523
|
},
|
|
2130
1524
|
key: "{semantic.font.line-height.relative.tight}",
|
|
2131
1525
|
},
|
|
@@ -2140,6 +1534,8 @@ export default {
|
|
|
2140
1534
|
description: "1.375",
|
|
2141
1535
|
attributes: {
|
|
2142
1536
|
category: "font",
|
|
1537
|
+
group: "line-height",
|
|
1538
|
+
kind: "relative",
|
|
2143
1539
|
type: "lineHeight",
|
|
2144
1540
|
item: "line-height",
|
|
2145
1541
|
subitem: "relative",
|
|
@@ -2173,6 +1569,8 @@ export default {
|
|
|
2173
1569
|
description: "1.375",
|
|
2174
1570
|
attributes: {
|
|
2175
1571
|
category: "font",
|
|
1572
|
+
group: "line-height",
|
|
1573
|
+
kind: "relative",
|
|
2176
1574
|
},
|
|
2177
1575
|
key: "{semantic.font.line-height.relative.snug}",
|
|
2178
1576
|
},
|
|
@@ -2187,6 +1585,8 @@ export default {
|
|
|
2187
1585
|
description: "1.5",
|
|
2188
1586
|
attributes: {
|
|
2189
1587
|
category: "font",
|
|
1588
|
+
group: "line-height",
|
|
1589
|
+
kind: "relative",
|
|
2190
1590
|
type: "lineHeight",
|
|
2191
1591
|
item: "line-height",
|
|
2192
1592
|
subitem: "relative",
|
|
@@ -2220,6 +1620,8 @@ export default {
|
|
|
2220
1620
|
description: "1.5",
|
|
2221
1621
|
attributes: {
|
|
2222
1622
|
category: "font",
|
|
1623
|
+
group: "line-height",
|
|
1624
|
+
kind: "relative",
|
|
2223
1625
|
},
|
|
2224
1626
|
key: "{semantic.font.line-height.relative.normal}",
|
|
2225
1627
|
},
|
|
@@ -2234,6 +1636,8 @@ export default {
|
|
|
2234
1636
|
description: "1.625",
|
|
2235
1637
|
attributes: {
|
|
2236
1638
|
category: "font",
|
|
1639
|
+
group: "line-height",
|
|
1640
|
+
kind: "relative",
|
|
2237
1641
|
type: "lineHeight",
|
|
2238
1642
|
item: "line-height",
|
|
2239
1643
|
subitem: "relative",
|
|
@@ -2267,6 +1671,8 @@ export default {
|
|
|
2267
1671
|
description: "1.625",
|
|
2268
1672
|
attributes: {
|
|
2269
1673
|
category: "font",
|
|
1674
|
+
group: "line-height",
|
|
1675
|
+
kind: "relative",
|
|
2270
1676
|
},
|
|
2271
1677
|
key: "{semantic.font.line-height.relative.relaxed}",
|
|
2272
1678
|
},
|
|
@@ -2281,6 +1687,8 @@ export default {
|
|
|
2281
1687
|
description: "2",
|
|
2282
1688
|
attributes: {
|
|
2283
1689
|
category: "font",
|
|
1690
|
+
group: "line-height",
|
|
1691
|
+
kind: "relative",
|
|
2284
1692
|
type: "lineHeight",
|
|
2285
1693
|
item: "line-height",
|
|
2286
1694
|
subitem: "relative",
|
|
@@ -2314,6 +1722,8 @@ export default {
|
|
|
2314
1722
|
description: "2",
|
|
2315
1723
|
attributes: {
|
|
2316
1724
|
category: "font",
|
|
1725
|
+
group: "line-height",
|
|
1726
|
+
kind: "relative",
|
|
2317
1727
|
},
|
|
2318
1728
|
key: "{semantic.font.line-height.relative.loose}",
|
|
2319
1729
|
},
|
|
@@ -2331,6 +1741,7 @@ export default {
|
|
|
2331
1741
|
description: "Deprecated",
|
|
2332
1742
|
attributes: {
|
|
2333
1743
|
category: "font",
|
|
1744
|
+
group: "letter-spacing",
|
|
2334
1745
|
type: "dimension",
|
|
2335
1746
|
item: "letter-spacing",
|
|
2336
1747
|
subitem: "tight",
|
|
@@ -2363,6 +1774,7 @@ export default {
|
|
|
2363
1774
|
description: "Deprecated",
|
|
2364
1775
|
attributes: {
|
|
2365
1776
|
category: "font",
|
|
1777
|
+
group: "letter-spacing",
|
|
2366
1778
|
},
|
|
2367
1779
|
key: "{semantic.font.letter-spacing.tight}",
|
|
2368
1780
|
},
|
|
@@ -2377,6 +1789,7 @@ export default {
|
|
|
2377
1789
|
description: "Deprecated",
|
|
2378
1790
|
attributes: {
|
|
2379
1791
|
category: "font",
|
|
1792
|
+
group: "letter-spacing",
|
|
2380
1793
|
type: "dimension",
|
|
2381
1794
|
item: "letter-spacing",
|
|
2382
1795
|
subitem: "normal",
|
|
@@ -2409,6 +1822,7 @@ export default {
|
|
|
2409
1822
|
description: "Deprecated",
|
|
2410
1823
|
attributes: {
|
|
2411
1824
|
category: "font",
|
|
1825
|
+
group: "letter-spacing",
|
|
2412
1826
|
},
|
|
2413
1827
|
key: "{semantic.font.letter-spacing.normal}",
|
|
2414
1828
|
},
|
|
@@ -2423,6 +1837,7 @@ export default {
|
|
|
2423
1837
|
description: "Deprecated",
|
|
2424
1838
|
attributes: {
|
|
2425
1839
|
category: "font",
|
|
1840
|
+
group: "letter-spacing",
|
|
2426
1841
|
type: "dimension",
|
|
2427
1842
|
item: "letter-spacing",
|
|
2428
1843
|
subitem: "wide",
|
|
@@ -2455,6 +1870,7 @@ export default {
|
|
|
2455
1870
|
description: "Deprecated",
|
|
2456
1871
|
attributes: {
|
|
2457
1872
|
category: "font",
|
|
1873
|
+
group: "letter-spacing",
|
|
2458
1874
|
},
|
|
2459
1875
|
key: "{semantic.font.letter-spacing.wide}",
|
|
2460
1876
|
},
|
|
@@ -2471,6 +1887,7 @@ export default {
|
|
|
2471
1887
|
description: "Deprecated",
|
|
2472
1888
|
attributes: {
|
|
2473
1889
|
category: "font",
|
|
1890
|
+
group: "paragraph-spacing",
|
|
2474
1891
|
type: "dimension",
|
|
2475
1892
|
item: "paragraph-spacing",
|
|
2476
1893
|
subitem: "normal",
|
|
@@ -2503,6 +1920,7 @@ export default {
|
|
|
2503
1920
|
description: "Deprecated",
|
|
2504
1921
|
attributes: {
|
|
2505
1922
|
category: "font",
|
|
1923
|
+
group: "paragraph-spacing",
|
|
2506
1924
|
},
|
|
2507
1925
|
key: "{semantic.font.paragraph-spacing.normal}",
|
|
2508
1926
|
},
|
|
@@ -2519,6 +1937,7 @@ export default {
|
|
|
2519
1937
|
description: "Deprecated",
|
|
2520
1938
|
attributes: {
|
|
2521
1939
|
category: "font",
|
|
1940
|
+
group: "text-decoration",
|
|
2522
1941
|
type: "textDecoration",
|
|
2523
1942
|
item: "text-decoration",
|
|
2524
1943
|
subitem: "none",
|
|
@@ -2551,6 +1970,7 @@ export default {
|
|
|
2551
1970
|
description: "Deprecated",
|
|
2552
1971
|
attributes: {
|
|
2553
1972
|
category: "font",
|
|
1973
|
+
group: "text-decoration",
|
|
2554
1974
|
},
|
|
2555
1975
|
key: "{semantic.font.text-decoration.none}",
|
|
2556
1976
|
},
|
|
@@ -2565,6 +1985,7 @@ export default {
|
|
|
2565
1985
|
description: "Deprecated",
|
|
2566
1986
|
attributes: {
|
|
2567
1987
|
category: "font",
|
|
1988
|
+
group: "text-decoration",
|
|
2568
1989
|
type: "textDecoration",
|
|
2569
1990
|
item: "text-decoration",
|
|
2570
1991
|
subitem: "underline",
|
|
@@ -2597,6 +2018,7 @@ export default {
|
|
|
2597
2018
|
description: "Deprecated",
|
|
2598
2019
|
attributes: {
|
|
2599
2020
|
category: "font",
|
|
2021
|
+
group: "text-decoration",
|
|
2600
2022
|
},
|
|
2601
2023
|
key: "{semantic.font.text-decoration.underline}",
|
|
2602
2024
|
},
|
|
@@ -2613,6 +2035,7 @@ export default {
|
|
|
2613
2035
|
description: "Deprecated",
|
|
2614
2036
|
attributes: {
|
|
2615
2037
|
category: "font",
|
|
2038
|
+
group: "text-case",
|
|
2616
2039
|
type: "textCase",
|
|
2617
2040
|
item: "text-case",
|
|
2618
2041
|
subitem: "none",
|
|
@@ -2645,6 +2068,7 @@ export default {
|
|
|
2645
2068
|
description: "Deprecated",
|
|
2646
2069
|
attributes: {
|
|
2647
2070
|
category: "font",
|
|
2071
|
+
group: "text-case",
|
|
2648
2072
|
},
|
|
2649
2073
|
key: "{semantic.font.text-case.none}",
|
|
2650
2074
|
},
|
|
@@ -2659,6 +2083,7 @@ export default {
|
|
|
2659
2083
|
description: "Deprecated",
|
|
2660
2084
|
attributes: {
|
|
2661
2085
|
category: "font",
|
|
2086
|
+
group: "text-case",
|
|
2662
2087
|
type: "textCase",
|
|
2663
2088
|
item: "text-case",
|
|
2664
2089
|
subitem: "uppercase",
|
|
@@ -2691,6 +2116,7 @@ export default {
|
|
|
2691
2116
|
description: "Deprecated",
|
|
2692
2117
|
attributes: {
|
|
2693
2118
|
category: "font",
|
|
2119
|
+
group: "text-case",
|
|
2694
2120
|
},
|
|
2695
2121
|
key: "{semantic.font.text-case.uppercase}",
|
|
2696
2122
|
},
|
|
@@ -2705,6 +2131,7 @@ export default {
|
|
|
2705
2131
|
description: "Deprecated",
|
|
2706
2132
|
attributes: {
|
|
2707
2133
|
category: "font",
|
|
2134
|
+
group: "text-case",
|
|
2708
2135
|
type: "textCase",
|
|
2709
2136
|
item: "text-case",
|
|
2710
2137
|
subitem: "lowercase",
|
|
@@ -2737,6 +2164,7 @@ export default {
|
|
|
2737
2164
|
description: "Deprecated",
|
|
2738
2165
|
attributes: {
|
|
2739
2166
|
category: "font",
|
|
2167
|
+
group: "text-case",
|
|
2740
2168
|
},
|
|
2741
2169
|
key: "{semantic.font.text-case.lowercase}",
|
|
2742
2170
|
},
|
|
@@ -2751,6 +2179,7 @@ export default {
|
|
|
2751
2179
|
description: "Deprecated",
|
|
2752
2180
|
attributes: {
|
|
2753
2181
|
category: "font",
|
|
2182
|
+
group: "text-case",
|
|
2754
2183
|
type: "textCase",
|
|
2755
2184
|
item: "text-case",
|
|
2756
2185
|
subitem: "capitalize",
|
|
@@ -2783,6 +2212,7 @@ export default {
|
|
|
2783
2212
|
description: "Deprecated",
|
|
2784
2213
|
attributes: {
|
|
2785
2214
|
category: "font",
|
|
2215
|
+
group: "text-case",
|
|
2786
2216
|
},
|
|
2787
2217
|
key: "{semantic.font.text-case.capitalize}",
|
|
2788
2218
|
},
|
|
@@ -3973,7 +3403,7 @@ export default {
|
|
|
3973
3403
|
value: "4px",
|
|
3974
3404
|
type: "dimension",
|
|
3975
3405
|
attributes: {
|
|
3976
|
-
category: "
|
|
3406
|
+
category: "spacing",
|
|
3977
3407
|
type: "dimension",
|
|
3978
3408
|
item: "fixed",
|
|
3979
3409
|
subitem: "xxs",
|
|
@@ -4005,7 +3435,7 @@ export default {
|
|
|
4005
3435
|
value: "{core.size.default.4}",
|
|
4006
3436
|
type: "dimension",
|
|
4007
3437
|
attributes: {
|
|
4008
|
-
category: "
|
|
3438
|
+
category: "spacing",
|
|
4009
3439
|
},
|
|
4010
3440
|
description: "deprecated",
|
|
4011
3441
|
key: "{semantic.spacing.fixed.xxs}",
|
|
@@ -4019,7 +3449,7 @@ export default {
|
|
|
4019
3449
|
value: "6px",
|
|
4020
3450
|
type: "dimension",
|
|
4021
3451
|
attributes: {
|
|
4022
|
-
category: "
|
|
3452
|
+
category: "spacing",
|
|
4023
3453
|
type: "dimension",
|
|
4024
3454
|
item: "fixed",
|
|
4025
3455
|
subitem: "xs",
|
|
@@ -4051,7 +3481,7 @@ export default {
|
|
|
4051
3481
|
value: "{core.size.default.6}",
|
|
4052
3482
|
type: "dimension",
|
|
4053
3483
|
attributes: {
|
|
4054
|
-
category: "
|
|
3484
|
+
category: "spacing",
|
|
4055
3485
|
},
|
|
4056
3486
|
description: "deprecated",
|
|
4057
3487
|
key: "{semantic.spacing.fixed.xs}",
|
|
@@ -4065,7 +3495,7 @@ export default {
|
|
|
4065
3495
|
value: "8px",
|
|
4066
3496
|
type: "dimension",
|
|
4067
3497
|
attributes: {
|
|
4068
|
-
category: "
|
|
3498
|
+
category: "spacing",
|
|
4069
3499
|
type: "dimension",
|
|
4070
3500
|
item: "fixed",
|
|
4071
3501
|
subitem: "sm",
|
|
@@ -4097,7 +3527,7 @@ export default {
|
|
|
4097
3527
|
value: "{core.size.default.8}",
|
|
4098
3528
|
type: "dimension",
|
|
4099
3529
|
attributes: {
|
|
4100
|
-
category: "
|
|
3530
|
+
category: "spacing",
|
|
4101
3531
|
},
|
|
4102
3532
|
description: "deprecated",
|
|
4103
3533
|
key: "{semantic.spacing.fixed.sm}",
|
|
@@ -4111,7 +3541,7 @@ export default {
|
|
|
4111
3541
|
value: "12px",
|
|
4112
3542
|
type: "dimension",
|
|
4113
3543
|
attributes: {
|
|
4114
|
-
category: "
|
|
3544
|
+
category: "spacing",
|
|
4115
3545
|
type: "dimension",
|
|
4116
3546
|
item: "fixed",
|
|
4117
3547
|
subitem: "md",
|
|
@@ -4143,7 +3573,7 @@ export default {
|
|
|
4143
3573
|
value: "{core.size.default.12}",
|
|
4144
3574
|
type: "dimension",
|
|
4145
3575
|
attributes: {
|
|
4146
|
-
category: "
|
|
3576
|
+
category: "spacing",
|
|
4147
3577
|
},
|
|
4148
3578
|
description: "deprecated",
|
|
4149
3579
|
key: "{semantic.spacing.fixed.md}",
|
|
@@ -4157,7 +3587,7 @@ export default {
|
|
|
4157
3587
|
value: "14px",
|
|
4158
3588
|
type: "dimension",
|
|
4159
3589
|
attributes: {
|
|
4160
|
-
category: "
|
|
3590
|
+
category: "spacing",
|
|
4161
3591
|
type: "dimension",
|
|
4162
3592
|
item: "fixed",
|
|
4163
3593
|
subitem: "lg",
|
|
@@ -4189,7 +3619,7 @@ export default {
|
|
|
4189
3619
|
value: "{core.size.default.14}",
|
|
4190
3620
|
type: "dimension",
|
|
4191
3621
|
attributes: {
|
|
4192
|
-
category: "
|
|
3622
|
+
category: "spacing",
|
|
4193
3623
|
},
|
|
4194
3624
|
description: "deprecated",
|
|
4195
3625
|
key: "{semantic.spacing.fixed.lg}",
|
|
@@ -4203,7 +3633,7 @@ export default {
|
|
|
4203
3633
|
value: "16px",
|
|
4204
3634
|
type: "dimension",
|
|
4205
3635
|
attributes: {
|
|
4206
|
-
category: "
|
|
3636
|
+
category: "spacing",
|
|
4207
3637
|
type: "dimension",
|
|
4208
3638
|
item: "fixed",
|
|
4209
3639
|
subitem: "xl",
|
|
@@ -4235,7 +3665,7 @@ export default {
|
|
|
4235
3665
|
value: "{core.size.default.16}",
|
|
4236
3666
|
type: "dimension",
|
|
4237
3667
|
attributes: {
|
|
4238
|
-
category: "
|
|
3668
|
+
category: "spacing",
|
|
4239
3669
|
},
|
|
4240
3670
|
description: "deprecated",
|
|
4241
3671
|
key: "{semantic.spacing.fixed.xl}",
|
|
@@ -4249,7 +3679,7 @@ export default {
|
|
|
4249
3679
|
value: "20px",
|
|
4250
3680
|
type: "dimension",
|
|
4251
3681
|
attributes: {
|
|
4252
|
-
category: "
|
|
3682
|
+
category: "spacing",
|
|
4253
3683
|
type: "dimension",
|
|
4254
3684
|
item: "fixed",
|
|
4255
3685
|
subitem: "xxl",
|
|
@@ -4281,7 +3711,7 @@ export default {
|
|
|
4281
3711
|
value: "{core.size.default.20}",
|
|
4282
3712
|
type: "dimension",
|
|
4283
3713
|
attributes: {
|
|
4284
|
-
category: "
|
|
3714
|
+
category: "spacing",
|
|
4285
3715
|
},
|
|
4286
3716
|
description: "deprecated",
|
|
4287
3717
|
key: "{semantic.spacing.fixed.xxl}",
|
|
@@ -4295,7 +3725,7 @@ export default {
|
|
|
4295
3725
|
value: "32px",
|
|
4296
3726
|
type: "dimension",
|
|
4297
3727
|
attributes: {
|
|
4298
|
-
category: "
|
|
3728
|
+
category: "spacing",
|
|
4299
3729
|
type: "dimension",
|
|
4300
3730
|
item: "fixed",
|
|
4301
3731
|
subitem: "xxxl",
|
|
@@ -4327,7 +3757,7 @@ export default {
|
|
|
4327
3757
|
value: "{core.size.default.32}",
|
|
4328
3758
|
type: "dimension",
|
|
4329
3759
|
attributes: {
|
|
4330
|
-
category: "
|
|
3760
|
+
category: "spacing",
|
|
4331
3761
|
},
|
|
4332
3762
|
description: "deprecated",
|
|
4333
3763
|
key: "{semantic.spacing.fixed.xxxl}",
|
|
@@ -4343,8 +3773,7 @@ export default {
|
|
|
4343
3773
|
value: "0",
|
|
4344
3774
|
type: "dimension",
|
|
4345
3775
|
attributes: {
|
|
4346
|
-
|
|
4347
|
-
category: "space",
|
|
3776
|
+
category: "spacing",
|
|
4348
3777
|
type: "spacing",
|
|
4349
3778
|
item: "default",
|
|
4350
3779
|
subitem: "none",
|
|
@@ -4367,8 +3796,7 @@ export default {
|
|
|
4367
3796
|
value: "{core.size.default.none}",
|
|
4368
3797
|
type: "dimension",
|
|
4369
3798
|
attributes: {
|
|
4370
|
-
|
|
4371
|
-
category: "space",
|
|
3799
|
+
category: "spacing",
|
|
4372
3800
|
},
|
|
4373
3801
|
key: "{semantic.spacing.default.none}",
|
|
4374
3802
|
},
|
|
@@ -4380,8 +3808,7 @@ export default {
|
|
|
4380
3808
|
value: "1px",
|
|
4381
3809
|
type: "dimension",
|
|
4382
3810
|
attributes: {
|
|
4383
|
-
|
|
4384
|
-
category: "space",
|
|
3811
|
+
category: "spacing",
|
|
4385
3812
|
type: "spacing",
|
|
4386
3813
|
item: "default",
|
|
4387
3814
|
subitem: "px",
|
|
@@ -4404,8 +3831,7 @@ export default {
|
|
|
4404
3831
|
value: "{core.size.default.1}",
|
|
4405
3832
|
type: "dimension",
|
|
4406
3833
|
attributes: {
|
|
4407
|
-
|
|
4408
|
-
category: "space",
|
|
3834
|
+
category: "spacing",
|
|
4409
3835
|
},
|
|
4410
3836
|
key: "{semantic.spacing.default.px}",
|
|
4411
3837
|
},
|
|
@@ -4417,8 +3843,7 @@ export default {
|
|
|
4417
3843
|
value: "2px",
|
|
4418
3844
|
type: "dimension",
|
|
4419
3845
|
attributes: {
|
|
4420
|
-
|
|
4421
|
-
category: "space",
|
|
3846
|
+
category: "spacing",
|
|
4422
3847
|
type: "spacing",
|
|
4423
3848
|
item: "default",
|
|
4424
3849
|
subitem: "base",
|
|
@@ -4441,8 +3866,7 @@ export default {
|
|
|
4441
3866
|
value: "{core.size.default.2}",
|
|
4442
3867
|
type: "dimension",
|
|
4443
3868
|
attributes: {
|
|
4444
|
-
|
|
4445
|
-
category: "space",
|
|
3869
|
+
category: "spacing",
|
|
4446
3870
|
},
|
|
4447
3871
|
key: "{semantic.spacing.default.base}",
|
|
4448
3872
|
},
|
|
@@ -4454,7 +3878,7 @@ export default {
|
|
|
4454
3878
|
value: "0.25rem",
|
|
4455
3879
|
type: "dimension",
|
|
4456
3880
|
attributes: {
|
|
4457
|
-
category: "
|
|
3881
|
+
category: "spacing",
|
|
4458
3882
|
type: "spacing",
|
|
4459
3883
|
item: "default",
|
|
4460
3884
|
subitem: "xxs",
|
|
@@ -4477,7 +3901,7 @@ export default {
|
|
|
4477
3901
|
value: "{core.size.default.4}",
|
|
4478
3902
|
type: "dimension",
|
|
4479
3903
|
attributes: {
|
|
4480
|
-
category: "
|
|
3904
|
+
category: "spacing",
|
|
4481
3905
|
},
|
|
4482
3906
|
key: "{semantic.spacing.default.xxs}",
|
|
4483
3907
|
},
|
|
@@ -4489,7 +3913,7 @@ export default {
|
|
|
4489
3913
|
value: "0.375rem",
|
|
4490
3914
|
type: "dimension",
|
|
4491
3915
|
attributes: {
|
|
4492
|
-
category: "
|
|
3916
|
+
category: "spacing",
|
|
4493
3917
|
type: "spacing",
|
|
4494
3918
|
item: "default",
|
|
4495
3919
|
subitem: "xs",
|
|
@@ -4512,7 +3936,7 @@ export default {
|
|
|
4512
3936
|
value: "{core.size.default.6}",
|
|
4513
3937
|
type: "dimension",
|
|
4514
3938
|
attributes: {
|
|
4515
|
-
category: "
|
|
3939
|
+
category: "spacing",
|
|
4516
3940
|
},
|
|
4517
3941
|
key: "{semantic.spacing.default.xs}",
|
|
4518
3942
|
},
|
|
@@ -4524,7 +3948,7 @@ export default {
|
|
|
4524
3948
|
value: "0.5rem",
|
|
4525
3949
|
type: "dimension",
|
|
4526
3950
|
attributes: {
|
|
4527
|
-
category: "
|
|
3951
|
+
category: "spacing",
|
|
4528
3952
|
type: "spacing",
|
|
4529
3953
|
item: "default",
|
|
4530
3954
|
subitem: "sm",
|
|
@@ -4547,7 +3971,7 @@ export default {
|
|
|
4547
3971
|
value: "{core.size.default.8}",
|
|
4548
3972
|
type: "dimension",
|
|
4549
3973
|
attributes: {
|
|
4550
|
-
category: "
|
|
3974
|
+
category: "spacing",
|
|
4551
3975
|
},
|
|
4552
3976
|
key: "{semantic.spacing.default.sm}",
|
|
4553
3977
|
},
|
|
@@ -4559,7 +3983,7 @@ export default {
|
|
|
4559
3983
|
value: "0.625rem",
|
|
4560
3984
|
type: "dimension",
|
|
4561
3985
|
attributes: {
|
|
4562
|
-
category: "
|
|
3986
|
+
category: "spacing",
|
|
4563
3987
|
type: "spacing",
|
|
4564
3988
|
item: "default",
|
|
4565
3989
|
subitem: "sm+",
|
|
@@ -4582,7 +4006,7 @@ export default {
|
|
|
4582
4006
|
value: "{core.size.default.10}",
|
|
4583
4007
|
type: "dimension",
|
|
4584
4008
|
attributes: {
|
|
4585
|
-
category: "
|
|
4009
|
+
category: "spacing",
|
|
4586
4010
|
},
|
|
4587
4011
|
key: "{semantic.spacing.default.sm+}",
|
|
4588
4012
|
},
|
|
@@ -4594,7 +4018,7 @@ export default {
|
|
|
4594
4018
|
value: "0.75rem",
|
|
4595
4019
|
type: "dimension",
|
|
4596
4020
|
attributes: {
|
|
4597
|
-
category: "
|
|
4021
|
+
category: "spacing",
|
|
4598
4022
|
type: "spacing",
|
|
4599
4023
|
item: "default",
|
|
4600
4024
|
subitem: "md",
|
|
@@ -4617,7 +4041,7 @@ export default {
|
|
|
4617
4041
|
value: "{core.size.default.12}",
|
|
4618
4042
|
type: "dimension",
|
|
4619
4043
|
attributes: {
|
|
4620
|
-
category: "
|
|
4044
|
+
category: "spacing",
|
|
4621
4045
|
},
|
|
4622
4046
|
key: "{semantic.spacing.default.md}",
|
|
4623
4047
|
},
|
|
@@ -4629,7 +4053,7 @@ export default {
|
|
|
4629
4053
|
value: "0.875rem",
|
|
4630
4054
|
type: "dimension",
|
|
4631
4055
|
attributes: {
|
|
4632
|
-
category: "
|
|
4056
|
+
category: "spacing",
|
|
4633
4057
|
type: "spacing",
|
|
4634
4058
|
item: "default",
|
|
4635
4059
|
subitem: "md+",
|
|
@@ -4652,7 +4076,7 @@ export default {
|
|
|
4652
4076
|
value: "{core.size.default.14}",
|
|
4653
4077
|
type: "dimension",
|
|
4654
4078
|
attributes: {
|
|
4655
|
-
category: "
|
|
4079
|
+
category: "spacing",
|
|
4656
4080
|
},
|
|
4657
4081
|
key: "{semantic.spacing.default.md+}",
|
|
4658
4082
|
},
|
|
@@ -4664,7 +4088,7 @@ export default {
|
|
|
4664
4088
|
value: "1rem",
|
|
4665
4089
|
type: "dimension",
|
|
4666
4090
|
attributes: {
|
|
4667
|
-
category: "
|
|
4091
|
+
category: "spacing",
|
|
4668
4092
|
type: "spacing",
|
|
4669
4093
|
item: "default",
|
|
4670
4094
|
subitem: "lg",
|
|
@@ -4687,7 +4111,7 @@ export default {
|
|
|
4687
4111
|
value: "{core.size.default.16}",
|
|
4688
4112
|
type: "dimension",
|
|
4689
4113
|
attributes: {
|
|
4690
|
-
category: "
|
|
4114
|
+
category: "spacing",
|
|
4691
4115
|
},
|
|
4692
4116
|
key: "{semantic.spacing.default.lg}",
|
|
4693
4117
|
},
|
|
@@ -4699,7 +4123,7 @@ export default {
|
|
|
4699
4123
|
value: "1.25rem",
|
|
4700
4124
|
type: "dimension",
|
|
4701
4125
|
attributes: {
|
|
4702
|
-
category: "
|
|
4126
|
+
category: "spacing",
|
|
4703
4127
|
type: "spacing",
|
|
4704
4128
|
item: "default",
|
|
4705
4129
|
subitem: "xl",
|
|
@@ -4722,7 +4146,7 @@ export default {
|
|
|
4722
4146
|
value: "{core.size.default.20}",
|
|
4723
4147
|
type: "dimension",
|
|
4724
4148
|
attributes: {
|
|
4725
|
-
category: "
|
|
4149
|
+
category: "spacing",
|
|
4726
4150
|
},
|
|
4727
4151
|
key: "{semantic.spacing.default.xl}",
|
|
4728
4152
|
},
|
|
@@ -4734,7 +4158,7 @@ export default {
|
|
|
4734
4158
|
value: "1.5rem",
|
|
4735
4159
|
type: "dimension",
|
|
4736
4160
|
attributes: {
|
|
4737
|
-
category: "
|
|
4161
|
+
category: "spacing",
|
|
4738
4162
|
type: "spacing",
|
|
4739
4163
|
item: "default",
|
|
4740
4164
|
subitem: "xxl",
|
|
@@ -4757,7 +4181,7 @@ export default {
|
|
|
4757
4181
|
value: "{core.size.default.24}",
|
|
4758
4182
|
type: "dimension",
|
|
4759
4183
|
attributes: {
|
|
4760
|
-
category: "
|
|
4184
|
+
category: "spacing",
|
|
4761
4185
|
},
|
|
4762
4186
|
key: "{semantic.spacing.default.xxl}",
|
|
4763
4187
|
},
|
|
@@ -4769,7 +4193,7 @@ export default {
|
|
|
4769
4193
|
value: "2rem",
|
|
4770
4194
|
type: "dimension",
|
|
4771
4195
|
attributes: {
|
|
4772
|
-
category: "
|
|
4196
|
+
category: "spacing",
|
|
4773
4197
|
type: "spacing",
|
|
4774
4198
|
item: "default",
|
|
4775
4199
|
subitem: "xxxl",
|
|
@@ -4792,7 +4216,7 @@ export default {
|
|
|
4792
4216
|
value: "{core.size.default.32}",
|
|
4793
4217
|
type: "dimension",
|
|
4794
4218
|
attributes: {
|
|
4795
|
-
category: "
|
|
4219
|
+
category: "spacing",
|
|
4796
4220
|
},
|
|
4797
4221
|
key: "{semantic.spacing.default.xxxl}",
|
|
4798
4222
|
},
|