@esri/calcite-design-tokens 4.0.0-next.10 → 4.0.0-next.11
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/breakpoints.css +8 -4
- package/dist/css/global.css +10 -5
- package/dist/css/semantic.css +10 -5
- package/dist/docs/core.json +1 -1
- package/dist/docs/dark.json +1 -1
- package/dist/docs/global.json +276 -17
- package/dist/docs/light.json +1 -1
- package/dist/docs/semantic.json +192 -11
- package/dist/es6/breakpoints.d.ts +6 -2
- package/dist/es6/breakpoints.js +4 -2
- package/dist/es6/global.d.ts +16 -2
- package/dist/es6/global.js +14 -7
- package/dist/es6/semantic.d.ts +10 -0
- package/dist/es6/semantic.js +10 -5
- package/dist/scss/breakpoints.scss +8 -4
- package/dist/scss/global.scss +10 -5
- package/dist/scss/semantic.scss +10 -5
- package/package.json +2 -2
package/dist/css/breakpoints.css
CHANGED
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
--calcite-container-size-height-xxs-min: 0; /** Small handheld devices and mini-windows */
|
|
8
|
-
--calcite-container-size-
|
|
9
|
-
--calcite-container-size-
|
|
7
|
+
--calcite-container-size-height-xxs-min: 0; /** Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
8
|
+
--calcite-container-size-height-2xs-min: 0; /** Small handheld devices and mini-windows */
|
|
9
|
+
--calcite-container-size-width-xxs-min: 0; /** Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
10
|
+
--calcite-container-size-width-2xs-min: 0; /** Small handheld devices and mini-windows */
|
|
11
|
+
--calcite-container-size-height-xxs-max: 154px; /** Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
12
|
+
--calcite-container-size-height-2xs-max: 154px; /** Small handheld devices and mini-windows */
|
|
10
13
|
--calcite-container-size-height-xs-min: 155px; /** Handheld devices */
|
|
11
14
|
--calcite-container-size-height-xs-max: 328px; /** Handheld devices */
|
|
12
15
|
--calcite-container-size-height-sm-min: 329px; /** Small tablets */
|
|
@@ -16,7 +19,8 @@
|
|
|
16
19
|
--calcite-container-size-height-lg-min: 679px; /** Large laptops and desktop computers */
|
|
17
20
|
--calcite-container-size-height-lg-max: 854px; /** Large laptops and desktop computers */
|
|
18
21
|
--calcite-container-size-height-xl-min: 855px; /** Projectors and televisions */
|
|
19
|
-
--calcite-container-size-width-xxs-max: 320px; /** Small handheld devices and mini-windows */
|
|
22
|
+
--calcite-container-size-width-xxs-max: 320px; /** Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
23
|
+
--calcite-container-size-width-2xs-max: 320px; /** Small handheld devices and mini-windows */
|
|
20
24
|
--calcite-container-size-width-xs-min: 321px; /** Handheld devices */
|
|
21
25
|
--calcite-container-size-width-xs-max: 476px; /** Handheld devices */
|
|
22
26
|
--calcite-container-size-width-sm-min: 477px; /** Small tablets */
|
package/dist/css/global.css
CHANGED
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
--calcite-font-size-md: 16px;
|
|
35
35
|
--calcite-font-size-lg: 18px;
|
|
36
36
|
--calcite-font-size-xl: 20px;
|
|
37
|
-
--calcite-font-size-xxl: 24px;
|
|
37
|
+
--calcite-font-size-xxl: 24px; /** Deprecated, use --calcite-font-size-2xl instead. */
|
|
38
|
+
--calcite-font-size-2xl: 24px;
|
|
38
39
|
--calcite-font-size-relative-xs: 0.625rem;
|
|
39
40
|
--calcite-font-size-relative-sm: 0.75rem;
|
|
40
41
|
--calcite-font-size-relative-base: 0.875rem;
|
|
@@ -103,15 +104,19 @@
|
|
|
103
104
|
--calcite-size-fixed-xxl: 24px; /** deprecated */
|
|
104
105
|
--calcite-size-fixed-xxxl: 32px; /** deprecated */
|
|
105
106
|
--calcite-size-px: 1px;
|
|
106
|
-
--calcite-size-xxxs: 0.75rem;
|
|
107
|
-
--calcite-size-
|
|
107
|
+
--calcite-size-xxxs: 0.75rem; /** Deprecated, use --calcite-size-3xs instead. */
|
|
108
|
+
--calcite-size-3xs: 0.75rem;
|
|
109
|
+
--calcite-size-xxs: 0.875rem; /** Deprecated, use --calcite-size-2xs instead. */
|
|
110
|
+
--calcite-size-2xs: 0.875rem;
|
|
108
111
|
--calcite-size-xs: 1rem;
|
|
109
112
|
--calcite-size-sm: 1.5rem;
|
|
110
113
|
--calcite-size-md: 2rem;
|
|
111
114
|
--calcite-size-lg: 2.75rem;
|
|
112
115
|
--calcite-size-xl: 3rem;
|
|
113
|
-
--calcite-size-xxl: 4rem;
|
|
114
|
-
--calcite-size-
|
|
116
|
+
--calcite-size-xxl: 4rem; /** Deprecated, use --calcite-size-2xl instead. */
|
|
117
|
+
--calcite-size-2xl: 4rem;
|
|
118
|
+
--calcite-size-xxxl: 6rem; /** Deprecated, use --calcite-size-3xl instead. */
|
|
119
|
+
--calcite-size-3xl: 6rem;
|
|
115
120
|
--calcite-spacing-fixed-xxs: 4px; /** deprecated */
|
|
116
121
|
--calcite-spacing-fixed-xs: 6px; /** deprecated */
|
|
117
122
|
--calcite-spacing-fixed-sm: 8px; /** deprecated */
|
package/dist/css/semantic.css
CHANGED
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
--calcite-font-size-md: 16px;
|
|
33
33
|
--calcite-font-size-lg: 18px;
|
|
34
34
|
--calcite-font-size-xl: 20px;
|
|
35
|
-
--calcite-font-size-xxl: 24px;
|
|
35
|
+
--calcite-font-size-xxl: 24px; /** Deprecated, use --calcite-font-size-2xl instead. */
|
|
36
|
+
--calcite-font-size-2xl: 24px;
|
|
36
37
|
--calcite-font-size-relative-xs: 0.625rem;
|
|
37
38
|
--calcite-font-size-relative-sm: 0.75rem;
|
|
38
39
|
--calcite-font-size-relative-base: 0.875rem;
|
|
@@ -101,15 +102,19 @@
|
|
|
101
102
|
--calcite-size-fixed-xxl: 24px; /** deprecated */
|
|
102
103
|
--calcite-size-fixed-xxxl: 32px; /** deprecated */
|
|
103
104
|
--calcite-size-px: 1px;
|
|
104
|
-
--calcite-size-xxxs: 0.75rem;
|
|
105
|
-
--calcite-size-
|
|
105
|
+
--calcite-size-xxxs: 0.75rem; /** Deprecated, use --calcite-size-3xs instead. */
|
|
106
|
+
--calcite-size-3xs: 0.75rem;
|
|
107
|
+
--calcite-size-xxs: 0.875rem; /** Deprecated, use --calcite-size-2xs instead. */
|
|
108
|
+
--calcite-size-2xs: 0.875rem;
|
|
106
109
|
--calcite-size-xs: 1rem;
|
|
107
110
|
--calcite-size-sm: 1.5rem;
|
|
108
111
|
--calcite-size-md: 2rem;
|
|
109
112
|
--calcite-size-lg: 2.75rem;
|
|
110
113
|
--calcite-size-xl: 3rem;
|
|
111
|
-
--calcite-size-xxl: 4rem;
|
|
112
|
-
--calcite-size-
|
|
114
|
+
--calcite-size-xxl: 4rem; /** Deprecated, use --calcite-size-2xl instead. */
|
|
115
|
+
--calcite-size-2xl: 4rem;
|
|
116
|
+
--calcite-size-xxxl: 6rem; /** Deprecated, use --calcite-size-3xl instead. */
|
|
117
|
+
--calcite-size-3xl: 6rem;
|
|
113
118
|
--calcite-spacing-fixed-xxs: 4px; /** deprecated */
|
|
114
119
|
--calcite-spacing-fixed-xs: 6px; /** deprecated */
|
|
115
120
|
--calcite-spacing-fixed-sm: 8px; /** deprecated */
|
package/dist/docs/core.json
CHANGED
package/dist/docs/dark.json
CHANGED
package/dist/docs/global.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1765260574021,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.color.background.default}",
|
|
@@ -1400,7 +1400,7 @@
|
|
|
1400
1400
|
"key": "{semantic.container-size.height.xxs}",
|
|
1401
1401
|
"value": "{\"min\":\"0\",\"max\":\"154px\"}",
|
|
1402
1402
|
"type": "dimension",
|
|
1403
|
-
"description": "Small handheld devices and mini-windows",
|
|
1403
|
+
"description": "Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows",
|
|
1404
1404
|
"attributes": {
|
|
1405
1405
|
"category": "breakpoint",
|
|
1406
1406
|
"type": "dimension",
|
|
@@ -1410,13 +1410,13 @@
|
|
|
1410
1410
|
"min": "0",
|
|
1411
1411
|
"max": "154px"
|
|
1412
1412
|
},
|
|
1413
|
-
"description": "Small handheld devices and mini-windows",
|
|
1413
|
+
"description": "Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows",
|
|
1414
1414
|
"filePath": "src/tokens/semantic/container-size.json",
|
|
1415
1415
|
"isSource": true,
|
|
1416
1416
|
"key": "{semantic.container-size.height.xxs}",
|
|
1417
1417
|
"name": "calcite-semantic-container-size-height-xxs",
|
|
1418
1418
|
"path": ["semantic", "container-size", "height", "xxs"],
|
|
1419
|
-
"comment": "Small handheld devices and mini-windows",
|
|
1419
|
+
"comment": "Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows",
|
|
1420
1420
|
"names": {
|
|
1421
1421
|
"scss": "$calcite-container-size-height-xxs",
|
|
1422
1422
|
"css": "var(--calcite-container-size-height-xxs)",
|
|
@@ -1433,6 +1433,45 @@
|
|
|
1433
1433
|
"isSource": true,
|
|
1434
1434
|
"name": "Container Size Height Xxs",
|
|
1435
1435
|
"path": ["semantic", "container-size", "height", "xxs"],
|
|
1436
|
+
"comment": "Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows"
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"key": "{semantic.container-size.height.2xs}",
|
|
1440
|
+
"value": "{\"min\":\"0\",\"max\":\"154px\"}",
|
|
1441
|
+
"type": "dimension",
|
|
1442
|
+
"description": "Small handheld devices and mini-windows",
|
|
1443
|
+
"attributes": {
|
|
1444
|
+
"category": "breakpoint",
|
|
1445
|
+
"type": "dimension",
|
|
1446
|
+
"item": "height",
|
|
1447
|
+
"subitem": "2xs",
|
|
1448
|
+
"value": {
|
|
1449
|
+
"min": "0",
|
|
1450
|
+
"max": "154px"
|
|
1451
|
+
},
|
|
1452
|
+
"description": "Small handheld devices and mini-windows",
|
|
1453
|
+
"filePath": "src/tokens/semantic/container-size.json",
|
|
1454
|
+
"isSource": true,
|
|
1455
|
+
"key": "{semantic.container-size.height.2xs}",
|
|
1456
|
+
"name": "calcite-semantic-container-size-height-2xs",
|
|
1457
|
+
"path": ["semantic", "container-size", "height", "2xs"],
|
|
1458
|
+
"comment": "Small handheld devices and mini-windows",
|
|
1459
|
+
"names": {
|
|
1460
|
+
"scss": "$calcite-container-size-height-2xs",
|
|
1461
|
+
"css": "var(--calcite-container-size-height-2xs)",
|
|
1462
|
+
"docs": "semantic.container-size.height.2xs",
|
|
1463
|
+
"es6": "calciteContainerSizeHeight2xs"
|
|
1464
|
+
},
|
|
1465
|
+
"calcite-schema": {
|
|
1466
|
+
"system": "calcite",
|
|
1467
|
+
"tier": "semantic",
|
|
1468
|
+
"type": "dimension"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"filePath": "src/tokens/semantic/container-size.json",
|
|
1472
|
+
"isSource": true,
|
|
1473
|
+
"name": "Container Size Height 2xs",
|
|
1474
|
+
"path": ["semantic", "container-size", "height", "2xs"],
|
|
1436
1475
|
"comment": "Small handheld devices and mini-windows"
|
|
1437
1476
|
},
|
|
1438
1477
|
{
|
|
@@ -1633,7 +1672,7 @@
|
|
|
1633
1672
|
"key": "{semantic.container-size.width.xxs}",
|
|
1634
1673
|
"value": "{\"min\":\"0\",\"max\":\"320px\"}",
|
|
1635
1674
|
"type": "dimension",
|
|
1636
|
-
"description": "Small handheld devices and mini-windows",
|
|
1675
|
+
"description": "Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows",
|
|
1637
1676
|
"attributes": {
|
|
1638
1677
|
"category": "breakpoint",
|
|
1639
1678
|
"type": "dimension",
|
|
@@ -1643,13 +1682,13 @@
|
|
|
1643
1682
|
"min": "0",
|
|
1644
1683
|
"max": "320px"
|
|
1645
1684
|
},
|
|
1646
|
-
"description": "Small handheld devices and mini-windows",
|
|
1685
|
+
"description": "Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows",
|
|
1647
1686
|
"filePath": "src/tokens/semantic/container-size.json",
|
|
1648
1687
|
"isSource": true,
|
|
1649
1688
|
"key": "{semantic.container-size.width.xxs}",
|
|
1650
1689
|
"name": "calcite-semantic-container-size-width-xxs",
|
|
1651
1690
|
"path": ["semantic", "container-size", "width", "xxs"],
|
|
1652
|
-
"comment": "Small handheld devices and mini-windows",
|
|
1691
|
+
"comment": "Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows",
|
|
1653
1692
|
"names": {
|
|
1654
1693
|
"scss": "$calcite-container-size-width-xxs",
|
|
1655
1694
|
"css": "var(--calcite-container-size-width-xxs)",
|
|
@@ -1666,6 +1705,45 @@
|
|
|
1666
1705
|
"isSource": true,
|
|
1667
1706
|
"name": "Container Size Width Xxs",
|
|
1668
1707
|
"path": ["semantic", "container-size", "width", "xxs"],
|
|
1708
|
+
"comment": "Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows"
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"key": "{semantic.container-size.width.2xs}",
|
|
1712
|
+
"value": "{\"min\":\"0\",\"max\":\"320px\"}",
|
|
1713
|
+
"type": "dimension",
|
|
1714
|
+
"description": "Small handheld devices and mini-windows",
|
|
1715
|
+
"attributes": {
|
|
1716
|
+
"category": "breakpoint",
|
|
1717
|
+
"type": "dimension",
|
|
1718
|
+
"item": "width",
|
|
1719
|
+
"subitem": "2xs",
|
|
1720
|
+
"value": {
|
|
1721
|
+
"min": "0",
|
|
1722
|
+
"max": "320px"
|
|
1723
|
+
},
|
|
1724
|
+
"description": "Small handheld devices and mini-windows",
|
|
1725
|
+
"filePath": "src/tokens/semantic/container-size.json",
|
|
1726
|
+
"isSource": true,
|
|
1727
|
+
"key": "{semantic.container-size.width.2xs}",
|
|
1728
|
+
"name": "calcite-semantic-container-size-width-2xs",
|
|
1729
|
+
"path": ["semantic", "container-size", "width", "2xs"],
|
|
1730
|
+
"comment": "Small handheld devices and mini-windows",
|
|
1731
|
+
"names": {
|
|
1732
|
+
"scss": "$calcite-container-size-width-2xs",
|
|
1733
|
+
"css": "var(--calcite-container-size-width-2xs)",
|
|
1734
|
+
"docs": "semantic.container-size.width.2xs",
|
|
1735
|
+
"es6": "calciteContainerSizeWidth2xs"
|
|
1736
|
+
},
|
|
1737
|
+
"calcite-schema": {
|
|
1738
|
+
"system": "calcite",
|
|
1739
|
+
"tier": "semantic",
|
|
1740
|
+
"type": "dimension"
|
|
1741
|
+
}
|
|
1742
|
+
},
|
|
1743
|
+
"filePath": "src/tokens/semantic/container-size.json",
|
|
1744
|
+
"isSource": true,
|
|
1745
|
+
"name": "Container Size Width 2xs",
|
|
1746
|
+
"path": ["semantic", "container-size", "width", "2xs"],
|
|
1669
1747
|
"comment": "Small handheld devices and mini-windows"
|
|
1670
1748
|
},
|
|
1671
1749
|
{
|
|
@@ -2610,9 +2688,17 @@
|
|
|
2610
2688
|
"attributes": {
|
|
2611
2689
|
"category": "font",
|
|
2612
2690
|
"group": "size",
|
|
2613
|
-
"type": "
|
|
2691
|
+
"type": "fontSize",
|
|
2614
2692
|
"item": "size",
|
|
2615
2693
|
"subitem": "xxl",
|
|
2694
|
+
"value": "24px",
|
|
2695
|
+
"description": "Deprecated, use --calcite-font-size-2xl instead.",
|
|
2696
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
2697
|
+
"isSource": true,
|
|
2698
|
+
"key": "{semantic.font.size.xxl}",
|
|
2699
|
+
"name": "calcite-semantic-font-size-xxl",
|
|
2700
|
+
"path": ["semantic", "font", "size", "xxl"],
|
|
2701
|
+
"comment": "Deprecated, use --calcite-font-size-2xl instead.",
|
|
2616
2702
|
"names": {
|
|
2617
2703
|
"scss": "$calcite-font-size-xxl",
|
|
2618
2704
|
"css": "var(--calcite-font-size-xxl)",
|
|
@@ -2625,10 +2711,39 @@
|
|
|
2625
2711
|
"type": "fontSize"
|
|
2626
2712
|
}
|
|
2627
2713
|
},
|
|
2714
|
+
"description": "Deprecated, use --calcite-font-size-2xl instead.",
|
|
2628
2715
|
"filePath": "src/tokens/semantic/font.json",
|
|
2629
2716
|
"isSource": true,
|
|
2630
2717
|
"name": "Font Size Xxl",
|
|
2631
|
-
"path": ["semantic", "font", "size", "xxl"]
|
|
2718
|
+
"path": ["semantic", "font", "size", "xxl"],
|
|
2719
|
+
"comment": "Deprecated, use --calcite-font-size-2xl instead."
|
|
2720
|
+
},
|
|
2721
|
+
{
|
|
2722
|
+
"key": "{semantic.font.size.2xl}",
|
|
2723
|
+
"value": "24px",
|
|
2724
|
+
"type": "fontSize",
|
|
2725
|
+
"attributes": {
|
|
2726
|
+
"category": "font",
|
|
2727
|
+
"group": "size",
|
|
2728
|
+
"type": "font",
|
|
2729
|
+
"item": "size",
|
|
2730
|
+
"subitem": "2xl",
|
|
2731
|
+
"names": {
|
|
2732
|
+
"scss": "$calcite-font-size-2xl",
|
|
2733
|
+
"css": "var(--calcite-font-size-2xl)",
|
|
2734
|
+
"docs": "semantic.font.size.2xl",
|
|
2735
|
+
"es6": "calciteFontSize2xl"
|
|
2736
|
+
},
|
|
2737
|
+
"calcite-schema": {
|
|
2738
|
+
"system": "calcite",
|
|
2739
|
+
"tier": "semantic",
|
|
2740
|
+
"type": "fontSize"
|
|
2741
|
+
}
|
|
2742
|
+
},
|
|
2743
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
2744
|
+
"isSource": true,
|
|
2745
|
+
"name": "Font Size 2xl",
|
|
2746
|
+
"path": ["semantic", "font", "size", "2xl"]
|
|
2632
2747
|
},
|
|
2633
2748
|
{
|
|
2634
2749
|
"key": "{semantic.font.size.relative.xs}",
|
|
@@ -4871,9 +4986,17 @@
|
|
|
4871
4986
|
"type": "dimension",
|
|
4872
4987
|
"attributes": {
|
|
4873
4988
|
"category": "size",
|
|
4874
|
-
"type": "
|
|
4989
|
+
"type": "dimension",
|
|
4875
4990
|
"item": "default",
|
|
4876
4991
|
"subitem": "xxxs",
|
|
4992
|
+
"value": "12px",
|
|
4993
|
+
"description": "Deprecated, use --calcite-size-3xs instead.",
|
|
4994
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
4995
|
+
"isSource": true,
|
|
4996
|
+
"key": "{semantic.size.default.xxxs}",
|
|
4997
|
+
"name": "calcite-semantic-size-default-xxxs",
|
|
4998
|
+
"path": ["semantic", "size", "default", "xxxs"],
|
|
4999
|
+
"comment": "Deprecated, use --calcite-size-3xs instead.",
|
|
4877
5000
|
"names": {
|
|
4878
5001
|
"scss": "$calcite-size-xxxs",
|
|
4879
5002
|
"css": "var(--calcite-size-xxxs)",
|
|
@@ -4886,10 +5009,38 @@
|
|
|
4886
5009
|
"type": "dimension"
|
|
4887
5010
|
}
|
|
4888
5011
|
},
|
|
5012
|
+
"description": "Deprecated, use --calcite-size-3xs instead.",
|
|
4889
5013
|
"filePath": "src/tokens/semantic/size.json",
|
|
4890
5014
|
"isSource": true,
|
|
4891
5015
|
"name": "Size Xxxs",
|
|
4892
|
-
"path": ["semantic", "size", "default", "xxxs"]
|
|
5016
|
+
"path": ["semantic", "size", "default", "xxxs"],
|
|
5017
|
+
"comment": "Deprecated, use --calcite-size-3xs instead."
|
|
5018
|
+
},
|
|
5019
|
+
{
|
|
5020
|
+
"key": "{semantic.size.default.3xs}",
|
|
5021
|
+
"value": "0.75rem",
|
|
5022
|
+
"type": "dimension",
|
|
5023
|
+
"attributes": {
|
|
5024
|
+
"category": "size",
|
|
5025
|
+
"type": "size",
|
|
5026
|
+
"item": "default",
|
|
5027
|
+
"subitem": "3xs",
|
|
5028
|
+
"names": {
|
|
5029
|
+
"scss": "$calcite-size-3xs",
|
|
5030
|
+
"css": "var(--calcite-size-3xs)",
|
|
5031
|
+
"docs": "semantic.size.default.3xs",
|
|
5032
|
+
"es6": "calciteSize3xs"
|
|
5033
|
+
},
|
|
5034
|
+
"calcite-schema": {
|
|
5035
|
+
"system": "calcite",
|
|
5036
|
+
"tier": "semantic",
|
|
5037
|
+
"type": "dimension"
|
|
5038
|
+
}
|
|
5039
|
+
},
|
|
5040
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
5041
|
+
"isSource": true,
|
|
5042
|
+
"name": "Size 3xs",
|
|
5043
|
+
"path": ["semantic", "size", "default", "3xs"]
|
|
4893
5044
|
},
|
|
4894
5045
|
{
|
|
4895
5046
|
"key": "{semantic.size.default.xxs}",
|
|
@@ -4897,9 +5048,17 @@
|
|
|
4897
5048
|
"type": "dimension",
|
|
4898
5049
|
"attributes": {
|
|
4899
5050
|
"category": "size",
|
|
4900
|
-
"type": "
|
|
5051
|
+
"type": "dimension",
|
|
4901
5052
|
"item": "default",
|
|
4902
5053
|
"subitem": "xxs",
|
|
5054
|
+
"value": "14px",
|
|
5055
|
+
"description": "Deprecated, use --calcite-size-2xs instead.",
|
|
5056
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
5057
|
+
"isSource": true,
|
|
5058
|
+
"key": "{semantic.size.default.xxs}",
|
|
5059
|
+
"name": "calcite-semantic-size-default-xxs",
|
|
5060
|
+
"path": ["semantic", "size", "default", "xxs"],
|
|
5061
|
+
"comment": "Deprecated, use --calcite-size-2xs instead.",
|
|
4903
5062
|
"names": {
|
|
4904
5063
|
"scss": "$calcite-size-xxs",
|
|
4905
5064
|
"css": "var(--calcite-size-xxs)",
|
|
@@ -4912,10 +5071,38 @@
|
|
|
4912
5071
|
"type": "dimension"
|
|
4913
5072
|
}
|
|
4914
5073
|
},
|
|
5074
|
+
"description": "Deprecated, use --calcite-size-2xs instead.",
|
|
4915
5075
|
"filePath": "src/tokens/semantic/size.json",
|
|
4916
5076
|
"isSource": true,
|
|
4917
5077
|
"name": "Size Xxs",
|
|
4918
|
-
"path": ["semantic", "size", "default", "xxs"]
|
|
5078
|
+
"path": ["semantic", "size", "default", "xxs"],
|
|
5079
|
+
"comment": "Deprecated, use --calcite-size-2xs instead."
|
|
5080
|
+
},
|
|
5081
|
+
{
|
|
5082
|
+
"key": "{semantic.size.default.2xs}",
|
|
5083
|
+
"value": "0.875rem",
|
|
5084
|
+
"type": "dimension",
|
|
5085
|
+
"attributes": {
|
|
5086
|
+
"category": "size",
|
|
5087
|
+
"type": "size",
|
|
5088
|
+
"item": "default",
|
|
5089
|
+
"subitem": "2xs",
|
|
5090
|
+
"names": {
|
|
5091
|
+
"scss": "$calcite-size-2xs",
|
|
5092
|
+
"css": "var(--calcite-size-2xs)",
|
|
5093
|
+
"docs": "semantic.size.default.2xs",
|
|
5094
|
+
"es6": "calciteSize2xs"
|
|
5095
|
+
},
|
|
5096
|
+
"calcite-schema": {
|
|
5097
|
+
"system": "calcite",
|
|
5098
|
+
"tier": "semantic",
|
|
5099
|
+
"type": "dimension"
|
|
5100
|
+
}
|
|
5101
|
+
},
|
|
5102
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
5103
|
+
"isSource": true,
|
|
5104
|
+
"name": "Size 2xs",
|
|
5105
|
+
"path": ["semantic", "size", "default", "2xs"]
|
|
4919
5106
|
},
|
|
4920
5107
|
{
|
|
4921
5108
|
"key": "{semantic.size.default.xs}",
|
|
@@ -5053,9 +5240,17 @@
|
|
|
5053
5240
|
"type": "dimension",
|
|
5054
5241
|
"attributes": {
|
|
5055
5242
|
"category": "size",
|
|
5056
|
-
"type": "
|
|
5243
|
+
"type": "dimension",
|
|
5057
5244
|
"item": "default",
|
|
5058
5245
|
"subitem": "xxl",
|
|
5246
|
+
"value": "64px",
|
|
5247
|
+
"description": "Deprecated, use --calcite-size-2xl instead.",
|
|
5248
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
5249
|
+
"isSource": true,
|
|
5250
|
+
"key": "{semantic.size.default.xxl}",
|
|
5251
|
+
"name": "calcite-semantic-size-default-xxl",
|
|
5252
|
+
"path": ["semantic", "size", "default", "xxl"],
|
|
5253
|
+
"comment": "Deprecated, use --calcite-size-2xl instead.",
|
|
5059
5254
|
"names": {
|
|
5060
5255
|
"scss": "$calcite-size-xxl",
|
|
5061
5256
|
"css": "var(--calcite-size-xxl)",
|
|
@@ -5068,10 +5263,38 @@
|
|
|
5068
5263
|
"type": "dimension"
|
|
5069
5264
|
}
|
|
5070
5265
|
},
|
|
5266
|
+
"description": "Deprecated, use --calcite-size-2xl instead.",
|
|
5071
5267
|
"filePath": "src/tokens/semantic/size.json",
|
|
5072
5268
|
"isSource": true,
|
|
5073
5269
|
"name": "Size Xxl",
|
|
5074
|
-
"path": ["semantic", "size", "default", "xxl"]
|
|
5270
|
+
"path": ["semantic", "size", "default", "xxl"],
|
|
5271
|
+
"comment": "Deprecated, use --calcite-size-2xl instead."
|
|
5272
|
+
},
|
|
5273
|
+
{
|
|
5274
|
+
"key": "{semantic.size.default.2xl}",
|
|
5275
|
+
"value": "4rem",
|
|
5276
|
+
"type": "dimension",
|
|
5277
|
+
"attributes": {
|
|
5278
|
+
"category": "size",
|
|
5279
|
+
"type": "size",
|
|
5280
|
+
"item": "default",
|
|
5281
|
+
"subitem": "2xl",
|
|
5282
|
+
"names": {
|
|
5283
|
+
"scss": "$calcite-size-2xl",
|
|
5284
|
+
"css": "var(--calcite-size-2xl)",
|
|
5285
|
+
"docs": "semantic.size.default.2xl",
|
|
5286
|
+
"es6": "calciteSize2xl"
|
|
5287
|
+
},
|
|
5288
|
+
"calcite-schema": {
|
|
5289
|
+
"system": "calcite",
|
|
5290
|
+
"tier": "semantic",
|
|
5291
|
+
"type": "dimension"
|
|
5292
|
+
}
|
|
5293
|
+
},
|
|
5294
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
5295
|
+
"isSource": true,
|
|
5296
|
+
"name": "Size 2xl",
|
|
5297
|
+
"path": ["semantic", "size", "default", "2xl"]
|
|
5075
5298
|
},
|
|
5076
5299
|
{
|
|
5077
5300
|
"key": "{semantic.size.default.xxxl}",
|
|
@@ -5079,9 +5302,17 @@
|
|
|
5079
5302
|
"type": "dimension",
|
|
5080
5303
|
"attributes": {
|
|
5081
5304
|
"category": "size",
|
|
5082
|
-
"type": "
|
|
5305
|
+
"type": "dimension",
|
|
5083
5306
|
"item": "default",
|
|
5084
5307
|
"subitem": "xxxl",
|
|
5308
|
+
"value": "96px",
|
|
5309
|
+
"description": "Deprecated, use --calcite-size-3xl instead.",
|
|
5310
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
5311
|
+
"isSource": true,
|
|
5312
|
+
"key": "{semantic.size.default.xxxl}",
|
|
5313
|
+
"name": "calcite-semantic-size-default-xxxl",
|
|
5314
|
+
"path": ["semantic", "size", "default", "xxxl"],
|
|
5315
|
+
"comment": "Deprecated, use --calcite-size-3xl instead.",
|
|
5085
5316
|
"names": {
|
|
5086
5317
|
"scss": "$calcite-size-xxxl",
|
|
5087
5318
|
"css": "var(--calcite-size-xxxl)",
|
|
@@ -5094,10 +5325,38 @@
|
|
|
5094
5325
|
"type": "dimension"
|
|
5095
5326
|
}
|
|
5096
5327
|
},
|
|
5328
|
+
"description": "Deprecated, use --calcite-size-3xl instead.",
|
|
5097
5329
|
"filePath": "src/tokens/semantic/size.json",
|
|
5098
5330
|
"isSource": true,
|
|
5099
5331
|
"name": "Size Xxxl",
|
|
5100
|
-
"path": ["semantic", "size", "default", "xxxl"]
|
|
5332
|
+
"path": ["semantic", "size", "default", "xxxl"],
|
|
5333
|
+
"comment": "Deprecated, use --calcite-size-3xl instead."
|
|
5334
|
+
},
|
|
5335
|
+
{
|
|
5336
|
+
"key": "{semantic.size.default.3xl}",
|
|
5337
|
+
"value": "6rem",
|
|
5338
|
+
"type": "dimension",
|
|
5339
|
+
"attributes": {
|
|
5340
|
+
"category": "size",
|
|
5341
|
+
"type": "size",
|
|
5342
|
+
"item": "default",
|
|
5343
|
+
"subitem": "3xl",
|
|
5344
|
+
"names": {
|
|
5345
|
+
"scss": "$calcite-size-3xl",
|
|
5346
|
+
"css": "var(--calcite-size-3xl)",
|
|
5347
|
+
"docs": "semantic.size.default.3xl",
|
|
5348
|
+
"es6": "calciteSize3xl"
|
|
5349
|
+
},
|
|
5350
|
+
"calcite-schema": {
|
|
5351
|
+
"system": "calcite",
|
|
5352
|
+
"tier": "semantic",
|
|
5353
|
+
"type": "dimension"
|
|
5354
|
+
}
|
|
5355
|
+
},
|
|
5356
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
5357
|
+
"isSource": true,
|
|
5358
|
+
"name": "Size 3xl",
|
|
5359
|
+
"path": ["semantic", "size", "default", "3xl"]
|
|
5101
5360
|
},
|
|
5102
5361
|
{
|
|
5103
5362
|
"key": "{semantic.spacing.fixed.xxs}",
|
package/dist/docs/light.json
CHANGED
package/dist/docs/semantic.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1765260574260,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.border.width.none}",
|
|
@@ -857,9 +857,17 @@
|
|
|
857
857
|
"attributes": {
|
|
858
858
|
"category": "font",
|
|
859
859
|
"group": "size",
|
|
860
|
-
"type": "
|
|
860
|
+
"type": "fontSize",
|
|
861
861
|
"item": "size",
|
|
862
862
|
"subitem": "xxl",
|
|
863
|
+
"value": "24px",
|
|
864
|
+
"description": "Deprecated, use --calcite-font-size-2xl instead.",
|
|
865
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
866
|
+
"isSource": true,
|
|
867
|
+
"key": "{semantic.font.size.xxl}",
|
|
868
|
+
"name": "calcite-semantic-font-size-xxl",
|
|
869
|
+
"path": ["semantic", "font", "size", "xxl"],
|
|
870
|
+
"comment": "Deprecated, use --calcite-font-size-2xl instead.",
|
|
863
871
|
"names": {
|
|
864
872
|
"scss": "$calcite-font-size-xxl",
|
|
865
873
|
"css": "var(--calcite-font-size-xxl)",
|
|
@@ -872,10 +880,39 @@
|
|
|
872
880
|
"type": "fontSize"
|
|
873
881
|
}
|
|
874
882
|
},
|
|
883
|
+
"description": "Deprecated, use --calcite-font-size-2xl instead.",
|
|
875
884
|
"filePath": "src/tokens/semantic/font.json",
|
|
876
885
|
"isSource": true,
|
|
877
886
|
"name": "Font Size Xxl",
|
|
878
|
-
"path": ["semantic", "font", "size", "xxl"]
|
|
887
|
+
"path": ["semantic", "font", "size", "xxl"],
|
|
888
|
+
"comment": "Deprecated, use --calcite-font-size-2xl instead."
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"key": "{semantic.font.size.2xl}",
|
|
892
|
+
"value": "24px",
|
|
893
|
+
"type": "fontSize",
|
|
894
|
+
"attributes": {
|
|
895
|
+
"category": "font",
|
|
896
|
+
"group": "size",
|
|
897
|
+
"type": "font",
|
|
898
|
+
"item": "size",
|
|
899
|
+
"subitem": "2xl",
|
|
900
|
+
"names": {
|
|
901
|
+
"scss": "$calcite-font-size-2xl",
|
|
902
|
+
"css": "var(--calcite-font-size-2xl)",
|
|
903
|
+
"docs": "semantic.font.size.2xl",
|
|
904
|
+
"es6": "calciteFontSize2xl"
|
|
905
|
+
},
|
|
906
|
+
"calcite-schema": {
|
|
907
|
+
"system": "calcite",
|
|
908
|
+
"tier": "semantic",
|
|
909
|
+
"type": "fontSize"
|
|
910
|
+
}
|
|
911
|
+
},
|
|
912
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
913
|
+
"isSource": true,
|
|
914
|
+
"name": "Font Size 2xl",
|
|
915
|
+
"path": ["semantic", "font", "size", "2xl"]
|
|
879
916
|
},
|
|
880
917
|
{
|
|
881
918
|
"key": "{semantic.font.size.relative.xs}",
|
|
@@ -3118,9 +3155,17 @@
|
|
|
3118
3155
|
"type": "dimension",
|
|
3119
3156
|
"attributes": {
|
|
3120
3157
|
"category": "size",
|
|
3121
|
-
"type": "
|
|
3158
|
+
"type": "dimension",
|
|
3122
3159
|
"item": "default",
|
|
3123
3160
|
"subitem": "xxxs",
|
|
3161
|
+
"value": "12px",
|
|
3162
|
+
"description": "Deprecated, use --calcite-size-3xs instead.",
|
|
3163
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3164
|
+
"isSource": true,
|
|
3165
|
+
"key": "{semantic.size.default.xxxs}",
|
|
3166
|
+
"name": "calcite-semantic-size-default-xxxs",
|
|
3167
|
+
"path": ["semantic", "size", "default", "xxxs"],
|
|
3168
|
+
"comment": "Deprecated, use --calcite-size-3xs instead.",
|
|
3124
3169
|
"names": {
|
|
3125
3170
|
"scss": "$calcite-size-xxxs",
|
|
3126
3171
|
"css": "var(--calcite-size-xxxs)",
|
|
@@ -3133,10 +3178,38 @@
|
|
|
3133
3178
|
"type": "dimension"
|
|
3134
3179
|
}
|
|
3135
3180
|
},
|
|
3181
|
+
"description": "Deprecated, use --calcite-size-3xs instead.",
|
|
3136
3182
|
"filePath": "src/tokens/semantic/size.json",
|
|
3137
3183
|
"isSource": true,
|
|
3138
3184
|
"name": "Size Xxxs",
|
|
3139
|
-
"path": ["semantic", "size", "default", "xxxs"]
|
|
3185
|
+
"path": ["semantic", "size", "default", "xxxs"],
|
|
3186
|
+
"comment": "Deprecated, use --calcite-size-3xs instead."
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
"key": "{semantic.size.default.3xs}",
|
|
3190
|
+
"value": "0.75rem",
|
|
3191
|
+
"type": "dimension",
|
|
3192
|
+
"attributes": {
|
|
3193
|
+
"category": "size",
|
|
3194
|
+
"type": "size",
|
|
3195
|
+
"item": "default",
|
|
3196
|
+
"subitem": "3xs",
|
|
3197
|
+
"names": {
|
|
3198
|
+
"scss": "$calcite-size-3xs",
|
|
3199
|
+
"css": "var(--calcite-size-3xs)",
|
|
3200
|
+
"docs": "semantic.size.default.3xs",
|
|
3201
|
+
"es6": "calciteSize3xs"
|
|
3202
|
+
},
|
|
3203
|
+
"calcite-schema": {
|
|
3204
|
+
"system": "calcite",
|
|
3205
|
+
"tier": "semantic",
|
|
3206
|
+
"type": "dimension"
|
|
3207
|
+
}
|
|
3208
|
+
},
|
|
3209
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3210
|
+
"isSource": true,
|
|
3211
|
+
"name": "Size 3xs",
|
|
3212
|
+
"path": ["semantic", "size", "default", "3xs"]
|
|
3140
3213
|
},
|
|
3141
3214
|
{
|
|
3142
3215
|
"key": "{semantic.size.default.xxs}",
|
|
@@ -3144,9 +3217,17 @@
|
|
|
3144
3217
|
"type": "dimension",
|
|
3145
3218
|
"attributes": {
|
|
3146
3219
|
"category": "size",
|
|
3147
|
-
"type": "
|
|
3220
|
+
"type": "dimension",
|
|
3148
3221
|
"item": "default",
|
|
3149
3222
|
"subitem": "xxs",
|
|
3223
|
+
"value": "14px",
|
|
3224
|
+
"description": "Deprecated, use --calcite-size-2xs instead.",
|
|
3225
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3226
|
+
"isSource": true,
|
|
3227
|
+
"key": "{semantic.size.default.xxs}",
|
|
3228
|
+
"name": "calcite-semantic-size-default-xxs",
|
|
3229
|
+
"path": ["semantic", "size", "default", "xxs"],
|
|
3230
|
+
"comment": "Deprecated, use --calcite-size-2xs instead.",
|
|
3150
3231
|
"names": {
|
|
3151
3232
|
"scss": "$calcite-size-xxs",
|
|
3152
3233
|
"css": "var(--calcite-size-xxs)",
|
|
@@ -3159,10 +3240,38 @@
|
|
|
3159
3240
|
"type": "dimension"
|
|
3160
3241
|
}
|
|
3161
3242
|
},
|
|
3243
|
+
"description": "Deprecated, use --calcite-size-2xs instead.",
|
|
3162
3244
|
"filePath": "src/tokens/semantic/size.json",
|
|
3163
3245
|
"isSource": true,
|
|
3164
3246
|
"name": "Size Xxs",
|
|
3165
|
-
"path": ["semantic", "size", "default", "xxs"]
|
|
3247
|
+
"path": ["semantic", "size", "default", "xxs"],
|
|
3248
|
+
"comment": "Deprecated, use --calcite-size-2xs instead."
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"key": "{semantic.size.default.2xs}",
|
|
3252
|
+
"value": "0.875rem",
|
|
3253
|
+
"type": "dimension",
|
|
3254
|
+
"attributes": {
|
|
3255
|
+
"category": "size",
|
|
3256
|
+
"type": "size",
|
|
3257
|
+
"item": "default",
|
|
3258
|
+
"subitem": "2xs",
|
|
3259
|
+
"names": {
|
|
3260
|
+
"scss": "$calcite-size-2xs",
|
|
3261
|
+
"css": "var(--calcite-size-2xs)",
|
|
3262
|
+
"docs": "semantic.size.default.2xs",
|
|
3263
|
+
"es6": "calciteSize2xs"
|
|
3264
|
+
},
|
|
3265
|
+
"calcite-schema": {
|
|
3266
|
+
"system": "calcite",
|
|
3267
|
+
"tier": "semantic",
|
|
3268
|
+
"type": "dimension"
|
|
3269
|
+
}
|
|
3270
|
+
},
|
|
3271
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3272
|
+
"isSource": true,
|
|
3273
|
+
"name": "Size 2xs",
|
|
3274
|
+
"path": ["semantic", "size", "default", "2xs"]
|
|
3166
3275
|
},
|
|
3167
3276
|
{
|
|
3168
3277
|
"key": "{semantic.size.default.xs}",
|
|
@@ -3300,9 +3409,17 @@
|
|
|
3300
3409
|
"type": "dimension",
|
|
3301
3410
|
"attributes": {
|
|
3302
3411
|
"category": "size",
|
|
3303
|
-
"type": "
|
|
3412
|
+
"type": "dimension",
|
|
3304
3413
|
"item": "default",
|
|
3305
3414
|
"subitem": "xxl",
|
|
3415
|
+
"value": "64px",
|
|
3416
|
+
"description": "Deprecated, use --calcite-size-2xl instead.",
|
|
3417
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3418
|
+
"isSource": true,
|
|
3419
|
+
"key": "{semantic.size.default.xxl}",
|
|
3420
|
+
"name": "calcite-semantic-size-default-xxl",
|
|
3421
|
+
"path": ["semantic", "size", "default", "xxl"],
|
|
3422
|
+
"comment": "Deprecated, use --calcite-size-2xl instead.",
|
|
3306
3423
|
"names": {
|
|
3307
3424
|
"scss": "$calcite-size-xxl",
|
|
3308
3425
|
"css": "var(--calcite-size-xxl)",
|
|
@@ -3315,10 +3432,38 @@
|
|
|
3315
3432
|
"type": "dimension"
|
|
3316
3433
|
}
|
|
3317
3434
|
},
|
|
3435
|
+
"description": "Deprecated, use --calcite-size-2xl instead.",
|
|
3318
3436
|
"filePath": "src/tokens/semantic/size.json",
|
|
3319
3437
|
"isSource": true,
|
|
3320
3438
|
"name": "Size Xxl",
|
|
3321
|
-
"path": ["semantic", "size", "default", "xxl"]
|
|
3439
|
+
"path": ["semantic", "size", "default", "xxl"],
|
|
3440
|
+
"comment": "Deprecated, use --calcite-size-2xl instead."
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"key": "{semantic.size.default.2xl}",
|
|
3444
|
+
"value": "4rem",
|
|
3445
|
+
"type": "dimension",
|
|
3446
|
+
"attributes": {
|
|
3447
|
+
"category": "size",
|
|
3448
|
+
"type": "size",
|
|
3449
|
+
"item": "default",
|
|
3450
|
+
"subitem": "2xl",
|
|
3451
|
+
"names": {
|
|
3452
|
+
"scss": "$calcite-size-2xl",
|
|
3453
|
+
"css": "var(--calcite-size-2xl)",
|
|
3454
|
+
"docs": "semantic.size.default.2xl",
|
|
3455
|
+
"es6": "calciteSize2xl"
|
|
3456
|
+
},
|
|
3457
|
+
"calcite-schema": {
|
|
3458
|
+
"system": "calcite",
|
|
3459
|
+
"tier": "semantic",
|
|
3460
|
+
"type": "dimension"
|
|
3461
|
+
}
|
|
3462
|
+
},
|
|
3463
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3464
|
+
"isSource": true,
|
|
3465
|
+
"name": "Size 2xl",
|
|
3466
|
+
"path": ["semantic", "size", "default", "2xl"]
|
|
3322
3467
|
},
|
|
3323
3468
|
{
|
|
3324
3469
|
"key": "{semantic.size.default.xxxl}",
|
|
@@ -3326,9 +3471,17 @@
|
|
|
3326
3471
|
"type": "dimension",
|
|
3327
3472
|
"attributes": {
|
|
3328
3473
|
"category": "size",
|
|
3329
|
-
"type": "
|
|
3474
|
+
"type": "dimension",
|
|
3330
3475
|
"item": "default",
|
|
3331
3476
|
"subitem": "xxxl",
|
|
3477
|
+
"value": "96px",
|
|
3478
|
+
"description": "Deprecated, use --calcite-size-3xl instead.",
|
|
3479
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3480
|
+
"isSource": true,
|
|
3481
|
+
"key": "{semantic.size.default.xxxl}",
|
|
3482
|
+
"name": "calcite-semantic-size-default-xxxl",
|
|
3483
|
+
"path": ["semantic", "size", "default", "xxxl"],
|
|
3484
|
+
"comment": "Deprecated, use --calcite-size-3xl instead.",
|
|
3332
3485
|
"names": {
|
|
3333
3486
|
"scss": "$calcite-size-xxxl",
|
|
3334
3487
|
"css": "var(--calcite-size-xxxl)",
|
|
@@ -3341,10 +3494,38 @@
|
|
|
3341
3494
|
"type": "dimension"
|
|
3342
3495
|
}
|
|
3343
3496
|
},
|
|
3497
|
+
"description": "Deprecated, use --calcite-size-3xl instead.",
|
|
3344
3498
|
"filePath": "src/tokens/semantic/size.json",
|
|
3345
3499
|
"isSource": true,
|
|
3346
3500
|
"name": "Size Xxxl",
|
|
3347
|
-
"path": ["semantic", "size", "default", "xxxl"]
|
|
3501
|
+
"path": ["semantic", "size", "default", "xxxl"],
|
|
3502
|
+
"comment": "Deprecated, use --calcite-size-3xl instead."
|
|
3503
|
+
},
|
|
3504
|
+
{
|
|
3505
|
+
"key": "{semantic.size.default.3xl}",
|
|
3506
|
+
"value": "6rem",
|
|
3507
|
+
"type": "dimension",
|
|
3508
|
+
"attributes": {
|
|
3509
|
+
"category": "size",
|
|
3510
|
+
"type": "size",
|
|
3511
|
+
"item": "default",
|
|
3512
|
+
"subitem": "3xl",
|
|
3513
|
+
"names": {
|
|
3514
|
+
"scss": "$calcite-size-3xl",
|
|
3515
|
+
"css": "var(--calcite-size-3xl)",
|
|
3516
|
+
"docs": "semantic.size.default.3xl",
|
|
3517
|
+
"es6": "calciteSize3xl"
|
|
3518
|
+
},
|
|
3519
|
+
"calcite-schema": {
|
|
3520
|
+
"system": "calcite",
|
|
3521
|
+
"tier": "semantic",
|
|
3522
|
+
"type": "dimension"
|
|
3523
|
+
}
|
|
3524
|
+
},
|
|
3525
|
+
"filePath": "src/tokens/semantic/size.json",
|
|
3526
|
+
"isSource": true,
|
|
3527
|
+
"name": "Size 3xl",
|
|
3528
|
+
"path": ["semantic", "size", "default", "3xl"]
|
|
3348
3529
|
},
|
|
3349
3530
|
{
|
|
3350
3531
|
"key": "{semantic.spacing.fixed.xxs}",
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
/** Small handheld devices and mini-windows */
|
|
6
|
+
/** Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
7
7
|
export const calciteContainerSizeHeightXxs: { min: string; max: string };
|
|
8
|
+
/** Small handheld devices and mini-windows */
|
|
9
|
+
export const calciteContainerSizeHeight2xs: { min: string; max: string };
|
|
8
10
|
/** Handheld devices */
|
|
9
11
|
export const calciteContainerSizeHeightXs: { min: string; max: string };
|
|
10
12
|
/** Small tablets */
|
|
@@ -15,8 +17,10 @@ export const calciteContainerSizeHeightMd: { min: string; max: string };
|
|
|
15
17
|
export const calciteContainerSizeHeightLg: { min: string; max: string };
|
|
16
18
|
/** Projectors and televisions */
|
|
17
19
|
export const calciteContainerSizeHeightXl: { min: string };
|
|
18
|
-
/** Small handheld devices and mini-windows */
|
|
20
|
+
/** Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
19
21
|
export const calciteContainerSizeWidthXxs: { min: string; max: string };
|
|
22
|
+
/** Small handheld devices and mini-windows */
|
|
23
|
+
export const calciteContainerSizeWidth2xs: { min: string; max: string };
|
|
20
24
|
/** Handheld devices */
|
|
21
25
|
export const calciteContainerSizeWidthXs: { min: string; max: string };
|
|
22
26
|
/** Small tablets */
|
package/dist/es6/breakpoints.js
CHANGED
|
@@ -3,13 +3,15 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export const calciteContainerSizeHeightXxs = { min: "0", max: "154px" }; // Small handheld devices and mini-windows
|
|
6
|
+
export const calciteContainerSizeHeightXxs = { min: "0", max: "154px" }; // Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows
|
|
7
|
+
export const calciteContainerSizeHeight2xs = { min: "0", max: "154px" }; // Small handheld devices and mini-windows
|
|
7
8
|
export const calciteContainerSizeHeightXs = { min: "155px", max: "328px" }; // Handheld devices
|
|
8
9
|
export const calciteContainerSizeHeightSm = { min: "329px", max: "504px" }; // Small tablets
|
|
9
10
|
export const calciteContainerSizeHeightMd = { min: "505px", max: "678px" }; // Small laptops
|
|
10
11
|
export const calciteContainerSizeHeightLg = { min: "679px", max: "854px" }; // Large laptops and desktop computers
|
|
11
12
|
export const calciteContainerSizeHeightXl = { min: "855px" }; // Projectors and televisions
|
|
12
|
-
export const calciteContainerSizeWidthXxs = { min: "0", max: "320px" }; // Small handheld devices and mini-windows
|
|
13
|
+
export const calciteContainerSizeWidthXxs = { min: "0", max: "320px" }; // Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows
|
|
14
|
+
export const calciteContainerSizeWidth2xs = { min: "0", max: "320px" }; // Small handheld devices and mini-windows
|
|
13
15
|
export const calciteContainerSizeWidthXs = { min: "321px", max: "476px" }; // Handheld devices
|
|
14
16
|
export const calciteContainerSizeWidthSm = { min: "477px", max: "768px" }; // Small tablets
|
|
15
17
|
export const calciteContainerSizeWidthMd = { min: "769px", max: "1152px" }; // Small laptops
|
package/dist/es6/global.d.ts
CHANGED
|
@@ -61,8 +61,10 @@ export const calciteBorderWidthNone: string;
|
|
|
61
61
|
export const calciteBorderWidthSm: string;
|
|
62
62
|
export const calciteBorderWidthMd: string;
|
|
63
63
|
export const calciteBorderWidthLg: string;
|
|
64
|
-
/** Small handheld devices and mini-windows */
|
|
64
|
+
/** Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
65
65
|
export const calciteContainerSizeHeightXxs: { min: string; max: string };
|
|
66
|
+
/** Small handheld devices and mini-windows */
|
|
67
|
+
export const calciteContainerSizeHeight2xs: { min: string; max: string };
|
|
66
68
|
/** Handheld devices */
|
|
67
69
|
export const calciteContainerSizeHeightXs: { min: string; max: string };
|
|
68
70
|
/** Small tablets */
|
|
@@ -73,8 +75,10 @@ export const calciteContainerSizeHeightMd: { min: string; max: string };
|
|
|
73
75
|
export const calciteContainerSizeHeightLg: { min: string; max: string };
|
|
74
76
|
/** Projectors and televisions */
|
|
75
77
|
export const calciteContainerSizeHeightXl: { min: string };
|
|
76
|
-
/** Small handheld devices and mini-windows */
|
|
78
|
+
/** Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
77
79
|
export const calciteContainerSizeWidthXxs: { min: string; max: string };
|
|
80
|
+
/** Small handheld devices and mini-windows */
|
|
81
|
+
export const calciteContainerSizeWidth2xs: { min: string; max: string };
|
|
78
82
|
/** Handheld devices */
|
|
79
83
|
export const calciteContainerSizeWidthXs: { min: string; max: string };
|
|
80
84
|
/** Small tablets */
|
|
@@ -118,7 +122,9 @@ export const calciteFontSize: string;
|
|
|
118
122
|
export const calciteFontSizeMd: string;
|
|
119
123
|
export const calciteFontSizeLg: string;
|
|
120
124
|
export const calciteFontSizeXl: string;
|
|
125
|
+
/** Deprecated, use --calcite-font-size-2xl instead. */
|
|
121
126
|
export const calciteFontSizeXxl: string;
|
|
127
|
+
export const calciteFontSize2xl: string;
|
|
122
128
|
export const calciteFontSizeRelativeXs: string;
|
|
123
129
|
export const calciteFontSizeRelativeSm: string;
|
|
124
130
|
export const calciteFontSizeRelativeBase: string;
|
|
@@ -237,15 +243,23 @@ export const calciteSizeFixedXxl: string;
|
|
|
237
243
|
/** deprecated */
|
|
238
244
|
export const calciteSizeFixedXxxl: string;
|
|
239
245
|
export const calciteSizePx: string;
|
|
246
|
+
/** Deprecated, use --calcite-size-3xs instead. */
|
|
240
247
|
export const calciteSizeXxxs: string;
|
|
248
|
+
export const calciteSize3xs: string;
|
|
249
|
+
/** Deprecated, use --calcite-size-2xs instead. */
|
|
241
250
|
export const calciteSizeXxs: string;
|
|
251
|
+
export const calciteSize2xs: string;
|
|
242
252
|
export const calciteSizeXs: string;
|
|
243
253
|
export const calciteSizeSm: string;
|
|
244
254
|
export const calciteSizeMd: string;
|
|
245
255
|
export const calciteSizeLg: string;
|
|
246
256
|
export const calciteSizeXl: string;
|
|
257
|
+
/** Deprecated, use --calcite-size-2xl instead. */
|
|
247
258
|
export const calciteSizeXxl: string;
|
|
259
|
+
export const calciteSize2xl: string;
|
|
260
|
+
/** Deprecated, use --calcite-size-3xl instead. */
|
|
248
261
|
export const calciteSizeXxxl: string;
|
|
262
|
+
export const calciteSize3xl: string;
|
|
249
263
|
/** deprecated */
|
|
250
264
|
export const calciteSpacingFixedXxs: string;
|
|
251
265
|
/** deprecated */
|
package/dist/es6/global.js
CHANGED
|
@@ -111,13 +111,15 @@ export const calciteBorderWidthNone = "0";
|
|
|
111
111
|
export const calciteBorderWidthSm = "1px";
|
|
112
112
|
export const calciteBorderWidthMd = "2px";
|
|
113
113
|
export const calciteBorderWidthLg = "4px";
|
|
114
|
-
export const calciteContainerSizeHeightXxs = { min: "0", max: "154px" }; // Small handheld devices and mini-windows
|
|
114
|
+
export const calciteContainerSizeHeightXxs = { min: "0", max: "154px" }; // Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows
|
|
115
|
+
export const calciteContainerSizeHeight2xs = { min: "0", max: "154px" }; // Small handheld devices and mini-windows
|
|
115
116
|
export const calciteContainerSizeHeightXs = { min: "155px", max: "328px" }; // Handheld devices
|
|
116
117
|
export const calciteContainerSizeHeightSm = { min: "329px", max: "504px" }; // Small tablets
|
|
117
118
|
export const calciteContainerSizeHeightMd = { min: "505px", max: "678px" }; // Small laptops
|
|
118
119
|
export const calciteContainerSizeHeightLg = { min: "679px", max: "854px" }; // Large laptops and desktop computers
|
|
119
120
|
export const calciteContainerSizeHeightXl = { min: "855px" }; // Projectors and televisions
|
|
120
|
-
export const calciteContainerSizeWidthXxs = { min: "0", max: "320px" }; // Small handheld devices and mini-windows
|
|
121
|
+
export const calciteContainerSizeWidthXxs = { min: "0", max: "320px" }; // Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows
|
|
122
|
+
export const calciteContainerSizeWidth2xs = { min: "0", max: "320px" }; // Small handheld devices and mini-windows
|
|
121
123
|
export const calciteContainerSizeWidthXs = { min: "321px", max: "476px" }; // Handheld devices
|
|
122
124
|
export const calciteContainerSizeWidthSm = { min: "477px", max: "768px" }; // Small tablets
|
|
123
125
|
export const calciteContainerSizeWidthMd = { min: "769px", max: "1152px" }; // Small laptops
|
|
@@ -159,7 +161,8 @@ export const calciteFontSize = "14px";
|
|
|
159
161
|
export const calciteFontSizeMd = "16px";
|
|
160
162
|
export const calciteFontSizeLg = "18px";
|
|
161
163
|
export const calciteFontSizeXl = "20px";
|
|
162
|
-
export const calciteFontSizeXxl = "24px";
|
|
164
|
+
export const calciteFontSizeXxl = "24px"; // Deprecated, use --calcite-font-size-2xl instead.
|
|
165
|
+
export const calciteFontSize2xl = "24px";
|
|
163
166
|
export const calciteFontSizeRelativeXs = "0.625rem";
|
|
164
167
|
export const calciteFontSizeRelativeSm = "0.75rem";
|
|
165
168
|
export const calciteFontSizeRelativeBase = "0.875rem";
|
|
@@ -249,15 +252,19 @@ export const calciteSizeFixedXl = "20px"; // deprecated
|
|
|
249
252
|
export const calciteSizeFixedXxl = "24px"; // deprecated
|
|
250
253
|
export const calciteSizeFixedXxxl = "32px"; // deprecated
|
|
251
254
|
export const calciteSizePx = "1px";
|
|
252
|
-
export const calciteSizeXxxs = "0.75rem";
|
|
253
|
-
export const
|
|
255
|
+
export const calciteSizeXxxs = "0.75rem"; // Deprecated, use --calcite-size-3xs instead.
|
|
256
|
+
export const calciteSize3xs = "0.75rem";
|
|
257
|
+
export const calciteSizeXxs = "0.875rem"; // Deprecated, use --calcite-size-2xs instead.
|
|
258
|
+
export const calciteSize2xs = "0.875rem";
|
|
254
259
|
export const calciteSizeXs = "1rem";
|
|
255
260
|
export const calciteSizeSm = "1.5rem";
|
|
256
261
|
export const calciteSizeMd = "2rem";
|
|
257
262
|
export const calciteSizeLg = "2.75rem";
|
|
258
263
|
export const calciteSizeXl = "3rem";
|
|
259
|
-
export const calciteSizeXxl = "4rem";
|
|
260
|
-
export const
|
|
264
|
+
export const calciteSizeXxl = "4rem"; // Deprecated, use --calcite-size-2xl instead.
|
|
265
|
+
export const calciteSize2xl = "4rem";
|
|
266
|
+
export const calciteSizeXxxl = "6rem"; // Deprecated, use --calcite-size-3xl instead.
|
|
267
|
+
export const calciteSize3xl = "6rem";
|
|
261
268
|
export const calciteSpacingFixedXxs = "4px"; // deprecated
|
|
262
269
|
export const calciteSpacingFixedXs = "6px"; // deprecated
|
|
263
270
|
export const calciteSpacingFixedSm = "8px"; // deprecated
|
package/dist/es6/semantic.d.ts
CHANGED
|
@@ -40,7 +40,9 @@ export const calciteFontSize: string;
|
|
|
40
40
|
export const calciteFontSizeMd: string;
|
|
41
41
|
export const calciteFontSizeLg: string;
|
|
42
42
|
export const calciteFontSizeXl: string;
|
|
43
|
+
/** Deprecated, use --calcite-font-size-2xl instead. */
|
|
43
44
|
export const calciteFontSizeXxl: string;
|
|
45
|
+
export const calciteFontSize2xl: string;
|
|
44
46
|
export const calciteFontSizeRelativeXs: string;
|
|
45
47
|
export const calciteFontSizeRelativeSm: string;
|
|
46
48
|
export const calciteFontSizeRelativeBase: string;
|
|
@@ -159,15 +161,23 @@ export const calciteSizeFixedXxl: string;
|
|
|
159
161
|
/** deprecated */
|
|
160
162
|
export const calciteSizeFixedXxxl: string;
|
|
161
163
|
export const calciteSizePx: string;
|
|
164
|
+
/** Deprecated, use --calcite-size-3xs instead. */
|
|
162
165
|
export const calciteSizeXxxs: string;
|
|
166
|
+
export const calciteSize3xs: string;
|
|
167
|
+
/** Deprecated, use --calcite-size-2xs instead. */
|
|
163
168
|
export const calciteSizeXxs: string;
|
|
169
|
+
export const calciteSize2xs: string;
|
|
164
170
|
export const calciteSizeXs: string;
|
|
165
171
|
export const calciteSizeSm: string;
|
|
166
172
|
export const calciteSizeMd: string;
|
|
167
173
|
export const calciteSizeLg: string;
|
|
168
174
|
export const calciteSizeXl: string;
|
|
175
|
+
/** Deprecated, use --calcite-size-2xl instead. */
|
|
169
176
|
export const calciteSizeXxl: string;
|
|
177
|
+
export const calciteSize2xl: string;
|
|
178
|
+
/** Deprecated, use --calcite-size-3xl instead. */
|
|
170
179
|
export const calciteSizeXxxl: string;
|
|
180
|
+
export const calciteSize3xl: string;
|
|
171
181
|
/** deprecated */
|
|
172
182
|
export const calciteSpacingFixedXxs: string;
|
|
173
183
|
/** deprecated */
|
package/dist/es6/semantic.js
CHANGED
|
@@ -43,7 +43,8 @@ export const calciteFontSize = "14px";
|
|
|
43
43
|
export const calciteFontSizeMd = "16px";
|
|
44
44
|
export const calciteFontSizeLg = "18px";
|
|
45
45
|
export const calciteFontSizeXl = "20px";
|
|
46
|
-
export const calciteFontSizeXxl = "24px";
|
|
46
|
+
export const calciteFontSizeXxl = "24px"; // Deprecated, use --calcite-font-size-2xl instead.
|
|
47
|
+
export const calciteFontSize2xl = "24px";
|
|
47
48
|
export const calciteFontSizeRelativeXs = "0.625rem";
|
|
48
49
|
export const calciteFontSizeRelativeSm = "0.75rem";
|
|
49
50
|
export const calciteFontSizeRelativeBase = "0.875rem";
|
|
@@ -133,15 +134,19 @@ export const calciteSizeFixedXl = "20px"; // deprecated
|
|
|
133
134
|
export const calciteSizeFixedXxl = "24px"; // deprecated
|
|
134
135
|
export const calciteSizeFixedXxxl = "32px"; // deprecated
|
|
135
136
|
export const calciteSizePx = "1px";
|
|
136
|
-
export const calciteSizeXxxs = "0.75rem";
|
|
137
|
-
export const
|
|
137
|
+
export const calciteSizeXxxs = "0.75rem"; // Deprecated, use --calcite-size-3xs instead.
|
|
138
|
+
export const calciteSize3xs = "0.75rem";
|
|
139
|
+
export const calciteSizeXxs = "0.875rem"; // Deprecated, use --calcite-size-2xs instead.
|
|
140
|
+
export const calciteSize2xs = "0.875rem";
|
|
138
141
|
export const calciteSizeXs = "1rem";
|
|
139
142
|
export const calciteSizeSm = "1.5rem";
|
|
140
143
|
export const calciteSizeMd = "2rem";
|
|
141
144
|
export const calciteSizeLg = "2.75rem";
|
|
142
145
|
export const calciteSizeXl = "3rem";
|
|
143
|
-
export const calciteSizeXxl = "4rem";
|
|
144
|
-
export const
|
|
146
|
+
export const calciteSizeXxl = "4rem"; // Deprecated, use --calcite-size-2xl instead.
|
|
147
|
+
export const calciteSize2xl = "4rem";
|
|
148
|
+
export const calciteSizeXxxl = "6rem"; // Deprecated, use --calcite-size-3xl instead.
|
|
149
|
+
export const calciteSize3xl = "6rem";
|
|
145
150
|
export const calciteSpacingFixedXxs = "4px"; // deprecated
|
|
146
151
|
export const calciteSpacingFixedXs = "6px"; // deprecated
|
|
147
152
|
export const calciteSpacingFixedSm = "8px"; // deprecated
|
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
// Calcite Design System
|
|
3
3
|
// Do not edit directly, this file was auto-generated.
|
|
4
4
|
|
|
5
|
-
$calcite-container-size-height-xxs-min: 0; // Small handheld devices and mini-windows
|
|
6
|
-
$calcite-container-size-
|
|
7
|
-
$calcite-container-size-
|
|
5
|
+
$calcite-container-size-height-xxs-min: 0; // Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows
|
|
6
|
+
$calcite-container-size-height-2xs-min: 0; // Small handheld devices and mini-windows
|
|
7
|
+
$calcite-container-size-width-xxs-min: 0; // Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows
|
|
8
|
+
$calcite-container-size-width-2xs-min: 0; // Small handheld devices and mini-windows
|
|
9
|
+
$calcite-container-size-height-xxs-max: 154px; // Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows
|
|
10
|
+
$calcite-container-size-height-2xs-max: 154px; // Small handheld devices and mini-windows
|
|
8
11
|
$calcite-container-size-height-xs-min: 155px; // Handheld devices
|
|
9
12
|
$calcite-container-size-height-xs-max: 328px; // Handheld devices
|
|
10
13
|
$calcite-container-size-height-sm-min: 329px; // Small tablets
|
|
@@ -14,7 +17,8 @@ $calcite-container-size-height-md-max: 678px; // Small laptops
|
|
|
14
17
|
$calcite-container-size-height-lg-min: 679px; // Large laptops and desktop computers
|
|
15
18
|
$calcite-container-size-height-lg-max: 854px; // Large laptops and desktop computers
|
|
16
19
|
$calcite-container-size-height-xl-min: 855px; // Projectors and televisions
|
|
17
|
-
$calcite-container-size-width-xxs-max: 320px; // Small handheld devices and mini-windows
|
|
20
|
+
$calcite-container-size-width-xxs-max: 320px; // Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows
|
|
21
|
+
$calcite-container-size-width-2xs-max: 320px; // Small handheld devices and mini-windows
|
|
18
22
|
$calcite-container-size-width-xs-min: 321px; // Handheld devices
|
|
19
23
|
$calcite-container-size-width-xs-max: 476px; // Handheld devices
|
|
20
24
|
$calcite-container-size-width-sm-min: 477px; // Small tablets
|
package/dist/scss/global.scss
CHANGED
|
@@ -32,7 +32,8 @@ $calcite-font-size: 14px;
|
|
|
32
32
|
$calcite-font-size-md: 16px;
|
|
33
33
|
$calcite-font-size-lg: 18px;
|
|
34
34
|
$calcite-font-size-xl: 20px;
|
|
35
|
-
$calcite-font-size-xxl: 24px;
|
|
35
|
+
$calcite-font-size-xxl: 24px; // Deprecated, use --calcite-font-size-2xl instead.
|
|
36
|
+
$calcite-font-size-2xl: 24px;
|
|
36
37
|
$calcite-font-size-relative-xs: 0.625rem;
|
|
37
38
|
$calcite-font-size-relative-sm: 0.75rem;
|
|
38
39
|
$calcite-font-size-relative-base: 0.875rem;
|
|
@@ -101,15 +102,19 @@ $calcite-size-fixed-xl: 20px; // deprecated
|
|
|
101
102
|
$calcite-size-fixed-xxl: 24px; // deprecated
|
|
102
103
|
$calcite-size-fixed-xxxl: 32px; // deprecated
|
|
103
104
|
$calcite-size-px: 1px;
|
|
104
|
-
$calcite-size-xxxs: 0.75rem;
|
|
105
|
-
$calcite-size-
|
|
105
|
+
$calcite-size-xxxs: 0.75rem; // Deprecated, use --calcite-size-3xs instead.
|
|
106
|
+
$calcite-size-3xs: 0.75rem;
|
|
107
|
+
$calcite-size-xxs: 0.875rem; // Deprecated, use --calcite-size-2xs instead.
|
|
108
|
+
$calcite-size-2xs: 0.875rem;
|
|
106
109
|
$calcite-size-xs: 1rem;
|
|
107
110
|
$calcite-size-sm: 1.5rem;
|
|
108
111
|
$calcite-size-md: 2rem;
|
|
109
112
|
$calcite-size-lg: 2.75rem;
|
|
110
113
|
$calcite-size-xl: 3rem;
|
|
111
|
-
$calcite-size-xxl: 4rem;
|
|
112
|
-
$calcite-size-
|
|
114
|
+
$calcite-size-xxl: 4rem; // Deprecated, use --calcite-size-2xl instead.
|
|
115
|
+
$calcite-size-2xl: 4rem;
|
|
116
|
+
$calcite-size-xxxl: 6rem; // Deprecated, use --calcite-size-3xl instead.
|
|
117
|
+
$calcite-size-3xl: 6rem;
|
|
113
118
|
$calcite-spacing-fixed-xxs: 4px; // deprecated
|
|
114
119
|
$calcite-spacing-fixed-xs: 6px; // deprecated
|
|
115
120
|
$calcite-spacing-fixed-sm: 8px; // deprecated
|
package/dist/scss/semantic.scss
CHANGED
|
@@ -30,7 +30,8 @@ $calcite-font-size: 14px;
|
|
|
30
30
|
$calcite-font-size-md: 16px;
|
|
31
31
|
$calcite-font-size-lg: 18px;
|
|
32
32
|
$calcite-font-size-xl: 20px;
|
|
33
|
-
$calcite-font-size-xxl: 24px;
|
|
33
|
+
$calcite-font-size-xxl: 24px; // Deprecated, use --calcite-font-size-2xl instead.
|
|
34
|
+
$calcite-font-size-2xl: 24px;
|
|
34
35
|
$calcite-font-size-relative-xs: 0.625rem;
|
|
35
36
|
$calcite-font-size-relative-sm: 0.75rem;
|
|
36
37
|
$calcite-font-size-relative-base: 0.875rem;
|
|
@@ -99,15 +100,19 @@ $calcite-size-fixed-xl: 20px; // deprecated
|
|
|
99
100
|
$calcite-size-fixed-xxl: 24px; // deprecated
|
|
100
101
|
$calcite-size-fixed-xxxl: 32px; // deprecated
|
|
101
102
|
$calcite-size-px: 1px;
|
|
102
|
-
$calcite-size-xxxs: 0.75rem;
|
|
103
|
-
$calcite-size-
|
|
103
|
+
$calcite-size-xxxs: 0.75rem; // Deprecated, use --calcite-size-3xs instead.
|
|
104
|
+
$calcite-size-3xs: 0.75rem;
|
|
105
|
+
$calcite-size-xxs: 0.875rem; // Deprecated, use --calcite-size-2xs instead.
|
|
106
|
+
$calcite-size-2xs: 0.875rem;
|
|
104
107
|
$calcite-size-xs: 1rem;
|
|
105
108
|
$calcite-size-sm: 1.5rem;
|
|
106
109
|
$calcite-size-md: 2rem;
|
|
107
110
|
$calcite-size-lg: 2.75rem;
|
|
108
111
|
$calcite-size-xl: 3rem;
|
|
109
|
-
$calcite-size-xxl: 4rem;
|
|
110
|
-
$calcite-size-
|
|
112
|
+
$calcite-size-xxl: 4rem; // Deprecated, use --calcite-size-2xl instead.
|
|
113
|
+
$calcite-size-2xl: 4rem;
|
|
114
|
+
$calcite-size-xxxl: 6rem; // Deprecated, use --calcite-size-3xl instead.
|
|
115
|
+
$calcite-size-3xl: 6rem;
|
|
111
116
|
$calcite-spacing-fixed-xxs: 4px; // deprecated
|
|
112
117
|
$calcite-spacing-fixed-xs: 6px; // deprecated
|
|
113
118
|
$calcite-spacing-fixed-sm: 8px; // deprecated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-design-tokens",
|
|
3
|
-
"version": "4.0.0-next.
|
|
3
|
+
"version": "4.0.0-next.11",
|
|
4
4
|
"description": "Esri's Calcite Design System Tokens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Calcite",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"vitest": "4.0.14"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "8f61da5e9de73b7a17fc6f6fcdb4ab8484133f05"
|
|
50
50
|
}
|