@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/es6/core.js
CHANGED
|
@@ -159,7 +159,8 @@ export const calciteColorLowSaturationVioletLVv060 = "#8d84a6";
|
|
|
159
159
|
export const calciteColorLowSaturationVioletLVv070 = "#6f6783";
|
|
160
160
|
export const calciteColorLowSaturationVioletLVv080 = "#504b60";
|
|
161
161
|
export const calciteColorLowSaturationVioletLVv090 = "#322e3d";
|
|
162
|
-
export const
|
|
162
|
+
export const calciteColorLowSaturationVioletLVv100 = "#13111a";
|
|
163
|
+
export const calciteColorLowSaturationVioletLVv1000 = "#13111a"; // deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead
|
|
163
164
|
export const calciteColorMediumSaturationBlueMBb010 = "#dfeffa";
|
|
164
165
|
export const calciteColorMediumSaturationBlueMBb020 = "#c8e3f5";
|
|
165
166
|
export const calciteColorMediumSaturationBlueMBb030 = "#b1d8f1";
|
|
@@ -598,6 +599,7 @@ export const calciteSizeRelative150 = "150%";
|
|
|
598
599
|
export const calciteSizeRelative162 = "162.5%";
|
|
599
600
|
export const calciteSizeRelative200 = "200%";
|
|
600
601
|
export const calciteSizeRelativeAuto = "auto";
|
|
602
|
+
export const calciteSizeRelativeNormal = "normal";
|
|
601
603
|
export const calciteZIndex0 = "-999999";
|
|
602
604
|
export const calciteZIndex1 = "1";
|
|
603
605
|
export const calciteZIndex3 = "300";
|
package/dist/es6/global.d.ts
CHANGED
|
@@ -125,8 +125,15 @@ export const calciteFontLineHeightFixedSm: string;
|
|
|
125
125
|
export const calciteFontLineHeightFixedBase: string;
|
|
126
126
|
export const calciteFontLineHeightFixedLg: string;
|
|
127
127
|
export const calciteFontLineHeightFixedXl: string;
|
|
128
|
-
|
|
128
|
+
export const calciteFontLineHeightFixed2xl: string;
|
|
129
|
+
export const calciteFontLineHeightFixed3xl: string;
|
|
130
|
+
export const calciteFontLineHeightFixed4xl: string;
|
|
131
|
+
export const calciteFontLineHeightFixed5xl: string;
|
|
132
|
+
export const calciteFontLineHeightFixed6xl: string;
|
|
133
|
+
/** normal */
|
|
129
134
|
export const calciteFontLineHeightRelative: string;
|
|
135
|
+
/** 1 */
|
|
136
|
+
export const calciteFontLineHeightRelativeBase: string;
|
|
130
137
|
/** 1.25 */
|
|
131
138
|
export const calciteFontLineHeightRelativeTight: string;
|
|
132
139
|
/** 1.375 */
|
package/dist/es6/global.js
CHANGED
|
@@ -165,7 +165,13 @@ export const calciteFontLineHeightFixedSm = "12px";
|
|
|
165
165
|
export const calciteFontLineHeightFixedBase = "16px";
|
|
166
166
|
export const calciteFontLineHeightFixedLg = "20px";
|
|
167
167
|
export const calciteFontLineHeightFixedXl = "24px";
|
|
168
|
-
export const
|
|
168
|
+
export const calciteFontLineHeightFixed2xl = "32px";
|
|
169
|
+
export const calciteFontLineHeightFixed3xl = "40px";
|
|
170
|
+
export const calciteFontLineHeightFixed4xl = "48px";
|
|
171
|
+
export const calciteFontLineHeightFixed5xl = "64px";
|
|
172
|
+
export const calciteFontLineHeightFixed6xl = "80px";
|
|
173
|
+
export const calciteFontLineHeightRelative = "normal"; // normal
|
|
174
|
+
export const calciteFontLineHeightRelativeBase = "1"; // 1
|
|
169
175
|
export const calciteFontLineHeightRelativeTight = "1.25"; // 1.25
|
|
170
176
|
export const calciteFontLineHeightRelativeSnug = "1.375"; // 1.375
|
|
171
177
|
export const calciteFontLineHeightRelativeNormal = "1.5"; // 1.5
|
package/dist/es6/semantic.d.ts
CHANGED
|
@@ -47,8 +47,15 @@ export const calciteFontLineHeightFixedSm: string;
|
|
|
47
47
|
export const calciteFontLineHeightFixedBase: string;
|
|
48
48
|
export const calciteFontLineHeightFixedLg: string;
|
|
49
49
|
export const calciteFontLineHeightFixedXl: string;
|
|
50
|
-
|
|
50
|
+
export const calciteFontLineHeightFixed2xl: string;
|
|
51
|
+
export const calciteFontLineHeightFixed3xl: string;
|
|
52
|
+
export const calciteFontLineHeightFixed4xl: string;
|
|
53
|
+
export const calciteFontLineHeightFixed5xl: string;
|
|
54
|
+
export const calciteFontLineHeightFixed6xl: string;
|
|
55
|
+
/** normal */
|
|
51
56
|
export const calciteFontLineHeightRelative: string;
|
|
57
|
+
/** 1 */
|
|
58
|
+
export const calciteFontLineHeightRelativeBase: string;
|
|
52
59
|
/** 1.25 */
|
|
53
60
|
export const calciteFontLineHeightRelativeTight: string;
|
|
54
61
|
/** 1.375 */
|
package/dist/es6/semantic.js
CHANGED
|
@@ -49,7 +49,13 @@ export const calciteFontLineHeightFixedSm = "12px";
|
|
|
49
49
|
export const calciteFontLineHeightFixedBase = "16px";
|
|
50
50
|
export const calciteFontLineHeightFixedLg = "20px";
|
|
51
51
|
export const calciteFontLineHeightFixedXl = "24px";
|
|
52
|
-
export const
|
|
52
|
+
export const calciteFontLineHeightFixed2xl = "32px";
|
|
53
|
+
export const calciteFontLineHeightFixed3xl = "40px";
|
|
54
|
+
export const calciteFontLineHeightFixed4xl = "48px";
|
|
55
|
+
export const calciteFontLineHeightFixed5xl = "64px";
|
|
56
|
+
export const calciteFontLineHeightFixed6xl = "80px";
|
|
57
|
+
export const calciteFontLineHeightRelative = "normal"; // normal
|
|
58
|
+
export const calciteFontLineHeightRelativeBase = "1"; // 1
|
|
53
59
|
export const calciteFontLineHeightRelativeTight = "1.25"; // 1.25
|
|
54
60
|
export const calciteFontLineHeightRelativeSnug = "1.375"; // 1.375
|
|
55
61
|
export const calciteFontLineHeightRelativeNormal = "1.5"; // 1.5
|
package/dist/js/core.d.ts
CHANGED
|
@@ -202,6 +202,7 @@ declare const tokens: {
|
|
|
202
202
|
"l-vv-070": DesignToken;
|
|
203
203
|
"l-vv-080": DesignToken;
|
|
204
204
|
"l-vv-090": DesignToken;
|
|
205
|
+
"l-vv-100": DesignToken;
|
|
205
206
|
"l-vv-1000": DesignToken;
|
|
206
207
|
};
|
|
207
208
|
};
|
|
@@ -724,6 +725,7 @@ declare const tokens: {
|
|
|
724
725
|
"162": DesignToken;
|
|
725
726
|
"200": DesignToken;
|
|
726
727
|
auto: DesignToken;
|
|
728
|
+
normal: DesignToken;
|
|
727
729
|
};
|
|
728
730
|
};
|
|
729
731
|
"z-index": {
|
package/dist/js/core.js
CHANGED
|
@@ -6055,10 +6055,50 @@ export default {
|
|
|
6055
6055
|
name: "Color Low Saturation Violet L Vv 090",
|
|
6056
6056
|
path: ["core", "color", "low-saturation", "violet", "l-vv-090"],
|
|
6057
6057
|
},
|
|
6058
|
+
"l-vv-100": {
|
|
6059
|
+
key: "{core.color.low-saturation.violet.l-vv-100}",
|
|
6060
|
+
value: "#13111a",
|
|
6061
|
+
type: "color",
|
|
6062
|
+
attributes: {
|
|
6063
|
+
category: "color",
|
|
6064
|
+
group: "low-saturation",
|
|
6065
|
+
type: "color",
|
|
6066
|
+
item: "low-saturation",
|
|
6067
|
+
subitem: "violet",
|
|
6068
|
+
state: "l-vv-100",
|
|
6069
|
+
names: {
|
|
6070
|
+
scss: "$calcite-color-low-saturation-violet-l-vv-100",
|
|
6071
|
+
css: "var(--calcite-color-low-saturation-violet-l-vv-100)",
|
|
6072
|
+
js: "core.color.low-saturation.violet.l-vv-100",
|
|
6073
|
+
docs: "core.color.low-saturation.violet.l-vv-100",
|
|
6074
|
+
es6: "calciteColorLowSaturationVioletLVv100",
|
|
6075
|
+
},
|
|
6076
|
+
"calcite-schema": {
|
|
6077
|
+
system: "calcite",
|
|
6078
|
+
tier: "core",
|
|
6079
|
+
type: "color",
|
|
6080
|
+
},
|
|
6081
|
+
},
|
|
6082
|
+
filePath: "src/tokens/core/color.json",
|
|
6083
|
+
isSource: false,
|
|
6084
|
+
original: {
|
|
6085
|
+
value: "#13111a",
|
|
6086
|
+
type: "color",
|
|
6087
|
+
attributes: {
|
|
6088
|
+
category: "color",
|
|
6089
|
+
group: "low-saturation",
|
|
6090
|
+
},
|
|
6091
|
+
key: "{core.color.low-saturation.violet.l-vv-100}",
|
|
6092
|
+
},
|
|
6093
|
+
name: "Color Low Saturation Violet L Vv 100",
|
|
6094
|
+
path: ["core", "color", "low-saturation", "violet", "l-vv-100"],
|
|
6095
|
+
},
|
|
6058
6096
|
"l-vv-1000": {
|
|
6059
6097
|
key: "{core.color.low-saturation.violet.l-vv-1000}",
|
|
6060
6098
|
value: "#13111a",
|
|
6061
6099
|
type: "color",
|
|
6100
|
+
description:
|
|
6101
|
+
"deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
6062
6102
|
attributes: {
|
|
6063
6103
|
category: "color",
|
|
6064
6104
|
group: "low-saturation",
|
|
@@ -6066,6 +6106,16 @@ export default {
|
|
|
6066
6106
|
item: "low-saturation",
|
|
6067
6107
|
subitem: "violet",
|
|
6068
6108
|
state: "l-vv-1000",
|
|
6109
|
+
value: "#13111a",
|
|
6110
|
+
description:
|
|
6111
|
+
"deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
6112
|
+
filePath: "src/tokens/core/color.json",
|
|
6113
|
+
isSource: false,
|
|
6114
|
+
key: "{core.color.low-saturation.violet.l-vv-1000}",
|
|
6115
|
+
name: "calcite-core-color-low-saturation-violet-l-vv-1000",
|
|
6116
|
+
path: ["core", "color", "low-saturation", "violet", "l-vv-1000"],
|
|
6117
|
+
comment:
|
|
6118
|
+
"deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
6069
6119
|
names: {
|
|
6070
6120
|
scss: "$calcite-color-low-saturation-violet-l-vv-1000",
|
|
6071
6121
|
css: "var(--calcite-color-low-saturation-violet-l-vv-1000)",
|
|
@@ -6084,6 +6134,8 @@ export default {
|
|
|
6084
6134
|
original: {
|
|
6085
6135
|
value: "#13111a",
|
|
6086
6136
|
type: "color",
|
|
6137
|
+
description:
|
|
6138
|
+
"deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
6087
6139
|
attributes: {
|
|
6088
6140
|
category: "color",
|
|
6089
6141
|
group: "low-saturation",
|
|
@@ -6092,6 +6144,8 @@ export default {
|
|
|
6092
6144
|
},
|
|
6093
6145
|
name: "Color Low Saturation Violet L Vv 1000",
|
|
6094
6146
|
path: ["core", "color", "low-saturation", "violet", "l-vv-1000"],
|
|
6147
|
+
comment:
|
|
6148
|
+
"deprecated, use --calcite-color-low-saturation-violet-l-vv-100 instead",
|
|
6095
6149
|
},
|
|
6096
6150
|
},
|
|
6097
6151
|
},
|
|
@@ -22239,6 +22293,41 @@ export default {
|
|
|
22239
22293
|
name: "Size Relative Auto",
|
|
22240
22294
|
path: ["core", "size", "relative", "auto"],
|
|
22241
22295
|
},
|
|
22296
|
+
normal: {
|
|
22297
|
+
key: "{core.size.relative.normal}",
|
|
22298
|
+
value: "normal",
|
|
22299
|
+
type: "dimension",
|
|
22300
|
+
attributes: {
|
|
22301
|
+
category: "size",
|
|
22302
|
+
type: "size",
|
|
22303
|
+
item: "relative",
|
|
22304
|
+
subitem: "normal",
|
|
22305
|
+
names: {
|
|
22306
|
+
scss: "$calcite-size-relative-normal",
|
|
22307
|
+
css: "var(--calcite-size-relative-normal)",
|
|
22308
|
+
js: "core.size.relative.normal",
|
|
22309
|
+
docs: "core.size.relative.normal",
|
|
22310
|
+
es6: "calciteSizeRelativeNormal",
|
|
22311
|
+
},
|
|
22312
|
+
"calcite-schema": {
|
|
22313
|
+
system: "calcite",
|
|
22314
|
+
tier: "core",
|
|
22315
|
+
type: "dimension",
|
|
22316
|
+
},
|
|
22317
|
+
},
|
|
22318
|
+
filePath: "src/tokens/core/size.json",
|
|
22319
|
+
isSource: false,
|
|
22320
|
+
original: {
|
|
22321
|
+
value: "normal",
|
|
22322
|
+
type: "dimension",
|
|
22323
|
+
attributes: {
|
|
22324
|
+
category: "size",
|
|
22325
|
+
},
|
|
22326
|
+
key: "{core.size.relative.normal}",
|
|
22327
|
+
},
|
|
22328
|
+
name: "Size Relative Normal",
|
|
22329
|
+
path: ["core", "size", "relative", "normal"],
|
|
22330
|
+
},
|
|
22242
22331
|
},
|
|
22243
22332
|
},
|
|
22244
22333
|
"z-index": {
|
package/dist/js/global.d.ts
CHANGED
|
@@ -172,9 +172,15 @@ declare const tokens: {
|
|
|
172
172
|
base: DesignToken;
|
|
173
173
|
lg: DesignToken;
|
|
174
174
|
xl: DesignToken;
|
|
175
|
+
"2xl": DesignToken;
|
|
176
|
+
"3xl": DesignToken;
|
|
177
|
+
"4xl": DesignToken;
|
|
178
|
+
"5xl": DesignToken;
|
|
179
|
+
"6xl": DesignToken;
|
|
175
180
|
};
|
|
176
181
|
relative: {
|
|
177
182
|
default: DesignToken;
|
|
183
|
+
base: DesignToken;
|
|
178
184
|
tight: DesignToken;
|
|
179
185
|
snug: DesignToken;
|
|
180
186
|
normal: DesignToken;
|
package/dist/js/global.js
CHANGED
|
@@ -4021,13 +4021,213 @@ export default {
|
|
|
4021
4021
|
name: "Font Line Height Fixed Xl",
|
|
4022
4022
|
path: ["semantic", "font", "line-height", "fixed", "xl"],
|
|
4023
4023
|
},
|
|
4024
|
+
"2xl": {
|
|
4025
|
+
key: "{semantic.font.line-height.fixed.2xl}",
|
|
4026
|
+
value: "32px",
|
|
4027
|
+
type: "lineHeight",
|
|
4028
|
+
attributes: {
|
|
4029
|
+
category: "font",
|
|
4030
|
+
group: "line-height",
|
|
4031
|
+
kind: "fixed",
|
|
4032
|
+
type: "font",
|
|
4033
|
+
item: "line-height",
|
|
4034
|
+
subitem: "fixed",
|
|
4035
|
+
state: "2xl",
|
|
4036
|
+
names: {
|
|
4037
|
+
scss: "$calcite-font-line-height-fixed-2xl",
|
|
4038
|
+
css: "var(--calcite-font-line-height-fixed-2xl)",
|
|
4039
|
+
js: "semantic.font.line-height.fixed.2xl",
|
|
4040
|
+
docs: "semantic.font.line-height.fixed.2xl",
|
|
4041
|
+
es6: "calciteFontLineHeightFixed2xl",
|
|
4042
|
+
},
|
|
4043
|
+
"calcite-schema": {
|
|
4044
|
+
system: "calcite",
|
|
4045
|
+
tier: "semantic",
|
|
4046
|
+
type: "lineHeight",
|
|
4047
|
+
},
|
|
4048
|
+
},
|
|
4049
|
+
filePath: "src/tokens/semantic/font.json",
|
|
4050
|
+
isSource: true,
|
|
4051
|
+
original: {
|
|
4052
|
+
value: "{core.size.default.32}",
|
|
4053
|
+
type: "lineHeight",
|
|
4054
|
+
attributes: {
|
|
4055
|
+
category: "font",
|
|
4056
|
+
group: "line-height",
|
|
4057
|
+
kind: "fixed",
|
|
4058
|
+
},
|
|
4059
|
+
key: "{semantic.font.line-height.fixed.2xl}",
|
|
4060
|
+
},
|
|
4061
|
+
name: "Font Line Height Fixed 2xl",
|
|
4062
|
+
path: ["semantic", "font", "line-height", "fixed", "2xl"],
|
|
4063
|
+
},
|
|
4064
|
+
"3xl": {
|
|
4065
|
+
key: "{semantic.font.line-height.fixed.3xl}",
|
|
4066
|
+
value: "40px",
|
|
4067
|
+
type: "lineHeight",
|
|
4068
|
+
attributes: {
|
|
4069
|
+
category: "font",
|
|
4070
|
+
group: "line-height",
|
|
4071
|
+
kind: "fixed",
|
|
4072
|
+
type: "font",
|
|
4073
|
+
item: "line-height",
|
|
4074
|
+
subitem: "fixed",
|
|
4075
|
+
state: "3xl",
|
|
4076
|
+
names: {
|
|
4077
|
+
scss: "$calcite-font-line-height-fixed-3xl",
|
|
4078
|
+
css: "var(--calcite-font-line-height-fixed-3xl)",
|
|
4079
|
+
js: "semantic.font.line-height.fixed.3xl",
|
|
4080
|
+
docs: "semantic.font.line-height.fixed.3xl",
|
|
4081
|
+
es6: "calciteFontLineHeightFixed3xl",
|
|
4082
|
+
},
|
|
4083
|
+
"calcite-schema": {
|
|
4084
|
+
system: "calcite",
|
|
4085
|
+
tier: "semantic",
|
|
4086
|
+
type: "lineHeight",
|
|
4087
|
+
},
|
|
4088
|
+
},
|
|
4089
|
+
filePath: "src/tokens/semantic/font.json",
|
|
4090
|
+
isSource: true,
|
|
4091
|
+
original: {
|
|
4092
|
+
value: "{core.size.default.40}",
|
|
4093
|
+
type: "lineHeight",
|
|
4094
|
+
attributes: {
|
|
4095
|
+
category: "font",
|
|
4096
|
+
group: "line-height",
|
|
4097
|
+
kind: "fixed",
|
|
4098
|
+
},
|
|
4099
|
+
key: "{semantic.font.line-height.fixed.3xl}",
|
|
4100
|
+
},
|
|
4101
|
+
name: "Font Line Height Fixed 3xl",
|
|
4102
|
+
path: ["semantic", "font", "line-height", "fixed", "3xl"],
|
|
4103
|
+
},
|
|
4104
|
+
"4xl": {
|
|
4105
|
+
key: "{semantic.font.line-height.fixed.4xl}",
|
|
4106
|
+
value: "48px",
|
|
4107
|
+
type: "lineHeight",
|
|
4108
|
+
attributes: {
|
|
4109
|
+
category: "font",
|
|
4110
|
+
group: "line-height",
|
|
4111
|
+
kind: "fixed",
|
|
4112
|
+
type: "font",
|
|
4113
|
+
item: "line-height",
|
|
4114
|
+
subitem: "fixed",
|
|
4115
|
+
state: "4xl",
|
|
4116
|
+
names: {
|
|
4117
|
+
scss: "$calcite-font-line-height-fixed-4xl",
|
|
4118
|
+
css: "var(--calcite-font-line-height-fixed-4xl)",
|
|
4119
|
+
js: "semantic.font.line-height.fixed.4xl",
|
|
4120
|
+
docs: "semantic.font.line-height.fixed.4xl",
|
|
4121
|
+
es6: "calciteFontLineHeightFixed4xl",
|
|
4122
|
+
},
|
|
4123
|
+
"calcite-schema": {
|
|
4124
|
+
system: "calcite",
|
|
4125
|
+
tier: "semantic",
|
|
4126
|
+
type: "lineHeight",
|
|
4127
|
+
},
|
|
4128
|
+
},
|
|
4129
|
+
filePath: "src/tokens/semantic/font.json",
|
|
4130
|
+
isSource: true,
|
|
4131
|
+
original: {
|
|
4132
|
+
value: "{core.size.default.48}",
|
|
4133
|
+
type: "lineHeight",
|
|
4134
|
+
attributes: {
|
|
4135
|
+
category: "font",
|
|
4136
|
+
group: "line-height",
|
|
4137
|
+
kind: "fixed",
|
|
4138
|
+
},
|
|
4139
|
+
key: "{semantic.font.line-height.fixed.4xl}",
|
|
4140
|
+
},
|
|
4141
|
+
name: "Font Line Height Fixed 4xl",
|
|
4142
|
+
path: ["semantic", "font", "line-height", "fixed", "4xl"],
|
|
4143
|
+
},
|
|
4144
|
+
"5xl": {
|
|
4145
|
+
key: "{semantic.font.line-height.fixed.5xl}",
|
|
4146
|
+
value: "64px",
|
|
4147
|
+
type: "lineHeight",
|
|
4148
|
+
attributes: {
|
|
4149
|
+
category: "font",
|
|
4150
|
+
group: "line-height",
|
|
4151
|
+
kind: "fixed",
|
|
4152
|
+
type: "font",
|
|
4153
|
+
item: "line-height",
|
|
4154
|
+
subitem: "fixed",
|
|
4155
|
+
state: "5xl",
|
|
4156
|
+
names: {
|
|
4157
|
+
scss: "$calcite-font-line-height-fixed-5xl",
|
|
4158
|
+
css: "var(--calcite-font-line-height-fixed-5xl)",
|
|
4159
|
+
js: "semantic.font.line-height.fixed.5xl",
|
|
4160
|
+
docs: "semantic.font.line-height.fixed.5xl",
|
|
4161
|
+
es6: "calciteFontLineHeightFixed5xl",
|
|
4162
|
+
},
|
|
4163
|
+
"calcite-schema": {
|
|
4164
|
+
system: "calcite",
|
|
4165
|
+
tier: "semantic",
|
|
4166
|
+
type: "lineHeight",
|
|
4167
|
+
},
|
|
4168
|
+
},
|
|
4169
|
+
filePath: "src/tokens/semantic/font.json",
|
|
4170
|
+
isSource: true,
|
|
4171
|
+
original: {
|
|
4172
|
+
value: "{core.size.default.64}",
|
|
4173
|
+
type: "lineHeight",
|
|
4174
|
+
attributes: {
|
|
4175
|
+
category: "font",
|
|
4176
|
+
group: "line-height",
|
|
4177
|
+
kind: "fixed",
|
|
4178
|
+
},
|
|
4179
|
+
key: "{semantic.font.line-height.fixed.5xl}",
|
|
4180
|
+
},
|
|
4181
|
+
name: "Font Line Height Fixed 5xl",
|
|
4182
|
+
path: ["semantic", "font", "line-height", "fixed", "5xl"],
|
|
4183
|
+
},
|
|
4184
|
+
"6xl": {
|
|
4185
|
+
key: "{semantic.font.line-height.fixed.6xl}",
|
|
4186
|
+
value: "80px",
|
|
4187
|
+
type: "lineHeight",
|
|
4188
|
+
attributes: {
|
|
4189
|
+
category: "font",
|
|
4190
|
+
group: "line-height",
|
|
4191
|
+
kind: "fixed",
|
|
4192
|
+
type: "font",
|
|
4193
|
+
item: "line-height",
|
|
4194
|
+
subitem: "fixed",
|
|
4195
|
+
state: "6xl",
|
|
4196
|
+
names: {
|
|
4197
|
+
scss: "$calcite-font-line-height-fixed-6xl",
|
|
4198
|
+
css: "var(--calcite-font-line-height-fixed-6xl)",
|
|
4199
|
+
js: "semantic.font.line-height.fixed.6xl",
|
|
4200
|
+
docs: "semantic.font.line-height.fixed.6xl",
|
|
4201
|
+
es6: "calciteFontLineHeightFixed6xl",
|
|
4202
|
+
},
|
|
4203
|
+
"calcite-schema": {
|
|
4204
|
+
system: "calcite",
|
|
4205
|
+
tier: "semantic",
|
|
4206
|
+
type: "lineHeight",
|
|
4207
|
+
},
|
|
4208
|
+
},
|
|
4209
|
+
filePath: "src/tokens/semantic/font.json",
|
|
4210
|
+
isSource: true,
|
|
4211
|
+
original: {
|
|
4212
|
+
value: "{core.size.default.80}",
|
|
4213
|
+
type: "lineHeight",
|
|
4214
|
+
attributes: {
|
|
4215
|
+
category: "font",
|
|
4216
|
+
group: "line-height",
|
|
4217
|
+
kind: "fixed",
|
|
4218
|
+
},
|
|
4219
|
+
key: "{semantic.font.line-height.fixed.6xl}",
|
|
4220
|
+
},
|
|
4221
|
+
name: "Font Line Height Fixed 6xl",
|
|
4222
|
+
path: ["semantic", "font", "line-height", "fixed", "6xl"],
|
|
4223
|
+
},
|
|
4024
4224
|
},
|
|
4025
4225
|
relative: {
|
|
4026
4226
|
default: {
|
|
4027
4227
|
key: "{semantic.font.line-height.relative.default}",
|
|
4028
|
-
value: "
|
|
4228
|
+
value: "normal",
|
|
4029
4229
|
type: "lineHeight",
|
|
4030
|
-
description: "
|
|
4230
|
+
description: "normal",
|
|
4031
4231
|
attributes: {
|
|
4032
4232
|
category: "font",
|
|
4033
4233
|
group: "line-height",
|
|
@@ -4036,14 +4236,14 @@ export default {
|
|
|
4036
4236
|
item: "line-height",
|
|
4037
4237
|
subitem: "relative",
|
|
4038
4238
|
state: "default",
|
|
4039
|
-
value: "
|
|
4040
|
-
description: "
|
|
4239
|
+
value: "normal",
|
|
4240
|
+
description: "normal",
|
|
4041
4241
|
filePath: "src/tokens/semantic/font.json",
|
|
4042
4242
|
isSource: true,
|
|
4043
4243
|
key: "{semantic.font.line-height.relative.default}",
|
|
4044
4244
|
name: "calcite-semantic-font-line-height-relative-default",
|
|
4045
4245
|
path: ["semantic", "font", "line-height", "relative", "default"],
|
|
4046
|
-
comment: "
|
|
4246
|
+
comment: "normal",
|
|
4047
4247
|
names: {
|
|
4048
4248
|
scss: "$calcite-font-line-height-relative",
|
|
4049
4249
|
css: "var(--calcite-font-line-height-relative)",
|
|
@@ -4060,9 +4260,9 @@ export default {
|
|
|
4060
4260
|
filePath: "src/tokens/semantic/font.json",
|
|
4061
4261
|
isSource: true,
|
|
4062
4262
|
original: {
|
|
4063
|
-
value: "{core.size.relative.
|
|
4263
|
+
value: "{core.size.relative.normal}",
|
|
4064
4264
|
type: "lineHeight",
|
|
4065
|
-
description: "
|
|
4265
|
+
description: "normal",
|
|
4066
4266
|
attributes: {
|
|
4067
4267
|
category: "font",
|
|
4068
4268
|
group: "line-height",
|
|
@@ -4072,6 +4272,57 @@ export default {
|
|
|
4072
4272
|
},
|
|
4073
4273
|
name: "Font Line Height Relative",
|
|
4074
4274
|
path: ["semantic", "font", "line-height", "relative", "default"],
|
|
4275
|
+
comment: "normal",
|
|
4276
|
+
},
|
|
4277
|
+
base: {
|
|
4278
|
+
key: "{semantic.font.line-height.relative.base}",
|
|
4279
|
+
value: "1",
|
|
4280
|
+
type: "lineHeight",
|
|
4281
|
+
description: "1",
|
|
4282
|
+
attributes: {
|
|
4283
|
+
category: "font",
|
|
4284
|
+
group: "line-height",
|
|
4285
|
+
kind: "relative",
|
|
4286
|
+
type: "lineHeight",
|
|
4287
|
+
item: "line-height",
|
|
4288
|
+
subitem: "relative",
|
|
4289
|
+
state: "base",
|
|
4290
|
+
value: "100%",
|
|
4291
|
+
description: "1",
|
|
4292
|
+
filePath: "src/tokens/semantic/font.json",
|
|
4293
|
+
isSource: true,
|
|
4294
|
+
key: "{semantic.font.line-height.relative.base}",
|
|
4295
|
+
name: "calcite-semantic-font-line-height-relative-base",
|
|
4296
|
+
path: ["semantic", "font", "line-height", "relative", "base"],
|
|
4297
|
+
comment: "1",
|
|
4298
|
+
names: {
|
|
4299
|
+
scss: "$calcite-font-line-height-relative-base",
|
|
4300
|
+
css: "var(--calcite-font-line-height-relative-base)",
|
|
4301
|
+
js: "semantic.font.line-height.relative.base",
|
|
4302
|
+
docs: "semantic.font.line-height.relative.base",
|
|
4303
|
+
es6: "calciteFontLineHeightRelativeBase",
|
|
4304
|
+
},
|
|
4305
|
+
"calcite-schema": {
|
|
4306
|
+
system: "calcite",
|
|
4307
|
+
tier: "semantic",
|
|
4308
|
+
type: "lineHeight",
|
|
4309
|
+
},
|
|
4310
|
+
},
|
|
4311
|
+
filePath: "src/tokens/semantic/font.json",
|
|
4312
|
+
isSource: true,
|
|
4313
|
+
original: {
|
|
4314
|
+
value: "{core.size.relative.100}",
|
|
4315
|
+
type: "lineHeight",
|
|
4316
|
+
description: "1",
|
|
4317
|
+
attributes: {
|
|
4318
|
+
category: "font",
|
|
4319
|
+
group: "line-height",
|
|
4320
|
+
kind: "relative",
|
|
4321
|
+
},
|
|
4322
|
+
key: "{semantic.font.line-height.relative.base}",
|
|
4323
|
+
},
|
|
4324
|
+
name: "Font Line Height Relative Base",
|
|
4325
|
+
path: ["semantic", "font", "line-height", "relative", "base"],
|
|
4075
4326
|
comment: "1",
|
|
4076
4327
|
},
|
|
4077
4328
|
tight: {
|
package/dist/js/semantic.d.ts
CHANGED
|
@@ -73,9 +73,15 @@ declare const tokens: {
|
|
|
73
73
|
base: DesignToken;
|
|
74
74
|
lg: DesignToken;
|
|
75
75
|
xl: DesignToken;
|
|
76
|
+
"2xl": DesignToken;
|
|
77
|
+
"3xl": DesignToken;
|
|
78
|
+
"4xl": DesignToken;
|
|
79
|
+
"5xl": DesignToken;
|
|
80
|
+
"6xl": DesignToken;
|
|
76
81
|
};
|
|
77
82
|
relative: {
|
|
78
83
|
default: DesignToken;
|
|
84
|
+
base: DesignToken;
|
|
79
85
|
tight: DesignToken;
|
|
80
86
|
snug: DesignToken;
|
|
81
87
|
normal: DesignToken;
|