@esri/calcite-design-tokens 3.2.0-next.9 → 3.2.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/core.css +3 -1
- package/dist/css/global.css +7 -1
- package/dist/css/semantic.css +7 -1
- package/dist/docs/core.json +68 -2
- package/dist/docs/dark.json +1 -1
- package/dist/docs/global.json +196 -6
- package/dist/docs/light.json +1 -1
- package/dist/docs/semantic.json +196 -6
- package/dist/es6/core.d.ts +3 -0
- package/dist/es6/core.js +3 -1
- package/dist/es6/global.d.ts +8 -1
- package/dist/es6/global.js +7 -1
- package/dist/es6/semantic.d.ts +8 -1
- package/dist/es6/semantic.js +7 -1
- package/dist/js/core.d.ts +2 -0
- package/dist/js/core.js +89 -0
- package/dist/js/global.d.ts +6 -0
- package/dist/js/global.js +258 -7
- package/dist/js/semantic.d.ts +6 -0
- package/dist/js/semantic.js +258 -7
- package/dist/scss/core.scss +3 -1
- package/dist/scss/global.scss +7 -1
- package/dist/scss/semantic.scss +7 -1
- package/package.json +5 -5
package/dist/css/core.css
CHANGED
|
@@ -160,7 +160,8 @@
|
|
|
160
160
|
--calcite-color-low-saturation-violet-l-vv-070: #6f6783;
|
|
161
161
|
--calcite-color-low-saturation-violet-l-vv-080: #504b60;
|
|
162
162
|
--calcite-color-low-saturation-violet-l-vv-090: #322e3d;
|
|
163
|
-
--calcite-color-low-saturation-violet-l-vv-
|
|
163
|
+
--calcite-color-low-saturation-violet-l-vv-100: #13111a;
|
|
164
|
+
--calcite-color-low-saturation-violet-l-vv-1000: #13111a; /** deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead */
|
|
164
165
|
--calcite-color-medium-saturation-blue-m-bb-010: #dfeffa;
|
|
165
166
|
--calcite-color-medium-saturation-blue-m-bb-020: #c8e3f5;
|
|
166
167
|
--calcite-color-medium-saturation-blue-m-bb-030: #b1d8f1;
|
|
@@ -564,6 +565,7 @@
|
|
|
564
565
|
--calcite-size-relative-162: 162.5%;
|
|
565
566
|
--calcite-size-relative-200: 200%;
|
|
566
567
|
--calcite-size-relative-auto: auto;
|
|
568
|
+
--calcite-size-relative-normal: normal;
|
|
567
569
|
--calcite-z-index-0: -999999;
|
|
568
570
|
--calcite-z-index-1: 1;
|
|
569
571
|
--calcite-z-index-3: 300;
|
package/dist/css/global.css
CHANGED
|
@@ -40,7 +40,13 @@
|
|
|
40
40
|
--calcite-font-line-height-fixed-base: 16px;
|
|
41
41
|
--calcite-font-line-height-fixed-lg: 20px;
|
|
42
42
|
--calcite-font-line-height-fixed-xl: 24px;
|
|
43
|
-
--calcite-font-line-height-
|
|
43
|
+
--calcite-font-line-height-fixed-2xl: 32px;
|
|
44
|
+
--calcite-font-line-height-fixed-3xl: 40px;
|
|
45
|
+
--calcite-font-line-height-fixed-4xl: 48px;
|
|
46
|
+
--calcite-font-line-height-fixed-5xl: 64px;
|
|
47
|
+
--calcite-font-line-height-fixed-6xl: 80px;
|
|
48
|
+
--calcite-font-line-height-relative: normal; /** normal */
|
|
49
|
+
--calcite-font-line-height-relative-base: 1; /** 1 */
|
|
44
50
|
--calcite-font-line-height-relative-tight: 1.25; /** 1.25 */
|
|
45
51
|
--calcite-font-line-height-relative-snug: 1.375; /** 1.375 */
|
|
46
52
|
--calcite-font-line-height-relative-normal: 1.5; /** 1.5 */
|
package/dist/css/semantic.css
CHANGED
|
@@ -38,7 +38,13 @@
|
|
|
38
38
|
--calcite-font-line-height-fixed-base: 16px;
|
|
39
39
|
--calcite-font-line-height-fixed-lg: 20px;
|
|
40
40
|
--calcite-font-line-height-fixed-xl: 24px;
|
|
41
|
-
--calcite-font-line-height-
|
|
41
|
+
--calcite-font-line-height-fixed-2xl: 32px;
|
|
42
|
+
--calcite-font-line-height-fixed-3xl: 40px;
|
|
43
|
+
--calcite-font-line-height-fixed-4xl: 48px;
|
|
44
|
+
--calcite-font-line-height-fixed-5xl: 64px;
|
|
45
|
+
--calcite-font-line-height-fixed-6xl: 80px;
|
|
46
|
+
--calcite-font-line-height-relative: normal; /** normal */
|
|
47
|
+
--calcite-font-line-height-relative-base: 1; /** 1 */
|
|
42
48
|
--calcite-font-line-height-relative-tight: 1.25; /** 1.25 */
|
|
43
49
|
--calcite-font-line-height-relative-snug: 1.375; /** 1.375 */
|
|
44
50
|
--calcite-font-line-height-relative-normal: 1.5; /** 1.5 */
|
package/dist/docs/core.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1758306154038,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{core.color.neutral.blk-000}",
|
|
@@ -4498,10 +4498,40 @@
|
|
|
4498
4498
|
"name": "Color Low Saturation Violet L Vv 090",
|
|
4499
4499
|
"path": ["core", "color", "low-saturation", "violet", "l-vv-090"]
|
|
4500
4500
|
},
|
|
4501
|
+
{
|
|
4502
|
+
"key": "{core.color.low-saturation.violet.l-vv-100}",
|
|
4503
|
+
"value": "#13111a",
|
|
4504
|
+
"type": "color",
|
|
4505
|
+
"attributes": {
|
|
4506
|
+
"category": "color",
|
|
4507
|
+
"group": "low-saturation",
|
|
4508
|
+
"type": "color",
|
|
4509
|
+
"item": "low-saturation",
|
|
4510
|
+
"subitem": "violet",
|
|
4511
|
+
"state": "l-vv-100",
|
|
4512
|
+
"names": {
|
|
4513
|
+
"scss": "$calcite-color-low-saturation-violet-l-vv-100",
|
|
4514
|
+
"css": "var(--calcite-color-low-saturation-violet-l-vv-100)",
|
|
4515
|
+
"js": "core.color.low-saturation.violet.l-vv-100",
|
|
4516
|
+
"docs": "core.color.low-saturation.violet.l-vv-100",
|
|
4517
|
+
"es6": "calciteColorLowSaturationVioletLVv100"
|
|
4518
|
+
},
|
|
4519
|
+
"calcite-schema": {
|
|
4520
|
+
"system": "calcite",
|
|
4521
|
+
"tier": "core",
|
|
4522
|
+
"type": "color"
|
|
4523
|
+
}
|
|
4524
|
+
},
|
|
4525
|
+
"filePath": "src/tokens/core/color.json",
|
|
4526
|
+
"isSource": false,
|
|
4527
|
+
"name": "Color Low Saturation Violet L Vv 100",
|
|
4528
|
+
"path": ["core", "color", "low-saturation", "violet", "l-vv-100"]
|
|
4529
|
+
},
|
|
4501
4530
|
{
|
|
4502
4531
|
"key": "{core.color.low-saturation.violet.l-vv-1000}",
|
|
4503
4532
|
"value": "#13111a",
|
|
4504
4533
|
"type": "color",
|
|
4534
|
+
"description": "deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
4505
4535
|
"attributes": {
|
|
4506
4536
|
"category": "color",
|
|
4507
4537
|
"group": "low-saturation",
|
|
@@ -4509,6 +4539,14 @@
|
|
|
4509
4539
|
"item": "low-saturation",
|
|
4510
4540
|
"subitem": "violet",
|
|
4511
4541
|
"state": "l-vv-1000",
|
|
4542
|
+
"value": "#13111a",
|
|
4543
|
+
"description": "deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
4544
|
+
"filePath": "src/tokens/core/color.json",
|
|
4545
|
+
"isSource": false,
|
|
4546
|
+
"key": "{core.color.low-saturation.violet.l-vv-1000}",
|
|
4547
|
+
"name": "calcite-core-color-low-saturation-violet-l-vv-1000",
|
|
4548
|
+
"path": ["core", "color", "low-saturation", "violet", "l-vv-1000"],
|
|
4549
|
+
"comment": "deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
4512
4550
|
"names": {
|
|
4513
4551
|
"scss": "$calcite-color-low-saturation-violet-l-vv-1000",
|
|
4514
4552
|
"css": "var(--calcite-color-low-saturation-violet-l-vv-1000)",
|
|
@@ -4525,7 +4563,8 @@
|
|
|
4525
4563
|
"filePath": "src/tokens/core/color.json",
|
|
4526
4564
|
"isSource": false,
|
|
4527
4565
|
"name": "Color Low Saturation Violet L Vv 1000",
|
|
4528
|
-
"path": ["core", "color", "low-saturation", "violet", "l-vv-1000"]
|
|
4566
|
+
"path": ["core", "color", "low-saturation", "violet", "l-vv-1000"],
|
|
4567
|
+
"comment": "deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead"
|
|
4529
4568
|
},
|
|
4530
4569
|
{
|
|
4531
4570
|
"key": "{core.color.medium-saturation.blue.m-bb-010}",
|
|
@@ -16371,6 +16410,33 @@
|
|
|
16371
16410
|
"name": "Size Relative Auto",
|
|
16372
16411
|
"path": ["core", "size", "relative", "auto"]
|
|
16373
16412
|
},
|
|
16413
|
+
{
|
|
16414
|
+
"key": "{core.size.relative.normal}",
|
|
16415
|
+
"value": "normal",
|
|
16416
|
+
"type": "dimension",
|
|
16417
|
+
"attributes": {
|
|
16418
|
+
"category": "size",
|
|
16419
|
+
"type": "size",
|
|
16420
|
+
"item": "relative",
|
|
16421
|
+
"subitem": "normal",
|
|
16422
|
+
"names": {
|
|
16423
|
+
"scss": "$calcite-size-relative-normal",
|
|
16424
|
+
"css": "var(--calcite-size-relative-normal)",
|
|
16425
|
+
"js": "core.size.relative.normal",
|
|
16426
|
+
"docs": "core.size.relative.normal",
|
|
16427
|
+
"es6": "calciteSizeRelativeNormal"
|
|
16428
|
+
},
|
|
16429
|
+
"calcite-schema": {
|
|
16430
|
+
"system": "calcite",
|
|
16431
|
+
"tier": "core",
|
|
16432
|
+
"type": "dimension"
|
|
16433
|
+
}
|
|
16434
|
+
},
|
|
16435
|
+
"filePath": "src/tokens/core/size.json",
|
|
16436
|
+
"isSource": false,
|
|
16437
|
+
"name": "Size Relative Normal",
|
|
16438
|
+
"path": ["core", "size", "relative", "normal"]
|
|
16439
|
+
},
|
|
16374
16440
|
{
|
|
16375
16441
|
"key": "{core.z-index.0}",
|
|
16376
16442
|
"value": "-999999",
|
package/dist/docs/dark.json
CHANGED
package/dist/docs/global.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1758306153809,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.color.background.default}",
|
|
@@ -2876,11 +2876,161 @@
|
|
|
2876
2876
|
"name": "Font Line Height Fixed Xl",
|
|
2877
2877
|
"path": ["semantic", "font", "line-height", "fixed", "xl"]
|
|
2878
2878
|
},
|
|
2879
|
+
{
|
|
2880
|
+
"key": "{semantic.font.line-height.fixed.2xl}",
|
|
2881
|
+
"value": "32px",
|
|
2882
|
+
"type": "lineHeight",
|
|
2883
|
+
"attributes": {
|
|
2884
|
+
"category": "font",
|
|
2885
|
+
"group": "line-height",
|
|
2886
|
+
"kind": "fixed",
|
|
2887
|
+
"type": "font",
|
|
2888
|
+
"item": "line-height",
|
|
2889
|
+
"subitem": "fixed",
|
|
2890
|
+
"state": "2xl",
|
|
2891
|
+
"names": {
|
|
2892
|
+
"scss": "$calcite-font-line-height-fixed-2xl",
|
|
2893
|
+
"css": "var(--calcite-font-line-height-fixed-2xl)",
|
|
2894
|
+
"js": "semantic.font.line-height.fixed.2xl",
|
|
2895
|
+
"docs": "semantic.font.line-height.fixed.2xl",
|
|
2896
|
+
"es6": "calciteFontLineHeightFixed2xl"
|
|
2897
|
+
},
|
|
2898
|
+
"calcite-schema": {
|
|
2899
|
+
"system": "calcite",
|
|
2900
|
+
"tier": "semantic",
|
|
2901
|
+
"type": "lineHeight"
|
|
2902
|
+
}
|
|
2903
|
+
},
|
|
2904
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
2905
|
+
"isSource": true,
|
|
2906
|
+
"name": "Font Line Height Fixed 2xl",
|
|
2907
|
+
"path": ["semantic", "font", "line-height", "fixed", "2xl"]
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"key": "{semantic.font.line-height.fixed.3xl}",
|
|
2911
|
+
"value": "40px",
|
|
2912
|
+
"type": "lineHeight",
|
|
2913
|
+
"attributes": {
|
|
2914
|
+
"category": "font",
|
|
2915
|
+
"group": "line-height",
|
|
2916
|
+
"kind": "fixed",
|
|
2917
|
+
"type": "font",
|
|
2918
|
+
"item": "line-height",
|
|
2919
|
+
"subitem": "fixed",
|
|
2920
|
+
"state": "3xl",
|
|
2921
|
+
"names": {
|
|
2922
|
+
"scss": "$calcite-font-line-height-fixed-3xl",
|
|
2923
|
+
"css": "var(--calcite-font-line-height-fixed-3xl)",
|
|
2924
|
+
"js": "semantic.font.line-height.fixed.3xl",
|
|
2925
|
+
"docs": "semantic.font.line-height.fixed.3xl",
|
|
2926
|
+
"es6": "calciteFontLineHeightFixed3xl"
|
|
2927
|
+
},
|
|
2928
|
+
"calcite-schema": {
|
|
2929
|
+
"system": "calcite",
|
|
2930
|
+
"tier": "semantic",
|
|
2931
|
+
"type": "lineHeight"
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
2935
|
+
"isSource": true,
|
|
2936
|
+
"name": "Font Line Height Fixed 3xl",
|
|
2937
|
+
"path": ["semantic", "font", "line-height", "fixed", "3xl"]
|
|
2938
|
+
},
|
|
2939
|
+
{
|
|
2940
|
+
"key": "{semantic.font.line-height.fixed.4xl}",
|
|
2941
|
+
"value": "48px",
|
|
2942
|
+
"type": "lineHeight",
|
|
2943
|
+
"attributes": {
|
|
2944
|
+
"category": "font",
|
|
2945
|
+
"group": "line-height",
|
|
2946
|
+
"kind": "fixed",
|
|
2947
|
+
"type": "font",
|
|
2948
|
+
"item": "line-height",
|
|
2949
|
+
"subitem": "fixed",
|
|
2950
|
+
"state": "4xl",
|
|
2951
|
+
"names": {
|
|
2952
|
+
"scss": "$calcite-font-line-height-fixed-4xl",
|
|
2953
|
+
"css": "var(--calcite-font-line-height-fixed-4xl)",
|
|
2954
|
+
"js": "semantic.font.line-height.fixed.4xl",
|
|
2955
|
+
"docs": "semantic.font.line-height.fixed.4xl",
|
|
2956
|
+
"es6": "calciteFontLineHeightFixed4xl"
|
|
2957
|
+
},
|
|
2958
|
+
"calcite-schema": {
|
|
2959
|
+
"system": "calcite",
|
|
2960
|
+
"tier": "semantic",
|
|
2961
|
+
"type": "lineHeight"
|
|
2962
|
+
}
|
|
2963
|
+
},
|
|
2964
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
2965
|
+
"isSource": true,
|
|
2966
|
+
"name": "Font Line Height Fixed 4xl",
|
|
2967
|
+
"path": ["semantic", "font", "line-height", "fixed", "4xl"]
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"key": "{semantic.font.line-height.fixed.5xl}",
|
|
2971
|
+
"value": "64px",
|
|
2972
|
+
"type": "lineHeight",
|
|
2973
|
+
"attributes": {
|
|
2974
|
+
"category": "font",
|
|
2975
|
+
"group": "line-height",
|
|
2976
|
+
"kind": "fixed",
|
|
2977
|
+
"type": "font",
|
|
2978
|
+
"item": "line-height",
|
|
2979
|
+
"subitem": "fixed",
|
|
2980
|
+
"state": "5xl",
|
|
2981
|
+
"names": {
|
|
2982
|
+
"scss": "$calcite-font-line-height-fixed-5xl",
|
|
2983
|
+
"css": "var(--calcite-font-line-height-fixed-5xl)",
|
|
2984
|
+
"js": "semantic.font.line-height.fixed.5xl",
|
|
2985
|
+
"docs": "semantic.font.line-height.fixed.5xl",
|
|
2986
|
+
"es6": "calciteFontLineHeightFixed5xl"
|
|
2987
|
+
},
|
|
2988
|
+
"calcite-schema": {
|
|
2989
|
+
"system": "calcite",
|
|
2990
|
+
"tier": "semantic",
|
|
2991
|
+
"type": "lineHeight"
|
|
2992
|
+
}
|
|
2993
|
+
},
|
|
2994
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
2995
|
+
"isSource": true,
|
|
2996
|
+
"name": "Font Line Height Fixed 5xl",
|
|
2997
|
+
"path": ["semantic", "font", "line-height", "fixed", "5xl"]
|
|
2998
|
+
},
|
|
2999
|
+
{
|
|
3000
|
+
"key": "{semantic.font.line-height.fixed.6xl}",
|
|
3001
|
+
"value": "80px",
|
|
3002
|
+
"type": "lineHeight",
|
|
3003
|
+
"attributes": {
|
|
3004
|
+
"category": "font",
|
|
3005
|
+
"group": "line-height",
|
|
3006
|
+
"kind": "fixed",
|
|
3007
|
+
"type": "font",
|
|
3008
|
+
"item": "line-height",
|
|
3009
|
+
"subitem": "fixed",
|
|
3010
|
+
"state": "6xl",
|
|
3011
|
+
"names": {
|
|
3012
|
+
"scss": "$calcite-font-line-height-fixed-6xl",
|
|
3013
|
+
"css": "var(--calcite-font-line-height-fixed-6xl)",
|
|
3014
|
+
"js": "semantic.font.line-height.fixed.6xl",
|
|
3015
|
+
"docs": "semantic.font.line-height.fixed.6xl",
|
|
3016
|
+
"es6": "calciteFontLineHeightFixed6xl"
|
|
3017
|
+
},
|
|
3018
|
+
"calcite-schema": {
|
|
3019
|
+
"system": "calcite",
|
|
3020
|
+
"tier": "semantic",
|
|
3021
|
+
"type": "lineHeight"
|
|
3022
|
+
}
|
|
3023
|
+
},
|
|
3024
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
3025
|
+
"isSource": true,
|
|
3026
|
+
"name": "Font Line Height Fixed 6xl",
|
|
3027
|
+
"path": ["semantic", "font", "line-height", "fixed", "6xl"]
|
|
3028
|
+
},
|
|
2879
3029
|
{
|
|
2880
3030
|
"key": "{semantic.font.line-height.relative.default}",
|
|
2881
|
-
"value": "
|
|
3031
|
+
"value": "normal",
|
|
2882
3032
|
"type": "lineHeight",
|
|
2883
|
-
"description": "
|
|
3033
|
+
"description": "normal",
|
|
2884
3034
|
"attributes": {
|
|
2885
3035
|
"category": "font",
|
|
2886
3036
|
"group": "line-height",
|
|
@@ -2889,14 +3039,14 @@
|
|
|
2889
3039
|
"item": "line-height",
|
|
2890
3040
|
"subitem": "relative",
|
|
2891
3041
|
"state": "default",
|
|
2892
|
-
"value": "
|
|
2893
|
-
"description": "
|
|
3042
|
+
"value": "normal",
|
|
3043
|
+
"description": "normal",
|
|
2894
3044
|
"filePath": "src/tokens/semantic/font.json",
|
|
2895
3045
|
"isSource": true,
|
|
2896
3046
|
"key": "{semantic.font.line-height.relative.default}",
|
|
2897
3047
|
"name": "calcite-semantic-font-line-height-relative-default",
|
|
2898
3048
|
"path": ["semantic", "font", "line-height", "relative", "default"],
|
|
2899
|
-
"comment": "
|
|
3049
|
+
"comment": "normal",
|
|
2900
3050
|
"names": {
|
|
2901
3051
|
"scss": "$calcite-font-line-height-relative",
|
|
2902
3052
|
"css": "var(--calcite-font-line-height-relative)",
|
|
@@ -2914,6 +3064,46 @@
|
|
|
2914
3064
|
"isSource": true,
|
|
2915
3065
|
"name": "Font Line Height Relative",
|
|
2916
3066
|
"path": ["semantic", "font", "line-height", "relative", "default"],
|
|
3067
|
+
"comment": "normal"
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"key": "{semantic.font.line-height.relative.base}",
|
|
3071
|
+
"value": "1",
|
|
3072
|
+
"type": "lineHeight",
|
|
3073
|
+
"description": "1",
|
|
3074
|
+
"attributes": {
|
|
3075
|
+
"category": "font",
|
|
3076
|
+
"group": "line-height",
|
|
3077
|
+
"kind": "relative",
|
|
3078
|
+
"type": "lineHeight",
|
|
3079
|
+
"item": "line-height",
|
|
3080
|
+
"subitem": "relative",
|
|
3081
|
+
"state": "base",
|
|
3082
|
+
"value": "100%",
|
|
3083
|
+
"description": "1",
|
|
3084
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
3085
|
+
"isSource": true,
|
|
3086
|
+
"key": "{semantic.font.line-height.relative.base}",
|
|
3087
|
+
"name": "calcite-semantic-font-line-height-relative-base",
|
|
3088
|
+
"path": ["semantic", "font", "line-height", "relative", "base"],
|
|
3089
|
+
"comment": "1",
|
|
3090
|
+
"names": {
|
|
3091
|
+
"scss": "$calcite-font-line-height-relative-base",
|
|
3092
|
+
"css": "var(--calcite-font-line-height-relative-base)",
|
|
3093
|
+
"js": "semantic.font.line-height.relative.base",
|
|
3094
|
+
"docs": "semantic.font.line-height.relative.base",
|
|
3095
|
+
"es6": "calciteFontLineHeightRelativeBase"
|
|
3096
|
+
},
|
|
3097
|
+
"calcite-schema": {
|
|
3098
|
+
"system": "calcite",
|
|
3099
|
+
"tier": "semantic",
|
|
3100
|
+
"type": "lineHeight"
|
|
3101
|
+
}
|
|
3102
|
+
},
|
|
3103
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
3104
|
+
"isSource": true,
|
|
3105
|
+
"name": "Font Line Height Relative Base",
|
|
3106
|
+
"path": ["semantic", "font", "line-height", "relative", "base"],
|
|
2917
3107
|
"comment": "1"
|
|
2918
3108
|
},
|
|
2919
3109
|
{
|
package/dist/docs/light.json
CHANGED
package/dist/docs/semantic.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1758306153956,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.border.width.none}",
|
|
@@ -1065,11 +1065,161 @@
|
|
|
1065
1065
|
"name": "Font Line Height Fixed Xl",
|
|
1066
1066
|
"path": ["semantic", "font", "line-height", "fixed", "xl"]
|
|
1067
1067
|
},
|
|
1068
|
+
{
|
|
1069
|
+
"key": "{semantic.font.line-height.fixed.2xl}",
|
|
1070
|
+
"value": "32px",
|
|
1071
|
+
"type": "lineHeight",
|
|
1072
|
+
"attributes": {
|
|
1073
|
+
"category": "font",
|
|
1074
|
+
"group": "line-height",
|
|
1075
|
+
"kind": "fixed",
|
|
1076
|
+
"type": "font",
|
|
1077
|
+
"item": "line-height",
|
|
1078
|
+
"subitem": "fixed",
|
|
1079
|
+
"state": "2xl",
|
|
1080
|
+
"names": {
|
|
1081
|
+
"scss": "$calcite-font-line-height-fixed-2xl",
|
|
1082
|
+
"css": "var(--calcite-font-line-height-fixed-2xl)",
|
|
1083
|
+
"js": "semantic.font.line-height.fixed.2xl",
|
|
1084
|
+
"docs": "semantic.font.line-height.fixed.2xl",
|
|
1085
|
+
"es6": "calciteFontLineHeightFixed2xl"
|
|
1086
|
+
},
|
|
1087
|
+
"calcite-schema": {
|
|
1088
|
+
"system": "calcite",
|
|
1089
|
+
"tier": "semantic",
|
|
1090
|
+
"type": "lineHeight"
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
1094
|
+
"isSource": true,
|
|
1095
|
+
"name": "Font Line Height Fixed 2xl",
|
|
1096
|
+
"path": ["semantic", "font", "line-height", "fixed", "2xl"]
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"key": "{semantic.font.line-height.fixed.3xl}",
|
|
1100
|
+
"value": "40px",
|
|
1101
|
+
"type": "lineHeight",
|
|
1102
|
+
"attributes": {
|
|
1103
|
+
"category": "font",
|
|
1104
|
+
"group": "line-height",
|
|
1105
|
+
"kind": "fixed",
|
|
1106
|
+
"type": "font",
|
|
1107
|
+
"item": "line-height",
|
|
1108
|
+
"subitem": "fixed",
|
|
1109
|
+
"state": "3xl",
|
|
1110
|
+
"names": {
|
|
1111
|
+
"scss": "$calcite-font-line-height-fixed-3xl",
|
|
1112
|
+
"css": "var(--calcite-font-line-height-fixed-3xl)",
|
|
1113
|
+
"js": "semantic.font.line-height.fixed.3xl",
|
|
1114
|
+
"docs": "semantic.font.line-height.fixed.3xl",
|
|
1115
|
+
"es6": "calciteFontLineHeightFixed3xl"
|
|
1116
|
+
},
|
|
1117
|
+
"calcite-schema": {
|
|
1118
|
+
"system": "calcite",
|
|
1119
|
+
"tier": "semantic",
|
|
1120
|
+
"type": "lineHeight"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
1124
|
+
"isSource": true,
|
|
1125
|
+
"name": "Font Line Height Fixed 3xl",
|
|
1126
|
+
"path": ["semantic", "font", "line-height", "fixed", "3xl"]
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"key": "{semantic.font.line-height.fixed.4xl}",
|
|
1130
|
+
"value": "48px",
|
|
1131
|
+
"type": "lineHeight",
|
|
1132
|
+
"attributes": {
|
|
1133
|
+
"category": "font",
|
|
1134
|
+
"group": "line-height",
|
|
1135
|
+
"kind": "fixed",
|
|
1136
|
+
"type": "font",
|
|
1137
|
+
"item": "line-height",
|
|
1138
|
+
"subitem": "fixed",
|
|
1139
|
+
"state": "4xl",
|
|
1140
|
+
"names": {
|
|
1141
|
+
"scss": "$calcite-font-line-height-fixed-4xl",
|
|
1142
|
+
"css": "var(--calcite-font-line-height-fixed-4xl)",
|
|
1143
|
+
"js": "semantic.font.line-height.fixed.4xl",
|
|
1144
|
+
"docs": "semantic.font.line-height.fixed.4xl",
|
|
1145
|
+
"es6": "calciteFontLineHeightFixed4xl"
|
|
1146
|
+
},
|
|
1147
|
+
"calcite-schema": {
|
|
1148
|
+
"system": "calcite",
|
|
1149
|
+
"tier": "semantic",
|
|
1150
|
+
"type": "lineHeight"
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
1154
|
+
"isSource": true,
|
|
1155
|
+
"name": "Font Line Height Fixed 4xl",
|
|
1156
|
+
"path": ["semantic", "font", "line-height", "fixed", "4xl"]
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"key": "{semantic.font.line-height.fixed.5xl}",
|
|
1160
|
+
"value": "64px",
|
|
1161
|
+
"type": "lineHeight",
|
|
1162
|
+
"attributes": {
|
|
1163
|
+
"category": "font",
|
|
1164
|
+
"group": "line-height",
|
|
1165
|
+
"kind": "fixed",
|
|
1166
|
+
"type": "font",
|
|
1167
|
+
"item": "line-height",
|
|
1168
|
+
"subitem": "fixed",
|
|
1169
|
+
"state": "5xl",
|
|
1170
|
+
"names": {
|
|
1171
|
+
"scss": "$calcite-font-line-height-fixed-5xl",
|
|
1172
|
+
"css": "var(--calcite-font-line-height-fixed-5xl)",
|
|
1173
|
+
"js": "semantic.font.line-height.fixed.5xl",
|
|
1174
|
+
"docs": "semantic.font.line-height.fixed.5xl",
|
|
1175
|
+
"es6": "calciteFontLineHeightFixed5xl"
|
|
1176
|
+
},
|
|
1177
|
+
"calcite-schema": {
|
|
1178
|
+
"system": "calcite",
|
|
1179
|
+
"tier": "semantic",
|
|
1180
|
+
"type": "lineHeight"
|
|
1181
|
+
}
|
|
1182
|
+
},
|
|
1183
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
1184
|
+
"isSource": true,
|
|
1185
|
+
"name": "Font Line Height Fixed 5xl",
|
|
1186
|
+
"path": ["semantic", "font", "line-height", "fixed", "5xl"]
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"key": "{semantic.font.line-height.fixed.6xl}",
|
|
1190
|
+
"value": "80px",
|
|
1191
|
+
"type": "lineHeight",
|
|
1192
|
+
"attributes": {
|
|
1193
|
+
"category": "font",
|
|
1194
|
+
"group": "line-height",
|
|
1195
|
+
"kind": "fixed",
|
|
1196
|
+
"type": "font",
|
|
1197
|
+
"item": "line-height",
|
|
1198
|
+
"subitem": "fixed",
|
|
1199
|
+
"state": "6xl",
|
|
1200
|
+
"names": {
|
|
1201
|
+
"scss": "$calcite-font-line-height-fixed-6xl",
|
|
1202
|
+
"css": "var(--calcite-font-line-height-fixed-6xl)",
|
|
1203
|
+
"js": "semantic.font.line-height.fixed.6xl",
|
|
1204
|
+
"docs": "semantic.font.line-height.fixed.6xl",
|
|
1205
|
+
"es6": "calciteFontLineHeightFixed6xl"
|
|
1206
|
+
},
|
|
1207
|
+
"calcite-schema": {
|
|
1208
|
+
"system": "calcite",
|
|
1209
|
+
"tier": "semantic",
|
|
1210
|
+
"type": "lineHeight"
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1213
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
1214
|
+
"isSource": true,
|
|
1215
|
+
"name": "Font Line Height Fixed 6xl",
|
|
1216
|
+
"path": ["semantic", "font", "line-height", "fixed", "6xl"]
|
|
1217
|
+
},
|
|
1068
1218
|
{
|
|
1069
1219
|
"key": "{semantic.font.line-height.relative.default}",
|
|
1070
|
-
"value": "
|
|
1220
|
+
"value": "normal",
|
|
1071
1221
|
"type": "lineHeight",
|
|
1072
|
-
"description": "
|
|
1222
|
+
"description": "normal",
|
|
1073
1223
|
"attributes": {
|
|
1074
1224
|
"category": "font",
|
|
1075
1225
|
"group": "line-height",
|
|
@@ -1078,14 +1228,14 @@
|
|
|
1078
1228
|
"item": "line-height",
|
|
1079
1229
|
"subitem": "relative",
|
|
1080
1230
|
"state": "default",
|
|
1081
|
-
"value": "
|
|
1082
|
-
"description": "
|
|
1231
|
+
"value": "normal",
|
|
1232
|
+
"description": "normal",
|
|
1083
1233
|
"filePath": "src/tokens/semantic/font.json",
|
|
1084
1234
|
"isSource": true,
|
|
1085
1235
|
"key": "{semantic.font.line-height.relative.default}",
|
|
1086
1236
|
"name": "calcite-semantic-font-line-height-relative-default",
|
|
1087
1237
|
"path": ["semantic", "font", "line-height", "relative", "default"],
|
|
1088
|
-
"comment": "
|
|
1238
|
+
"comment": "normal",
|
|
1089
1239
|
"names": {
|
|
1090
1240
|
"scss": "$calcite-font-line-height-relative",
|
|
1091
1241
|
"css": "var(--calcite-font-line-height-relative)",
|
|
@@ -1103,6 +1253,46 @@
|
|
|
1103
1253
|
"isSource": true,
|
|
1104
1254
|
"name": "Font Line Height Relative",
|
|
1105
1255
|
"path": ["semantic", "font", "line-height", "relative", "default"],
|
|
1256
|
+
"comment": "normal"
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"key": "{semantic.font.line-height.relative.base}",
|
|
1260
|
+
"value": "1",
|
|
1261
|
+
"type": "lineHeight",
|
|
1262
|
+
"description": "1",
|
|
1263
|
+
"attributes": {
|
|
1264
|
+
"category": "font",
|
|
1265
|
+
"group": "line-height",
|
|
1266
|
+
"kind": "relative",
|
|
1267
|
+
"type": "lineHeight",
|
|
1268
|
+
"item": "line-height",
|
|
1269
|
+
"subitem": "relative",
|
|
1270
|
+
"state": "base",
|
|
1271
|
+
"value": "100%",
|
|
1272
|
+
"description": "1",
|
|
1273
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
1274
|
+
"isSource": true,
|
|
1275
|
+
"key": "{semantic.font.line-height.relative.base}",
|
|
1276
|
+
"name": "calcite-semantic-font-line-height-relative-base",
|
|
1277
|
+
"path": ["semantic", "font", "line-height", "relative", "base"],
|
|
1278
|
+
"comment": "1",
|
|
1279
|
+
"names": {
|
|
1280
|
+
"scss": "$calcite-font-line-height-relative-base",
|
|
1281
|
+
"css": "var(--calcite-font-line-height-relative-base)",
|
|
1282
|
+
"js": "semantic.font.line-height.relative.base",
|
|
1283
|
+
"docs": "semantic.font.line-height.relative.base",
|
|
1284
|
+
"es6": "calciteFontLineHeightRelativeBase"
|
|
1285
|
+
},
|
|
1286
|
+
"calcite-schema": {
|
|
1287
|
+
"system": "calcite",
|
|
1288
|
+
"tier": "semantic",
|
|
1289
|
+
"type": "lineHeight"
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
1292
|
+
"filePath": "src/tokens/semantic/font.json",
|
|
1293
|
+
"isSource": true,
|
|
1294
|
+
"name": "Font Line Height Relative Base",
|
|
1295
|
+
"path": ["semantic", "font", "line-height", "relative", "base"],
|
|
1106
1296
|
"comment": "1"
|
|
1107
1297
|
},
|
|
1108
1298
|
{
|
package/dist/es6/core.d.ts
CHANGED
|
@@ -159,6 +159,8 @@ export const calciteColorLowSaturationVioletLVv060: string;
|
|
|
159
159
|
export const calciteColorLowSaturationVioletLVv070: string;
|
|
160
160
|
export const calciteColorLowSaturationVioletLVv080: string;
|
|
161
161
|
export const calciteColorLowSaturationVioletLVv090: string;
|
|
162
|
+
export const calciteColorLowSaturationVioletLVv100: string;
|
|
163
|
+
/** deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead */
|
|
162
164
|
export const calciteColorLowSaturationVioletLVv1000: string;
|
|
163
165
|
export const calciteColorMediumSaturationBlueMBb010: string;
|
|
164
166
|
export const calciteColorMediumSaturationBlueMBb020: string;
|
|
@@ -617,6 +619,7 @@ export const calciteSizeRelative150: string;
|
|
|
617
619
|
export const calciteSizeRelative162: string;
|
|
618
620
|
export const calciteSizeRelative200: string;
|
|
619
621
|
export const calciteSizeRelativeAuto: string;
|
|
622
|
+
export const calciteSizeRelativeNormal: string;
|
|
620
623
|
export const calciteZIndex0: string;
|
|
621
624
|
export const calciteZIndex1: string;
|
|
622
625
|
export const calciteZIndex3: string;
|