@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
|
@@ -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-container-size-width-xl-min: 1441px; // Projectors and televisions$calcite-container-size-width-lg-min: 1153px; // Large laptops and desktop computers
|
package/dist/scss/core.scss
CHANGED
package/dist/scss/dark.scss
CHANGED
package/dist/scss/global.scss
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-z-index-tooltip: 901;
|
|
@@ -74,10 +74,10 @@ $calcite-font-weight-medium: 500;
|
|
|
74
74
|
$calcite-font-weight-regular: 400;
|
|
75
75
|
$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"
|
|
76
76
|
$calcite-font-weight-light: 300; // For Avenir Next World (secondary font family)
|
|
77
|
-
$calcite-font-family-code: Monaco Consolas "Andale Mono" "Lucida Console"
|
|
77
|
+
$calcite-font-family-code: Monaco, Consolas, "Andale Mono", "Lucida Console",
|
|
78
78
|
monospace; // Font family for code with fallbacks
|
|
79
|
-
$calcite-font-family: "Avenir Next World" "Avenir Next LT Pro" Avenir
|
|
80
|
-
"Helvetica Neue" sans-serif; // Primary font with fallbacks
|
|
79
|
+
$calcite-font-family: "Avenir Next World", "Avenir Next LT Pro", Avenir,
|
|
80
|
+
"Helvetica Neue", sans-serif; // Primary font with fallbacks
|
|
81
81
|
$calcite-corner-radius-pill: 100%;
|
|
82
82
|
$calcite-corner-radius-round: 4px;
|
|
83
83
|
$calcite-corner-radius-sharp: 0;
|
package/dist/scss/index.scss
CHANGED
package/dist/scss/light.scss
CHANGED
package/dist/scss/mixins.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-design-tokens",
|
|
3
|
-
"version": "2.1.2
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Esri's Calcite Design System Tokens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Calcite",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"ts-jest-resolver": "2.0.1",
|
|
38
38
|
"ts-node": "10.9.2"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "2bb1ee24bb317c95e2bef8165c75583fe98ad714"
|
|
41
41
|
}
|