@esri/calcite-design-tokens 4.0.0-next.2 → 4.0.0-next.20
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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/dist/css/breakpoints.css +8 -4
- package/dist/css/core.css +17 -2
- package/dist/css/dark.css +31 -27
- package/dist/css/global.css +64 -20
- package/dist/css/index.css +175 -150
- package/dist/css/light.css +36 -32
- package/dist/css/semantic.css +64 -20
- package/dist/docs/core.json +402 -3
- package/dist/docs/dark.json +647 -556
- package/dist/docs/global.json +3937 -2619
- package/dist/docs/light.json +667 -576
- package/dist/docs/semantic.json +2760 -1541
- package/dist/es6/breakpoints.d.ts +6 -2
- package/dist/es6/breakpoints.js +4 -2
- package/dist/es6/core.d.ts +15 -0
- package/dist/es6/core.js +17 -2
- package/dist/es6/dark.d.ts +31 -23
- package/dist/es6/dark.js +31 -27
- package/dist/es6/global.d.ts +106 -32
- package/dist/es6/global.js +129 -79
- package/dist/es6/light.d.ts +31 -23
- package/dist/es6/light.js +36 -32
- package/dist/es6/semantic.d.ts +63 -1
- package/dist/es6/semantic.js +64 -20
- package/dist/scss/breakpoints.scss +8 -4
- package/dist/scss/core.scss +17 -2
- package/dist/scss/dark.scss +31 -27
- package/dist/scss/global.scss +64 -20
- package/dist/scss/index.scss +69 -59
- package/dist/scss/light.scss +36 -32
- package/dist/scss/semantic.scss +64 -20
- package/package.json +8 -7
- package/dist/css/component.css +0 -11
|
@@ -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
|
@@ -610,6 +610,7 @@ export const calciteSize192: string;
|
|
|
610
610
|
export const calciteSize224: string;
|
|
611
611
|
export const calciteSize256: string;
|
|
612
612
|
export const calciteSize288: string;
|
|
613
|
+
export const calciteSize9999: string;
|
|
613
614
|
export const calciteSizeNone: string;
|
|
614
615
|
export const calciteSizeRelative50: string;
|
|
615
616
|
export const calciteSizeRelative100: string;
|
|
@@ -620,6 +621,20 @@ export const calciteSizeRelative162: string;
|
|
|
620
621
|
export const calciteSizeRelative200: string;
|
|
621
622
|
export const calciteSizeRelativeAuto: string;
|
|
622
623
|
export const calciteSizeRelativeNormal: string;
|
|
624
|
+
export const calciteSizeRem1: string;
|
|
625
|
+
export const calciteSizeRem2: string;
|
|
626
|
+
export const calciteSizeRem3: string;
|
|
627
|
+
export const calciteSizeRem4: string;
|
|
628
|
+
export const calciteSizeRem5: string;
|
|
629
|
+
export const calciteSizeRem0625: string;
|
|
630
|
+
export const calciteSizeRem075: string;
|
|
631
|
+
export const calciteSizeRem0875: string;
|
|
632
|
+
export const calciteSizeRem1125: string;
|
|
633
|
+
export const calciteSizeRem125: string;
|
|
634
|
+
export const calciteSizeRem15: string;
|
|
635
|
+
export const calciteSizeRem1625: string;
|
|
636
|
+
export const calciteSizeRem25: string;
|
|
637
|
+
export const calciteSizeRem35: string;
|
|
623
638
|
export const calciteZIndex0: string;
|
|
624
639
|
export const calciteZIndex1: string;
|
|
625
640
|
export const calciteZIndex3: string;
|
package/dist/es6/core.js
CHANGED
|
@@ -347,7 +347,7 @@ export const calciteColorHighSaturationOrangeYellowHOy030 = "#fcc582";
|
|
|
347
347
|
export const calciteColorHighSaturationOrangeYellowHOy040 = "#fbb664";
|
|
348
348
|
export const calciteColorHighSaturationOrangeYellowHOy050 = "#f9a845";
|
|
349
349
|
export const calciteColorHighSaturationOrangeYellowHOy060 = "#f89927";
|
|
350
|
-
export const calciteColorHighSaturationOrangeYellowHOy070 = "#
|
|
350
|
+
export const calciteColorHighSaturationOrangeYellowHOy070 = "#da7c0b";
|
|
351
351
|
export const calciteColorHighSaturationOrangeYellowHOy080 = "#9a5b10";
|
|
352
352
|
export const calciteColorHighSaturationOrangeYellowHOy090 = "#6d3f08";
|
|
353
353
|
export const calciteColorHighSaturationOrangeYellowHOy100 = "#402300";
|
|
@@ -434,7 +434,7 @@ export const calciteColorVibrantYellowVYy180 = "#ebba17";
|
|
|
434
434
|
export const calciteColorVibrantOrangeYellowVOy120 = "#ffb54d";
|
|
435
435
|
export const calciteColorVibrantOrangeYellowVOy140 = "#ff9500";
|
|
436
436
|
export const calciteColorVibrantOrangeYellowVOy160 = "#e68600";
|
|
437
|
-
export const calciteColorVibrantOrangeYellowVOy180 = "#
|
|
437
|
+
export const calciteColorVibrantOrangeYellowVOy180 = "#c26b00";
|
|
438
438
|
export const calciteColorVibrantRedOrangeVRo120 = "#ff824d";
|
|
439
439
|
export const calciteColorVibrantRedOrangeVRo140 = "#ff4d00";
|
|
440
440
|
export const calciteColorVibrantRedOrangeVRo160 = "#de4300";
|
|
@@ -590,6 +590,7 @@ export const calciteSize192 = "192px";
|
|
|
590
590
|
export const calciteSize224 = "224px";
|
|
591
591
|
export const calciteSize256 = "256px";
|
|
592
592
|
export const calciteSize288 = "288px";
|
|
593
|
+
export const calciteSize9999 = "9999px";
|
|
593
594
|
export const calciteSizeNone = "0";
|
|
594
595
|
export const calciteSizeRelative50 = "50%";
|
|
595
596
|
export const calciteSizeRelative100 = "100%";
|
|
@@ -600,6 +601,20 @@ export const calciteSizeRelative162 = "162.5%";
|
|
|
600
601
|
export const calciteSizeRelative200 = "200%";
|
|
601
602
|
export const calciteSizeRelativeAuto = "auto";
|
|
602
603
|
export const calciteSizeRelativeNormal = "normal";
|
|
604
|
+
export const calciteSizeRem1 = "1rem";
|
|
605
|
+
export const calciteSizeRem2 = "2rem";
|
|
606
|
+
export const calciteSizeRem3 = "3rem";
|
|
607
|
+
export const calciteSizeRem4 = "4rem";
|
|
608
|
+
export const calciteSizeRem5 = "5rem";
|
|
609
|
+
export const calciteSizeRem0625 = "0.625rem";
|
|
610
|
+
export const calciteSizeRem075 = "0.75rem";
|
|
611
|
+
export const calciteSizeRem0875 = "0.875rem";
|
|
612
|
+
export const calciteSizeRem1125 = "1.125rem";
|
|
613
|
+
export const calciteSizeRem125 = "1.25rem";
|
|
614
|
+
export const calciteSizeRem15 = "1.5rem";
|
|
615
|
+
export const calciteSizeRem1625 = "1.625rem";
|
|
616
|
+
export const calciteSizeRem25 = "2.5rem";
|
|
617
|
+
export const calciteSizeRem35 = "3.5rem";
|
|
603
618
|
export const calciteZIndex0 = "-999999";
|
|
604
619
|
export const calciteZIndex1 = "1";
|
|
605
620
|
export const calciteZIndex3 = "300";
|
package/dist/es6/dark.d.ts
CHANGED
|
@@ -3,25 +3,41 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
+
export const calciteColorSurface1: string;
|
|
7
|
+
export const calciteColorSurface2: string;
|
|
8
|
+
export const calciteColorSurface3: string;
|
|
9
|
+
export const calciteColorSurface4: string;
|
|
10
|
+
export const calciteColorSurfaceHighlight: string;
|
|
11
|
+
/** Deprecated, use `--calcite-color-surface-1` instead */
|
|
6
12
|
export const calciteColorBackground: string;
|
|
7
13
|
export const calciteColorBackgroundNone: string;
|
|
14
|
+
/** Deprecated, use `--calcite-color-surface-2` instead */
|
|
8
15
|
export const calciteColorForeground1: string;
|
|
16
|
+
/** Deprecated, use `--calcite-color-surface-3` instead */
|
|
9
17
|
export const calciteColorForeground2: string;
|
|
18
|
+
/** Deprecated, use `--calcite-color-surface-4` instead */
|
|
10
19
|
export const calciteColorForeground3: string;
|
|
11
20
|
/** deprecated, use --calcite-color-surface-highlight instead */
|
|
12
21
|
export const calciteColorForegroundCurrent: string;
|
|
13
|
-
export const
|
|
14
|
-
export const
|
|
15
|
-
export const
|
|
16
|
-
export const
|
|
17
|
-
export const
|
|
18
|
-
export const
|
|
19
|
-
export const
|
|
20
|
-
export const
|
|
22
|
+
export const calciteColorText1: string;
|
|
23
|
+
export const calciteColorText2: string;
|
|
24
|
+
export const calciteColorText3: string;
|
|
25
|
+
export const calciteColorTextInverse: string;
|
|
26
|
+
export const calciteColorTextLink: string;
|
|
27
|
+
export const calciteColorTextHighlight: string;
|
|
28
|
+
export const calciteColorBorder1: string;
|
|
29
|
+
export const calciteColorBorder2: string;
|
|
30
|
+
export const calciteColorBorder3: string;
|
|
31
|
+
export const calciteColorBorderInput: string;
|
|
32
|
+
export const calciteColorBorderGhost: string;
|
|
33
|
+
export const calciteColorBorderWhite: string;
|
|
21
34
|
export const calciteColorBrand: string;
|
|
22
35
|
export const calciteColorBrandHover: string;
|
|
23
36
|
export const calciteColorBrandPress: string;
|
|
24
37
|
export const calciteColorBrandUnderline: string;
|
|
38
|
+
export const calciteColorInverse: string;
|
|
39
|
+
export const calciteColorInverseHover: string;
|
|
40
|
+
export const calciteColorInversePress: string;
|
|
25
41
|
export const calciteColorStatusInfo: string;
|
|
26
42
|
export const calciteColorStatusInfoHover: string;
|
|
27
43
|
export const calciteColorStatusInfoPress: string;
|
|
@@ -34,19 +50,11 @@ export const calciteColorStatusWarningPress: string;
|
|
|
34
50
|
export const calciteColorStatusDanger: string;
|
|
35
51
|
export const calciteColorStatusDangerHover: string;
|
|
36
52
|
export const calciteColorStatusDangerPress: string;
|
|
37
|
-
export const
|
|
38
|
-
export const
|
|
39
|
-
export const
|
|
40
|
-
export const
|
|
41
|
-
export const
|
|
42
|
-
export const
|
|
43
|
-
export const
|
|
44
|
-
export const calciteColorTextInverse: string;
|
|
45
|
-
export const calciteColorTextLink: string;
|
|
46
|
-
export const calciteColorBorder1: string;
|
|
47
|
-
export const calciteColorBorder2: string;
|
|
48
|
-
export const calciteColorBorder3: string;
|
|
49
|
-
export const calciteColorBorderInput: string;
|
|
50
|
-
export const calciteColorBorderGhost: string;
|
|
51
|
-
export const calciteColorBorderWhite: string;
|
|
53
|
+
export const calciteColorTransparent: string;
|
|
54
|
+
export const calciteColorTransparentHover: string;
|
|
55
|
+
export const calciteColorTransparentPress: string;
|
|
56
|
+
export const calciteColorTransparentScrim: string;
|
|
57
|
+
export const calciteColorTransparentTint: string;
|
|
58
|
+
export const calciteColorTransparentInverseHover: string;
|
|
59
|
+
export const calciteColorTransparentInversePress: string;
|
|
52
60
|
export const calciteColorFocus: string;
|
package/dist/es6/dark.js
CHANGED
|
@@ -3,24 +3,36 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export const
|
|
6
|
+
export const calciteColorSurface1 = "#212121";
|
|
7
|
+
export const calciteColorSurface2 = "#2b2b2b";
|
|
8
|
+
export const calciteColorSurface3 = "#363636";
|
|
9
|
+
export const calciteColorSurface4 = "#404040";
|
|
10
|
+
export const calciteColorSurfaceHighlight = "#2b465f";
|
|
11
|
+
export const calciteColorBackground = "#212121"; // Deprecated, use `--calcite-color-surface-1` instead
|
|
7
12
|
export const calciteColorBackgroundNone = "rgba(255, 255, 255, 0)";
|
|
8
|
-
export const calciteColorForeground1 = "#2b2b2b";
|
|
9
|
-
export const calciteColorForeground2 = "#
|
|
10
|
-
export const calciteColorForeground3 = "#
|
|
13
|
+
export const calciteColorForeground1 = "#2b2b2b"; // Deprecated, use `--calcite-color-surface-2` instead
|
|
14
|
+
export const calciteColorForeground2 = "#363636"; // Deprecated, use `--calcite-color-surface-3` instead
|
|
15
|
+
export const calciteColorForeground3 = "#404040"; // Deprecated, use `--calcite-color-surface-4` instead
|
|
11
16
|
export const calciteColorForegroundCurrent = "#2b465f"; // deprecated, use --calcite-color-surface-highlight instead
|
|
12
|
-
export const
|
|
13
|
-
export const
|
|
14
|
-
export const
|
|
15
|
-
export const
|
|
16
|
-
export const
|
|
17
|
-
export const
|
|
18
|
-
export const
|
|
19
|
-
export const
|
|
17
|
+
export const calciteColorText1 = "#ffffff";
|
|
18
|
+
export const calciteColorText2 = "#bfbfbf";
|
|
19
|
+
export const calciteColorText3 = "#9e9e9e";
|
|
20
|
+
export const calciteColorTextInverse = "#141414";
|
|
21
|
+
export const calciteColorTextLink = "#00a0ff";
|
|
22
|
+
export const calciteColorTextHighlight = "#d6efff";
|
|
23
|
+
export const calciteColorBorder1 = "#545454";
|
|
24
|
+
export const calciteColorBorder2 = "#4a4a4a";
|
|
25
|
+
export const calciteColorBorder3 = "#404040";
|
|
26
|
+
export const calciteColorBorderInput = "#757575";
|
|
27
|
+
export const calciteColorBorderGhost = "rgba(117, 117, 117, 0.3)";
|
|
28
|
+
export const calciteColorBorderWhite = "#f7f7f7";
|
|
20
29
|
export const calciteColorBrand = "#009af2";
|
|
21
30
|
export const calciteColorBrandHover = "#007ac2";
|
|
22
31
|
export const calciteColorBrandPress = "#00619b";
|
|
23
32
|
export const calciteColorBrandUnderline = "rgba(0, 160, 255, 0.4)";
|
|
33
|
+
export const calciteColorInverse = "#f7f7f7";
|
|
34
|
+
export const calciteColorInverseHover = "#f2f2f2";
|
|
35
|
+
export const calciteColorInversePress = "#ebebeb";
|
|
24
36
|
export const calciteColorStatusInfo = "#00a0ff";
|
|
25
37
|
export const calciteColorStatusInfoHover = "#3db8ff";
|
|
26
38
|
export const calciteColorStatusInfoPress = "#009af2";
|
|
@@ -33,19 +45,11 @@ export const calciteColorStatusWarningPress = "#ff9500";
|
|
|
33
45
|
export const calciteColorStatusDanger = "#fe583e";
|
|
34
46
|
export const calciteColorStatusDangerHover = "#ff0015";
|
|
35
47
|
export const calciteColorStatusDangerPress = "#d90012";
|
|
36
|
-
export const
|
|
37
|
-
export const
|
|
38
|
-
export const
|
|
39
|
-
export const
|
|
40
|
-
export const
|
|
41
|
-
export const
|
|
42
|
-
export const
|
|
43
|
-
export const calciteColorTextInverse = "#141414";
|
|
44
|
-
export const calciteColorTextLink = "#00a0ff";
|
|
45
|
-
export const calciteColorBorder1 = "#545454";
|
|
46
|
-
export const calciteColorBorder2 = "#4a4a4a";
|
|
47
|
-
export const calciteColorBorder3 = "#404040";
|
|
48
|
-
export const calciteColorBorderInput = "#757575";
|
|
49
|
-
export const calciteColorBorderGhost = "rgba(117, 117, 117, 0.3)";
|
|
50
|
-
export const calciteColorBorderWhite = "#f7f7f7";
|
|
48
|
+
export const calciteColorTransparent = "rgba(255, 255, 255, 0)";
|
|
49
|
+
export const calciteColorTransparentHover = "rgba(255, 255, 255, 0.12)";
|
|
50
|
+
export const calciteColorTransparentPress = "rgba(255, 255, 255, 0.16)";
|
|
51
|
+
export const calciteColorTransparentScrim = "rgba(0, 0, 0, 0.85)";
|
|
52
|
+
export const calciteColorTransparentTint = "rgba(43, 43, 43, 0.8)";
|
|
53
|
+
export const calciteColorTransparentInverseHover = "rgba(0, 0, 0, 0.04)";
|
|
54
|
+
export const calciteColorTransparentInversePress = "rgba(0, 0, 0, 0.08)";
|
|
51
55
|
export const calciteColorFocus = "#009af2";
|
package/dist/es6/global.d.ts
CHANGED
|
@@ -4,31 +4,41 @@
|
|
|
4
4
|
* Do not edit directly, this file was auto-generated.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
export const calciteColorSurface1: { light: string; dark: string };
|
|
8
|
+
export const calciteColorSurface2: { light: string; dark: string };
|
|
9
|
+
export const calciteColorSurface3: { light: string; dark: string };
|
|
10
|
+
export const calciteColorSurface4: { light: string; dark: string };
|
|
11
|
+
export const calciteColorSurfaceHighlight: { light: string; dark: string };
|
|
12
|
+
/** Deprecated, use `--calcite-color-surface-1` instead */
|
|
7
13
|
export const calciteColorBackground: { light: string; dark: string };
|
|
8
14
|
export const calciteColorBackgroundNone: string;
|
|
15
|
+
/** Deprecated, use `--calcite-color-surface-2` instead */
|
|
9
16
|
export const calciteColorForeground1: { light: string; dark: string };
|
|
17
|
+
/** Deprecated, use `--calcite-color-surface-3` instead */
|
|
10
18
|
export const calciteColorForeground2: { light: string; dark: string };
|
|
19
|
+
/** Deprecated, use `--calcite-color-surface-4` instead */
|
|
11
20
|
export const calciteColorForeground3: { light: string; dark: string };
|
|
12
21
|
/** deprecated, use --calcite-color-surface-highlight instead */
|
|
13
22
|
export const calciteColorForegroundCurrent: { light: string; dark: string };
|
|
14
|
-
export const
|
|
15
|
-
export const
|
|
16
|
-
export const
|
|
17
|
-
export const
|
|
18
|
-
export const
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
};
|
|
22
|
-
export const
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
};
|
|
26
|
-
export const calciteColorTransparentScrim: { light: string; dark: string };
|
|
27
|
-
export const calciteColorTransparentTint: { light: string; dark: string };
|
|
23
|
+
export const calciteColorText1: { light: string; dark: string };
|
|
24
|
+
export const calciteColorText2: { light: string; dark: string };
|
|
25
|
+
export const calciteColorText3: { light: string; dark: string };
|
|
26
|
+
export const calciteColorTextInverse: { light: string; dark: string };
|
|
27
|
+
export const calciteColorTextLink: { light: string; dark: string };
|
|
28
|
+
export const calciteColorTextHighlight: { light: string; dark: string };
|
|
29
|
+
export const calciteColorBorder1: { light: string; dark: string };
|
|
30
|
+
export const calciteColorBorder2: { light: string; dark: string };
|
|
31
|
+
export const calciteColorBorder3: { light: string; dark: string };
|
|
32
|
+
export const calciteColorBorderInput: { light: string; dark: string };
|
|
33
|
+
export const calciteColorBorderGhost: { light: string; dark: string };
|
|
34
|
+
export const calciteColorBorderWhite: { light: string; dark: string };
|
|
28
35
|
export const calciteColorBrand: { light: string; dark: string };
|
|
29
36
|
export const calciteColorBrandHover: { light: string; dark: string };
|
|
30
37
|
export const calciteColorBrandPress: { light: string; dark: string };
|
|
31
38
|
export const calciteColorBrandUnderline: { light: string; dark: string };
|
|
39
|
+
export const calciteColorInverse: { light: string; dark: string };
|
|
40
|
+
export const calciteColorInverseHover: { light: string; dark: string };
|
|
41
|
+
export const calciteColorInversePress: { light: string; dark: string };
|
|
32
42
|
export const calciteColorStatusInfo: { light: string; dark: string };
|
|
33
43
|
export const calciteColorStatusInfoHover: { light: string; dark: string };
|
|
34
44
|
export const calciteColorStatusInfoPress: { light: string; dark: string };
|
|
@@ -41,28 +51,28 @@ export const calciteColorStatusWarningPress: { light: string; dark: string };
|
|
|
41
51
|
export const calciteColorStatusDanger: { light: string; dark: string };
|
|
42
52
|
export const calciteColorStatusDangerHover: { light: string; dark: string };
|
|
43
53
|
export const calciteColorStatusDangerPress: { light: string; dark: string };
|
|
44
|
-
export const
|
|
45
|
-
export const
|
|
46
|
-
export const
|
|
47
|
-
export const
|
|
48
|
-
export const
|
|
49
|
-
export const
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
export const
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
export const calciteColorBorderGhost: { light: string; dark: string };
|
|
58
|
-
export const calciteColorBorderWhite: { light: string; dark: string };
|
|
54
|
+
export const calciteColorTransparent: { light: string; dark: string };
|
|
55
|
+
export const calciteColorTransparentHover: { light: string; dark: string };
|
|
56
|
+
export const calciteColorTransparentPress: { light: string; dark: string };
|
|
57
|
+
export const calciteColorTransparentScrim: { light: string; dark: string };
|
|
58
|
+
export const calciteColorTransparentTint: { light: string; dark: string };
|
|
59
|
+
export const calciteColorTransparentInverseHover: {
|
|
60
|
+
light: string;
|
|
61
|
+
dark: string;
|
|
62
|
+
};
|
|
63
|
+
export const calciteColorTransparentInversePress: {
|
|
64
|
+
light: string;
|
|
65
|
+
dark: string;
|
|
66
|
+
};
|
|
59
67
|
export const calciteColorFocus: { light: string; dark: string };
|
|
60
68
|
export const calciteBorderWidthNone: string;
|
|
61
69
|
export const calciteBorderWidthSm: string;
|
|
62
70
|
export const calciteBorderWidthMd: string;
|
|
63
71
|
export const calciteBorderWidthLg: string;
|
|
64
|
-
/** Small handheld devices and mini-windows */
|
|
72
|
+
/** Deprecated, use --calcite-container-size-height-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
65
73
|
export const calciteContainerSizeHeightXxs: { min: string; max: string };
|
|
74
|
+
/** Small handheld devices and mini-windows */
|
|
75
|
+
export const calciteContainerSizeHeight2xs: { min: string; max: string };
|
|
66
76
|
/** Handheld devices */
|
|
67
77
|
export const calciteContainerSizeHeightXs: { min: string; max: string };
|
|
68
78
|
/** Small tablets */
|
|
@@ -73,8 +83,10 @@ export const calciteContainerSizeHeightMd: { min: string; max: string };
|
|
|
73
83
|
export const calciteContainerSizeHeightLg: { min: string; max: string };
|
|
74
84
|
/** Projectors and televisions */
|
|
75
85
|
export const calciteContainerSizeHeightXl: { min: string };
|
|
76
|
-
/** Small handheld devices and mini-windows */
|
|
86
|
+
/** Deprecated, use --calcite-container-size-width-2xs-min|max instead. Small handheld devices and mini-windows */
|
|
77
87
|
export const calciteContainerSizeWidthXxs: { min: string; max: string };
|
|
88
|
+
/** Small handheld devices and mini-windows */
|
|
89
|
+
export const calciteContainerSizeWidth2xs: { min: string; max: string };
|
|
78
90
|
/** Handheld devices */
|
|
79
91
|
export const calciteContainerSizeWidthXs: { min: string; max: string };
|
|
80
92
|
/** Small tablets */
|
|
@@ -118,7 +130,21 @@ export const calciteFontSize: string;
|
|
|
118
130
|
export const calciteFontSizeMd: string;
|
|
119
131
|
export const calciteFontSizeLg: string;
|
|
120
132
|
export const calciteFontSizeXl: string;
|
|
133
|
+
/** Deprecated, use --calcite-font-size-2xl instead. */
|
|
121
134
|
export const calciteFontSizeXxl: string;
|
|
135
|
+
export const calciteFontSize2xl: string;
|
|
136
|
+
export const calciteFontSizeRelativeXs: string;
|
|
137
|
+
export const calciteFontSizeRelativeSm: string;
|
|
138
|
+
export const calciteFontSizeRelativeBase: string;
|
|
139
|
+
export const calciteFontSizeRelativeMd: string;
|
|
140
|
+
export const calciteFontSizeRelativeLg: string;
|
|
141
|
+
export const calciteFontSizeRelativeXl: string;
|
|
142
|
+
export const calciteFontSizeRelative2xl: string;
|
|
143
|
+
export const calciteFontSizeRelative3xl: string;
|
|
144
|
+
export const calciteFontSizeRelative4xl: string;
|
|
145
|
+
export const calciteFontSizeRelative5xl: string;
|
|
146
|
+
export const calciteFontSizeRelative6xl: string;
|
|
147
|
+
export const calciteFontSizeRelative7xl: string;
|
|
122
148
|
/** used in ratings */
|
|
123
149
|
export const calciteFontStyleEmphasis: string;
|
|
124
150
|
export const calciteFontLineHeightFixedSm: string;
|
|
@@ -144,6 +170,18 @@ export const calciteFontLineHeightRelativeNormal: string;
|
|
|
144
170
|
export const calciteFontLineHeightRelativeRelaxed: string;
|
|
145
171
|
/** 2 */
|
|
146
172
|
export const calciteFontLineHeightRelativeLoose: string;
|
|
173
|
+
export const calciteFontLineHeightXs: string;
|
|
174
|
+
export const calciteFontLineHeightSm: string;
|
|
175
|
+
export const calciteFontLineHeightBase: string;
|
|
176
|
+
export const calciteFontLineHeightMd: string;
|
|
177
|
+
export const calciteFontLineHeightLg: string;
|
|
178
|
+
export const calciteFontLineHeightXl: string;
|
|
179
|
+
export const calciteFontLineHeight2xl: string;
|
|
180
|
+
export const calciteFontLineHeight3xl: string;
|
|
181
|
+
export const calciteFontLineHeight4xl: string;
|
|
182
|
+
export const calciteFontLineHeight5xl: string;
|
|
183
|
+
export const calciteFontLineHeight6xl: string;
|
|
184
|
+
export const calciteFontLineHeight7xl: string;
|
|
147
185
|
/** Deprecated */
|
|
148
186
|
export const calciteFontLetterSpacingTight: string;
|
|
149
187
|
/** Deprecated */
|
|
@@ -164,11 +202,11 @@ export const calciteFontTextCaseUppercase: string;
|
|
|
164
202
|
export const calciteFontTextCaseLowercase: string;
|
|
165
203
|
/** Deprecated */
|
|
166
204
|
export const calciteFontTextCaseCapitalize: string;
|
|
205
|
+
export const calciteOpacityDisabled: string;
|
|
167
206
|
export const calciteOpacityLight: string;
|
|
168
207
|
export const calciteOpacityHalf: string;
|
|
169
208
|
export const calciteOpacityDark: string;
|
|
170
209
|
export const calciteOpacityFull: string;
|
|
171
|
-
export const calciteOpacityDisabled: string;
|
|
172
210
|
export const calciteShadowNone: {
|
|
173
211
|
blur: string;
|
|
174
212
|
spread: string;
|
|
@@ -213,15 +251,24 @@ export const calciteSizeFixedXxl: string;
|
|
|
213
251
|
/** deprecated */
|
|
214
252
|
export const calciteSizeFixedXxxl: string;
|
|
215
253
|
export const calciteSizePx: string;
|
|
254
|
+
export const calciteSize4xs: string;
|
|
255
|
+
/** Deprecated, use --calcite-size-3xs instead. */
|
|
216
256
|
export const calciteSizeXxxs: string;
|
|
257
|
+
export const calciteSize3xs: string;
|
|
258
|
+
/** Deprecated, use --calcite-size-2xs instead. */
|
|
217
259
|
export const calciteSizeXxs: string;
|
|
260
|
+
export const calciteSize2xs: string;
|
|
218
261
|
export const calciteSizeXs: string;
|
|
219
262
|
export const calciteSizeSm: string;
|
|
220
263
|
export const calciteSizeMd: string;
|
|
221
264
|
export const calciteSizeLg: string;
|
|
222
265
|
export const calciteSizeXl: string;
|
|
266
|
+
/** Deprecated, use --calcite-size-2xl instead. */
|
|
223
267
|
export const calciteSizeXxl: string;
|
|
268
|
+
export const calciteSize2xl: string;
|
|
269
|
+
/** Deprecated, use --calcite-size-3xl instead. */
|
|
224
270
|
export const calciteSizeXxxl: string;
|
|
271
|
+
export const calciteSize3xl: string;
|
|
225
272
|
/** deprecated */
|
|
226
273
|
export const calciteSpacingFixedXxs: string;
|
|
227
274
|
/** deprecated */
|
|
@@ -238,19 +285,46 @@ export const calciteSpacingFixedXl: string;
|
|
|
238
285
|
export const calciteSpacingFixedXxl: string;
|
|
239
286
|
/** deprecated */
|
|
240
287
|
export const calciteSpacingFixedXxxl: string;
|
|
288
|
+
/** deprecated, use `--calcite-space-none` instead */
|
|
241
289
|
export const calciteSpacingNone: string;
|
|
290
|
+
/** deprecated, use `--calcite-space-px` instead */
|
|
242
291
|
export const calciteSpacingPx: string;
|
|
292
|
+
/** deprecated, use `--calcite-space-base` instead */
|
|
243
293
|
export const calciteSpacingBase: string;
|
|
294
|
+
/** deprecated, use `--calcite-space-2xs` instead */
|
|
244
295
|
export const calciteSpacingXxs: string;
|
|
296
|
+
/** deprecated, use `--calcite-space-xs` instead */
|
|
245
297
|
export const calciteSpacingXs: string;
|
|
298
|
+
/** deprecated, use `--calcite-space-sm` instead */
|
|
246
299
|
export const calciteSpacingSm: string;
|
|
300
|
+
/** deprecated, use `--calcite-space-sm-plus` instead */
|
|
247
301
|
export const calciteSpacingSmPlus: string;
|
|
302
|
+
/** deprecated, use `--calcite-space-md` instead */
|
|
248
303
|
export const calciteSpacingMd: string;
|
|
304
|
+
/** deprecated, use `--calcite-space-md-plus` instead */
|
|
249
305
|
export const calciteSpacingMdPlus: string;
|
|
306
|
+
/** deprecated, use `--calcite-space-lg` instead */
|
|
250
307
|
export const calciteSpacingLg: string;
|
|
308
|
+
/** deprecated, use `--calcite-space-xl` instead */
|
|
251
309
|
export const calciteSpacingXl: string;
|
|
310
|
+
/** deprecated, use `--calcite-space-2xl` instead */
|
|
252
311
|
export const calciteSpacingXxl: string;
|
|
312
|
+
/** deprecated, use `--calcite-space-3xl` instead */
|
|
253
313
|
export const calciteSpacingXxxl: string;
|
|
314
|
+
export const calciteSpaceNone: string;
|
|
315
|
+
export const calciteSpacePx: string;
|
|
316
|
+
export const calciteSpaceBase: string;
|
|
317
|
+
export const calciteSpace2xs: string;
|
|
318
|
+
export const calciteSpaceXs: string;
|
|
319
|
+
export const calciteSpaceSm: string;
|
|
320
|
+
export const calciteSpaceSmPlus: string;
|
|
321
|
+
export const calciteSpaceMd: string;
|
|
322
|
+
export const calciteSpaceMdPlus: string;
|
|
323
|
+
export const calciteSpaceLg: string;
|
|
324
|
+
export const calciteSpaceXl: string;
|
|
325
|
+
export const calciteSpace2xl: string;
|
|
326
|
+
export const calciteSpace3xl: string;
|
|
327
|
+
export const calciteSpace4xl: string;
|
|
254
328
|
export const calciteTypography: {
|
|
255
329
|
fontFamily: string[];
|
|
256
330
|
fontSize: string;
|