@esri/calcite-design-tokens 3.0.2-next.2 → 3.0.2-next.4

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.
@@ -46,6 +46,7 @@
46
46
  --calcite-color-foreground-3: #eaeaea;
47
47
  --calcite-color-foreground-2: #f3f3f3;
48
48
  --calcite-color-foreground-1: #ffffff;
49
+ --calcite-color-background-none: rgba(255, 255, 255, 0);
49
50
  --calcite-color-background: #f8f8f8;
50
51
  }
51
52
  @mixin calcite-mode-dark {
@@ -88,5 +89,6 @@
88
89
  --calcite-color-foreground-3: #151515;
89
90
  --calcite-color-foreground-2: #202020;
90
91
  --calcite-color-foreground-1: #2b2b2b;
92
+ --calcite-color-background-none: rgba(255, 255, 255, 0);
91
93
  --calcite-color-background: #353535;
92
94
  }
@@ -3,6 +3,7 @@
3
3
  // Do not edit directly, this file was auto-generated.
4
4
 
5
5
  $calcite-color-background: #f8f8f8;
6
+ $calcite-color-background-none: rgba(255, 255, 255, 0);
6
7
  $calcite-color-foreground-1: #ffffff;
7
8
  $calcite-color-foreground-2: #f3f3f3;
8
9
  $calcite-color-foreground-3: #eaeaea;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/calcite-design-tokens",
3
- "version": "3.0.2-next.2",
3
+ "version": "3.0.2-next.4",
4
4
  "description": "Esri's Calcite Design System Tokens",
5
5
  "keywords": [
6
6
  "Calcite",
@@ -32,7 +32,7 @@
32
32
  "build:watch": "tsx --watch src/build-tokens.ts",
33
33
  "clean": "rimraf node_modules dist .turbo",
34
34
  "lint:json": "prettier --write \"**/*.json\" >/dev/null",
35
- "lint:md": "prettier --write \"**/*.md\" >/dev/null && markdownlint \"**/*.md\" --fix --dot --ignore-path ../../.gitignore",
35
+ "lint:md": "prettier --write \"**/*.md\" >/dev/null && markdownlint-cli2 \"**/*.md\" --fix --config \"../../.markdownlint-cli2.jsonc\"",
36
36
  "lint:ts": "eslint --fix . && prettier --write \"**/*.{ts,tsx,cjs,mjs}\" >/dev/null",
37
37
  "lint": "concurrently npm:lint:*",
38
38
  "test": "vitest",
@@ -42,8 +42,5 @@
42
42
  "volta": {
43
43
  "extends": "../../package.json"
44
44
  },
45
- "devDependencies": {
46
- "type-fest": "4.37.0"
47
- },
48
- "gitHead": "2374e997f45b341ce1349b2ef690c93a8255810b"
45
+ "gitHead": "619250d4155a6abe8c503b7fe8275ddce0ed9ccb"
49
46
  }