@esri/calcite-design-tokens 2.0.1-next.3 → 2.1.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/breakpoint.css +1 -1
- package/dist/css/classes.css +14 -12
- package/dist/css/core.css +8 -1
- package/dist/css/dark.css +1 -1
- package/dist/css/global.css +14 -12
- package/dist/css/index.css +1 -1
- package/dist/css/light.css +1 -1
- package/dist/docs/core.json +10882 -6537
- package/dist/docs/global.json +7678 -5570
- package/dist/es6/core.d.ts +15 -1
- package/dist/es6/core.js +41 -34
- package/dist/es6/global.d.ts +12 -10
- package/dist/es6/global.js +69 -69
- package/dist/js/core.d.ts +9 -2
- package/dist/js/core.js +14203 -2255
- package/dist/js/global.d.ts +19 -15
- package/dist/js/global.js +9677 -1885
- package/dist/scss/breakpoints.scss +1 -1
- package/dist/scss/core.scss +8 -1
- package/dist/scss/dark.scss +1 -1
- package/dist/scss/global.scss +14 -12
- package/dist/scss/index.scss +1 -1
- package/dist/scss/light.scss +1 -1
- package/dist/scss/mixins.scss +1 -1
- package/package.json +3 -4
package/dist/css/breakpoint.css
CHANGED
package/dist/css/classes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 19 Dec 2023 05:51:03 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.calcite-typography-hierarchy-overline {
|
|
@@ -210,11 +210,12 @@
|
|
|
210
210
|
text-decoration: var(--calcite-font-text-decoration-none);
|
|
211
211
|
}
|
|
212
212
|
.calcite-typography-hierarchy-caption {
|
|
213
|
-
line-height:
|
|
213
|
+
line-height: 0.01375;
|
|
214
214
|
font-size: 12px;
|
|
215
215
|
}
|
|
216
216
|
.calcite-typography-hierarchy-body {
|
|
217
|
-
font-family: "Avenir Next LT Pro"
|
|
217
|
+
font-family: "Avenir Next World" "Avenir Next LT Pro" Avenir "Helvetica Neue"
|
|
218
|
+
sans-serif;
|
|
218
219
|
font-size: 14px;
|
|
219
220
|
font-weight: 400;
|
|
220
221
|
letter-spacing: 0;
|
|
@@ -224,44 +225,45 @@
|
|
|
224
225
|
text-decoration: none;
|
|
225
226
|
}
|
|
226
227
|
.calcite-typography-hierarchy-body-snug {
|
|
227
|
-
line-height:
|
|
228
|
+
line-height: 0.01375;
|
|
228
229
|
}
|
|
229
230
|
.calcite-typography-hierarchy-heading-5 {
|
|
230
231
|
font-weight: 500;
|
|
231
|
-
line-height:
|
|
232
|
+
line-height: 0.01375;
|
|
232
233
|
}
|
|
233
234
|
.calcite-typography-hierarchy-heading-4 {
|
|
234
235
|
font-weight: 500;
|
|
235
|
-
line-height:
|
|
236
|
+
line-height: 0.01375;
|
|
236
237
|
font-size: 16px;
|
|
237
238
|
}
|
|
238
239
|
.calcite-typography-hierarchy-heading-3 {
|
|
239
240
|
font-weight: 500;
|
|
240
|
-
line-height:
|
|
241
|
+
line-height: 0.01375;
|
|
241
242
|
font-size: 18px;
|
|
242
243
|
}
|
|
243
244
|
.calcite-typography-hierarchy-heading-2 {
|
|
244
245
|
font-weight: 500;
|
|
245
|
-
line-height:
|
|
246
|
+
line-height: 0.01375;
|
|
246
247
|
font-size: 20px;
|
|
247
248
|
}
|
|
248
249
|
.calcite-typography-hierarchy-heading-1 {
|
|
249
250
|
font-weight: 500;
|
|
250
|
-
line-height:
|
|
251
|
+
line-height: 0.01375;
|
|
251
252
|
font-size: 24px;
|
|
252
253
|
}
|
|
253
254
|
.calcite-typography-hierarchy-display-2 {
|
|
254
255
|
font-weight: 600;
|
|
255
|
-
line-height:
|
|
256
|
+
line-height: 0.01375;
|
|
256
257
|
font-size: 20px;
|
|
257
258
|
}
|
|
258
259
|
.calcite-typography-hierarchy-display-1 {
|
|
259
260
|
font-weight: 600;
|
|
260
|
-
line-height:
|
|
261
|
+
line-height: 0.01375;
|
|
261
262
|
font-size: 24px;
|
|
262
263
|
}
|
|
263
264
|
.calcite-typography-regular-minus-1h {
|
|
264
|
-
font-family: "Avenir Next LT Pro"
|
|
265
|
+
font-family: "Avenir Next World" "Avenir Next LT Pro" Avenir "Helvetica Neue"
|
|
266
|
+
sans-serif;
|
|
265
267
|
font-size: 14px;
|
|
266
268
|
font-weight: 400;
|
|
267
269
|
letter-spacing: 0;
|
package/dist/css/core.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 19 Dec 2023 05:51:00 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -86,9 +86,16 @@
|
|
|
86
86
|
--calcite-font-weight-thin: 100;
|
|
87
87
|
--calcite-font-weight-ultralight: 200; /* only for Avenir Next World (secondary font family) */
|
|
88
88
|
--calcite-font-style-italic: italic; /* used in ratings */
|
|
89
|
+
--calcite-font-family-sans-serif: sans-serif; /* Fallback for Avenir Next */
|
|
90
|
+
--calcite-font-family-monospace: monospace; /* Fallback for Monaco */
|
|
89
91
|
--calcite-font-family-monaco: Monaco;
|
|
92
|
+
--calcite-font-family-lucida-console: "Lucida Console"; /* Fallback for Monaco */
|
|
93
|
+
--calcite-font-family-helvetica-neue: "Helvetica Neue"; /* Fallback for Avenir Next */
|
|
94
|
+
--calcite-font-family-consolas: Consolas; /* Fallback for Monaco */
|
|
95
|
+
--calcite-font-family-avenir: Avenir; /* Fallback for Avenir Next */
|
|
90
96
|
--calcite-font-family-avenir-next-world: "Avenir Next World";
|
|
91
97
|
--calcite-font-family-avenir-next-pro: "Avenir Next LT Pro";
|
|
98
|
+
--calcite-font-family-andale-mono: "Andale Mono"; /* Fallback for Monaco */
|
|
92
99
|
--calcite-container-size-1440: 1440px;
|
|
93
100
|
--calcite-container-size-1152: 1152px;
|
|
94
101
|
--calcite-container-size-854: 854px;
|
package/dist/css/dark.css
CHANGED
package/dist/css/global.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 19 Dec 2023 05:51:03 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
--calcite-font-letter-spacing-wide: 0.4;
|
|
52
52
|
--calcite-font-letter-spacing-normal: 0;
|
|
53
53
|
--calcite-font-letter-spacing-tight: -0.4;
|
|
54
|
-
--calcite-font-line-height-relative-loose:
|
|
55
|
-
--calcite-font-line-height-relative-relaxed:
|
|
56
|
-
--calcite-font-line-height-relative-normal:
|
|
57
|
-
--calcite-font-line-height-relative-snug:
|
|
58
|
-
--calcite-font-line-height-relative-tight:
|
|
54
|
+
--calcite-font-line-height-relative-loose: 0.02; /* 2 */
|
|
55
|
+
--calcite-font-line-height-relative-relaxed: 0.01625; /* 1.625 */
|
|
56
|
+
--calcite-font-line-height-relative-normal: 0.015; /* 1.5 */
|
|
57
|
+
--calcite-font-line-height-relative-snug: 0.01375; /* 1.375 */
|
|
58
|
+
--calcite-font-line-height-relative-tight: 0.0125; /* 1.25 */
|
|
59
59
|
--calcite-font-line-height-relative: auto; /* 1 */
|
|
60
60
|
--calcite-font-line-height-fixed-xl: 24px;
|
|
61
61
|
--calcite-font-line-height-fixed-lg: 20px;
|
|
@@ -75,16 +75,18 @@
|
|
|
75
75
|
--calcite-font-weight-regular: 400;
|
|
76
76
|
--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" */
|
|
77
77
|
--calcite-font-weight-light: 300; /* For Avenir Next World (secondary font family) */
|
|
78
|
-
--calcite-font-family-code: Monaco
|
|
79
|
-
|
|
78
|
+
--calcite-font-family-code: Monaco Consolas "Andale Mono" "Lucida Console"
|
|
79
|
+
monospace; /* Font family for code with fallbacks */
|
|
80
|
+
--calcite-font-family: "Avenir Next World" "Avenir Next LT Pro" Avenir
|
|
81
|
+
"Helvetica Neue" sans-serif; /* Primary font with fallbacks */
|
|
82
|
+
--calcite-corner-radius-pill: 100%;
|
|
83
|
+
--calcite-corner-radius-round: 4px;
|
|
84
|
+
--calcite-corner-radius-sharp: 0;
|
|
80
85
|
--calcite-container-size-content-fixed: 1440px; /* only for lg breakpoint fixed grid width */
|
|
81
86
|
--calcite-container-size-content-fluid: 100%; /* for fluid grid widths */
|
|
82
87
|
--calcite-container-size-gutter: 16px;
|
|
83
88
|
--calcite-container-size-margin: 24px;
|
|
84
|
-
--calcite-color-background-none: rgba(
|
|
85
|
-
--calcite-corner-radius-pill: 100%;
|
|
86
|
-
--calcite-corner-radius-round: 4px;
|
|
87
|
-
--calcite-corner-radius-sharp: 0;
|
|
89
|
+
--calcite-color-background-none: rgba(255, 255, 255, 0);
|
|
88
90
|
--calcite-border-width-lg: 4px;
|
|
89
91
|
--calcite-border-width-md: 2px;
|
|
90
92
|
--calcite-border-width-sm: 1px;
|
package/dist/css/index.css
CHANGED