@esri/calcite-design-tokens 3.0.2-next.2 → 3.0.2-next.3
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/dark.css +2 -1
- package/dist/css/global.css +1 -1
- package/dist/css/index.css +5 -0
- package/dist/css/light.css +1 -0
- package/dist/docs/core.json +79 -79
- package/dist/docs/dark.json +1130 -0
- package/dist/docs/global.json +300 -300
- package/dist/docs/light.json +1130 -0
- package/dist/docs/semantic.json +69 -69
- package/dist/es6/dark.d.ts +46 -0
- package/dist/es6/dark.js +46 -0
- package/dist/es6/global.d.ts +5 -8
- package/dist/es6/global.js +4 -4
- package/dist/es6/light.d.ts +46 -0
- package/dist/es6/light.js +46 -0
- package/dist/js/core.js +117 -117
- package/dist/js/dark.d.ts +46 -0
- package/dist/js/dark.js +2147 -0
- package/dist/js/global.d.ts +8 -8
- package/dist/js/global.js +534 -654
- package/dist/js/light.d.ts +46 -0
- package/dist/js/light.js +2148 -0
- package/dist/js/semantic.js +92 -92
- package/dist/scss/dark.scss +2 -1
- package/dist/scss/global.scss +1 -1
- package/dist/scss/index.scss +2 -0
- package/dist/scss/light.scss +1 -0
- package/package.json +3 -6
package/dist/scss/index.scss
CHANGED
|
@@ -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
|
}
|
package/dist/scss/light.scss
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "3.0.2-next.3",
|
|
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 --
|
|
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
|
-
"
|
|
46
|
-
"type-fest": "4.37.0"
|
|
47
|
-
},
|
|
48
|
-
"gitHead": "2374e997f45b341ce1349b2ef690c93a8255810b"
|
|
45
|
+
"gitHead": "fe9dc9f9f57565be66a705884d407ef647a120ff"
|
|
49
46
|
}
|