@esri/calcite-design-tokens 2.0.0-rc.0 → 2.0.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/breakpoint.css +1 -1
- package/dist/css/classes.css +25 -25
- package/dist/css/core.css +82 -115
- package/dist/css/dark.css +27 -25
- package/dist/css/global.css +29 -36
- package/dist/css/index.css +105 -97
- package/dist/css/light.css +27 -25
- package/dist/docs/core.json +8134 -0
- package/dist/docs/global.json +6617 -0
- package/dist/es6/core.d.ts +286 -319
- package/dist/es6/core.js +287 -320
- package/dist/es6/global.d.ts +101 -106
- package/dist/es6/global.js +116 -121
- package/dist/js/core.d.ts +98 -143
- package/dist/js/core.js +5442 -6029
- package/dist/js/global.d.ts +65 -66
- package/dist/js/global.js +2173 -2081
- package/dist/scss/breakpoints.scss +1 -1
- package/dist/scss/core.scss +82 -115
- package/dist/scss/dark.scss +27 -25
- package/dist/scss/global.scss +94 -0
- package/dist/scss/index.scss +53 -49
- package/dist/scss/light.scss +27 -25
- package/dist/scss/mixins.scss +24 -24
- package/package.json +5 -26
package/dist/es6/global.d.ts
CHANGED
|
@@ -1,64 +1,57 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Sat, 02 Dec 2023 04:05:27 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export const calciteBorderRadius : string;
|
|
7
|
-
export const calciteBorderRadiusNone : string;
|
|
8
|
-
export const calciteBorderRadiusSharp : string;
|
|
9
|
-
export const calciteBorderRadiusRound : string;
|
|
10
|
-
export const calciteBorderRadiusCircular : string;
|
|
11
|
-
export const calciteBorderRadiusPill : string;
|
|
12
|
-
export const calciteBorderRadiusSm : string;
|
|
13
|
-
export const calciteBorderRadiusMd : string;
|
|
14
|
-
export const calciteBorderRadiusLg : string;
|
|
15
|
-
export const calciteBorderRadiusXl : string;
|
|
16
6
|
export const calciteBorderWidthNone : string;
|
|
17
7
|
export const calciteBorderWidthSm : string;
|
|
18
8
|
export const calciteBorderWidthMd : string;
|
|
19
9
|
export const calciteBorderWidthLg : string;
|
|
20
|
-
export const
|
|
21
|
-
export const
|
|
22
|
-
export const
|
|
10
|
+
export const calciteCornerRadius : string;
|
|
11
|
+
export const calciteCornerRadiusSharp : string;
|
|
12
|
+
export const calciteCornerRadiusRound : string;
|
|
13
|
+
export const calciteCornerRadiusPill : string;
|
|
14
|
+
export const calciteColorBackground : { light: string, dark: string };
|
|
15
|
+
export const calciteColorBackgroundNone : string;
|
|
16
|
+
export const calciteColorForeground1 : { light: string, dark: string };
|
|
17
|
+
export const calciteColorForeground2 : { light: string, dark: string };
|
|
18
|
+
export const calciteColorForeground3 : { light: string, dark: string };
|
|
19
|
+
export const calciteColorForegroundCurrent : { light: string, dark: string };
|
|
20
|
+
export const calciteColorTransparent : { light: string, dark: string };
|
|
21
|
+
export const calciteColorTransparentHover : { light: string, dark: string };
|
|
22
|
+
export const calciteColorTransparentPress : { light: string, dark: string };
|
|
23
|
+
export const calciteColorTransparentScrim : { light: string, dark: string };
|
|
24
|
+
export const calciteColorTransparentTint : { light: string, dark: string };
|
|
23
25
|
export const calciteColorBrand : { light: string, dark: string };
|
|
24
26
|
export const calciteColorBrandHover : { light: string, dark: string };
|
|
25
27
|
export const calciteColorBrandPress : { light: string, dark: string };
|
|
26
28
|
export const calciteColorBrandUnderline : { light: string, dark: string };
|
|
27
|
-
export const
|
|
28
|
-
export const
|
|
29
|
-
export const
|
|
30
|
-
export const
|
|
31
|
-
export const
|
|
32
|
-
export const
|
|
33
|
-
export const
|
|
34
|
-
export const
|
|
35
|
-
export const
|
|
36
|
-
export const
|
|
37
|
-
export const
|
|
38
|
-
export const
|
|
39
|
-
export const calciteColorText_2 : { light: string, dark: string };
|
|
40
|
-
export const calciteColorText_3 : { light: string, dark: string };
|
|
41
|
-
export const calciteColorTextInverse : { light: string, dark: string };
|
|
42
|
-
export const calciteColorTextLink : { light: string, dark: string };
|
|
43
|
-
export const calciteColorBorder_1 : { light: string, dark: string };
|
|
44
|
-
export const calciteColorBorder_2 : { light: string, dark: string };
|
|
45
|
-
export const calciteColorBorder_3 : { light: string, dark: string };
|
|
46
|
-
export const calciteColorBorderInput : { light: string, dark: string };
|
|
47
|
-
export const calciteColorInfo : { light: string, dark: string };
|
|
48
|
-
export const calciteColorInfoHover : { light: string, dark: string };
|
|
49
|
-
export const calciteColorInfoPress : { light: string, dark: string };
|
|
50
|
-
export const calciteColorSuccess : { light: string, dark: string };
|
|
51
|
-
export const calciteColorSuccessHover : { light: string, dark: string };
|
|
52
|
-
export const calciteColorSuccessPress : { light: string, dark: string };
|
|
53
|
-
export const calciteColorWarning : { light: string, dark: string };
|
|
54
|
-
export const calciteColorWarningHover : { light: string, dark: string };
|
|
55
|
-
export const calciteColorWarningPress : { light: string, dark: string };
|
|
56
|
-
export const calciteColorDanger : { light: string, dark: string };
|
|
57
|
-
export const calciteColorDangerHover : { light: string, dark: string };
|
|
58
|
-
export const calciteColorDangerPress : { light: string, dark: string };
|
|
29
|
+
export const calciteColorStatusInfo : { light: string, dark: string };
|
|
30
|
+
export const calciteColorStatusInfoHover : { light: string, dark: string };
|
|
31
|
+
export const calciteColorStatusInfoPress : { light: string, dark: string };
|
|
32
|
+
export const calciteColorStatusSuccess : { light: string, dark: string };
|
|
33
|
+
export const calciteColorStatusSuccessHover : { light: string, dark: string };
|
|
34
|
+
export const calciteColorStatusSuccessPress : { light: string, dark: string };
|
|
35
|
+
export const calciteColorStatusWarning : { light: string, dark: string };
|
|
36
|
+
export const calciteColorStatusWarningHover : { light: string, dark: string };
|
|
37
|
+
export const calciteColorStatusWarningPress : { light: string, dark: string };
|
|
38
|
+
export const calciteColorStatusDanger : { light: string, dark: string };
|
|
39
|
+
export const calciteColorStatusDangerHover : { light: string, dark: string };
|
|
40
|
+
export const calciteColorStatusDangerPress : { light: string, dark: string };
|
|
59
41
|
export const calciteColorInverse : { light: string, dark: string };
|
|
60
42
|
export const calciteColorInverseHover : { light: string, dark: string };
|
|
61
43
|
export const calciteColorInversePress : { light: string, dark: string };
|
|
44
|
+
export const calciteColorText1 : { light: string, dark: string };
|
|
45
|
+
export const calciteColorText2 : { light: string, dark: string };
|
|
46
|
+
export const calciteColorText3 : { light: string, dark: string };
|
|
47
|
+
export const calciteColorTextInverse : { light: string, dark: string };
|
|
48
|
+
export const calciteColorTextLink : { light: string, dark: string };
|
|
49
|
+
export const calciteColorBorder1 : { light: string, dark: string };
|
|
50
|
+
export const calciteColorBorder2 : { light: string, dark: string };
|
|
51
|
+
export const calciteColorBorder3 : { light: string, dark: string };
|
|
52
|
+
export const calciteColorBorderInput : { light: string, dark: string };
|
|
53
|
+
export const calciteColorBorderGhost : { light: string, dark: string };
|
|
54
|
+
export const calciteColorBorderWhite : { light: string, dark: string };
|
|
62
55
|
export const calciteContainerSizeHeightXxs : { min: string, max: string }; // Small handheld devices and mini-windows
|
|
63
56
|
export const calciteContainerSizeHeightXs : { min: string, max: string }; // Handheld devices
|
|
64
57
|
export const calciteContainerSizeHeightSm : { min: string, max: string }; // Small tablets
|
|
@@ -76,6 +69,7 @@ export const calciteContainerSizeGutter : string;
|
|
|
76
69
|
export const calciteContainerSizeContentFluid : string; // for fluid grid widths
|
|
77
70
|
export const calciteContainerSizeContentFixed : string; // only for lg breakpoint fixed grid width
|
|
78
71
|
export const calciteFontFamily : string;
|
|
72
|
+
export const calciteFontFamilyCode : string;
|
|
79
73
|
export const calciteFontWeightLight : string; // For Avenir Next World (secondary font family)
|
|
80
74
|
export const calciteFontWeightNormal : string; // For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"
|
|
81
75
|
export const calciteFontWeightRegular : string;
|
|
@@ -115,82 +109,83 @@ export const calciteOpacityHalf : string;
|
|
|
115
109
|
export const calciteOpacityDark : string;
|
|
116
110
|
export const calciteOpacityFull : string;
|
|
117
111
|
export const calciteOpacityDisabled : string;
|
|
112
|
+
export const calciteShadowNone : { x: string, y: string, blur: string, spread: string, color: string };
|
|
113
|
+
export const calciteShadowSm : { x: string, y: string, blur: string, spread: string, color: string }[];
|
|
114
|
+
export const calciteShadowMd : { x: string, y: string, blur: string, spread: string, color: string }[];
|
|
115
|
+
export const calciteSizePx : string;
|
|
118
116
|
export const calciteSizeXxxs : string;
|
|
119
117
|
export const calciteSizeXxs : string;
|
|
120
118
|
export const calciteSizeXs : string;
|
|
121
119
|
export const calciteSizeSm : string;
|
|
122
|
-
export const
|
|
123
|
-
export const calciteSizeMdSm : string;
|
|
120
|
+
export const calciteSizeSmPlus : string;
|
|
124
121
|
export const calciteSizeMd : string;
|
|
125
|
-
export const
|
|
126
|
-
export const calciteSizeLgMd : string;
|
|
122
|
+
export const calciteSizeMdPlus : string;
|
|
127
123
|
export const calciteSizeLg : string;
|
|
128
|
-
export const calciteSizeLgXl : string;
|
|
129
|
-
export const calciteSizeXlLg : string;
|
|
130
124
|
export const calciteSizeXl : string;
|
|
131
125
|
export const calciteSizeXxl : string;
|
|
132
126
|
export const calciteSizeXxxl : string;
|
|
133
|
-
export const
|
|
127
|
+
export const calciteSpacingPx : string;
|
|
134
128
|
export const calciteSpacingBase : string;
|
|
135
|
-
export const
|
|
136
|
-
export const calciteSpacingDouble : string;
|
|
129
|
+
export const calciteSpacingXxs : string;
|
|
137
130
|
export const calciteSpacingXs : string;
|
|
138
131
|
export const calciteSpacingSm : string;
|
|
139
132
|
export const calciteSpacingMd : string;
|
|
140
133
|
export const calciteSpacingLg : string;
|
|
141
134
|
export const calciteSpacingXl : string;
|
|
135
|
+
export const calciteSpacingXxl : string;
|
|
136
|
+
export const calciteSpacingXxxl : string;
|
|
142
137
|
export const calciteTypography : { fontFamily: string, fontSize: string, fontWeight: string, letterSpacing: string, lineHeight: string, paragraphSpacing: string, textCase: string, textDecoration: string };
|
|
143
|
-
export const
|
|
144
|
-
export const
|
|
145
|
-
export const
|
|
146
|
-
export const
|
|
147
|
-
export const
|
|
148
|
-
export const
|
|
149
|
-
export const
|
|
150
|
-
export const
|
|
151
|
-
export const
|
|
152
|
-
export const
|
|
153
|
-
export const
|
|
154
|
-
export const
|
|
155
|
-
export const
|
|
156
|
-
export const
|
|
157
|
-
export const
|
|
158
|
-
export const
|
|
159
|
-
export const
|
|
160
|
-
export const
|
|
161
|
-
export const
|
|
162
|
-
export const
|
|
163
|
-
export const
|
|
164
|
-
export const
|
|
165
|
-
export const
|
|
166
|
-
export const
|
|
167
|
-
export const
|
|
168
|
-
export const
|
|
169
|
-
export const
|
|
170
|
-
export const
|
|
171
|
-
export const
|
|
172
|
-
export const
|
|
173
|
-
export const
|
|
174
|
-
export const
|
|
175
|
-
export const
|
|
176
|
-
export const
|
|
177
|
-
export const
|
|
178
|
-
export const
|
|
179
|
-
export const
|
|
180
|
-
export const
|
|
181
|
-
export const
|
|
182
|
-
export const
|
|
183
|
-
export const
|
|
184
|
-
export const
|
|
185
|
-
export const
|
|
186
|
-
export const
|
|
187
|
-
export const
|
|
188
|
-
export const
|
|
189
|
-
export const
|
|
190
|
-
export const
|
|
191
|
-
export const
|
|
192
|
-
export const
|
|
193
|
-
export const
|
|
138
|
+
export const calciteTypographyLightMinus3h : { fontSize: string, fontWeight: string, lineHeight: string };
|
|
139
|
+
export const calciteTypographyLightMinus2h : { fontSize: string, fontWeight: string };
|
|
140
|
+
export const calciteTypographyLightMinus1h : { fontWeight: string };
|
|
141
|
+
export const calciteTypographyLight0h : { fontSize: string, fontWeight: string, lineHeight: string };
|
|
142
|
+
export const calciteTypographyLight1h : { fontSize: string, fontWeight: string, lineHeight: string };
|
|
143
|
+
export const calciteTypographyRegularMinus3h : { lineHeight: string, fontSize: string };
|
|
144
|
+
export const calciteTypographyRegularMinus2h : { fontSize: string };
|
|
145
|
+
export const calciteTypographyRegularMinus1h : { fontFamily: string, fontSize: string, fontWeight: string, letterSpacing: string, lineHeight: string, paragraphSpacing: string, textCase: string, textDecoration: string };
|
|
146
|
+
export const calciteTypographyRegular0h : { lineHeight: string, fontSize: string };
|
|
147
|
+
export const calciteTypographyRegular1h : { lineHeight: string, fontSize: string };
|
|
148
|
+
export const calciteTypographyMediumMinus3h : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
149
|
+
export const calciteTypographyMediumMinus2h : { fontWeight: string, fontSize: string };
|
|
150
|
+
export const calciteTypographyMediumMinus1h : { fontWeight: string };
|
|
151
|
+
export const calciteTypographyMedium0h : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
152
|
+
export const calciteTypographyMedium1h : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
153
|
+
export const calciteTypographyBoldMinus3h : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
154
|
+
export const calciteTypographyBoldMinus2h : { fontWeight: string, fontSize: string };
|
|
155
|
+
export const calciteTypographyBoldMinus1h : { fontWeight: string };
|
|
156
|
+
export const calciteTypographyBold0h : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
157
|
+
export const calciteTypographyBold1h : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
158
|
+
export const calciteTypographyWrapLight0 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
159
|
+
export const calciteTypographyWrapLight1 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
160
|
+
export const calciteTypographyWrapLight2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
161
|
+
export const calciteTypographyWrapLight3 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
162
|
+
export const calciteTypographyWrapLightMinus2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
163
|
+
export const calciteTypographyWrapLightMinus1 : { fontWeight: string, lineHeight: string };
|
|
164
|
+
export const calciteTypographyWrapRegular0 : { lineHeight: string, fontSize: string };
|
|
165
|
+
export const calciteTypographyWrapRegular1 : { lineHeight: string, fontSize: string };
|
|
166
|
+
export const calciteTypographyWrapRegular2 : { lineHeight: string, fontSize: string };
|
|
167
|
+
export const calciteTypographyWrapRegular3 : { lineHeight: string, fontSize: string };
|
|
168
|
+
export const calciteTypographyWrapRegularMinus2 : { lineHeight: string, fontSize: string };
|
|
169
|
+
export const calciteTypographyWrapRegularMinus1 : { lineHeight: string };
|
|
170
|
+
export const calciteTypographyWrapMedium0 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
171
|
+
export const calciteTypographyWrapMedium1 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
172
|
+
export const calciteTypographyWrapMedium2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
173
|
+
export const calciteTypographyWrapMedium3 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
174
|
+
export const calciteTypographyWrapMediumMinus2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
175
|
+
export const calciteTypographyWrapMediumMinus1 : { fontWeight: string, lineHeight: string };
|
|
176
|
+
export const calciteTypographyWrapBold0 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
177
|
+
export const calciteTypographyWrapBold1 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
178
|
+
export const calciteTypographyWrapBold2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
179
|
+
export const calciteTypographyWrapBold3 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
180
|
+
export const calciteTypographyWrapBoldMinus2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
181
|
+
export const calciteTypographyWrapBoldMinus1 : { fontWeight: string, lineHeight: string };
|
|
182
|
+
export const calciteTypographyHierarchyDisplay1 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
183
|
+
export const calciteTypographyHierarchyDisplay2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
184
|
+
export const calciteTypographyHierarchyHeading1 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
185
|
+
export const calciteTypographyHierarchyHeading2 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
186
|
+
export const calciteTypographyHierarchyHeading3 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
187
|
+
export const calciteTypographyHierarchyHeading4 : { fontWeight: string, lineHeight: string, fontSize: string };
|
|
188
|
+
export const calciteTypographyHierarchyHeading5 : { fontWeight: string, lineHeight: string };
|
|
194
189
|
export const calciteTypographyHierarchyBodySnug : { lineHeight: string };
|
|
195
190
|
export const calciteTypographyHierarchyBody : { fontFamily: string, fontSize: string, fontWeight: string, letterSpacing: string, lineHeight: string, paragraphSpacing: string, textCase: string, textDecoration: string };
|
|
196
191
|
export const calciteTypographyHierarchyOverline : { lineHeight: string, textCase: string, fontWeight: string };
|
package/dist/es6/global.js
CHANGED
|
@@ -1,64 +1,57 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Sat, 02 Dec 2023 04:05:27 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export const
|
|
7
|
-
export const calciteBorderRadiusNone = "0px";
|
|
8
|
-
export const calciteBorderRadiusSharp = "0px";
|
|
9
|
-
export const calciteBorderRadiusRound = "4px";
|
|
10
|
-
export const calciteBorderRadiusCircular = "50%";
|
|
11
|
-
export const calciteBorderRadiusPill = "100%";
|
|
12
|
-
export const calciteBorderRadiusSm = "4px";
|
|
13
|
-
export const calciteBorderRadiusMd = "12px";
|
|
14
|
-
export const calciteBorderRadiusLg = "16px";
|
|
15
|
-
export const calciteBorderRadiusXl = "24px";
|
|
16
|
-
export const calciteBorderWidthNone = "0px";
|
|
6
|
+
export const calciteBorderWidthNone = "0";
|
|
17
7
|
export const calciteBorderWidthSm = "1px";
|
|
18
8
|
export const calciteBorderWidthMd = "2px";
|
|
19
9
|
export const calciteBorderWidthLg = "4px";
|
|
20
|
-
export const
|
|
21
|
-
export const
|
|
22
|
-
export const
|
|
10
|
+
export const calciteCornerRadius = "0";
|
|
11
|
+
export const calciteCornerRadiusSharp = "0";
|
|
12
|
+
export const calciteCornerRadiusRound = "4px";
|
|
13
|
+
export const calciteCornerRadiusPill = "100%";
|
|
14
|
+
export const calciteColorBackground = {"light":"#f8f8f8","dark":"#353535"};
|
|
15
|
+
export const calciteColorBackgroundNone = "rgba(#ffffff, 0%)";
|
|
16
|
+
export const calciteColorForeground1 = {"light":"#ffffff","dark":"#2b2b2b"};
|
|
17
|
+
export const calciteColorForeground2 = {"light":"#f3f3f3","dark":"#202020"};
|
|
18
|
+
export const calciteColorForeground3 = {"light":"#eaeaea","dark":"#151515"};
|
|
19
|
+
export const calciteColorForegroundCurrent = {"light":"#c7eaff","dark":"#214155"};
|
|
20
|
+
export const calciteColorTransparent = {"light":"rgba(0, 0, 0, 0%)","dark":"rgba(255, 255, 255, 0%)"};
|
|
21
|
+
export const calciteColorTransparentHover = {"light":"rgba(0, 0, 0, 4%)","dark":"rgba(255, 255, 255, 4%)"};
|
|
22
|
+
export const calciteColorTransparentPress = {"light":"rgba(0, 0, 0, 8%)","dark":"rgba(255, 255, 255, 8%)"};
|
|
23
|
+
export const calciteColorTransparentScrim = {"light":"rgba(255, 255, 255, 85%)","dark":"rgba(0, 0, 0, 85%)"};
|
|
24
|
+
export const calciteColorTransparentTint = {"light":"rgba(255, 255, 255, 80%)","dark":"rgba(43, 43, 43, 80%)"};
|
|
23
25
|
export const calciteColorBrand = {"light":"#007ac2","dark":"#009af2"};
|
|
24
26
|
export const calciteColorBrandHover = {"light":"#00619b","dark":"#007ac2"};
|
|
25
27
|
export const calciteColorBrandPress = {"light":"#004874","dark":"#00619b"};
|
|
26
28
|
export const calciteColorBrandUnderline = {"light":"rgba(0, 97, 155, 40%)","dark":"rgba(0, 160, 255, 40%)"};
|
|
27
|
-
export const
|
|
28
|
-
export const
|
|
29
|
-
export const
|
|
30
|
-
export const
|
|
31
|
-
export const
|
|
32
|
-
export const
|
|
33
|
-
export const
|
|
34
|
-
export const
|
|
35
|
-
export const
|
|
36
|
-
export const
|
|
37
|
-
export const
|
|
38
|
-
export const
|
|
39
|
-
export const calciteColorText_2 = {"light":"#4a4a4a","dark":"#bfbfbf"};
|
|
40
|
-
export const calciteColorText_3 = {"light":"#6a6a6a","dark":"#9f9f9f"};
|
|
41
|
-
export const calciteColorTextInverse = {"light":"#ffffff","dark":"#151515"};
|
|
42
|
-
export const calciteColorTextLink = {"light":"#00619b","dark":"#00A0FF"};
|
|
43
|
-
export const calciteColorBorder_1 = {"light":"#cacaca","dark":"#555555"};
|
|
44
|
-
export const calciteColorBorder_2 = {"light":"#d4d4d4","dark":"#4a4a4a"};
|
|
45
|
-
export const calciteColorBorder_3 = {"light":"#dfdfdf","dark":"#404040"};
|
|
46
|
-
export const calciteColorBorderInput = {"light":"#949494","dark":"#757575"};
|
|
47
|
-
export const calciteColorInfo = {"light":"#00619b","dark":"#00A0FF"};
|
|
48
|
-
export const calciteColorInfoHover = {"light":"#004874","dark":"#3db8ff"};
|
|
49
|
-
export const calciteColorInfoPress = {"light":"#00304d","dark":"#009af2"};
|
|
50
|
-
export const calciteColorSuccess = {"light":"#35ac46","dark":"#36DA43"};
|
|
51
|
-
export const calciteColorSuccessHover = {"light":"#288835","dark":"#3bed52"};
|
|
52
|
-
export const calciteColorSuccessPress = {"light":"#1a6324","dark":"#00b81b"};
|
|
53
|
-
export const calciteColorWarning = {"light":"#edd317","dark":"#FFC900"};
|
|
54
|
-
export const calciteColorWarningHover = {"light":"#d9bc00","dark":"#ffee33"};
|
|
55
|
-
export const calciteColorWarningPress = {"light":"#bfa200","dark":"#f5d000"};
|
|
56
|
-
export const calciteColorDanger = {"light":"#d83020","dark":"#FE583E"};
|
|
57
|
-
export const calciteColorDangerHover = {"light":"#a82b1e","dark":"#ff0015"};
|
|
58
|
-
export const calciteColorDangerPress = {"light":"#7c1d13","dark":"#d90012"};
|
|
29
|
+
export const calciteColorStatusInfo = {"light":"#00619b","dark":"#00A0FF"};
|
|
30
|
+
export const calciteColorStatusInfoHover = {"light":"#004874","dark":"#3db8ff"};
|
|
31
|
+
export const calciteColorStatusInfoPress = {"light":"#00304d","dark":"#009af2"};
|
|
32
|
+
export const calciteColorStatusSuccess = {"light":"#35ac46","dark":"#36DA43"};
|
|
33
|
+
export const calciteColorStatusSuccessHover = {"light":"#288835","dark":"#3bed52"};
|
|
34
|
+
export const calciteColorStatusSuccessPress = {"light":"#1a6324","dark":"#00b81b"};
|
|
35
|
+
export const calciteColorStatusWarning = {"light":"#edd317","dark":"#FFC900"};
|
|
36
|
+
export const calciteColorStatusWarningHover = {"light":"#d9bc00","dark":"#ffee33"};
|
|
37
|
+
export const calciteColorStatusWarningPress = {"light":"#bfa200","dark":"#f5d000"};
|
|
38
|
+
export const calciteColorStatusDanger = {"light":"#d83020","dark":"#FE583E"};
|
|
39
|
+
export const calciteColorStatusDangerHover = {"light":"#a82b1e","dark":"#ff0015"};
|
|
40
|
+
export const calciteColorStatusDangerPress = {"light":"#7c1d13","dark":"#d90012"};
|
|
59
41
|
export const calciteColorInverse = {"light":"#353535","dark":"#f8f8f8"};
|
|
60
42
|
export const calciteColorInverseHover = {"light":"#2b2b2b","dark":"#ffffff"};
|
|
61
43
|
export const calciteColorInversePress = {"light":"#202020","dark":"#f3f3f3"};
|
|
44
|
+
export const calciteColorText1 = {"light":"#151515","dark":"#ffffff"};
|
|
45
|
+
export const calciteColorText2 = {"light":"#4a4a4a","dark":"#bfbfbf"};
|
|
46
|
+
export const calciteColorText3 = {"light":"#6a6a6a","dark":"#9f9f9f"};
|
|
47
|
+
export const calciteColorTextInverse = {"light":"#ffffff","dark":"#151515"};
|
|
48
|
+
export const calciteColorTextLink = {"light":"#00619b","dark":"#00A0FF"};
|
|
49
|
+
export const calciteColorBorder1 = {"light":"#cacaca","dark":"#555555"};
|
|
50
|
+
export const calciteColorBorder2 = {"light":"#d4d4d4","dark":"#4a4a4a"};
|
|
51
|
+
export const calciteColorBorder3 = {"light":"#dfdfdf","dark":"#404040"};
|
|
52
|
+
export const calciteColorBorderInput = {"light":"#949494","dark":"#757575"};
|
|
53
|
+
export const calciteColorBorderGhost = {"light":"rgba(0, 0, 0, 30%)","dark":"rgba(117, 117, 117, 30%)"};
|
|
54
|
+
export const calciteColorBorderWhite = {"light":"#ffffff","dark":"#f8f8f8"};
|
|
62
55
|
export const calciteContainerSizeHeightXxs = {"min":"0","max":"154px"}; // Small handheld devices and mini-windows
|
|
63
56
|
export const calciteContainerSizeHeightXs = {"min":"155px","max":"328px"}; // Handheld devices
|
|
64
57
|
export const calciteContainerSizeHeightSm = {"min":"329px","max":"504px"}; // Small tablets
|
|
@@ -76,6 +69,7 @@ export const calciteContainerSizeGutter = "16px";
|
|
|
76
69
|
export const calciteContainerSizeContentFluid = "100%"; // for fluid grid widths
|
|
77
70
|
export const calciteContainerSizeContentFixed = "1440px"; // only for lg breakpoint fixed grid width
|
|
78
71
|
export const calciteFontFamily = "Avenir Next LT Pro";
|
|
72
|
+
export const calciteFontFamilyCode = "Monaco";
|
|
79
73
|
export const calciteFontWeightLight = "300"; // For Avenir Next World (secondary font family)
|
|
80
74
|
export const calciteFontWeightNormal = "400"; // For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"
|
|
81
75
|
export const calciteFontWeightRegular = "400";
|
|
@@ -100,10 +94,10 @@ export const calciteFontLineHeightRelativeSnug = "137.5%"; // 1.375
|
|
|
100
94
|
export const calciteFontLineHeightRelativeNormal = "150%"; // 1.5
|
|
101
95
|
export const calciteFontLineHeightRelativeRelaxed = "162.5%"; // 1.625
|
|
102
96
|
export const calciteFontLineHeightRelativeLoose = "200%"; // 2
|
|
103
|
-
export const calciteFontLetterSpacingTight = "-0.
|
|
104
|
-
export const calciteFontLetterSpacingNormal = "
|
|
105
|
-
export const calciteFontLetterSpacingWide = "0.
|
|
106
|
-
export const calciteFontParagraphSpacingNormal = "
|
|
97
|
+
export const calciteFontLetterSpacingTight = "-0.4";
|
|
98
|
+
export const calciteFontLetterSpacingNormal = "0";
|
|
99
|
+
export const calciteFontLetterSpacingWide = "0.4";
|
|
100
|
+
export const calciteFontParagraphSpacingNormal = "4px";
|
|
107
101
|
export const calciteFontTextDecorationNone = "none";
|
|
108
102
|
export const calciteFontTextDecorationUnderline = "underline";
|
|
109
103
|
export const calciteFontTextCaseNone = "none";
|
|
@@ -115,84 +109,85 @@ export const calciteOpacityHalf = "50%";
|
|
|
115
109
|
export const calciteOpacityDark = "85%";
|
|
116
110
|
export const calciteOpacityFull = "100%";
|
|
117
111
|
export const calciteOpacityDisabled = "50%";
|
|
112
|
+
export const calciteShadowNone = {"x":"0","y":"0","blur":"0","spread":"0","color":"rgba(#000000, 0%)"};
|
|
113
|
+
export const calciteShadowSm = [{"x":"0","y":"2","blur":"8","spread":"0","color":"rgba(#000000, 4%)"},{"x":"0","y":"4","blur":"16","spread":"0","color":"rgba(#000000, 8%)"}];
|
|
114
|
+
export const calciteShadowMd = [{"x":"0","y":"4","blur":"20","spread":"0","color":"rgba(#000000, 8%)"},{"x":"0","y":"12","blur":"32","spread":"-2","color":"rgba(#000000, 10%)"}];
|
|
115
|
+
export const calciteSizePx = "1px";
|
|
118
116
|
export const calciteSizeXxxs = "2px";
|
|
119
117
|
export const calciteSizeXxs = "4px";
|
|
120
118
|
export const calciteSizeXs = "6px";
|
|
121
119
|
export const calciteSizeSm = "8px";
|
|
122
|
-
export const
|
|
123
|
-
export const
|
|
124
|
-
export const
|
|
125
|
-
export const
|
|
126
|
-
export const
|
|
127
|
-
export const
|
|
128
|
-
export const
|
|
129
|
-
export const
|
|
130
|
-
export const calciteSizeXl = "48px";
|
|
131
|
-
export const calciteSizeXxl = "64px";
|
|
132
|
-
export const calciteSizeXxxl = "96px";
|
|
133
|
-
export const calciteSpacingNone = "0px";
|
|
120
|
+
export const calciteSizeSmPlus = "10px";
|
|
121
|
+
export const calciteSizeMd = "12px";
|
|
122
|
+
export const calciteSizeMdPlus = "14px";
|
|
123
|
+
export const calciteSizeLg = "16px";
|
|
124
|
+
export const calciteSizeXl = "20px";
|
|
125
|
+
export const calciteSizeXxl = "24px";
|
|
126
|
+
export const calciteSizeXxxl = "32px";
|
|
127
|
+
export const calciteSpacingPx = "1px";
|
|
134
128
|
export const calciteSpacingBase = "2px";
|
|
135
|
-
export const
|
|
136
|
-
export const
|
|
137
|
-
export const calciteSpacingXs = "4px";
|
|
129
|
+
export const calciteSpacingXxs = "4px";
|
|
130
|
+
export const calciteSpacingXs = "6px";
|
|
138
131
|
export const calciteSpacingSm = "8px";
|
|
139
132
|
export const calciteSpacingMd = "12px";
|
|
140
|
-
export const calciteSpacingLg = "
|
|
141
|
-
export const calciteSpacingXl = "
|
|
142
|
-
export const
|
|
143
|
-
export const
|
|
144
|
-
export const
|
|
145
|
-
export const
|
|
146
|
-
export const
|
|
147
|
-
export const
|
|
148
|
-
export const
|
|
149
|
-
export const
|
|
150
|
-
export const
|
|
151
|
-
export const
|
|
152
|
-
export const
|
|
153
|
-
export const
|
|
154
|
-
export const
|
|
155
|
-
export const
|
|
156
|
-
export const
|
|
157
|
-
export const
|
|
158
|
-
export const
|
|
159
|
-
export const
|
|
160
|
-
export const
|
|
161
|
-
export const
|
|
162
|
-
export const
|
|
163
|
-
export const
|
|
164
|
-
export const
|
|
165
|
-
export const
|
|
166
|
-
export const
|
|
167
|
-
export const
|
|
168
|
-
export const
|
|
169
|
-
export const
|
|
170
|
-
export const
|
|
171
|
-
export const
|
|
172
|
-
export const
|
|
173
|
-
export const
|
|
174
|
-
export const
|
|
175
|
-
export const
|
|
176
|
-
export const
|
|
177
|
-
export const
|
|
178
|
-
export const
|
|
179
|
-
export const
|
|
180
|
-
export const
|
|
181
|
-
export const
|
|
182
|
-
export const
|
|
183
|
-
export const
|
|
184
|
-
export const
|
|
185
|
-
export const
|
|
186
|
-
export const
|
|
187
|
-
export const
|
|
188
|
-
export const
|
|
189
|
-
export const
|
|
190
|
-
export const
|
|
191
|
-
export const
|
|
192
|
-
export const
|
|
193
|
-
export const
|
|
133
|
+
export const calciteSpacingLg = "14px";
|
|
134
|
+
export const calciteSpacingXl = "16px";
|
|
135
|
+
export const calciteSpacingXxl = "20px";
|
|
136
|
+
export const calciteSpacingXxxl = "32px";
|
|
137
|
+
export const calciteTypography = {"fontFamily":"Avenir Next LT Pro","fontSize":"14px","fontWeight":"400","letterSpacing":"0","lineHeight":"16px","paragraphSpacing":"4px","textCase":"none","textDecoration":"none"};
|
|
138
|
+
export const calciteTypographyLightMinus3h = {"fontSize":"10px","fontWeight":"300","lineHeight":"12px"};
|
|
139
|
+
export const calciteTypographyLightMinus2h = {"fontSize":"12px","fontWeight":"300"};
|
|
140
|
+
export const calciteTypographyLightMinus1h = {"fontWeight":"300"};
|
|
141
|
+
export const calciteTypographyLight0h = {"fontSize":"16px","fontWeight":"300","lineHeight":"20px"};
|
|
142
|
+
export const calciteTypographyLight1h = {"fontSize":"18px","fontWeight":"300","lineHeight":"24px"};
|
|
143
|
+
export const calciteTypographyRegularMinus3h = {"lineHeight":"12px","fontSize":"10px"};
|
|
144
|
+
export const calciteTypographyRegularMinus2h = {"fontSize":"12px"};
|
|
145
|
+
export const calciteTypographyRegularMinus1h = {"fontFamily":"Avenir Next LT Pro","fontSize":"14px","fontWeight":"400","letterSpacing":"0","lineHeight":"16px","paragraphSpacing":"4px","textCase":"none","textDecoration":"none"};
|
|
146
|
+
export const calciteTypographyRegular0h = {"lineHeight":"20px","fontSize":"16px"};
|
|
147
|
+
export const calciteTypographyRegular1h = {"lineHeight":"24px","fontSize":"18px"};
|
|
148
|
+
export const calciteTypographyMediumMinus3h = {"fontWeight":"500","lineHeight":"12px","fontSize":"10px"};
|
|
149
|
+
export const calciteTypographyMediumMinus2h = {"fontWeight":"500","fontSize":"12px"};
|
|
150
|
+
export const calciteTypographyMediumMinus1h = {"fontWeight":"500"};
|
|
151
|
+
export const calciteTypographyMedium0h = {"fontWeight":"500","lineHeight":"20px","fontSize":"16px"};
|
|
152
|
+
export const calciteTypographyMedium1h = {"fontWeight":"500","lineHeight":"24px","fontSize":"18px"};
|
|
153
|
+
export const calciteTypographyBoldMinus3h = {"fontWeight":"600","lineHeight":"12px","fontSize":"10px"};
|
|
154
|
+
export const calciteTypographyBoldMinus2h = {"fontWeight":"600","fontSize":"12px"};
|
|
155
|
+
export const calciteTypographyBoldMinus1h = {"fontWeight":"600"};
|
|
156
|
+
export const calciteTypographyBold0h = {"fontWeight":"600","lineHeight":"20px","fontSize":"16px"};
|
|
157
|
+
export const calciteTypographyBold1h = {"fontWeight":"600","lineHeight":"24px","fontSize":"18px"};
|
|
158
|
+
export const calciteTypographyWrapLight0 = {"fontWeight":"300","lineHeight":"137.5%","fontSize":"16px"};
|
|
159
|
+
export const calciteTypographyWrapLight1 = {"fontWeight":"300","lineHeight":"137.5%","fontSize":"18px"};
|
|
160
|
+
export const calciteTypographyWrapLight2 = {"fontWeight":"300","lineHeight":"137.5%","fontSize":"20px"};
|
|
161
|
+
export const calciteTypographyWrapLight3 = {"fontWeight":"300","lineHeight":"125%","fontSize":"24px"};
|
|
162
|
+
export const calciteTypographyWrapLightMinus2 = {"fontWeight":"300","lineHeight":"137.5%","fontSize":"12px"};
|
|
163
|
+
export const calciteTypographyWrapLightMinus1 = {"fontWeight":"300","lineHeight":"137.5%"};
|
|
164
|
+
export const calciteTypographyWrapRegular0 = {"lineHeight":"137.5%","fontSize":"16px"};
|
|
165
|
+
export const calciteTypographyWrapRegular1 = {"lineHeight":"137.5%","fontSize":"18px"};
|
|
166
|
+
export const calciteTypographyWrapRegular2 = {"lineHeight":"137.5%","fontSize":"20px"};
|
|
167
|
+
export const calciteTypographyWrapRegular3 = {"lineHeight":"137.5%","fontSize":"24px"};
|
|
168
|
+
export const calciteTypographyWrapRegularMinus2 = {"lineHeight":"137.5%","fontSize":"12px"};
|
|
169
|
+
export const calciteTypographyWrapRegularMinus1 = {"lineHeight":"137.5%"};
|
|
170
|
+
export const calciteTypographyWrapMedium0 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"16px"};
|
|
171
|
+
export const calciteTypographyWrapMedium1 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"18px"};
|
|
172
|
+
export const calciteTypographyWrapMedium2 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"20px"};
|
|
173
|
+
export const calciteTypographyWrapMedium3 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"24px"};
|
|
174
|
+
export const calciteTypographyWrapMediumMinus2 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"12px"};
|
|
175
|
+
export const calciteTypographyWrapMediumMinus1 = {"fontWeight":"500","lineHeight":"137.5%"};
|
|
176
|
+
export const calciteTypographyWrapBold0 = {"fontWeight":"600","lineHeight":"137.5%","fontSize":"16px"};
|
|
177
|
+
export const calciteTypographyWrapBold1 = {"fontWeight":"600","lineHeight":"137.5%","fontSize":"18px"};
|
|
178
|
+
export const calciteTypographyWrapBold2 = {"fontWeight":"600","lineHeight":"137.5%","fontSize":"20px"};
|
|
179
|
+
export const calciteTypographyWrapBold3 = {"fontWeight":"600","lineHeight":"137.5%","fontSize":"24px"};
|
|
180
|
+
export const calciteTypographyWrapBoldMinus2 = {"fontWeight":"600","lineHeight":"137.5%","fontSize":"12px"};
|
|
181
|
+
export const calciteTypographyWrapBoldMinus1 = {"fontWeight":"600","lineHeight":"137.5%"};
|
|
182
|
+
export const calciteTypographyHierarchyDisplay1 = {"fontWeight":"600","lineHeight":"137.5%","fontSize":"24px"};
|
|
183
|
+
export const calciteTypographyHierarchyDisplay2 = {"fontWeight":"600","lineHeight":"137.5%","fontSize":"20px"};
|
|
184
|
+
export const calciteTypographyHierarchyHeading1 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"24px"};
|
|
185
|
+
export const calciteTypographyHierarchyHeading2 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"20px"};
|
|
186
|
+
export const calciteTypographyHierarchyHeading3 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"18px"};
|
|
187
|
+
export const calciteTypographyHierarchyHeading4 = {"fontWeight":"500","lineHeight":"137.5%","fontSize":"16px"};
|
|
188
|
+
export const calciteTypographyHierarchyHeading5 = {"fontWeight":"500","lineHeight":"137.5%"};
|
|
194
189
|
export const calciteTypographyHierarchyBodySnug = {"lineHeight":"137.5%"};
|
|
195
|
-
export const calciteTypographyHierarchyBody = {"fontFamily":"Avenir Next LT Pro","fontSize":"14px","fontWeight":"400","letterSpacing":"
|
|
190
|
+
export const calciteTypographyHierarchyBody = {"fontFamily":"Avenir Next LT Pro","fontSize":"14px","fontWeight":"400","letterSpacing":"0","lineHeight":"16px","paragraphSpacing":"4px","textCase":"none","textDecoration":"none"};
|
|
196
191
|
export const calciteTypographyHierarchyOverline = {"lineHeight":"12px","textCase":"uppercase","fontWeight":"700"};
|
|
197
192
|
export const calciteTypographyHierarchyCaption = {"lineHeight":"137.5%","fontSize":"12px"};
|
|
198
193
|
export const calciteZIndexDeep = "-999999";
|