@esri/calcite-design-tokens 2.1.3-next.1 → 2.2.0
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 +3 -5
- package/dist/css/core.css +2 -1
- package/dist/css/dark.css +1 -1
- package/dist/css/global.css +2 -3
- package/dist/css/index.css +1 -1
- package/dist/css/light.css +1 -1
- package/dist/docs/core.json +37 -1
- package/dist/docs/global.json +48 -91
- package/dist/es6/core.d.ts +3 -1
- package/dist/es6/core.js +2 -1
- package/dist/es6/global.d.ts +1 -1
- package/dist/es6/global.js +5 -5
- package/dist/js/core.d.ts +2 -1
- package/dist/js/core.js +63 -1
- package/dist/js/global.d.ts +1 -1
- package/dist/js/global.js +49 -102
- package/dist/scss/breakpoints.scss +1 -1
- package/dist/scss/core.scss +2 -1
- package/dist/scss/dark.scss +1 -1
- package/dist/scss/global.scss +2 -3
- 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/scss/global.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Wed,
|
|
3
|
+
* Generated on Wed, 01 May 2024 00:07:10 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
$calcite-z-index-tooltip: 901;
|
|
@@ -76,8 +76,7 @@ $calcite-font-weight-normal: 400; // For backwards compatibility only. This toke
|
|
|
76
76
|
$calcite-font-weight-light: 300; // For Avenir Next World (secondary font family)
|
|
77
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
|
|
80
|
-
"Helvetica Neue", sans-serif; // Primary font with fallbacks
|
|
79
|
+
$calcite-font-family: "Avenir Next", Avenir, "Helvetica Neue", sans-serif; // Primary font with fallbacks
|
|
81
80
|
$calcite-corner-radius-pill: 100%;
|
|
82
81
|
$calcite-corner-radius-round: 4px;
|
|
83
82
|
$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.
|
|
3
|
+
"version": "2.2.0",
|
|
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": "1ad530e81c655184c90e964522a366b71b814d44"
|
|
41
41
|
}
|