@esri/calcite-design-tokens 3.2.0-next.9 → 3.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/core.css +1 -0
- package/dist/css/global.css +7 -1
- package/dist/css/semantic.css +7 -1
- package/dist/docs/core.json +28 -1
- package/dist/docs/dark.json +1 -1
- package/dist/docs/global.json +196 -6
- package/dist/docs/light.json +1 -1
- package/dist/docs/semantic.json +196 -6
- package/dist/es6/core.d.ts +1 -0
- package/dist/es6/core.js +1 -0
- package/dist/es6/global.d.ts +8 -1
- package/dist/es6/global.js +7 -1
- package/dist/es6/semantic.d.ts +8 -1
- package/dist/es6/semantic.js +7 -1
- package/dist/js/core.d.ts +1 -0
- package/dist/js/core.js +35 -0
- package/dist/js/global.d.ts +6 -0
- package/dist/js/global.js +258 -7
- package/dist/js/semantic.d.ts +6 -0
- package/dist/js/semantic.js +258 -7
- package/dist/scss/core.scss +1 -0
- package/dist/scss/global.scss +7 -1
- package/dist/scss/semantic.scss +7 -1
- package/package.json +5 -5
package/dist/scss/core.scss
CHANGED
|
@@ -562,6 +562,7 @@ $calcite-size-relative-150: 150%;
|
|
|
562
562
|
$calcite-size-relative-162: 162.5%;
|
|
563
563
|
$calcite-size-relative-200: 200%;
|
|
564
564
|
$calcite-size-relative-auto: auto;
|
|
565
|
+
$calcite-size-relative-normal: normal;
|
|
565
566
|
$calcite-z-index-0: -999999;
|
|
566
567
|
$calcite-z-index-1: 1;
|
|
567
568
|
$calcite-z-index-3: 300;
|
package/dist/scss/global.scss
CHANGED
|
@@ -38,7 +38,13 @@ $calcite-font-line-height-fixed-sm: 12px;
|
|
|
38
38
|
$calcite-font-line-height-fixed-base: 16px;
|
|
39
39
|
$calcite-font-line-height-fixed-lg: 20px;
|
|
40
40
|
$calcite-font-line-height-fixed-xl: 24px;
|
|
41
|
-
$calcite-font-line-height-
|
|
41
|
+
$calcite-font-line-height-fixed-2xl: 32px;
|
|
42
|
+
$calcite-font-line-height-fixed-3xl: 40px;
|
|
43
|
+
$calcite-font-line-height-fixed-4xl: 48px;
|
|
44
|
+
$calcite-font-line-height-fixed-5xl: 64px;
|
|
45
|
+
$calcite-font-line-height-fixed-6xl: 80px;
|
|
46
|
+
$calcite-font-line-height-relative: normal; // normal
|
|
47
|
+
$calcite-font-line-height-relative-base: 1; // 1
|
|
42
48
|
$calcite-font-line-height-relative-tight: 1.25; // 1.25
|
|
43
49
|
$calcite-font-line-height-relative-snug: 1.375; // 1.375
|
|
44
50
|
$calcite-font-line-height-relative-normal: 1.5; // 1.5
|
package/dist/scss/semantic.scss
CHANGED
|
@@ -36,7 +36,13 @@ $calcite-font-line-height-fixed-sm: 12px;
|
|
|
36
36
|
$calcite-font-line-height-fixed-base: 16px;
|
|
37
37
|
$calcite-font-line-height-fixed-lg: 20px;
|
|
38
38
|
$calcite-font-line-height-fixed-xl: 24px;
|
|
39
|
-
$calcite-font-line-height-
|
|
39
|
+
$calcite-font-line-height-fixed-2xl: 32px;
|
|
40
|
+
$calcite-font-line-height-fixed-3xl: 40px;
|
|
41
|
+
$calcite-font-line-height-fixed-4xl: 48px;
|
|
42
|
+
$calcite-font-line-height-fixed-5xl: 64px;
|
|
43
|
+
$calcite-font-line-height-fixed-6xl: 80px;
|
|
44
|
+
$calcite-font-line-height-relative: normal; // normal
|
|
45
|
+
$calcite-font-line-height-relative-base: 1; // 1
|
|
40
46
|
$calcite-font-line-height-relative-tight: 1.25; // 1.25
|
|
41
47
|
$calcite-font-line-height-relative-snug: 1.375; // 1.375
|
|
42
48
|
$calcite-font-line-height-relative-normal: 1.5; // 1.5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-design-tokens",
|
|
3
|
-
"version": "3.2.0
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Esri's Calcite Design System Tokens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Calcite",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"build": "echo $MODE $GITHUB_ACTION && tsx src/build-tokens.ts",
|
|
32
32
|
"build:watch": "tsx --watch src/build-tokens.ts",
|
|
33
33
|
"clean": "rimraf node_modules dist .turbo",
|
|
34
|
-
"lint:json": "prettier --write \"**/*.json\" >/dev/null",
|
|
35
|
-
"lint:md": "prettier --write \"**/*.md\" >/dev/null && markdownlint-cli2 \"**/*.md\" --fix --config \"../../.markdownlint-cli2.jsonc\"",
|
|
36
|
-
"lint:ts": "eslint --fix
|
|
34
|
+
"lint:json": "prettier --ignore-path \"../../.prettierignore\" --write \"**/*.json\" >/dev/null",
|
|
35
|
+
"lint:md": "prettier --ignore-path \"../../.prettierignore\" --write \"**/*.md\" >/dev/null && markdownlint-cli2 \"**/*.md\" --fix --config \"../../.markdownlint-cli2.jsonc\"",
|
|
36
|
+
"lint:ts": "eslint --fix && prettier --ignore-path \"../../.prettierignore\" --write \"**/*.{ts,tsx,cjs,mjs}\" >/dev/null",
|
|
37
37
|
"lint": "concurrently npm:lint:*",
|
|
38
38
|
"test": "vitest run",
|
|
39
39
|
"test:watch": "vitest",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"vitest": "3.2.4"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "e5e81153b227c32f15170678b919fb372f3f471c"
|
|
50
50
|
}
|