@esri/calcite-design-tokens 2.3.0-next.1 → 2.3.0-next.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 +1 -1
- package/dist/css/core.css +1 -1
- package/dist/css/dark.css +1 -1
- package/dist/css/global.css +2 -2
- 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 +3 -3
- 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 +3 -3
- package/dist/js/core.d.ts +1 -1
- package/dist/js/core.js +1 -1
- package/dist/js/global.d.ts +1 -1
- package/dist/js/global.js +4 -4
- 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 +2 -2
- 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
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 Thu, 21 Nov 2024 20:30:01 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
--calcite-font-size: 14px;
|
|
70
70
|
--calcite-font-size-sm: 12px;
|
|
71
71
|
--calcite-font-size-xs: 10px;
|
|
72
|
-
--calcite-font-weight-bold:
|
|
72
|
+
--calcite-font-weight-bold: 600;
|
|
73
73
|
--calcite-font-weight-semibold: 600;
|
|
74
74
|
--calcite-font-weight-medium: 500;
|
|
75
75
|
--calcite-font-weight-regular: 400;
|
package/dist/css/index.css
CHANGED
package/dist/css/light.css
CHANGED
package/dist/docs/core.json
CHANGED
package/dist/docs/global.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1732221002798,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"value": "0",
|
|
@@ -2574,7 +2574,7 @@
|
|
|
2574
2574
|
"path": ["semantic", "font", "weight", "semibold"]
|
|
2575
2575
|
},
|
|
2576
2576
|
{
|
|
2577
|
-
"value": "
|
|
2577
|
+
"value": "600",
|
|
2578
2578
|
"type": "fontWeights",
|
|
2579
2579
|
"attributes": {
|
|
2580
2580
|
"calcite-schema": {
|
|
@@ -7277,7 +7277,7 @@
|
|
|
7277
7277
|
"path": ["semantic", "typography", "hierarchy", "body", "default"]
|
|
7278
7278
|
},
|
|
7279
7279
|
{
|
|
7280
|
-
"value": "{\"lineHeight\":\"12px\",\"textCase\":\"uppercase\",\"fontWeight\":\"
|
|
7280
|
+
"value": "{\"lineHeight\":\"12px\",\"textCase\":\"uppercase\",\"fontWeight\":\"600\"}",
|
|
7281
7281
|
"type": "typography",
|
|
7282
7282
|
"attributes": {
|
|
7283
7283
|
"calcite-schema": {
|
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Nov 2024 20:30:03 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const calciteBorderWidthNone = "0";
|
|
@@ -76,7 +76,7 @@ export const calciteFontWeightNormal = "400"; // For backwards compatibility onl
|
|
|
76
76
|
export const calciteFontWeightRegular = "400";
|
|
77
77
|
export const calciteFontWeightMedium = "500";
|
|
78
78
|
export const calciteFontWeightSemibold = "600";
|
|
79
|
-
export const calciteFontWeightBold = "
|
|
79
|
+
export const calciteFontWeightBold = "600";
|
|
80
80
|
export const calciteFontSizeXs = "10px";
|
|
81
81
|
export const calciteFontSizeSm = "12px";
|
|
82
82
|
export const calciteFontSize = "14px";
|
|
@@ -189,7 +189,7 @@ export const calciteTypographyHierarchyHeading4 = {"fontWeight":"500","lineHeigh
|
|
|
189
189
|
export const calciteTypographyHierarchyHeading5 = {"fontWeight":"500","lineHeight":"137.5%"};
|
|
190
190
|
export const calciteTypographyHierarchyBodySnug = {"lineHeight":"137.5%"};
|
|
191
191
|
export const calciteTypographyHierarchyBody = {"fontFamily":["Avenir Next","Avenir","Helvetica Neue","sans-serif"],"fontSize":"14px","fontWeight":"400","letterSpacing":"0","lineHeight":"16px","paragraphSpacing":"4px","textCase":"none","textDecoration":"none"};
|
|
192
|
-
export const calciteTypographyHierarchyOverline = {"lineHeight":"12px","textCase":"uppercase","fontWeight":"
|
|
192
|
+
export const calciteTypographyHierarchyOverline = {"lineHeight":"12px","textCase":"uppercase","fontWeight":"600"};
|
|
193
193
|
export const calciteTypographyHierarchyCaption = {"lineHeight":"137.5%","fontSize":"12px"};
|
|
194
194
|
export const calciteZIndexDeep = "-999999";
|
|
195
195
|
export const calciteZIndex = "1";
|
package/dist/js/core.d.ts
CHANGED
package/dist/js/core.js
CHANGED
package/dist/js/global.d.ts
CHANGED
package/dist/js/global.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Nov 2024 20:30:02 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export default {
|
|
@@ -4801,7 +4801,7 @@ export default {
|
|
|
4801
4801
|
path: ["semantic", "font", "weight", "semibold"],
|
|
4802
4802
|
},
|
|
4803
4803
|
bold: {
|
|
4804
|
-
value: "
|
|
4804
|
+
value: "600",
|
|
4805
4805
|
type: "fontWeights",
|
|
4806
4806
|
attributes: {
|
|
4807
4807
|
"calcite-schema": {
|
|
@@ -4834,7 +4834,7 @@ export default {
|
|
|
4834
4834
|
"/home/runner/work/calcite-design-system/calcite-design-system/packages/calcite-design-tokens/src/semantic/font.json",
|
|
4835
4835
|
isSource: true,
|
|
4836
4836
|
original: {
|
|
4837
|
-
value: "{core.font.weight.
|
|
4837
|
+
value: "{core.font.weight.demi}",
|
|
4838
4838
|
type: "fontWeights",
|
|
4839
4839
|
attributes: {
|
|
4840
4840
|
"calcite-schema": {
|
|
@@ -12946,7 +12946,7 @@ export default {
|
|
|
12946
12946
|
value: {
|
|
12947
12947
|
lineHeight: "12px",
|
|
12948
12948
|
textCase: "uppercase",
|
|
12949
|
-
fontWeight: "
|
|
12949
|
+
fontWeight: "600",
|
|
12950
12950
|
},
|
|
12951
12951
|
type: "typography",
|
|
12952
12952
|
attributes: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Nov 2024 20:30:01 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 Thu, 21 Nov 2024 20:30:01 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
$calcite-z-index-tooltip: 901;
|
|
@@ -68,7 +68,7 @@ $calcite-font-size-md: 16px;
|
|
|
68
68
|
$calcite-font-size: 14px;
|
|
69
69
|
$calcite-font-size-sm: 12px;
|
|
70
70
|
$calcite-font-size-xs: 10px;
|
|
71
|
-
$calcite-font-weight-bold:
|
|
71
|
+
$calcite-font-weight-bold: 600;
|
|
72
72
|
$calcite-font-weight-semibold: 600;
|
|
73
73
|
$calcite-font-weight-medium: 500;
|
|
74
74
|
$calcite-font-weight-regular: 400;
|
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.0-next.
|
|
3
|
+
"version": "2.3.0-next.2",
|
|
4
4
|
"description": "Esri's Calcite Design System Tokens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Calcite",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"volta": {
|
|
43
43
|
"extends": "../../package.json"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "3b4e0af4fe06b7c0145922fbaf6178e7a2b3af67"
|
|
46
46
|
}
|