@esri/calcite-design-tokens 4.0.0-next.1 → 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/core.css +14 -0
- package/dist/css/dark.css +5 -5
- package/dist/css/global.css +60 -18
- package/dist/css/index.css +19 -19
- package/dist/css/light.css +3 -3
- package/dist/css/semantic.css +60 -18
- package/dist/docs/core.json +374 -577
- package/dist/docs/dark.json +6 -52
- package/dist/docs/global.json +2706 -1530
- package/dist/docs/light.json +4 -50
- package/dist/docs/semantic.json +2613 -1401
- package/dist/es6/breakpoints.d.ts +6 -2
- package/dist/es6/breakpoints.js +4 -2
- package/dist/es6/core.d.ts +14 -0
- package/dist/es6/core.js +14 -0
- package/dist/es6/dark.js +5 -5
- package/dist/es6/global.d.ts +66 -2
- package/dist/es6/global.js +72 -28
- package/dist/es6/light.js +3 -3
- package/dist/es6/semantic.d.ts +60 -0
- package/dist/es6/semantic.js +60 -18
- package/dist/scss/breakpoints.scss +8 -4
- package/dist/scss/core.scss +14 -0
- package/dist/scss/dark.scss +5 -5
- package/dist/scss/global.scss +60 -18
- package/dist/scss/index.scss +8 -8
- package/dist/scss/light.scss +3 -3
- package/dist/scss/semantic.scss +60 -18
- package/package.json +7 -7
- package/dist/js/core.d.ts +0 -743
- package/dist/js/core.js +0 -22642
- package/dist/js/dark.d.ts +0 -52
- package/dist/js/dark.js +0 -1812
- package/dist/js/global.d.ts +0 -375
- package/dist/js/global.js +0 -10710
- package/dist/js/light.d.ts +0 -52
- package/dist/js/light.js +0 -1813
- package/dist/js/semantic.d.ts +0 -190
- package/dist/js/semantic.js +0 -4822
|
@@ -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/core.d.ts
CHANGED
|
@@ -620,6 +620,20 @@ export const calciteSizeRelative162: string;
|
|
|
620
620
|
export const calciteSizeRelative200: string;
|
|
621
621
|
export const calciteSizeRelativeAuto: string;
|
|
622
622
|
export const calciteSizeRelativeNormal: string;
|
|
623
|
+
export const calciteSizeRem1: string;
|
|
624
|
+
export const calciteSizeRem2: string;
|
|
625
|
+
export const calciteSizeRem3: string;
|
|
626
|
+
export const calciteSizeRem4: string;
|
|
627
|
+
export const calciteSizeRem5: string;
|
|
628
|
+
export const calciteSizeRem0625: string;
|
|
629
|
+
export const calciteSizeRem075: string;
|
|
630
|
+
export const calciteSizeRem0875: string;
|
|
631
|
+
export const calciteSizeRem1125: string;
|
|
632
|
+
export const calciteSizeRem125: string;
|
|
633
|
+
export const calciteSizeRem15: string;
|
|
634
|
+
export const calciteSizeRem1625: string;
|
|
635
|
+
export const calciteSizeRem25: string;
|
|
636
|
+
export const calciteSizeRem35: string;
|
|
623
637
|
export const calciteZIndex0: string;
|
|
624
638
|
export const calciteZIndex1: string;
|
|
625
639
|
export const calciteZIndex3: string;
|
package/dist/es6/core.js
CHANGED
|
@@ -600,6 +600,20 @@ export const calciteSizeRelative162 = "162.5%";
|
|
|
600
600
|
export const calciteSizeRelative200 = "200%";
|
|
601
601
|
export const calciteSizeRelativeAuto = "auto";
|
|
602
602
|
export const calciteSizeRelativeNormal = "normal";
|
|
603
|
+
export const calciteSizeRem1 = "1rem";
|
|
604
|
+
export const calciteSizeRem2 = "2rem";
|
|
605
|
+
export const calciteSizeRem3 = "3rem";
|
|
606
|
+
export const calciteSizeRem4 = "4rem";
|
|
607
|
+
export const calciteSizeRem5 = "5rem";
|
|
608
|
+
export const calciteSizeRem0625 = "0.625rem";
|
|
609
|
+
export const calciteSizeRem075 = "0.75rem";
|
|
610
|
+
export const calciteSizeRem0875 = "0.875rem";
|
|
611
|
+
export const calciteSizeRem1125 = "1.125rem";
|
|
612
|
+
export const calciteSizeRem125 = "1.25rem";
|
|
613
|
+
export const calciteSizeRem15 = "1.5rem";
|
|
614
|
+
export const calciteSizeRem1625 = "1.625rem";
|
|
615
|
+
export const calciteSizeRem25 = "2.5rem";
|
|
616
|
+
export const calciteSizeRem35 = "3.5rem";
|
|
603
617
|
export const calciteZIndex0 = "-999999";
|
|
604
618
|
export const calciteZIndex1 = "1";
|
|
605
619
|
export const calciteZIndex3 = "300";
|
package/dist/es6/dark.js
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export const calciteColorBackground = "#
|
|
6
|
+
export const calciteColorBackground = "#212121";
|
|
7
7
|
export const calciteColorBackgroundNone = "rgba(255, 255, 255, 0)";
|
|
8
8
|
export const calciteColorForeground1 = "#2b2b2b";
|
|
9
|
-
export const calciteColorForeground2 = "#
|
|
10
|
-
export const calciteColorForeground3 = "#
|
|
9
|
+
export const calciteColorForeground2 = "#363636";
|
|
10
|
+
export const calciteColorForeground3 = "#404040";
|
|
11
11
|
export const calciteColorForegroundCurrent = "#2b465f"; // deprecated, use --calcite-color-surface-highlight instead
|
|
12
12
|
export const calciteColorSurfaceHighlight = "#2b465f";
|
|
13
13
|
export const calciteColorTransparent = "rgba(255, 255, 255, 0)";
|
|
@@ -34,8 +34,8 @@ export const calciteColorStatusDanger = "#fe583e";
|
|
|
34
34
|
export const calciteColorStatusDangerHover = "#ff0015";
|
|
35
35
|
export const calciteColorStatusDangerPress = "#d90012";
|
|
36
36
|
export const calciteColorInverse = "#f7f7f7";
|
|
37
|
-
export const calciteColorInverseHover = "#
|
|
38
|
-
export const calciteColorInversePress = "#
|
|
37
|
+
export const calciteColorInverseHover = "#f2f2f2";
|
|
38
|
+
export const calciteColorInversePress = "#ebebeb";
|
|
39
39
|
export const calciteColorText1 = "#ffffff";
|
|
40
40
|
export const calciteColorText2 = "#bfbfbf";
|
|
41
41
|
export const calciteColorText3 = "#9e9e9e";
|
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,21 @@ 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;
|
|
128
|
+
export const calciteFontSizeRelativeXs: string;
|
|
129
|
+
export const calciteFontSizeRelativeSm: string;
|
|
130
|
+
export const calciteFontSizeRelativeBase: string;
|
|
131
|
+
export const calciteFontSizeRelativeMd: string;
|
|
132
|
+
export const calciteFontSizeRelativeLg: string;
|
|
133
|
+
export const calciteFontSizeRelativeXl: string;
|
|
134
|
+
export const calciteFontSizeRelative2xl: string;
|
|
135
|
+
export const calciteFontSizeRelative3xl: string;
|
|
136
|
+
export const calciteFontSizeRelative4xl: string;
|
|
137
|
+
export const calciteFontSizeRelative5xl: string;
|
|
138
|
+
export const calciteFontSizeRelative6xl: string;
|
|
139
|
+
export const calciteFontSizeRelative7xl: string;
|
|
122
140
|
/** used in ratings */
|
|
123
141
|
export const calciteFontStyleEmphasis: string;
|
|
124
142
|
export const calciteFontLineHeightFixedSm: string;
|
|
@@ -144,6 +162,18 @@ export const calciteFontLineHeightRelativeNormal: string;
|
|
|
144
162
|
export const calciteFontLineHeightRelativeRelaxed: string;
|
|
145
163
|
/** 2 */
|
|
146
164
|
export const calciteFontLineHeightRelativeLoose: string;
|
|
165
|
+
export const calciteFontLineHeightXs: string;
|
|
166
|
+
export const calciteFontLineHeightSm: string;
|
|
167
|
+
export const calciteFontLineHeightBase: string;
|
|
168
|
+
export const calciteFontLineHeightMd: string;
|
|
169
|
+
export const calciteFontLineHeightLg: string;
|
|
170
|
+
export const calciteFontLineHeightXl: string;
|
|
171
|
+
export const calciteFontLineHeight2xl: string;
|
|
172
|
+
export const calciteFontLineHeight3xl: string;
|
|
173
|
+
export const calciteFontLineHeight4xl: string;
|
|
174
|
+
export const calciteFontLineHeight5xl: string;
|
|
175
|
+
export const calciteFontLineHeight6xl: string;
|
|
176
|
+
export const calciteFontLineHeight7xl: string;
|
|
147
177
|
/** Deprecated */
|
|
148
178
|
export const calciteFontLetterSpacingTight: string;
|
|
149
179
|
/** Deprecated */
|
|
@@ -213,15 +243,23 @@ export const calciteSizeFixedXxl: string;
|
|
|
213
243
|
/** deprecated */
|
|
214
244
|
export const calciteSizeFixedXxxl: string;
|
|
215
245
|
export const calciteSizePx: string;
|
|
246
|
+
/** Deprecated, use --calcite-size-3xs instead. */
|
|
216
247
|
export const calciteSizeXxxs: string;
|
|
248
|
+
export const calciteSize3xs: string;
|
|
249
|
+
/** Deprecated, use --calcite-size-2xs instead. */
|
|
217
250
|
export const calciteSizeXxs: string;
|
|
251
|
+
export const calciteSize2xs: string;
|
|
218
252
|
export const calciteSizeXs: string;
|
|
219
253
|
export const calciteSizeSm: string;
|
|
220
254
|
export const calciteSizeMd: string;
|
|
221
255
|
export const calciteSizeLg: string;
|
|
222
256
|
export const calciteSizeXl: string;
|
|
257
|
+
/** Deprecated, use --calcite-size-2xl instead. */
|
|
223
258
|
export const calciteSizeXxl: string;
|
|
259
|
+
export const calciteSize2xl: string;
|
|
260
|
+
/** Deprecated, use --calcite-size-3xl instead. */
|
|
224
261
|
export const calciteSizeXxxl: string;
|
|
262
|
+
export const calciteSize3xl: string;
|
|
225
263
|
/** deprecated */
|
|
226
264
|
export const calciteSpacingFixedXxs: string;
|
|
227
265
|
/** deprecated */
|
|
@@ -238,19 +276,45 @@ export const calciteSpacingFixedXl: string;
|
|
|
238
276
|
export const calciteSpacingFixedXxl: string;
|
|
239
277
|
/** deprecated */
|
|
240
278
|
export const calciteSpacingFixedXxxl: string;
|
|
279
|
+
/** deprecated, use `--calcite-space-none` instead */
|
|
241
280
|
export const calciteSpacingNone: string;
|
|
281
|
+
/** deprecated, use `--calcite-space-px` instead */
|
|
242
282
|
export const calciteSpacingPx: string;
|
|
283
|
+
/** deprecated, use `--calcite-space-base` instead */
|
|
243
284
|
export const calciteSpacingBase: string;
|
|
285
|
+
/** deprecated, use `--calcite-space-2xs` instead */
|
|
244
286
|
export const calciteSpacingXxs: string;
|
|
287
|
+
/** deprecated, use `--calcite-space-xs` instead */
|
|
245
288
|
export const calciteSpacingXs: string;
|
|
289
|
+
/** deprecated, use `--calcite-space-sm` instead */
|
|
246
290
|
export const calciteSpacingSm: string;
|
|
291
|
+
/** deprecated, use `--calcite-space-sm-plus` instead */
|
|
247
292
|
export const calciteSpacingSmPlus: string;
|
|
293
|
+
/** deprecated, use `--calcite-space-md` instead */
|
|
248
294
|
export const calciteSpacingMd: string;
|
|
295
|
+
/** deprecated, use `--calcite-space-md-plus` instead */
|
|
249
296
|
export const calciteSpacingMdPlus: string;
|
|
297
|
+
/** deprecated, use `--calcite-space-lg` instead */
|
|
250
298
|
export const calciteSpacingLg: string;
|
|
299
|
+
/** deprecated, use `--calcite-space-xl` instead */
|
|
251
300
|
export const calciteSpacingXl: string;
|
|
301
|
+
/** deprecated, use `--calcite-space-2xl` instead */
|
|
252
302
|
export const calciteSpacingXxl: string;
|
|
303
|
+
/** deprecated, use `--calcite-space-3xl` instead */
|
|
253
304
|
export const calciteSpacingXxxl: string;
|
|
305
|
+
export const calciteSpaceNone: string;
|
|
306
|
+
export const calciteSpacePx: string;
|
|
307
|
+
export const calciteSpaceBase: string;
|
|
308
|
+
export const calciteSpace2xs: string;
|
|
309
|
+
export const calciteSpaceXs: string;
|
|
310
|
+
export const calciteSpaceSm: string;
|
|
311
|
+
export const calciteSpaceSmPlus: string;
|
|
312
|
+
export const calciteSpaceMd: string;
|
|
313
|
+
export const calciteSpaceMdPlus: string;
|
|
314
|
+
export const calciteSpaceLg: string;
|
|
315
|
+
export const calciteSpaceXl: string;
|
|
316
|
+
export const calciteSpace2xl: string;
|
|
317
|
+
export const calciteSpace3xl: string;
|
|
254
318
|
export const calciteTypography: {
|
|
255
319
|
fontFamily: string[];
|
|
256
320
|
fontSize: string;
|
package/dist/es6/global.js
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
* Do not edit directly, this file was auto-generated.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
export const calciteColorBackground = { light: "#f7f7f7", dark: "#
|
|
7
|
+
export const calciteColorBackground = { light: "#f7f7f7", dark: "#212121" };
|
|
8
8
|
export const calciteColorBackgroundNone = "rgba(255, 255, 255, 0)";
|
|
9
9
|
export const calciteColorForeground1 = { light: "#ffffff", dark: "#2b2b2b" };
|
|
10
|
-
export const calciteColorForeground2 = { light: "#f2f2f2", dark: "#
|
|
11
|
-
export const calciteColorForeground3 = { light: "#ebebeb", dark: "#
|
|
10
|
+
export const calciteColorForeground2 = { light: "#f2f2f2", dark: "#363636" };
|
|
11
|
+
export const calciteColorForeground3 = { light: "#ebebeb", dark: "#404040" };
|
|
12
12
|
export const calciteColorForegroundCurrent = {
|
|
13
13
|
light: "#d6efff",
|
|
14
14
|
dark: "#2b465f",
|
|
@@ -89,17 +89,17 @@ export const calciteColorStatusDangerPress = {
|
|
|
89
89
|
dark: "#d90012",
|
|
90
90
|
};
|
|
91
91
|
export const calciteColorInverse = { light: "#363636", dark: "#f7f7f7" };
|
|
92
|
-
export const calciteColorInverseHover = { light: "#2b2b2b", dark: "#
|
|
93
|
-
export const calciteColorInversePress = { light: "#212121", dark: "#
|
|
92
|
+
export const calciteColorInverseHover = { light: "#2b2b2b", dark: "#f2f2f2" };
|
|
93
|
+
export const calciteColorInversePress = { light: "#212121", dark: "#ebebeb" };
|
|
94
94
|
export const calciteColorText1 = { light: "#141414", dark: "#ffffff" };
|
|
95
95
|
export const calciteColorText2 = { light: "#4a4a4a", dark: "#bfbfbf" };
|
|
96
96
|
export const calciteColorText3 = { light: "#6b6b6b", dark: "#9e9e9e" };
|
|
97
97
|
export const calciteColorTextHighlight = { light: "#004874", dark: "#d6efff" };
|
|
98
98
|
export const calciteColorTextInverse = { light: "#ffffff", dark: "#141414" };
|
|
99
99
|
export const calciteColorTextLink = { light: "#00619b", dark: "#00a0ff" };
|
|
100
|
-
export const calciteColorBorder1 = { light: "#
|
|
101
|
-
export const calciteColorBorder2 = { light: "#
|
|
102
|
-
export const calciteColorBorder3 = { light: "#
|
|
100
|
+
export const calciteColorBorder1 = { light: "#d4d4d4", dark: "#545454" };
|
|
101
|
+
export const calciteColorBorder2 = { light: "#dedede", dark: "#4a4a4a" };
|
|
102
|
+
export const calciteColorBorder3 = { light: "#ebebeb", dark: "#404040" };
|
|
103
103
|
export const calciteColorBorderInput = { light: "#949494", dark: "#757575" };
|
|
104
104
|
export const calciteColorBorderGhost = {
|
|
105
105
|
light: "rgba(0, 0, 0, 0.3)",
|
|
@@ -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,20 @@ 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";
|
|
166
|
+
export const calciteFontSizeRelativeXs = "0.625rem";
|
|
167
|
+
export const calciteFontSizeRelativeSm = "0.75rem";
|
|
168
|
+
export const calciteFontSizeRelativeBase = "0.875rem";
|
|
169
|
+
export const calciteFontSizeRelativeMd = "1rem";
|
|
170
|
+
export const calciteFontSizeRelativeLg = "1.125rem";
|
|
171
|
+
export const calciteFontSizeRelativeXl = "1.25rem";
|
|
172
|
+
export const calciteFontSizeRelative2xl = "1.625rem";
|
|
173
|
+
export const calciteFontSizeRelative3xl = "2rem";
|
|
174
|
+
export const calciteFontSizeRelative4xl = "2.5rem";
|
|
175
|
+
export const calciteFontSizeRelative5xl = "3rem";
|
|
176
|
+
export const calciteFontSizeRelative6xl = "3.5rem";
|
|
177
|
+
export const calciteFontSizeRelative7xl = "4rem";
|
|
163
178
|
export const calciteFontStyleEmphasis = "italic"; // used in ratings
|
|
164
179
|
export const calciteFontLineHeightFixedSm = "12px";
|
|
165
180
|
export const calciteFontLineHeightFixedBase = "16px";
|
|
@@ -177,6 +192,18 @@ export const calciteFontLineHeightRelativeSnug = "1.375"; // 1.375
|
|
|
177
192
|
export const calciteFontLineHeightRelativeNormal = "1.5"; // 1.5
|
|
178
193
|
export const calciteFontLineHeightRelativeRelaxed = "1.625"; // 1.625
|
|
179
194
|
export const calciteFontLineHeightRelativeLoose = "2"; // 2
|
|
195
|
+
export const calciteFontLineHeightXs = "0.75rem";
|
|
196
|
+
export const calciteFontLineHeightSm = "1rem";
|
|
197
|
+
export const calciteFontLineHeightBase = "1rem";
|
|
198
|
+
export const calciteFontLineHeightMd = "1.25rem";
|
|
199
|
+
export const calciteFontLineHeightLg = "1.5rem";
|
|
200
|
+
export const calciteFontLineHeightXl = "1.5rem";
|
|
201
|
+
export const calciteFontLineHeight2xl = "2rem";
|
|
202
|
+
export const calciteFontLineHeight3xl = "2.5rem";
|
|
203
|
+
export const calciteFontLineHeight4xl = "3rem";
|
|
204
|
+
export const calciteFontLineHeight5xl = "4rem";
|
|
205
|
+
export const calciteFontLineHeight6xl = "4rem";
|
|
206
|
+
export const calciteFontLineHeight7xl = "5rem";
|
|
180
207
|
export const calciteFontLetterSpacingTight = "-0.4px"; // Deprecated
|
|
181
208
|
export const calciteFontLetterSpacingNormal = "0"; // Deprecated
|
|
182
209
|
export const calciteFontLetterSpacingWide = "0.4px"; // Deprecated
|
|
@@ -225,15 +252,19 @@ export const calciteSizeFixedXl = "20px"; // deprecated
|
|
|
225
252
|
export const calciteSizeFixedXxl = "24px"; // deprecated
|
|
226
253
|
export const calciteSizeFixedXxxl = "32px"; // deprecated
|
|
227
254
|
export const calciteSizePx = "1px";
|
|
228
|
-
export const calciteSizeXxxs = "0.75rem";
|
|
229
|
-
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";
|
|
230
259
|
export const calciteSizeXs = "1rem";
|
|
231
260
|
export const calciteSizeSm = "1.5rem";
|
|
232
261
|
export const calciteSizeMd = "2rem";
|
|
233
262
|
export const calciteSizeLg = "2.75rem";
|
|
234
263
|
export const calciteSizeXl = "3rem";
|
|
235
|
-
export const calciteSizeXxl = "4rem";
|
|
236
|
-
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";
|
|
237
268
|
export const calciteSpacingFixedXxs = "4px"; // deprecated
|
|
238
269
|
export const calciteSpacingFixedXs = "6px"; // deprecated
|
|
239
270
|
export const calciteSpacingFixedSm = "8px"; // deprecated
|
|
@@ -242,19 +273,32 @@ export const calciteSpacingFixedLg = "14px"; // deprecated
|
|
|
242
273
|
export const calciteSpacingFixedXl = "16px"; // deprecated
|
|
243
274
|
export const calciteSpacingFixedXxl = "20px"; // deprecated
|
|
244
275
|
export const calciteSpacingFixedXxxl = "32px"; // deprecated
|
|
245
|
-
export const calciteSpacingNone = "0";
|
|
246
|
-
export const calciteSpacingPx = "1px";
|
|
247
|
-
export const calciteSpacingBase = "2px";
|
|
248
|
-
export const calciteSpacingXxs = "0.25rem";
|
|
249
|
-
export const calciteSpacingXs = "0.375rem";
|
|
250
|
-
export const calciteSpacingSm = "0.5rem";
|
|
251
|
-
export const calciteSpacingSmPlus = "0.625rem";
|
|
252
|
-
export const calciteSpacingMd = "0.75rem";
|
|
253
|
-
export const calciteSpacingMdPlus = "0.875rem";
|
|
254
|
-
export const calciteSpacingLg = "1rem";
|
|
255
|
-
export const calciteSpacingXl = "1.25rem";
|
|
256
|
-
export const calciteSpacingXxl = "1.5rem";
|
|
257
|
-
export const calciteSpacingXxxl = "2rem";
|
|
276
|
+
export const calciteSpacingNone = "0"; // deprecated, use `--calcite-space-none` instead
|
|
277
|
+
export const calciteSpacingPx = "1px"; // deprecated, use `--calcite-space-px` instead
|
|
278
|
+
export const calciteSpacingBase = "2px"; // deprecated, use `--calcite-space-base` instead
|
|
279
|
+
export const calciteSpacingXxs = "0.25rem"; // deprecated, use `--calcite-space-2xs` instead
|
|
280
|
+
export const calciteSpacingXs = "0.375rem"; // deprecated, use `--calcite-space-xs` instead
|
|
281
|
+
export const calciteSpacingSm = "0.5rem"; // deprecated, use `--calcite-space-sm` instead
|
|
282
|
+
export const calciteSpacingSmPlus = "0.625rem"; // deprecated, use `--calcite-space-sm-plus` instead
|
|
283
|
+
export const calciteSpacingMd = "0.75rem"; // deprecated, use `--calcite-space-md` instead
|
|
284
|
+
export const calciteSpacingMdPlus = "0.875rem"; // deprecated, use `--calcite-space-md-plus` instead
|
|
285
|
+
export const calciteSpacingLg = "1rem"; // deprecated, use `--calcite-space-lg` instead
|
|
286
|
+
export const calciteSpacingXl = "1.25rem"; // deprecated, use `--calcite-space-xl` instead
|
|
287
|
+
export const calciteSpacingXxl = "1.5rem"; // deprecated, use `--calcite-space-2xl` instead
|
|
288
|
+
export const calciteSpacingXxxl = "2rem"; // deprecated, use `--calcite-space-3xl` instead
|
|
289
|
+
export const calciteSpaceNone = "0";
|
|
290
|
+
export const calciteSpacePx = "1px";
|
|
291
|
+
export const calciteSpaceBase = "2px";
|
|
292
|
+
export const calciteSpace2xs = "0.25rem";
|
|
293
|
+
export const calciteSpaceXs = "0.375rem";
|
|
294
|
+
export const calciteSpaceSm = "0.5rem";
|
|
295
|
+
export const calciteSpaceSmPlus = "0.625rem";
|
|
296
|
+
export const calciteSpaceMd = "0.75rem";
|
|
297
|
+
export const calciteSpaceMdPlus = "0.875rem";
|
|
298
|
+
export const calciteSpaceLg = "1rem";
|
|
299
|
+
export const calciteSpaceXl = "1.25rem";
|
|
300
|
+
export const calciteSpace2xl = "1.5rem";
|
|
301
|
+
export const calciteSpace3xl = "2rem";
|
|
258
302
|
export const calciteTypography = {
|
|
259
303
|
fontFamily: ["Avenir Next", "Avenir", "Helvetica Neue", "sans-serif"],
|
|
260
304
|
fontSize: "14px",
|
package/dist/es6/light.js
CHANGED
|
@@ -42,9 +42,9 @@ export const calciteColorText3 = "#6b6b6b";
|
|
|
42
42
|
export const calciteColorTextHighlight = "#004874";
|
|
43
43
|
export const calciteColorTextInverse = "#ffffff";
|
|
44
44
|
export const calciteColorTextLink = "#00619b";
|
|
45
|
-
export const calciteColorBorder1 = "#
|
|
46
|
-
export const calciteColorBorder2 = "#
|
|
47
|
-
export const calciteColorBorder3 = "#
|
|
45
|
+
export const calciteColorBorder1 = "#d4d4d4";
|
|
46
|
+
export const calciteColorBorder2 = "#dedede";
|
|
47
|
+
export const calciteColorBorder3 = "#ebebeb";
|
|
48
48
|
export const calciteColorBorderInput = "#949494";
|
|
49
49
|
export const calciteColorBorderGhost = "rgba(0, 0, 0, 0.3)";
|
|
50
50
|
export const calciteColorBorderWhite = "#ffffff";
|
package/dist/es6/semantic.d.ts
CHANGED
|
@@ -40,7 +40,21 @@ 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;
|
|
46
|
+
export const calciteFontSizeRelativeXs: string;
|
|
47
|
+
export const calciteFontSizeRelativeSm: string;
|
|
48
|
+
export const calciteFontSizeRelativeBase: string;
|
|
49
|
+
export const calciteFontSizeRelativeMd: string;
|
|
50
|
+
export const calciteFontSizeRelativeLg: string;
|
|
51
|
+
export const calciteFontSizeRelativeXl: string;
|
|
52
|
+
export const calciteFontSizeRelative2xl: string;
|
|
53
|
+
export const calciteFontSizeRelative3xl: string;
|
|
54
|
+
export const calciteFontSizeRelative4xl: string;
|
|
55
|
+
export const calciteFontSizeRelative5xl: string;
|
|
56
|
+
export const calciteFontSizeRelative6xl: string;
|
|
57
|
+
export const calciteFontSizeRelative7xl: string;
|
|
44
58
|
/** used in ratings */
|
|
45
59
|
export const calciteFontStyleEmphasis: string;
|
|
46
60
|
export const calciteFontLineHeightFixedSm: string;
|
|
@@ -66,6 +80,18 @@ export const calciteFontLineHeightRelativeNormal: string;
|
|
|
66
80
|
export const calciteFontLineHeightRelativeRelaxed: string;
|
|
67
81
|
/** 2 */
|
|
68
82
|
export const calciteFontLineHeightRelativeLoose: string;
|
|
83
|
+
export const calciteFontLineHeightXs: string;
|
|
84
|
+
export const calciteFontLineHeightSm: string;
|
|
85
|
+
export const calciteFontLineHeightBase: string;
|
|
86
|
+
export const calciteFontLineHeightMd: string;
|
|
87
|
+
export const calciteFontLineHeightLg: string;
|
|
88
|
+
export const calciteFontLineHeightXl: string;
|
|
89
|
+
export const calciteFontLineHeight2xl: string;
|
|
90
|
+
export const calciteFontLineHeight3xl: string;
|
|
91
|
+
export const calciteFontLineHeight4xl: string;
|
|
92
|
+
export const calciteFontLineHeight5xl: string;
|
|
93
|
+
export const calciteFontLineHeight6xl: string;
|
|
94
|
+
export const calciteFontLineHeight7xl: string;
|
|
69
95
|
/** Deprecated */
|
|
70
96
|
export const calciteFontLetterSpacingTight: string;
|
|
71
97
|
/** Deprecated */
|
|
@@ -135,15 +161,23 @@ export const calciteSizeFixedXxl: string;
|
|
|
135
161
|
/** deprecated */
|
|
136
162
|
export const calciteSizeFixedXxxl: string;
|
|
137
163
|
export const calciteSizePx: string;
|
|
164
|
+
/** Deprecated, use --calcite-size-3xs instead. */
|
|
138
165
|
export const calciteSizeXxxs: string;
|
|
166
|
+
export const calciteSize3xs: string;
|
|
167
|
+
/** Deprecated, use --calcite-size-2xs instead. */
|
|
139
168
|
export const calciteSizeXxs: string;
|
|
169
|
+
export const calciteSize2xs: string;
|
|
140
170
|
export const calciteSizeXs: string;
|
|
141
171
|
export const calciteSizeSm: string;
|
|
142
172
|
export const calciteSizeMd: string;
|
|
143
173
|
export const calciteSizeLg: string;
|
|
144
174
|
export const calciteSizeXl: string;
|
|
175
|
+
/** Deprecated, use --calcite-size-2xl instead. */
|
|
145
176
|
export const calciteSizeXxl: string;
|
|
177
|
+
export const calciteSize2xl: string;
|
|
178
|
+
/** Deprecated, use --calcite-size-3xl instead. */
|
|
146
179
|
export const calciteSizeXxxl: string;
|
|
180
|
+
export const calciteSize3xl: string;
|
|
147
181
|
/** deprecated */
|
|
148
182
|
export const calciteSpacingFixedXxs: string;
|
|
149
183
|
/** deprecated */
|
|
@@ -160,19 +194,45 @@ export const calciteSpacingFixedXl: string;
|
|
|
160
194
|
export const calciteSpacingFixedXxl: string;
|
|
161
195
|
/** deprecated */
|
|
162
196
|
export const calciteSpacingFixedXxxl: string;
|
|
197
|
+
/** deprecated, use `--calcite-space-none` instead */
|
|
163
198
|
export const calciteSpacingNone: string;
|
|
199
|
+
/** deprecated, use `--calcite-space-px` instead */
|
|
164
200
|
export const calciteSpacingPx: string;
|
|
201
|
+
/** deprecated, use `--calcite-space-base` instead */
|
|
165
202
|
export const calciteSpacingBase: string;
|
|
203
|
+
/** deprecated, use `--calcite-space-2xs` instead */
|
|
166
204
|
export const calciteSpacingXxs: string;
|
|
205
|
+
/** deprecated, use `--calcite-space-xs` instead */
|
|
167
206
|
export const calciteSpacingXs: string;
|
|
207
|
+
/** deprecated, use `--calcite-space-sm` instead */
|
|
168
208
|
export const calciteSpacingSm: string;
|
|
209
|
+
/** deprecated, use `--calcite-space-sm-plus` instead */
|
|
169
210
|
export const calciteSpacingSmPlus: string;
|
|
211
|
+
/** deprecated, use `--calcite-space-md` instead */
|
|
170
212
|
export const calciteSpacingMd: string;
|
|
213
|
+
/** deprecated, use `--calcite-space-md-plus` instead */
|
|
171
214
|
export const calciteSpacingMdPlus: string;
|
|
215
|
+
/** deprecated, use `--calcite-space-lg` instead */
|
|
172
216
|
export const calciteSpacingLg: string;
|
|
217
|
+
/** deprecated, use `--calcite-space-xl` instead */
|
|
173
218
|
export const calciteSpacingXl: string;
|
|
219
|
+
/** deprecated, use `--calcite-space-2xl` instead */
|
|
174
220
|
export const calciteSpacingXxl: string;
|
|
221
|
+
/** deprecated, use `--calcite-space-3xl` instead */
|
|
175
222
|
export const calciteSpacingXxxl: string;
|
|
223
|
+
export const calciteSpaceNone: string;
|
|
224
|
+
export const calciteSpacePx: string;
|
|
225
|
+
export const calciteSpaceBase: string;
|
|
226
|
+
export const calciteSpace2xs: string;
|
|
227
|
+
export const calciteSpaceXs: string;
|
|
228
|
+
export const calciteSpaceSm: string;
|
|
229
|
+
export const calciteSpaceSmPlus: string;
|
|
230
|
+
export const calciteSpaceMd: string;
|
|
231
|
+
export const calciteSpaceMdPlus: string;
|
|
232
|
+
export const calciteSpaceLg: string;
|
|
233
|
+
export const calciteSpaceXl: string;
|
|
234
|
+
export const calciteSpace2xl: string;
|
|
235
|
+
export const calciteSpace3xl: string;
|
|
176
236
|
export const calciteZIndexDeep: string;
|
|
177
237
|
export const calciteZIndex: string;
|
|
178
238
|
export const calciteZIndexSticky: string;
|
package/dist/es6/semantic.js
CHANGED
|
@@ -43,7 +43,20 @@ 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";
|
|
48
|
+
export const calciteFontSizeRelativeXs = "0.625rem";
|
|
49
|
+
export const calciteFontSizeRelativeSm = "0.75rem";
|
|
50
|
+
export const calciteFontSizeRelativeBase = "0.875rem";
|
|
51
|
+
export const calciteFontSizeRelativeMd = "1rem";
|
|
52
|
+
export const calciteFontSizeRelativeLg = "1.125rem";
|
|
53
|
+
export const calciteFontSizeRelativeXl = "1.25rem";
|
|
54
|
+
export const calciteFontSizeRelative2xl = "1.625rem";
|
|
55
|
+
export const calciteFontSizeRelative3xl = "2rem";
|
|
56
|
+
export const calciteFontSizeRelative4xl = "2.5rem";
|
|
57
|
+
export const calciteFontSizeRelative5xl = "3rem";
|
|
58
|
+
export const calciteFontSizeRelative6xl = "3.5rem";
|
|
59
|
+
export const calciteFontSizeRelative7xl = "4rem";
|
|
47
60
|
export const calciteFontStyleEmphasis = "italic"; // used in ratings
|
|
48
61
|
export const calciteFontLineHeightFixedSm = "12px";
|
|
49
62
|
export const calciteFontLineHeightFixedBase = "16px";
|
|
@@ -61,6 +74,18 @@ export const calciteFontLineHeightRelativeSnug = "1.375"; // 1.375
|
|
|
61
74
|
export const calciteFontLineHeightRelativeNormal = "1.5"; // 1.5
|
|
62
75
|
export const calciteFontLineHeightRelativeRelaxed = "1.625"; // 1.625
|
|
63
76
|
export const calciteFontLineHeightRelativeLoose = "2"; // 2
|
|
77
|
+
export const calciteFontLineHeightXs = "0.75rem";
|
|
78
|
+
export const calciteFontLineHeightSm = "1rem";
|
|
79
|
+
export const calciteFontLineHeightBase = "1rem";
|
|
80
|
+
export const calciteFontLineHeightMd = "1.25rem";
|
|
81
|
+
export const calciteFontLineHeightLg = "1.5rem";
|
|
82
|
+
export const calciteFontLineHeightXl = "1.5rem";
|
|
83
|
+
export const calciteFontLineHeight2xl = "2rem";
|
|
84
|
+
export const calciteFontLineHeight3xl = "2.5rem";
|
|
85
|
+
export const calciteFontLineHeight4xl = "3rem";
|
|
86
|
+
export const calciteFontLineHeight5xl = "4rem";
|
|
87
|
+
export const calciteFontLineHeight6xl = "4rem";
|
|
88
|
+
export const calciteFontLineHeight7xl = "5rem";
|
|
64
89
|
export const calciteFontLetterSpacingTight = "-0.4px"; // Deprecated
|
|
65
90
|
export const calciteFontLetterSpacingNormal = "0"; // Deprecated
|
|
66
91
|
export const calciteFontLetterSpacingWide = "0.4px"; // Deprecated
|
|
@@ -109,15 +134,19 @@ export const calciteSizeFixedXl = "20px"; // deprecated
|
|
|
109
134
|
export const calciteSizeFixedXxl = "24px"; // deprecated
|
|
110
135
|
export const calciteSizeFixedXxxl = "32px"; // deprecated
|
|
111
136
|
export const calciteSizePx = "1px";
|
|
112
|
-
export const calciteSizeXxxs = "0.75rem";
|
|
113
|
-
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";
|
|
114
141
|
export const calciteSizeXs = "1rem";
|
|
115
142
|
export const calciteSizeSm = "1.5rem";
|
|
116
143
|
export const calciteSizeMd = "2rem";
|
|
117
144
|
export const calciteSizeLg = "2.75rem";
|
|
118
145
|
export const calciteSizeXl = "3rem";
|
|
119
|
-
export const calciteSizeXxl = "4rem";
|
|
120
|
-
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";
|
|
121
150
|
export const calciteSpacingFixedXxs = "4px"; // deprecated
|
|
122
151
|
export const calciteSpacingFixedXs = "6px"; // deprecated
|
|
123
152
|
export const calciteSpacingFixedSm = "8px"; // deprecated
|
|
@@ -126,19 +155,32 @@ export const calciteSpacingFixedLg = "14px"; // deprecated
|
|
|
126
155
|
export const calciteSpacingFixedXl = "16px"; // deprecated
|
|
127
156
|
export const calciteSpacingFixedXxl = "20px"; // deprecated
|
|
128
157
|
export const calciteSpacingFixedXxxl = "32px"; // deprecated
|
|
129
|
-
export const calciteSpacingNone = "0";
|
|
130
|
-
export const calciteSpacingPx = "1px";
|
|
131
|
-
export const calciteSpacingBase = "2px";
|
|
132
|
-
export const calciteSpacingXxs = "0.25rem";
|
|
133
|
-
export const calciteSpacingXs = "0.375rem";
|
|
134
|
-
export const calciteSpacingSm = "0.5rem";
|
|
135
|
-
export const calciteSpacingSmPlus = "0.625rem";
|
|
136
|
-
export const calciteSpacingMd = "0.75rem";
|
|
137
|
-
export const calciteSpacingMdPlus = "0.875rem";
|
|
138
|
-
export const calciteSpacingLg = "1rem";
|
|
139
|
-
export const calciteSpacingXl = "1.25rem";
|
|
140
|
-
export const calciteSpacingXxl = "1.5rem";
|
|
141
|
-
export const calciteSpacingXxxl = "2rem";
|
|
158
|
+
export const calciteSpacingNone = "0"; // deprecated, use `--calcite-space-none` instead
|
|
159
|
+
export const calciteSpacingPx = "1px"; // deprecated, use `--calcite-space-px` instead
|
|
160
|
+
export const calciteSpacingBase = "2px"; // deprecated, use `--calcite-space-base` instead
|
|
161
|
+
export const calciteSpacingXxs = "0.25rem"; // deprecated, use `--calcite-space-2xs` instead
|
|
162
|
+
export const calciteSpacingXs = "0.375rem"; // deprecated, use `--calcite-space-xs` instead
|
|
163
|
+
export const calciteSpacingSm = "0.5rem"; // deprecated, use `--calcite-space-sm` instead
|
|
164
|
+
export const calciteSpacingSmPlus = "0.625rem"; // deprecated, use `--calcite-space-sm-plus` instead
|
|
165
|
+
export const calciteSpacingMd = "0.75rem"; // deprecated, use `--calcite-space-md` instead
|
|
166
|
+
export const calciteSpacingMdPlus = "0.875rem"; // deprecated, use `--calcite-space-md-plus` instead
|
|
167
|
+
export const calciteSpacingLg = "1rem"; // deprecated, use `--calcite-space-lg` instead
|
|
168
|
+
export const calciteSpacingXl = "1.25rem"; // deprecated, use `--calcite-space-xl` instead
|
|
169
|
+
export const calciteSpacingXxl = "1.5rem"; // deprecated, use `--calcite-space-2xl` instead
|
|
170
|
+
export const calciteSpacingXxxl = "2rem"; // deprecated, use `--calcite-space-3xl` instead
|
|
171
|
+
export const calciteSpaceNone = "0";
|
|
172
|
+
export const calciteSpacePx = "1px";
|
|
173
|
+
export const calciteSpaceBase = "2px";
|
|
174
|
+
export const calciteSpace2xs = "0.25rem";
|
|
175
|
+
export const calciteSpaceXs = "0.375rem";
|
|
176
|
+
export const calciteSpaceSm = "0.5rem";
|
|
177
|
+
export const calciteSpaceSmPlus = "0.625rem";
|
|
178
|
+
export const calciteSpaceMd = "0.75rem";
|
|
179
|
+
export const calciteSpaceMdPlus = "0.875rem";
|
|
180
|
+
export const calciteSpaceLg = "1rem";
|
|
181
|
+
export const calciteSpaceXl = "1.25rem";
|
|
182
|
+
export const calciteSpace2xl = "1.5rem";
|
|
183
|
+
export const calciteSpace3xl = "2rem";
|
|
142
184
|
export const calciteZIndexDeep = "-999999";
|
|
143
185
|
export const calciteZIndex = "1";
|
|
144
186
|
export const calciteZIndexSticky = "300";
|