@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.
@@ -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;
@@ -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-relative: auto; // 1
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
@@ -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-relative: auto; // 1
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-next.9",
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 . && prettier --write \"**/*.{ts,tsx,cjs,mjs}\" >/dev/null",
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": "e42d19fc444149812dbf379ce94351bab3537b10"
49
+ "gitHead": "e5e81153b227c32f15170678b919fb372f3f471c"
50
50
  }