@esri/calcite-design-tokens 2.1.2-next.1 → 2.1.2
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 +5 -5
- package/dist/css/core.css +1 -1
- package/dist/css/dark.css +1 -1
- package/dist/css/global.css +4 -4
- package/dist/css/index.css +1 -1
- package/dist/css/light.css +1 -1
- package/dist/docs/core.json +1 -1
- package/dist/docs/global.json +1 -1
- package/dist/es6/core.d.ts +1 -1
- package/dist/es6/core.js +1 -1
- package/dist/es6/global.d.ts +1 -1
- package/dist/es6/global.js +1 -1
- package/dist/js/core.d.ts +1 -1
- package/dist/js/core.js +312 -312
- package/dist/js/global.d.ts +1 -1
- package/dist/js/global.js +198 -198
- package/dist/scss/breakpoints.scss +1 -1
- package/dist/scss/core.scss +1 -1
- package/dist/scss/dark.scss +1 -1
- package/dist/scss/global.scss +4 -4
- package/dist/scss/index.scss +1 -1
- package/dist/scss/light.scss +1 -1
- package/dist/scss/mixins.scss +1 -1
- package/package.json +2 -2
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 Wed, 27 Mar 2024 01:42:45 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.calcite-typography-hierarchy-overline {
|
|
@@ -214,8 +214,8 @@
|
|
|
214
214
|
font-size: 12px;
|
|
215
215
|
}
|
|
216
216
|
.calcite-typography-hierarchy-body {
|
|
217
|
-
font-family: "Avenir Next World" "Avenir Next LT Pro" Avenir
|
|
218
|
-
sans-serif;
|
|
217
|
+
font-family: "Avenir Next World", "Avenir Next LT Pro", Avenir,
|
|
218
|
+
"Helvetica Neue", sans-serif;
|
|
219
219
|
font-size: 14px;
|
|
220
220
|
font-weight: 400;
|
|
221
221
|
letter-spacing: 0;
|
|
@@ -262,8 +262,8 @@
|
|
|
262
262
|
font-size: 24px;
|
|
263
263
|
}
|
|
264
264
|
.calcite-typography-regular-minus-1h {
|
|
265
|
-
font-family: "Avenir Next World" "Avenir Next LT Pro" Avenir
|
|
266
|
-
sans-serif;
|
|
265
|
+
font-family: "Avenir Next World", "Avenir Next LT Pro", Avenir,
|
|
266
|
+
"Helvetica Neue", sans-serif;
|
|
267
267
|
font-size: 14px;
|
|
268
268
|
font-weight: 400;
|
|
269
269
|
letter-spacing: 0;
|
package/dist/css/core.css
CHANGED
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 Wed, 27 Mar 2024 01:42:45 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -75,10 +75,10 @@
|
|
|
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 Consolas "Andale Mono" "Lucida Console"
|
|
78
|
+
--calcite-font-family-code: Monaco, Consolas, "Andale Mono", "Lucida Console",
|
|
79
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 */
|
|
80
|
+
--calcite-font-family: "Avenir Next World", "Avenir Next LT Pro", Avenir,
|
|
81
|
+
"Helvetica Neue", sans-serif; /* Primary font with fallbacks */
|
|
82
82
|
--calcite-corner-radius-pill: 100%;
|
|
83
83
|
--calcite-corner-radius-round: 4px;
|
|
84
84
|
--calcite-corner-radius-sharp: 0;
|
package/dist/css/index.css
CHANGED
package/dist/css/light.css
CHANGED
package/dist/docs/core.json
CHANGED
package/dist/docs/global.json
CHANGED
package/dist/es6/core.d.ts
CHANGED
package/dist/es6/core.js
CHANGED
package/dist/es6/global.d.ts
CHANGED
package/dist/es6/global.js
CHANGED