@esri/calcite-design-tokens 3.1.0-next.6 → 3.1.0-next.8
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 +22 -22
- package/dist/css/core.css +19 -19
- package/dist/css/dark.css +1 -0
- package/dist/css/global.css +45 -45
- package/dist/css/index.css +5 -0
- package/dist/css/light.css +1 -0
- package/dist/css/semantic.css +67 -67
- package/dist/docs/core.json +1 -1
- package/dist/docs/dark.json +28 -1
- package/dist/docs/global.json +28 -1
- package/dist/docs/light.json +28 -1
- package/dist/docs/semantic.json +1 -1
- package/dist/es6/breakpoints.d.ts +22 -43
- package/dist/es6/core.d.ts +38 -19
- package/dist/es6/dark.d.ts +1 -0
- package/dist/es6/dark.js +1 -0
- package/dist/es6/global.d.ts +113 -88
- package/dist/es6/global.js +1 -0
- package/dist/es6/light.d.ts +1 -0
- package/dist/es6/light.js +1 -0
- package/dist/es6/semantic.d.ts +112 -88
- package/dist/js/dark.d.ts +1 -0
- package/dist/js/dark.js +34 -0
- package/dist/js/global.d.ts +1 -0
- package/dist/js/global.js +38 -1
- package/dist/js/light.d.ts +1 -0
- package/dist/js/light.js +34 -0
- package/dist/js/semantic.js +1 -1
- package/dist/scss/dark.scss +1 -0
- package/dist/scss/global.scss +1 -1
- package/dist/scss/index.scss +2 -0
- package/dist/scss/light.scss +1 -0
- package/dist/scss/semantic.scss +1 -1
- package/package.json +2 -2
package/dist/css/breakpoints.css
CHANGED
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
--calcite-container-size-height-xxs-min: 0;
|
|
8
|
-
--calcite-container-size-width-xxs-min: 0;
|
|
9
|
-
--calcite-container-size-height-xxs-max: 154px;
|
|
10
|
-
--calcite-container-size-height-xs-min: 155px;
|
|
11
|
-
--calcite-container-size-height-xs-max: 328px;
|
|
12
|
-
--calcite-container-size-height-sm-min: 329px;
|
|
13
|
-
--calcite-container-size-height-sm-max: 504px;
|
|
14
|
-
--calcite-container-size-height-md-min: 505px;
|
|
15
|
-
--calcite-container-size-height-md-max: 678px;
|
|
16
|
-
--calcite-container-size-height-lg-min: 679px;
|
|
17
|
-
--calcite-container-size-height-lg-max: 854px;
|
|
18
|
-
--calcite-container-size-height-xl-min: 855px;
|
|
19
|
-
--calcite-container-size-width-xxs-max: 320px;
|
|
20
|
-
--calcite-container-size-width-xs-min: 321px;
|
|
21
|
-
--calcite-container-size-width-xs-max: 476px;
|
|
22
|
-
--calcite-container-size-width-sm-min: 477px;
|
|
23
|
-
--calcite-container-size-width-sm-max: 768px;
|
|
24
|
-
--calcite-container-size-width-md-min: 769px;
|
|
25
|
-
--calcite-container-size-width-md-max: 1152px;
|
|
26
|
-
--calcite-container-size-width-lg-min: 1153px;
|
|
27
|
-
--calcite-container-size-width-lg-max: 1440px;
|
|
28
|
-
--calcite-container-size-width-xl-min: 1441px;
|
|
7
|
+
--calcite-container-size-height-xxs-min: 0; /** Small handheld devices and mini-windows */
|
|
8
|
+
--calcite-container-size-width-xxs-min: 0; /** Small handheld devices and mini-windows */
|
|
9
|
+
--calcite-container-size-height-xxs-max: 154px; /** Small handheld devices and mini-windows */
|
|
10
|
+
--calcite-container-size-height-xs-min: 155px; /** Handheld devices */
|
|
11
|
+
--calcite-container-size-height-xs-max: 328px; /** Handheld devices */
|
|
12
|
+
--calcite-container-size-height-sm-min: 329px; /** Small tablets */
|
|
13
|
+
--calcite-container-size-height-sm-max: 504px; /** Small tablets */
|
|
14
|
+
--calcite-container-size-height-md-min: 505px; /** Small laptops */
|
|
15
|
+
--calcite-container-size-height-md-max: 678px; /** Small laptops */
|
|
16
|
+
--calcite-container-size-height-lg-min: 679px; /** Large laptops and desktop computers */
|
|
17
|
+
--calcite-container-size-height-lg-max: 854px; /** Large laptops and desktop computers */
|
|
18
|
+
--calcite-container-size-height-xl-min: 855px; /** Projectors and televisions */
|
|
19
|
+
--calcite-container-size-width-xxs-max: 320px; /** Small handheld devices and mini-windows */
|
|
20
|
+
--calcite-container-size-width-xs-min: 321px; /** Handheld devices */
|
|
21
|
+
--calcite-container-size-width-xs-max: 476px; /** Handheld devices */
|
|
22
|
+
--calcite-container-size-width-sm-min: 477px; /** Small tablets */
|
|
23
|
+
--calcite-container-size-width-sm-max: 768px; /** Small tablets */
|
|
24
|
+
--calcite-container-size-width-md-min: 769px; /** Small laptops */
|
|
25
|
+
--calcite-container-size-width-md-max: 1152px; /** Small laptops */
|
|
26
|
+
--calcite-container-size-width-lg-min: 1153px; /** Large laptops and desktop computers */
|
|
27
|
+
--calcite-container-size-width-lg-max: 1440px; /** Large laptops and desktop computers */
|
|
28
|
+
--calcite-container-size-width-xl-min: 1441px; /** Projectors and televisions */
|
|
29
29
|
}
|
package/dist/css/core.css
CHANGED
|
@@ -478,35 +478,35 @@
|
|
|
478
478
|
--calcite-container-size-854: 854px;
|
|
479
479
|
--calcite-container-size-1152: 1152px;
|
|
480
480
|
--calcite-container-size-1440: 1440px;
|
|
481
|
-
--calcite-font-family-andale-mono: 'Andale Mono';
|
|
481
|
+
--calcite-font-family-andale-mono: 'Andale Mono'; /** Fallback for Monaco */
|
|
482
482
|
--calcite-font-family-avenir-next-pro: 'Avenir Next LT Pro';
|
|
483
483
|
--calcite-font-family-avenir-next-world: 'Avenir Next World';
|
|
484
|
-
--calcite-font-family-avenir-next: 'Avenir Next';
|
|
485
|
-
--calcite-font-family-avenir: Avenir;
|
|
486
|
-
--calcite-font-family-consolas: Consolas;
|
|
487
|
-
--calcite-font-family-helvetica-neue: 'Helvetica Neue';
|
|
488
|
-
--calcite-font-family-lucida-console: 'Lucida Console';
|
|
484
|
+
--calcite-font-family-avenir-next: 'Avenir Next'; /** Primary font family */
|
|
485
|
+
--calcite-font-family-avenir: Avenir; /** Fallback for Avenir Next */
|
|
486
|
+
--calcite-font-family-consolas: Consolas; /** Fallback for Monaco */
|
|
487
|
+
--calcite-font-family-helvetica-neue: 'Helvetica Neue'; /** Fallback for Avenir Next */
|
|
488
|
+
--calcite-font-family-lucida-console: 'Lucida Console'; /** Fallback for Monaco */
|
|
489
489
|
--calcite-font-family-monaco: Monaco;
|
|
490
|
-
--calcite-font-family-monospace: monospace;
|
|
491
|
-
--calcite-font-family-sans-serif: sans-serif;
|
|
492
|
-
--calcite-font-style-italic: italic;
|
|
493
|
-
--calcite-font-weight-ultralight: 200;
|
|
490
|
+
--calcite-font-family-monospace: monospace; /** Fallback for Monaco */
|
|
491
|
+
--calcite-font-family-sans-serif: sans-serif; /** Fallback for Avenir Next */
|
|
492
|
+
--calcite-font-style-italic: italic; /** used in ratings */
|
|
493
|
+
--calcite-font-weight-ultralight: 200; /** only for Avenir Next World (secondary font family) */
|
|
494
494
|
--calcite-font-weight-thin: 100;
|
|
495
|
-
--calcite-font-weight-light: 300;
|
|
495
|
+
--calcite-font-weight-light: 300; /** only for Avenir Next World (secondary font family) */
|
|
496
496
|
--calcite-font-weight-regular: 400;
|
|
497
497
|
--calcite-font-weight-medium: 500;
|
|
498
498
|
--calcite-font-weight-medium-italic: "Medium Italic";
|
|
499
499
|
--calcite-font-weight-demi: 600;
|
|
500
500
|
--calcite-font-weight-bold: 700;
|
|
501
|
-
--calcite-font-weight-extrabold: 800;
|
|
502
|
-
--calcite-font-weight-black: 900;
|
|
501
|
+
--calcite-font-weight-extrabold: 800; /** only for Avenir Next World (secondary font family) */
|
|
502
|
+
--calcite-font-weight-black: 900; /** only for Avenir Next World (secondary font family) */
|
|
503
503
|
--calcite-font-weight-heavy: 900;
|
|
504
|
-
--calcite-font-text-decoration-none: none;
|
|
505
|
-
--calcite-font-text-decoration-underline: underline;
|
|
506
|
-
--calcite-font-text-case-none: none;
|
|
507
|
-
--calcite-font-text-case-uppercase: uppercase;
|
|
508
|
-
--calcite-font-text-case-lowercase: lowercase;
|
|
509
|
-
--calcite-font-text-case-capitalize: capitalize;
|
|
504
|
+
--calcite-font-text-decoration-none: none; /** Deprecated */
|
|
505
|
+
--calcite-font-text-decoration-underline: underline; /** Deprecated */
|
|
506
|
+
--calcite-font-text-case-none: none; /** Deprecated */
|
|
507
|
+
--calcite-font-text-case-uppercase: uppercase; /** Deprecated */
|
|
508
|
+
--calcite-font-text-case-lowercase: lowercase; /** Deprecated */
|
|
509
|
+
--calcite-font-text-case-capitalize: capitalize; /** Deprecated */
|
|
510
510
|
--calcite-opacity-0: 0;
|
|
511
511
|
--calcite-opacity-4: 0.04;
|
|
512
512
|
--calcite-opacity-8: 0.08;
|
package/dist/css/dark.css
CHANGED
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
--calcite-color-text-1: #ffffff;
|
|
40
40
|
--calcite-color-text-2: #bfbfbf;
|
|
41
41
|
--calcite-color-text-3: #9e9e9e;
|
|
42
|
+
--calcite-color-text-highlight: #c7eaff;
|
|
42
43
|
--calcite-color-text-inverse: #141414;
|
|
43
44
|
--calcite-color-text-link: #00a0ff;
|
|
44
45
|
--calcite-color-border-1: #545454;
|
package/dist/css/global.css
CHANGED
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
--calcite-border-width-lg: 4px;
|
|
13
13
|
--calcite-container-size-margin: 24px;
|
|
14
14
|
--calcite-container-size-gutter: 16px;
|
|
15
|
-
--calcite-container-size-content-fluid: 100%;
|
|
16
|
-
--calcite-container-size-content-fixed: 1440px;
|
|
17
|
-
--calcite-corner-radius-sharp: 0;
|
|
15
|
+
--calcite-container-size-content-fluid: 100%; /** for fluid grid widths */
|
|
16
|
+
--calcite-container-size-content-fixed: 1440px; /** only for lg breakpoint fixed grid width */
|
|
17
|
+
--calcite-corner-radius-sharp: 0; /** deprecated, use --calcite-conder-radius-none instead */
|
|
18
18
|
--calcite-corner-radius-none: 0;
|
|
19
19
|
--calcite-corner-radius-xs: 2px;
|
|
20
20
|
--calcite-corner-radius-sm: 4px;
|
|
21
|
-
--calcite-corner-radius-round: 4px;
|
|
21
|
+
--calcite-corner-radius-round: 4px; /** deprecated, use --calcite-corner-radius-sm instead */
|
|
22
22
|
--calcite-corner-radius-pill: 100%;
|
|
23
|
-
--calcite-font-family: 'Avenir Next', Avenir, 'Helvetica Neue', sans-serif;
|
|
24
|
-
--calcite-font-family-code: Monaco, Consolas, 'Andale Mono', 'Lucida Console', monospace;
|
|
25
|
-
--calcite-font-weight-light: 300;
|
|
23
|
+
--calcite-font-family: 'Avenir Next', Avenir, 'Helvetica Neue', sans-serif; /** Primary font with fallbacks */
|
|
24
|
+
--calcite-font-family-code: Monaco, Consolas, 'Andale Mono', 'Lucida Console', monospace; /** Font family for code with fallbacks */
|
|
25
|
+
--calcite-font-weight-light: 300; /** For Avenir Next World (secondary font family) */
|
|
26
26
|
--calcite-font-weight-regular: 400;
|
|
27
|
-
--calcite-font-weight-normal: 400;
|
|
27
|
+
--calcite-font-weight-normal: 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" */
|
|
28
28
|
--calcite-font-weight-medium: 500;
|
|
29
29
|
--calcite-font-weight-semibold: 600;
|
|
30
30
|
--calcite-font-weight-bold: 600;
|
|
@@ -35,44 +35,44 @@
|
|
|
35
35
|
--calcite-font-size-lg: 18px;
|
|
36
36
|
--calcite-font-size-xl: 20px;
|
|
37
37
|
--calcite-font-size-xxl: 24px;
|
|
38
|
-
--calcite-font-style-emphasis: italic;
|
|
38
|
+
--calcite-font-style-emphasis: italic; /** used in ratings */
|
|
39
39
|
--calcite-font-line-height-fixed-sm: 12px;
|
|
40
40
|
--calcite-font-line-height-fixed-base: 16px;
|
|
41
41
|
--calcite-font-line-height-fixed-lg: 20px;
|
|
42
42
|
--calcite-font-line-height-fixed-xl: 24px;
|
|
43
|
-
--calcite-font-line-height-relative: auto;
|
|
44
|
-
--calcite-font-line-height-relative-tight: 1.25;
|
|
45
|
-
--calcite-font-line-height-relative-snug: 1.375;
|
|
46
|
-
--calcite-font-line-height-relative-normal: 1.5;
|
|
47
|
-
--calcite-font-line-height-relative-relaxed: 1.625;
|
|
48
|
-
--calcite-font-line-height-relative-loose: 2;
|
|
49
|
-
--calcite-font-letter-spacing-tight: -0.4px;
|
|
50
|
-
--calcite-font-letter-spacing-normal: 0;
|
|
51
|
-
--calcite-font-letter-spacing-wide: 0.4px;
|
|
52
|
-
--calcite-font-paragraph-spacing-normal: 4px;
|
|
53
|
-
--calcite-font-text-decoration-none: none;
|
|
54
|
-
--calcite-font-text-decoration-underline: underline;
|
|
55
|
-
--calcite-font-text-case-none: none;
|
|
56
|
-
--calcite-font-text-case-uppercase: uppercase;
|
|
57
|
-
--calcite-font-text-case-lowercase: lowercase;
|
|
58
|
-
--calcite-font-text-case-capitalize: capitalize;
|
|
43
|
+
--calcite-font-line-height-relative: auto; /** 1 */
|
|
44
|
+
--calcite-font-line-height-relative-tight: 1.25; /** 1.25 */
|
|
45
|
+
--calcite-font-line-height-relative-snug: 1.375; /** 1.375 */
|
|
46
|
+
--calcite-font-line-height-relative-normal: 1.5; /** 1.5 */
|
|
47
|
+
--calcite-font-line-height-relative-relaxed: 1.625; /** 1.625 */
|
|
48
|
+
--calcite-font-line-height-relative-loose: 2; /** 2 */
|
|
49
|
+
--calcite-font-letter-spacing-tight: -0.4px; /** Deprecated */
|
|
50
|
+
--calcite-font-letter-spacing-normal: 0; /** Deprecated */
|
|
51
|
+
--calcite-font-letter-spacing-wide: 0.4px; /** Deprecated */
|
|
52
|
+
--calcite-font-paragraph-spacing-normal: 4px; /** Deprecated */
|
|
53
|
+
--calcite-font-text-decoration-none: none; /** Deprecated */
|
|
54
|
+
--calcite-font-text-decoration-underline: underline; /** Deprecated */
|
|
55
|
+
--calcite-font-text-case-none: none; /** Deprecated */
|
|
56
|
+
--calcite-font-text-case-uppercase: uppercase; /** Deprecated */
|
|
57
|
+
--calcite-font-text-case-lowercase: lowercase; /** Deprecated */
|
|
58
|
+
--calcite-font-text-case-capitalize: capitalize; /** Deprecated */
|
|
59
59
|
--calcite-opacity-light: 0.4;
|
|
60
60
|
--calcite-opacity-half: 0.5;
|
|
61
61
|
--calcite-opacity-dark: 0.85;
|
|
62
62
|
--calcite-opacity-full: 1;
|
|
63
63
|
--calcite-opacity-disabled: 0.5;
|
|
64
64
|
--calcite-shadow-none: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
65
|
-
--calcite-size-fixed-xxxs: 2px;
|
|
66
|
-
--calcite-size-fixed-xxs: 4px;
|
|
67
|
-
--calcite-size-fixed-xs: 6px;
|
|
68
|
-
--calcite-size-fixed-sm: 8px;
|
|
69
|
-
--calcite-size-fixed-sm-plus: 10px;
|
|
70
|
-
--calcite-size-fixed-md: 12px;
|
|
71
|
-
--calcite-size-fixed-md-plus: 14px;
|
|
72
|
-
--calcite-size-fixed-lg: 16px;
|
|
73
|
-
--calcite-size-fixed-xl: 20px;
|
|
74
|
-
--calcite-size-fixed-xxl: 24px;
|
|
75
|
-
--calcite-size-fixed-xxxl: 32px;
|
|
65
|
+
--calcite-size-fixed-xxxs: 2px; /** deprecated */
|
|
66
|
+
--calcite-size-fixed-xxs: 4px; /** deprecated */
|
|
67
|
+
--calcite-size-fixed-xs: 6px; /** deprecated */
|
|
68
|
+
--calcite-size-fixed-sm: 8px; /** deprecated */
|
|
69
|
+
--calcite-size-fixed-sm-plus: 10px; /** deprecated */
|
|
70
|
+
--calcite-size-fixed-md: 12px; /** deprecated */
|
|
71
|
+
--calcite-size-fixed-md-plus: 14px; /** deprecated */
|
|
72
|
+
--calcite-size-fixed-lg: 16px; /** deprecated */
|
|
73
|
+
--calcite-size-fixed-xl: 20px; /** deprecated */
|
|
74
|
+
--calcite-size-fixed-xxl: 24px; /** deprecated */
|
|
75
|
+
--calcite-size-fixed-xxxl: 32px; /** deprecated */
|
|
76
76
|
--calcite-size-px: 1px;
|
|
77
77
|
--calcite-size-xxxs: 0.75rem;
|
|
78
78
|
--calcite-size-xxs: 0.875rem;
|
|
@@ -83,14 +83,14 @@
|
|
|
83
83
|
--calcite-size-xl: 3rem;
|
|
84
84
|
--calcite-size-xxl: 4rem;
|
|
85
85
|
--calcite-size-xxxl: 6rem;
|
|
86
|
-
--calcite-spacing-fixed-xxs: 4px;
|
|
87
|
-
--calcite-spacing-fixed-xs: 6px;
|
|
88
|
-
--calcite-spacing-fixed-sm: 8px;
|
|
89
|
-
--calcite-spacing-fixed-md: 12px;
|
|
90
|
-
--calcite-spacing-fixed-lg: 14px;
|
|
91
|
-
--calcite-spacing-fixed-xl: 16px;
|
|
92
|
-
--calcite-spacing-fixed-xxl: 20px;
|
|
93
|
-
--calcite-spacing-fixed-xxxl: 32px;
|
|
86
|
+
--calcite-spacing-fixed-xxs: 4px; /** deprecated */
|
|
87
|
+
--calcite-spacing-fixed-xs: 6px; /** deprecated */
|
|
88
|
+
--calcite-spacing-fixed-sm: 8px; /** deprecated */
|
|
89
|
+
--calcite-spacing-fixed-md: 12px; /** deprecated */
|
|
90
|
+
--calcite-spacing-fixed-lg: 14px; /** deprecated */
|
|
91
|
+
--calcite-spacing-fixed-xl: 16px; /** deprecated */
|
|
92
|
+
--calcite-spacing-fixed-xxl: 20px; /** deprecated */
|
|
93
|
+
--calcite-spacing-fixed-xxxl: 32px; /** deprecated */
|
|
94
94
|
--calcite-spacing-none: 0;
|
|
95
95
|
--calcite-spacing-px: 1px;
|
|
96
96
|
--calcite-spacing-base: 2px;
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
--calcite-z-index-modal: 800;
|
|
115
115
|
--calcite-z-index-popup: 900;
|
|
116
116
|
--calcite-z-index-tooltip: 901;
|
|
117
|
-
--calcite-corner-radius: var(--calcite-corner-radius-
|
|
117
|
+
--calcite-corner-radius: var(--calcite-corner-radius-none);
|
|
118
118
|
--calcite-shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.04), 0 4px 16px 0 rgba(0, 0, 0, 0.08);
|
|
119
119
|
--calcite-shadow-md: 0 4px 20px 0 rgba(0, 0, 0, 0.08), 0 12px 30px rgba(0, 0, 0, 0.1);
|
|
120
120
|
}
|
package/dist/css/index.css
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
--calcite-color-border-1: #c9c9c9;
|
|
15
15
|
--calcite-color-text-link: #00619b;
|
|
16
16
|
--calcite-color-text-inverse: #ffffff;
|
|
17
|
+
--calcite-color-text-highlight: #004874;
|
|
17
18
|
--calcite-color-text-3: #6b6b6b;
|
|
18
19
|
--calcite-color-text-2: #4a4a4a;
|
|
19
20
|
--calcite-color-text-1: #141414;
|
|
@@ -60,6 +61,7 @@
|
|
|
60
61
|
--calcite-color-border-1: #c9c9c9;
|
|
61
62
|
--calcite-color-text-link: #00619b;
|
|
62
63
|
--calcite-color-text-inverse: #ffffff;
|
|
64
|
+
--calcite-color-text-highlight: #004874;
|
|
63
65
|
--calcite-color-text-3: #6b6b6b;
|
|
64
66
|
--calcite-color-text-2: #4a4a4a;
|
|
65
67
|
--calcite-color-text-1: #141414;
|
|
@@ -107,6 +109,7 @@
|
|
|
107
109
|
--calcite-color-border-1: #545454;
|
|
108
110
|
--calcite-color-text-link: #00a0ff;
|
|
109
111
|
--calcite-color-text-inverse: #141414;
|
|
112
|
+
--calcite-color-text-highlight: #c7eaff;
|
|
110
113
|
--calcite-color-text-3: #9e9e9e;
|
|
111
114
|
--calcite-color-text-2: #bfbfbf;
|
|
112
115
|
--calcite-color-text-1: #ffffff;
|
|
@@ -153,6 +156,7 @@
|
|
|
153
156
|
--calcite-color-border-1: #c9c9c9;
|
|
154
157
|
--calcite-color-text-link: #00619b;
|
|
155
158
|
--calcite-color-text-inverse: #ffffff;
|
|
159
|
+
--calcite-color-text-highlight: #004874;
|
|
156
160
|
--calcite-color-text-3: #6b6b6b;
|
|
157
161
|
--calcite-color-text-2: #4a4a4a;
|
|
158
162
|
--calcite-color-text-1: #141414;
|
|
@@ -198,6 +202,7 @@
|
|
|
198
202
|
--calcite-color-border-1: #545454;
|
|
199
203
|
--calcite-color-text-link: #00a0ff;
|
|
200
204
|
--calcite-color-text-inverse: #141414;
|
|
205
|
+
--calcite-color-text-highlight: #c7eaff;
|
|
201
206
|
--calcite-color-text-3: #9e9e9e;
|
|
202
207
|
--calcite-color-text-2: #bfbfbf;
|
|
203
208
|
--calcite-color-text-1: #ffffff;
|
package/dist/css/light.css
CHANGED
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
--calcite-color-text-1: #141414;
|
|
40
40
|
--calcite-color-text-2: #4a4a4a;
|
|
41
41
|
--calcite-color-text-3: #6b6b6b;
|
|
42
|
+
--calcite-color-text-highlight: #004874;
|
|
42
43
|
--calcite-color-text-inverse: #ffffff;
|
|
43
44
|
--calcite-color-text-link: #00619b;
|
|
44
45
|
--calcite-color-border-1: #c9c9c9;
|
package/dist/css/semantic.css
CHANGED
|
@@ -4,47 +4,47 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
--calcite-container-size-height-xxs-min: 0;
|
|
8
|
-
--calcite-container-size-width-xxs-min: 0;
|
|
7
|
+
--calcite-container-size-height-xxs-min: 0; /** Small handheld devices and mini-windows */
|
|
8
|
+
--calcite-container-size-width-xxs-min: 0; /** Small handheld devices and mini-windows */
|
|
9
9
|
--calcite-border-width-none: 0;
|
|
10
10
|
--calcite-border-width-sm: 1px;
|
|
11
11
|
--calcite-border-width-md: 2px;
|
|
12
12
|
--calcite-border-width-lg: 4px;
|
|
13
|
-
--calcite-container-size-height-xxs-max: 154px;
|
|
14
|
-
--calcite-container-size-height-xs-min: 155px;
|
|
15
|
-
--calcite-container-size-height-xs-max: 328px;
|
|
16
|
-
--calcite-container-size-height-sm-min: 329px;
|
|
17
|
-
--calcite-container-size-height-sm-max: 504px;
|
|
18
|
-
--calcite-container-size-height-md-min: 505px;
|
|
19
|
-
--calcite-container-size-height-md-max: 678px;
|
|
20
|
-
--calcite-container-size-height-lg-min: 679px;
|
|
21
|
-
--calcite-container-size-height-lg-max: 854px;
|
|
22
|
-
--calcite-container-size-height-xl-min: 855px;
|
|
23
|
-
--calcite-container-size-width-xxs-max: 320px;
|
|
24
|
-
--calcite-container-size-width-xs-min: 321px;
|
|
25
|
-
--calcite-container-size-width-xs-max: 476px;
|
|
26
|
-
--calcite-container-size-width-sm-min: 477px;
|
|
27
|
-
--calcite-container-size-width-sm-max: 768px;
|
|
28
|
-
--calcite-container-size-width-md-min: 769px;
|
|
29
|
-
--calcite-container-size-width-md-max: 1152px;
|
|
30
|
-
--calcite-container-size-width-lg-min: 1153px;
|
|
31
|
-
--calcite-container-size-width-lg-max: 1440px;
|
|
32
|
-
--calcite-container-size-width-xl-min: 1441px;
|
|
13
|
+
--calcite-container-size-height-xxs-max: 154px; /** Small handheld devices and mini-windows */
|
|
14
|
+
--calcite-container-size-height-xs-min: 155px; /** Handheld devices */
|
|
15
|
+
--calcite-container-size-height-xs-max: 328px; /** Handheld devices */
|
|
16
|
+
--calcite-container-size-height-sm-min: 329px; /** Small tablets */
|
|
17
|
+
--calcite-container-size-height-sm-max: 504px; /** Small tablets */
|
|
18
|
+
--calcite-container-size-height-md-min: 505px; /** Small laptops */
|
|
19
|
+
--calcite-container-size-height-md-max: 678px; /** Small laptops */
|
|
20
|
+
--calcite-container-size-height-lg-min: 679px; /** Large laptops and desktop computers */
|
|
21
|
+
--calcite-container-size-height-lg-max: 854px; /** Large laptops and desktop computers */
|
|
22
|
+
--calcite-container-size-height-xl-min: 855px; /** Projectors and televisions */
|
|
23
|
+
--calcite-container-size-width-xxs-max: 320px; /** Small handheld devices and mini-windows */
|
|
24
|
+
--calcite-container-size-width-xs-min: 321px; /** Handheld devices */
|
|
25
|
+
--calcite-container-size-width-xs-max: 476px; /** Handheld devices */
|
|
26
|
+
--calcite-container-size-width-sm-min: 477px; /** Small tablets */
|
|
27
|
+
--calcite-container-size-width-sm-max: 768px; /** Small tablets */
|
|
28
|
+
--calcite-container-size-width-md-min: 769px; /** Small laptops */
|
|
29
|
+
--calcite-container-size-width-md-max: 1152px; /** Small laptops */
|
|
30
|
+
--calcite-container-size-width-lg-min: 1153px; /** Large laptops and desktop computers */
|
|
31
|
+
--calcite-container-size-width-lg-max: 1440px; /** Large laptops and desktop computers */
|
|
32
|
+
--calcite-container-size-width-xl-min: 1441px; /** Projectors and televisions */
|
|
33
33
|
--calcite-container-size-margin: 24px;
|
|
34
34
|
--calcite-container-size-gutter: 16px;
|
|
35
|
-
--calcite-container-size-content-fluid: 100%;
|
|
36
|
-
--calcite-container-size-content-fixed: 1440px;
|
|
37
|
-
--calcite-corner-radius-sharp: 0;
|
|
35
|
+
--calcite-container-size-content-fluid: 100%; /** for fluid grid widths */
|
|
36
|
+
--calcite-container-size-content-fixed: 1440px; /** only for lg breakpoint fixed grid width */
|
|
37
|
+
--calcite-corner-radius-sharp: 0; /** deprecated, use --calcite-conder-radius-none instead */
|
|
38
38
|
--calcite-corner-radius-none: 0;
|
|
39
39
|
--calcite-corner-radius-xs: 2px;
|
|
40
40
|
--calcite-corner-radius-sm: 4px;
|
|
41
|
-
--calcite-corner-radius-round: 4px;
|
|
41
|
+
--calcite-corner-radius-round: 4px; /** deprecated, use --calcite-corner-radius-sm instead */
|
|
42
42
|
--calcite-corner-radius-pill: 100%;
|
|
43
|
-
--calcite-font-family: 'Avenir Next', Avenir, 'Helvetica Neue', sans-serif;
|
|
44
|
-
--calcite-font-family-code: Monaco, Consolas, 'Andale Mono', 'Lucida Console', monospace;
|
|
45
|
-
--calcite-font-weight-light: 300;
|
|
43
|
+
--calcite-font-family: 'Avenir Next', Avenir, 'Helvetica Neue', sans-serif; /** Primary font with fallbacks */
|
|
44
|
+
--calcite-font-family-code: Monaco, Consolas, 'Andale Mono', 'Lucida Console', monospace; /** Font family for code with fallbacks */
|
|
45
|
+
--calcite-font-weight-light: 300; /** For Avenir Next World (secondary font family) */
|
|
46
46
|
--calcite-font-weight-regular: 400;
|
|
47
|
-
--calcite-font-weight-normal: 400;
|
|
47
|
+
--calcite-font-weight-normal: 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" */
|
|
48
48
|
--calcite-font-weight-medium: 500;
|
|
49
49
|
--calcite-font-weight-semibold: 600;
|
|
50
50
|
--calcite-font-weight-bold: 600;
|
|
@@ -55,44 +55,44 @@
|
|
|
55
55
|
--calcite-font-size-lg: 18px;
|
|
56
56
|
--calcite-font-size-xl: 20px;
|
|
57
57
|
--calcite-font-size-xxl: 24px;
|
|
58
|
-
--calcite-font-style-emphasis: italic;
|
|
58
|
+
--calcite-font-style-emphasis: italic; /** used in ratings */
|
|
59
59
|
--calcite-font-line-height-fixed-sm: 12px;
|
|
60
60
|
--calcite-font-line-height-fixed-base: 16px;
|
|
61
61
|
--calcite-font-line-height-fixed-lg: 20px;
|
|
62
62
|
--calcite-font-line-height-fixed-xl: 24px;
|
|
63
|
-
--calcite-font-line-height-relative: auto;
|
|
64
|
-
--calcite-font-line-height-relative-tight: 1.25;
|
|
65
|
-
--calcite-font-line-height-relative-snug: 1.375;
|
|
66
|
-
--calcite-font-line-height-relative-normal: 1.5;
|
|
67
|
-
--calcite-font-line-height-relative-relaxed: 1.625;
|
|
68
|
-
--calcite-font-line-height-relative-loose: 2;
|
|
69
|
-
--calcite-font-letter-spacing-tight: -0.4px;
|
|
70
|
-
--calcite-font-letter-spacing-normal: 0;
|
|
71
|
-
--calcite-font-letter-spacing-wide: 0.4px;
|
|
72
|
-
--calcite-font-paragraph-spacing-normal: 4px;
|
|
73
|
-
--calcite-font-text-decoration-none: none;
|
|
74
|
-
--calcite-font-text-decoration-underline: underline;
|
|
75
|
-
--calcite-font-text-case-none: none;
|
|
76
|
-
--calcite-font-text-case-uppercase: uppercase;
|
|
77
|
-
--calcite-font-text-case-lowercase: lowercase;
|
|
78
|
-
--calcite-font-text-case-capitalize: capitalize;
|
|
63
|
+
--calcite-font-line-height-relative: auto; /** 1 */
|
|
64
|
+
--calcite-font-line-height-relative-tight: 1.25; /** 1.25 */
|
|
65
|
+
--calcite-font-line-height-relative-snug: 1.375; /** 1.375 */
|
|
66
|
+
--calcite-font-line-height-relative-normal: 1.5; /** 1.5 */
|
|
67
|
+
--calcite-font-line-height-relative-relaxed: 1.625; /** 1.625 */
|
|
68
|
+
--calcite-font-line-height-relative-loose: 2; /** 2 */
|
|
69
|
+
--calcite-font-letter-spacing-tight: -0.4px; /** Deprecated */
|
|
70
|
+
--calcite-font-letter-spacing-normal: 0; /** Deprecated */
|
|
71
|
+
--calcite-font-letter-spacing-wide: 0.4px; /** Deprecated */
|
|
72
|
+
--calcite-font-paragraph-spacing-normal: 4px; /** Deprecated */
|
|
73
|
+
--calcite-font-text-decoration-none: none; /** Deprecated */
|
|
74
|
+
--calcite-font-text-decoration-underline: underline; /** Deprecated */
|
|
75
|
+
--calcite-font-text-case-none: none; /** Deprecated */
|
|
76
|
+
--calcite-font-text-case-uppercase: uppercase; /** Deprecated */
|
|
77
|
+
--calcite-font-text-case-lowercase: lowercase; /** Deprecated */
|
|
78
|
+
--calcite-font-text-case-capitalize: capitalize; /** Deprecated */
|
|
79
79
|
--calcite-opacity-light: 0.4;
|
|
80
80
|
--calcite-opacity-half: 0.5;
|
|
81
81
|
--calcite-opacity-dark: 0.85;
|
|
82
82
|
--calcite-opacity-full: 1;
|
|
83
83
|
--calcite-opacity-disabled: 0.5;
|
|
84
84
|
--calcite-shadow-none: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
85
|
-
--calcite-size-fixed-xxxs: 2px;
|
|
86
|
-
--calcite-size-fixed-xxs: 4px;
|
|
87
|
-
--calcite-size-fixed-xs: 6px;
|
|
88
|
-
--calcite-size-fixed-sm: 8px;
|
|
89
|
-
--calcite-size-fixed-sm-plus: 10px;
|
|
90
|
-
--calcite-size-fixed-md: 12px;
|
|
91
|
-
--calcite-size-fixed-md-plus: 14px;
|
|
92
|
-
--calcite-size-fixed-lg: 16px;
|
|
93
|
-
--calcite-size-fixed-xl: 20px;
|
|
94
|
-
--calcite-size-fixed-xxl: 24px;
|
|
95
|
-
--calcite-size-fixed-xxxl: 32px;
|
|
85
|
+
--calcite-size-fixed-xxxs: 2px; /** deprecated */
|
|
86
|
+
--calcite-size-fixed-xxs: 4px; /** deprecated */
|
|
87
|
+
--calcite-size-fixed-xs: 6px; /** deprecated */
|
|
88
|
+
--calcite-size-fixed-sm: 8px; /** deprecated */
|
|
89
|
+
--calcite-size-fixed-sm-plus: 10px; /** deprecated */
|
|
90
|
+
--calcite-size-fixed-md: 12px; /** deprecated */
|
|
91
|
+
--calcite-size-fixed-md-plus: 14px; /** deprecated */
|
|
92
|
+
--calcite-size-fixed-lg: 16px; /** deprecated */
|
|
93
|
+
--calcite-size-fixed-xl: 20px; /** deprecated */
|
|
94
|
+
--calcite-size-fixed-xxl: 24px; /** deprecated */
|
|
95
|
+
--calcite-size-fixed-xxxl: 32px; /** deprecated */
|
|
96
96
|
--calcite-size-px: 1px;
|
|
97
97
|
--calcite-size-xxxs: 0.75rem;
|
|
98
98
|
--calcite-size-xxs: 0.875rem;
|
|
@@ -103,14 +103,14 @@
|
|
|
103
103
|
--calcite-size-xl: 3rem;
|
|
104
104
|
--calcite-size-xxl: 4rem;
|
|
105
105
|
--calcite-size-xxxl: 6rem;
|
|
106
|
-
--calcite-spacing-fixed-xxs: 4px;
|
|
107
|
-
--calcite-spacing-fixed-xs: 6px;
|
|
108
|
-
--calcite-spacing-fixed-sm: 8px;
|
|
109
|
-
--calcite-spacing-fixed-md: 12px;
|
|
110
|
-
--calcite-spacing-fixed-lg: 14px;
|
|
111
|
-
--calcite-spacing-fixed-xl: 16px;
|
|
112
|
-
--calcite-spacing-fixed-xxl: 20px;
|
|
113
|
-
--calcite-spacing-fixed-xxxl: 32px;
|
|
106
|
+
--calcite-spacing-fixed-xxs: 4px; /** deprecated */
|
|
107
|
+
--calcite-spacing-fixed-xs: 6px; /** deprecated */
|
|
108
|
+
--calcite-spacing-fixed-sm: 8px; /** deprecated */
|
|
109
|
+
--calcite-spacing-fixed-md: 12px; /** deprecated */
|
|
110
|
+
--calcite-spacing-fixed-lg: 14px; /** deprecated */
|
|
111
|
+
--calcite-spacing-fixed-xl: 16px; /** deprecated */
|
|
112
|
+
--calcite-spacing-fixed-xxl: 20px; /** deprecated */
|
|
113
|
+
--calcite-spacing-fixed-xxxl: 32px; /** deprecated */
|
|
114
114
|
--calcite-spacing-none: 0;
|
|
115
115
|
--calcite-spacing-px: 1px;
|
|
116
116
|
--calcite-spacing-base: 2px;
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
--calcite-z-index-modal: 800;
|
|
135
135
|
--calcite-z-index-popup: 900;
|
|
136
136
|
--calcite-z-index-tooltip: 901;
|
|
137
|
-
--calcite-corner-radius: var(--calcite-corner-radius-
|
|
137
|
+
--calcite-corner-radius: var(--calcite-corner-radius-none);
|
|
138
138
|
--calcite-shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.04), 0 4px 16px 0 rgba(0, 0, 0, 0.08);
|
|
139
139
|
--calcite-shadow-md: 0 4px 20px 0 rgba(0, 0, 0, 0.08), 0 12px 30px rgba(0, 0, 0, 0.1);
|
|
140
140
|
}
|
package/dist/docs/core.json
CHANGED
package/dist/docs/dark.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1747112036160,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"value": "#363636",
|
|
@@ -968,6 +968,33 @@
|
|
|
968
968
|
"path": ["semantic", "color", "text", "3"],
|
|
969
969
|
"key": "{semantic.color.text.3}"
|
|
970
970
|
},
|
|
971
|
+
{
|
|
972
|
+
"value": "#c7eaff",
|
|
973
|
+
"type": "color",
|
|
974
|
+
"attributes": {
|
|
975
|
+
"category": "color",
|
|
976
|
+
"type": "color",
|
|
977
|
+
"item": "text",
|
|
978
|
+
"subitem": "highlight",
|
|
979
|
+
"names": {
|
|
980
|
+
"scss": "$calcite-color-text-highlight",
|
|
981
|
+
"css": "var(--calcite-color-text-highlight)",
|
|
982
|
+
"js": "semantic.color.text.highlight",
|
|
983
|
+
"docs": "semantic.color.text.highlight",
|
|
984
|
+
"es6": "calciteColorTextHighlight"
|
|
985
|
+
},
|
|
986
|
+
"calcite-schema": {
|
|
987
|
+
"system": "calcite",
|
|
988
|
+
"tier": "color",
|
|
989
|
+
"type": "color"
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
"filePath": "src/tokens/semantic/color/dark.json",
|
|
993
|
+
"isSource": true,
|
|
994
|
+
"name": "Color Text Highlight",
|
|
995
|
+
"path": ["semantic", "color", "text", "highlight"],
|
|
996
|
+
"key": "{semantic.color.text.highlight}"
|
|
997
|
+
},
|
|
971
998
|
{
|
|
972
999
|
"value": "#141414",
|
|
973
1000
|
"type": "color",
|
package/dist/docs/global.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1747112038317,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"value": "{\"light\":\"#f7f7f7\",\"dark\":\"#363636\"}",
|
|
@@ -966,6 +966,33 @@
|
|
|
966
966
|
"path": ["semantic", "color", "text", "3"],
|
|
967
967
|
"key": "{semantic.color.text.3}"
|
|
968
968
|
},
|
|
969
|
+
{
|
|
970
|
+
"value": "{\"light\":\"#004874\",\"dark\":\"#c7eaff\"}",
|
|
971
|
+
"type": "color",
|
|
972
|
+
"attributes": {
|
|
973
|
+
"category": "color",
|
|
974
|
+
"type": "color",
|
|
975
|
+
"item": "text",
|
|
976
|
+
"subitem": "highlight",
|
|
977
|
+
"names": {
|
|
978
|
+
"scss": "$calcite-color-text-highlight",
|
|
979
|
+
"css": "var(--calcite-color-text-highlight)",
|
|
980
|
+
"js": "semantic.color.text.highlight",
|
|
981
|
+
"docs": "semantic.color.text.highlight",
|
|
982
|
+
"es6": "calciteColorTextHighlight"
|
|
983
|
+
},
|
|
984
|
+
"calcite-schema": {
|
|
985
|
+
"system": "calcite",
|
|
986
|
+
"tier": "color",
|
|
987
|
+
"type": "color"
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
991
|
+
"isSource": false,
|
|
992
|
+
"name": "Color Text Highlight",
|
|
993
|
+
"path": ["semantic", "color", "text", "highlight"],
|
|
994
|
+
"key": "{semantic.color.text.highlight}"
|
|
995
|
+
},
|
|
969
996
|
{
|
|
970
997
|
"value": "{\"light\":\"#ffffff\",\"dark\":\"#141414\"}",
|
|
971
998
|
"type": "color",
|
package/dist/docs/light.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1747112037052,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"value": "#f7f7f7",
|
|
@@ -966,6 +966,33 @@
|
|
|
966
966
|
"path": ["semantic", "color", "text", "3"],
|
|
967
967
|
"key": "{semantic.color.text.3}"
|
|
968
968
|
},
|
|
969
|
+
{
|
|
970
|
+
"value": "#004874",
|
|
971
|
+
"type": "color",
|
|
972
|
+
"attributes": {
|
|
973
|
+
"category": "color",
|
|
974
|
+
"type": "color",
|
|
975
|
+
"item": "text",
|
|
976
|
+
"subitem": "highlight",
|
|
977
|
+
"names": {
|
|
978
|
+
"scss": "$calcite-color-text-highlight",
|
|
979
|
+
"css": "var(--calcite-color-text-highlight)",
|
|
980
|
+
"js": "semantic.color.text.highlight",
|
|
981
|
+
"docs": "semantic.color.text.highlight",
|
|
982
|
+
"es6": "calciteColorTextHighlight"
|
|
983
|
+
},
|
|
984
|
+
"calcite-schema": {
|
|
985
|
+
"system": "calcite",
|
|
986
|
+
"tier": "color",
|
|
987
|
+
"type": "color"
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
991
|
+
"isSource": true,
|
|
992
|
+
"name": "Color Text Highlight",
|
|
993
|
+
"path": ["semantic", "color", "text", "highlight"],
|
|
994
|
+
"key": "{semantic.color.text.highlight}"
|
|
995
|
+
},
|
|
969
996
|
{
|
|
970
997
|
"value": "#ffffff",
|
|
971
998
|
"type": "color",
|
package/dist/docs/semantic.json
CHANGED