@esri/calcite-design-tokens 3.1.1-next.1 → 3.2.0-next.1
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/component.css +11 -0
- package/dist/css/core.css +2 -2
- package/dist/css/dark.css +4 -2
- package/dist/css/global.css +1 -1
- package/dist/css/index.css +12 -7
- package/dist/css/light.css +3 -1
- package/dist/css/semantic.css +1 -1
- package/dist/docs/core.json +3 -3
- package/dist/docs/dark.json +69 -4
- package/dist/docs/global.json +73 -8
- package/dist/docs/light.json +68 -3
- package/dist/docs/semantic.json +5 -5
- package/dist/es6/core.js +2 -2
- package/dist/es6/dark.d.ts +3 -0
- package/dist/es6/dark.js +4 -2
- package/dist/es6/global.d.ts +4 -1
- package/dist/es6/global.js +9 -4
- package/dist/es6/light.d.ts +3 -0
- package/dist/es6/light.js +3 -1
- package/dist/es6/semantic.d.ts +1 -1
- package/dist/es6/semantic.js +1 -1
- package/dist/js/core.js +4 -4
- package/dist/js/dark.d.ts +3 -0
- package/dist/js/dark.js +92 -2
- package/dist/js/global.d.ts +4 -0
- package/dist/js/global.js +104 -8
- package/dist/js/light.d.ts +3 -0
- package/dist/js/light.js +91 -1
- package/dist/js/semantic.js +5 -5
- package/dist/scss/core.scss +2 -2
- package/dist/scss/dark.scss +4 -2
- package/dist/scss/global.scss +1 -1
- package/dist/scss/index.scss +5 -3
- package/dist/scss/light.scss +3 -1
- package/dist/scss/semantic.scss +1 -1
- package/package.json +3 -3
package/dist/css/core.css
CHANGED
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
--calcite-color-medium-saturation-blue-m-bb-060: #6db5e3;
|
|
170
170
|
--calcite-color-medium-saturation-blue-m-bb-070: #548eb4;
|
|
171
171
|
--calcite-color-medium-saturation-blue-m-bb-080: #3a6884;
|
|
172
|
-
--calcite-color-medium-saturation-blue-m-bb-090: #
|
|
172
|
+
--calcite-color-medium-saturation-blue-m-bb-090: #2b465f;
|
|
173
173
|
--calcite-color-medium-saturation-blue-m-bb-100: #071a26;
|
|
174
174
|
--calcite-color-medium-saturation-green-blue-m-gb-010: #dbf2f1;
|
|
175
175
|
--calcite-color-medium-saturation-green-blue-m-gb-020: #beedec;
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
--calcite-color-medium-saturation-violet-m-vv-080: #584572;
|
|
292
292
|
--calcite-color-medium-saturation-violet-m-vv-090: #36264c;
|
|
293
293
|
--calcite-color-medium-saturation-violet-m-vv-100: #140726;
|
|
294
|
-
--calcite-color-high-saturation-blue-h-bb-010: #
|
|
294
|
+
--calcite-color-high-saturation-blue-h-bb-010: #d6efff;
|
|
295
295
|
--calcite-color-high-saturation-blue-h-bb-020: #9fd4f3;
|
|
296
296
|
--calcite-color-high-saturation-blue-h-bb-030: #77bde7;
|
|
297
297
|
--calcite-color-high-saturation-blue-h-bb-040: #50a7da;
|
package/dist/css/dark.css
CHANGED
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
--calcite-color-foreground-1: #2b2b2b;
|
|
10
10
|
--calcite-color-foreground-2: #212121;
|
|
11
11
|
--calcite-color-foreground-3: #141414;
|
|
12
|
-
--calcite-color-foreground-current: #
|
|
12
|
+
--calcite-color-foreground-current: #2b465f; /** deprecated, use --calcite-color-foreground-highlight instead */
|
|
13
|
+
--calcite-color-foreground-highlight: #2b465f;
|
|
13
14
|
--calcite-color-transparent: rgba(255, 255, 255, 0);
|
|
14
15
|
--calcite-color-transparent-hover: rgba(255, 255, 255, 0.12);
|
|
15
16
|
--calcite-color-transparent-press: rgba(255, 255, 255, 0.16);
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
--calcite-color-text-1: #ffffff;
|
|
40
41
|
--calcite-color-text-2: #bfbfbf;
|
|
41
42
|
--calcite-color-text-3: #9e9e9e;
|
|
42
|
-
--calcite-color-text-highlight: #
|
|
43
|
+
--calcite-color-text-highlight: #d6efff;
|
|
43
44
|
--calcite-color-text-inverse: #141414;
|
|
44
45
|
--calcite-color-text-link: #00a0ff;
|
|
45
46
|
--calcite-color-border-1: #545454;
|
|
@@ -48,4 +49,5 @@
|
|
|
48
49
|
--calcite-color-border-input: #757575;
|
|
49
50
|
--calcite-color-border-ghost: rgba(117, 117, 117, 0.3);
|
|
50
51
|
--calcite-color-border-white: #f7f7f7;
|
|
52
|
+
--calcite-color-focus: var(--calcite-color-brand);
|
|
51
53
|
}
|
package/dist/css/global.css
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
--calcite-container-size-gutter: 16px;
|
|
15
15
|
--calcite-container-size-content-fluid: 100%; /** for fluid grid widths */
|
|
16
16
|
--calcite-container-size-content-fixed: 1440px; /** only for lg breakpoint fixed grid width */
|
|
17
|
-
--calcite-corner-radius-sharp: 0; /** deprecated, use --calcite-
|
|
17
|
+
--calcite-corner-radius-sharp: 0; /** deprecated, use --calcite-corner-radius-none instead */
|
|
18
18
|
--calcite-corner-radius-none: 0;
|
|
19
19
|
--calcite-corner-radius-xs: 2px;
|
|
20
20
|
--calcite-corner-radius-sm: 4px;
|
package/dist/css/index.css
CHANGED
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
--calcite-color-transparent-press: rgba(0, 0, 0, 0.08);
|
|
45
45
|
--calcite-color-transparent-hover: rgba(0, 0, 0, 0.04);
|
|
46
46
|
--calcite-color-transparent: rgba(0, 0, 0, 0);
|
|
47
|
-
--calcite-color-foreground-
|
|
47
|
+
--calcite-color-foreground-highlight: #d6efff;
|
|
48
|
+
--calcite-color-foreground-current: #d6efff; /** deprecated, use --calcite-color-foreground-highlight instead */
|
|
48
49
|
--calcite-color-foreground-3: #ebebeb;
|
|
49
50
|
--calcite-color-foreground-2: #f2f2f2;
|
|
50
51
|
--calcite-color-foreground-1: #ffffff;
|
|
@@ -91,7 +92,8 @@
|
|
|
91
92
|
--calcite-color-transparent-press: rgba(0, 0, 0, 0.08);
|
|
92
93
|
--calcite-color-transparent-hover: rgba(0, 0, 0, 0.04);
|
|
93
94
|
--calcite-color-transparent: rgba(0, 0, 0, 0);
|
|
94
|
-
--calcite-color-foreground-
|
|
95
|
+
--calcite-color-foreground-highlight: #d6efff;
|
|
96
|
+
--calcite-color-foreground-current: #d6efff; /** deprecated, use --calcite-color-foreground-highlight instead */
|
|
95
97
|
--calcite-color-foreground-3: #ebebeb;
|
|
96
98
|
--calcite-color-foreground-2: #f2f2f2;
|
|
97
99
|
--calcite-color-foreground-1: #ffffff;
|
|
@@ -109,7 +111,7 @@
|
|
|
109
111
|
--calcite-color-border-1: #545454;
|
|
110
112
|
--calcite-color-text-link: #00a0ff;
|
|
111
113
|
--calcite-color-text-inverse: #141414;
|
|
112
|
-
--calcite-color-text-highlight: #
|
|
114
|
+
--calcite-color-text-highlight: #d6efff;
|
|
113
115
|
--calcite-color-text-3: #9e9e9e;
|
|
114
116
|
--calcite-color-text-2: #bfbfbf;
|
|
115
117
|
--calcite-color-text-1: #ffffff;
|
|
@@ -139,7 +141,8 @@
|
|
|
139
141
|
--calcite-color-transparent-press: rgba(255, 255, 255, 0.16);
|
|
140
142
|
--calcite-color-transparent-hover: rgba(255, 255, 255, 0.12);
|
|
141
143
|
--calcite-color-transparent: rgba(255, 255, 255, 0);
|
|
142
|
-
--calcite-color-foreground-
|
|
144
|
+
--calcite-color-foreground-highlight: #2b465f;
|
|
145
|
+
--calcite-color-foreground-current: #2b465f; /** deprecated, use --calcite-color-foreground-highlight instead */
|
|
143
146
|
--calcite-color-foreground-3: #141414;
|
|
144
147
|
--calcite-color-foreground-2: #212121;
|
|
145
148
|
--calcite-color-foreground-1: #2b2b2b;
|
|
@@ -186,7 +189,8 @@
|
|
|
186
189
|
--calcite-color-transparent-press: rgba(0, 0, 0, 0.08);
|
|
187
190
|
--calcite-color-transparent-hover: rgba(0, 0, 0, 0.04);
|
|
188
191
|
--calcite-color-transparent: rgba(0, 0, 0, 0);
|
|
189
|
-
--calcite-color-foreground-
|
|
192
|
+
--calcite-color-foreground-highlight: #d6efff;
|
|
193
|
+
--calcite-color-foreground-current: #d6efff; /** deprecated, use --calcite-color-foreground-highlight instead */
|
|
190
194
|
--calcite-color-foreground-3: #ebebeb;
|
|
191
195
|
--calcite-color-foreground-2: #f2f2f2;
|
|
192
196
|
--calcite-color-foreground-1: #ffffff;
|
|
@@ -202,7 +206,7 @@
|
|
|
202
206
|
--calcite-color-border-1: #545454;
|
|
203
207
|
--calcite-color-text-link: #00a0ff;
|
|
204
208
|
--calcite-color-text-inverse: #141414;
|
|
205
|
-
--calcite-color-text-highlight: #
|
|
209
|
+
--calcite-color-text-highlight: #d6efff;
|
|
206
210
|
--calcite-color-text-3: #9e9e9e;
|
|
207
211
|
--calcite-color-text-2: #bfbfbf;
|
|
208
212
|
--calcite-color-text-1: #ffffff;
|
|
@@ -232,7 +236,8 @@
|
|
|
232
236
|
--calcite-color-transparent-press: rgba(255, 255, 255, 0.16);
|
|
233
237
|
--calcite-color-transparent-hover: rgba(255, 255, 255, 0.12);
|
|
234
238
|
--calcite-color-transparent: rgba(255, 255, 255, 0);
|
|
235
|
-
--calcite-color-foreground-
|
|
239
|
+
--calcite-color-foreground-highlight: #2b465f;
|
|
240
|
+
--calcite-color-foreground-current: #2b465f; /** deprecated, use --calcite-color-foreground-highlight instead */
|
|
236
241
|
--calcite-color-foreground-3: #141414;
|
|
237
242
|
--calcite-color-foreground-2: #212121;
|
|
238
243
|
--calcite-color-foreground-1: #2b2b2b;
|
package/dist/css/light.css
CHANGED
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
--calcite-color-foreground-1: #ffffff;
|
|
10
10
|
--calcite-color-foreground-2: #f2f2f2;
|
|
11
11
|
--calcite-color-foreground-3: #ebebeb;
|
|
12
|
-
--calcite-color-foreground-current: #
|
|
12
|
+
--calcite-color-foreground-current: #d6efff; /** deprecated, use --calcite-color-foreground-highlight instead */
|
|
13
|
+
--calcite-color-foreground-highlight: #d6efff;
|
|
13
14
|
--calcite-color-transparent: rgba(0, 0, 0, 0);
|
|
14
15
|
--calcite-color-transparent-hover: rgba(0, 0, 0, 0.04);
|
|
15
16
|
--calcite-color-transparent-press: rgba(0, 0, 0, 0.08);
|
|
@@ -48,4 +49,5 @@
|
|
|
48
49
|
--calcite-color-border-input: #949494;
|
|
49
50
|
--calcite-color-border-ghost: rgba(0, 0, 0, 0.3);
|
|
50
51
|
--calcite-color-border-white: #ffffff;
|
|
52
|
+
--calcite-color-focus: var(--calcite-color-brand);
|
|
51
53
|
}
|
package/dist/css/semantic.css
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
--calcite-container-size-gutter: 16px;
|
|
15
15
|
--calcite-container-size-content-fluid: 100%; /** for fluid grid widths */
|
|
16
16
|
--calcite-container-size-content-fixed: 1440px; /** only for lg breakpoint fixed grid width */
|
|
17
|
-
--calcite-corner-radius-sharp: 0; /** deprecated, use --calcite-
|
|
17
|
+
--calcite-corner-radius-sharp: 0; /** deprecated, use --calcite-corner-radius-none instead */
|
|
18
18
|
--calcite-corner-radius-none: 0;
|
|
19
19
|
--calcite-corner-radius-xs: 2px;
|
|
20
20
|
--calcite-corner-radius-sm: 4px;
|
package/dist/docs/core.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1750192331476,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{core.color.neutral.blk-000}",
|
|
@@ -4596,7 +4596,7 @@
|
|
|
4596
4596
|
},
|
|
4597
4597
|
{
|
|
4598
4598
|
"key": "{core.color.medium-saturation.blue.m-bb-090}",
|
|
4599
|
-
"value": "#
|
|
4599
|
+
"value": "#2b465f",
|
|
4600
4600
|
"type": "color",
|
|
4601
4601
|
"attributes": {
|
|
4602
4602
|
"category": "color",
|
|
@@ -8072,7 +8072,7 @@
|
|
|
8072
8072
|
},
|
|
8073
8073
|
{
|
|
8074
8074
|
"key": "{core.color.high-saturation.blue.h-bb-010}",
|
|
8075
|
-
"value": "#
|
|
8075
|
+
"value": "#d6efff",
|
|
8076
8076
|
"type": "color",
|
|
8077
8077
|
"attributes": {
|
|
8078
8078
|
"category": "color",
|
package/dist/docs/dark.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1750192329509,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.color.background.default}",
|
|
@@ -138,13 +138,21 @@
|
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
140
|
"key": "{semantic.color.foreground.current}",
|
|
141
|
-
"value": "#
|
|
141
|
+
"value": "#2b465f",
|
|
142
142
|
"type": "color",
|
|
143
143
|
"attributes": {
|
|
144
144
|
"category": "color",
|
|
145
145
|
"type": "color",
|
|
146
146
|
"item": "foreground",
|
|
147
147
|
"subitem": "current",
|
|
148
|
+
"value": "#2b465f",
|
|
149
|
+
"description": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
150
|
+
"filePath": "src/tokens/semantic/color/dark.json",
|
|
151
|
+
"isSource": true,
|
|
152
|
+
"key": "{semantic.color.foreground.current}",
|
|
153
|
+
"name": "calcite-semantic-color-foreground-current",
|
|
154
|
+
"path": ["semantic", "color", "foreground", "current"],
|
|
155
|
+
"comment": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
148
156
|
"names": {
|
|
149
157
|
"scss": "$calcite-color-foreground-current",
|
|
150
158
|
"css": "var(--calcite-color-foreground-current)",
|
|
@@ -158,10 +166,39 @@
|
|
|
158
166
|
"type": "color"
|
|
159
167
|
}
|
|
160
168
|
},
|
|
169
|
+
"description": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
161
170
|
"filePath": "src/tokens/semantic/color/dark.json",
|
|
162
171
|
"isSource": true,
|
|
163
172
|
"name": "Color Foreground Current",
|
|
164
|
-
"path": ["semantic", "color", "foreground", "current"]
|
|
173
|
+
"path": ["semantic", "color", "foreground", "current"],
|
|
174
|
+
"comment": "deprecated, use --calcite-color-foreground-highlight instead"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"key": "{semantic.color.foreground.highlight}",
|
|
178
|
+
"value": "#2b465f",
|
|
179
|
+
"type": "color",
|
|
180
|
+
"attributes": {
|
|
181
|
+
"category": "color",
|
|
182
|
+
"type": "color",
|
|
183
|
+
"item": "foreground",
|
|
184
|
+
"subitem": "highlight",
|
|
185
|
+
"names": {
|
|
186
|
+
"scss": "$calcite-color-foreground-highlight",
|
|
187
|
+
"css": "var(--calcite-color-foreground-highlight)",
|
|
188
|
+
"js": "semantic.color.foreground.highlight",
|
|
189
|
+
"docs": "semantic.color.foreground.highlight",
|
|
190
|
+
"es6": "calciteColorForegroundHighlight"
|
|
191
|
+
},
|
|
192
|
+
"calcite-schema": {
|
|
193
|
+
"system": "calcite",
|
|
194
|
+
"tier": "color",
|
|
195
|
+
"type": "color"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"filePath": "src/tokens/semantic/color/dark.json",
|
|
199
|
+
"isSource": true,
|
|
200
|
+
"name": "Color Foreground Highlight",
|
|
201
|
+
"path": ["semantic", "color", "foreground", "highlight"]
|
|
165
202
|
},
|
|
166
203
|
{
|
|
167
204
|
"key": "{semantic.color.transparent.default.default}",
|
|
@@ -970,7 +1007,7 @@
|
|
|
970
1007
|
},
|
|
971
1008
|
{
|
|
972
1009
|
"key": "{semantic.color.text.highlight}",
|
|
973
|
-
"value": "#
|
|
1010
|
+
"value": "#d6efff",
|
|
974
1011
|
"type": "color",
|
|
975
1012
|
"attributes": {
|
|
976
1013
|
"category": "color",
|
|
@@ -1210,6 +1247,34 @@
|
|
|
1210
1247
|
"isSource": true,
|
|
1211
1248
|
"name": "Color Border White",
|
|
1212
1249
|
"path": ["semantic", "color", "border", "white"]
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"key": "{semantic.color.focus.default}",
|
|
1253
|
+
"value": "#009af2",
|
|
1254
|
+
"type": "color",
|
|
1255
|
+
"attributes": {
|
|
1256
|
+
"category": "color",
|
|
1257
|
+
"scope": "component",
|
|
1258
|
+
"type": "color",
|
|
1259
|
+
"item": "focus",
|
|
1260
|
+
"subitem": "default",
|
|
1261
|
+
"names": {
|
|
1262
|
+
"scss": "$calcite-color-focus",
|
|
1263
|
+
"css": "var(--calcite-color-focus)",
|
|
1264
|
+
"js": "semantic.color.focus.default",
|
|
1265
|
+
"docs": "semantic.color.focus.default",
|
|
1266
|
+
"es6": "calciteColorFocus"
|
|
1267
|
+
},
|
|
1268
|
+
"calcite-schema": {
|
|
1269
|
+
"system": "calcite",
|
|
1270
|
+
"tier": "color",
|
|
1271
|
+
"type": "color"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
"filePath": "src/tokens/semantic/color/dark.json",
|
|
1275
|
+
"isSource": true,
|
|
1276
|
+
"name": "Color Focus",
|
|
1277
|
+
"path": ["semantic", "color", "focus", "default"]
|
|
1213
1278
|
}
|
|
1214
1279
|
]
|
|
1215
1280
|
}
|
package/dist/docs/global.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1750192331219,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.color.background.default}",
|
|
@@ -138,13 +138,21 @@
|
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
140
|
"key": "{semantic.color.foreground.current}",
|
|
141
|
-
"value": "{\"light\":\"#
|
|
141
|
+
"value": "{\"light\":\"#d6efff\",\"dark\":\"#2b465f\"}",
|
|
142
142
|
"type": "color",
|
|
143
143
|
"attributes": {
|
|
144
144
|
"category": "color",
|
|
145
145
|
"type": "color",
|
|
146
146
|
"item": "foreground",
|
|
147
147
|
"subitem": "current",
|
|
148
|
+
"value": "#d6efff",
|
|
149
|
+
"description": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
150
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
151
|
+
"isSource": false,
|
|
152
|
+
"key": "{semantic.color.foreground.current}",
|
|
153
|
+
"name": "calcite-semantic-color-foreground-current",
|
|
154
|
+
"path": ["semantic", "color", "foreground", "current"],
|
|
155
|
+
"comment": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
148
156
|
"names": {
|
|
149
157
|
"scss": "$calcite-color-foreground-current",
|
|
150
158
|
"css": "var(--calcite-color-foreground-current)",
|
|
@@ -158,10 +166,39 @@
|
|
|
158
166
|
"type": "color"
|
|
159
167
|
}
|
|
160
168
|
},
|
|
169
|
+
"description": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
161
170
|
"filePath": "src/tokens/semantic/color/light.json",
|
|
162
171
|
"isSource": false,
|
|
163
172
|
"name": "Color Foreground Current",
|
|
164
|
-
"path": ["semantic", "color", "foreground", "current"]
|
|
173
|
+
"path": ["semantic", "color", "foreground", "current"],
|
|
174
|
+
"comment": "deprecated, use --calcite-color-foreground-highlight instead"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"key": "{semantic.color.foreground.highlight}",
|
|
178
|
+
"value": "{\"light\":\"#d6efff\",\"dark\":\"#2b465f\"}",
|
|
179
|
+
"type": "color",
|
|
180
|
+
"attributes": {
|
|
181
|
+
"category": "color",
|
|
182
|
+
"type": "color",
|
|
183
|
+
"item": "foreground",
|
|
184
|
+
"subitem": "highlight",
|
|
185
|
+
"names": {
|
|
186
|
+
"scss": "$calcite-color-foreground-highlight",
|
|
187
|
+
"css": "var(--calcite-color-foreground-highlight)",
|
|
188
|
+
"js": "semantic.color.foreground.highlight",
|
|
189
|
+
"docs": "semantic.color.foreground.highlight",
|
|
190
|
+
"es6": "calciteColorForegroundHighlight"
|
|
191
|
+
},
|
|
192
|
+
"calcite-schema": {
|
|
193
|
+
"system": "calcite",
|
|
194
|
+
"tier": "color",
|
|
195
|
+
"type": "color"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
199
|
+
"isSource": false,
|
|
200
|
+
"name": "Color Foreground Highlight",
|
|
201
|
+
"path": ["semantic", "color", "foreground", "highlight"]
|
|
165
202
|
},
|
|
166
203
|
{
|
|
167
204
|
"key": "{semantic.color.transparent.default.default}",
|
|
@@ -968,7 +1005,7 @@
|
|
|
968
1005
|
},
|
|
969
1006
|
{
|
|
970
1007
|
"key": "{semantic.color.text.highlight}",
|
|
971
|
-
"value": "{\"light\":\"#004874\",\"dark\":\"#
|
|
1008
|
+
"value": "{\"light\":\"#004874\",\"dark\":\"#d6efff\"}",
|
|
972
1009
|
"type": "color",
|
|
973
1010
|
"attributes": {
|
|
974
1011
|
"category": "color",
|
|
@@ -1209,6 +1246,34 @@
|
|
|
1209
1246
|
"name": "Color Border White",
|
|
1210
1247
|
"path": ["semantic", "color", "border", "white"]
|
|
1211
1248
|
},
|
|
1249
|
+
{
|
|
1250
|
+
"key": "{semantic.color.focus.default}",
|
|
1251
|
+
"value": "{\"light\":\"#007ac2\",\"dark\":\"#009af2\"}",
|
|
1252
|
+
"type": "color",
|
|
1253
|
+
"attributes": {
|
|
1254
|
+
"category": "color",
|
|
1255
|
+
"scope": "component",
|
|
1256
|
+
"type": "color",
|
|
1257
|
+
"item": "focus",
|
|
1258
|
+
"subitem": "default",
|
|
1259
|
+
"names": {
|
|
1260
|
+
"scss": "$calcite-color-focus",
|
|
1261
|
+
"css": "var(--calcite-color-focus)",
|
|
1262
|
+
"js": "semantic.color.focus.default",
|
|
1263
|
+
"docs": "semantic.color.focus.default",
|
|
1264
|
+
"es6": "calciteColorFocus"
|
|
1265
|
+
},
|
|
1266
|
+
"calcite-schema": {
|
|
1267
|
+
"system": "calcite",
|
|
1268
|
+
"tier": "color",
|
|
1269
|
+
"type": "color"
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
1273
|
+
"isSource": false,
|
|
1274
|
+
"name": "Color Focus",
|
|
1275
|
+
"path": ["semantic", "color", "focus", "default"]
|
|
1276
|
+
},
|
|
1212
1277
|
{
|
|
1213
1278
|
"key": "{semantic.border.width.none}",
|
|
1214
1279
|
"value": "0",
|
|
@@ -1958,13 +2023,13 @@
|
|
|
1958
2023
|
"item": "radius",
|
|
1959
2024
|
"subitem": "sharp",
|
|
1960
2025
|
"value": "0",
|
|
1961
|
-
"description": "deprecated, use --calcite-
|
|
2026
|
+
"description": "deprecated, use --calcite-corner-radius-none instead",
|
|
1962
2027
|
"filePath": "src/tokens/semantic/corner.json",
|
|
1963
2028
|
"isSource": true,
|
|
1964
2029
|
"key": "{semantic.corner.radius.sharp}",
|
|
1965
2030
|
"name": "calcite-semantic-corner-radius-sharp",
|
|
1966
2031
|
"path": ["semantic", "corner", "radius", "sharp"],
|
|
1967
|
-
"comment": "deprecated, use --calcite-
|
|
2032
|
+
"comment": "deprecated, use --calcite-corner-radius-none instead",
|
|
1968
2033
|
"names": {
|
|
1969
2034
|
"scss": "$calcite-corner-radius-sharp",
|
|
1970
2035
|
"css": "var(--calcite-corner-radius-sharp)",
|
|
@@ -1978,12 +2043,12 @@
|
|
|
1978
2043
|
"type": "dimension"
|
|
1979
2044
|
}
|
|
1980
2045
|
},
|
|
1981
|
-
"description": "deprecated, use --calcite-
|
|
2046
|
+
"description": "deprecated, use --calcite-corner-radius-none instead",
|
|
1982
2047
|
"filePath": "src/tokens/semantic/corner.json",
|
|
1983
2048
|
"isSource": true,
|
|
1984
2049
|
"name": "Corner Radius Sharp",
|
|
1985
2050
|
"path": ["semantic", "corner", "radius", "sharp"],
|
|
1986
|
-
"comment": "deprecated, use --calcite-
|
|
2051
|
+
"comment": "deprecated, use --calcite-corner-radius-none instead"
|
|
1987
2052
|
},
|
|
1988
2053
|
{
|
|
1989
2054
|
"key": "{semantic.corner.radius.none}",
|
package/dist/docs/light.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1750192330375,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.color.background.default}",
|
|
@@ -138,13 +138,21 @@
|
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
140
|
"key": "{semantic.color.foreground.current}",
|
|
141
|
-
"value": "#
|
|
141
|
+
"value": "#d6efff",
|
|
142
142
|
"type": "color",
|
|
143
143
|
"attributes": {
|
|
144
144
|
"category": "color",
|
|
145
145
|
"type": "color",
|
|
146
146
|
"item": "foreground",
|
|
147
147
|
"subitem": "current",
|
|
148
|
+
"value": "#d6efff",
|
|
149
|
+
"description": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
150
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
151
|
+
"isSource": true,
|
|
152
|
+
"key": "{semantic.color.foreground.current}",
|
|
153
|
+
"name": "calcite-semantic-color-foreground-current",
|
|
154
|
+
"path": ["semantic", "color", "foreground", "current"],
|
|
155
|
+
"comment": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
148
156
|
"names": {
|
|
149
157
|
"scss": "$calcite-color-foreground-current",
|
|
150
158
|
"css": "var(--calcite-color-foreground-current)",
|
|
@@ -158,10 +166,39 @@
|
|
|
158
166
|
"type": "color"
|
|
159
167
|
}
|
|
160
168
|
},
|
|
169
|
+
"description": "deprecated, use --calcite-color-foreground-highlight instead",
|
|
161
170
|
"filePath": "src/tokens/semantic/color/light.json",
|
|
162
171
|
"isSource": true,
|
|
163
172
|
"name": "Color Foreground Current",
|
|
164
|
-
"path": ["semantic", "color", "foreground", "current"]
|
|
173
|
+
"path": ["semantic", "color", "foreground", "current"],
|
|
174
|
+
"comment": "deprecated, use --calcite-color-foreground-highlight instead"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"key": "{semantic.color.foreground.highlight}",
|
|
178
|
+
"value": "#d6efff",
|
|
179
|
+
"type": "color",
|
|
180
|
+
"attributes": {
|
|
181
|
+
"category": "color",
|
|
182
|
+
"type": "color",
|
|
183
|
+
"item": "foreground",
|
|
184
|
+
"subitem": "highlight",
|
|
185
|
+
"names": {
|
|
186
|
+
"scss": "$calcite-color-foreground-highlight",
|
|
187
|
+
"css": "var(--calcite-color-foreground-highlight)",
|
|
188
|
+
"js": "semantic.color.foreground.highlight",
|
|
189
|
+
"docs": "semantic.color.foreground.highlight",
|
|
190
|
+
"es6": "calciteColorForegroundHighlight"
|
|
191
|
+
},
|
|
192
|
+
"calcite-schema": {
|
|
193
|
+
"system": "calcite",
|
|
194
|
+
"tier": "color",
|
|
195
|
+
"type": "color"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
199
|
+
"isSource": true,
|
|
200
|
+
"name": "Color Foreground Highlight",
|
|
201
|
+
"path": ["semantic", "color", "foreground", "highlight"]
|
|
165
202
|
},
|
|
166
203
|
{
|
|
167
204
|
"key": "{semantic.color.transparent.default.default}",
|
|
@@ -1208,6 +1245,34 @@
|
|
|
1208
1245
|
"isSource": true,
|
|
1209
1246
|
"name": "Color Border White",
|
|
1210
1247
|
"path": ["semantic", "color", "border", "white"]
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"key": "{semantic.color.focus.default}",
|
|
1251
|
+
"value": "#007ac2",
|
|
1252
|
+
"type": "color",
|
|
1253
|
+
"attributes": {
|
|
1254
|
+
"category": "color",
|
|
1255
|
+
"scope": "component",
|
|
1256
|
+
"type": "color",
|
|
1257
|
+
"item": "focus",
|
|
1258
|
+
"subitem": "default",
|
|
1259
|
+
"names": {
|
|
1260
|
+
"scss": "$calcite-color-focus",
|
|
1261
|
+
"css": "var(--calcite-color-focus)",
|
|
1262
|
+
"js": "semantic.color.focus.default",
|
|
1263
|
+
"docs": "semantic.color.focus.default",
|
|
1264
|
+
"es6": "calciteColorFocus"
|
|
1265
|
+
},
|
|
1266
|
+
"calcite-schema": {
|
|
1267
|
+
"system": "calcite",
|
|
1268
|
+
"tier": "color",
|
|
1269
|
+
"type": "color"
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
1273
|
+
"isSource": true,
|
|
1274
|
+
"name": "Color Focus",
|
|
1275
|
+
"path": ["semantic", "color", "focus", "default"]
|
|
1211
1276
|
}
|
|
1212
1277
|
]
|
|
1213
1278
|
}
|
package/dist/docs/semantic.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1750192331387,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "{semantic.border.width.none}",
|
|
@@ -750,13 +750,13 @@
|
|
|
750
750
|
"item": "radius",
|
|
751
751
|
"subitem": "sharp",
|
|
752
752
|
"value": "0",
|
|
753
|
-
"description": "deprecated, use --calcite-
|
|
753
|
+
"description": "deprecated, use --calcite-corner-radius-none instead",
|
|
754
754
|
"filePath": "src/tokens/semantic/corner.json",
|
|
755
755
|
"isSource": true,
|
|
756
756
|
"key": "{semantic.corner.radius.sharp}",
|
|
757
757
|
"name": "calcite-semantic-corner-radius-sharp",
|
|
758
758
|
"path": ["semantic", "corner", "radius", "sharp"],
|
|
759
|
-
"comment": "deprecated, use --calcite-
|
|
759
|
+
"comment": "deprecated, use --calcite-corner-radius-none instead",
|
|
760
760
|
"names": {
|
|
761
761
|
"scss": "$calcite-corner-radius-sharp",
|
|
762
762
|
"css": "var(--calcite-corner-radius-sharp)",
|
|
@@ -770,12 +770,12 @@
|
|
|
770
770
|
"type": "dimension"
|
|
771
771
|
}
|
|
772
772
|
},
|
|
773
|
-
"description": "deprecated, use --calcite-
|
|
773
|
+
"description": "deprecated, use --calcite-corner-radius-none instead",
|
|
774
774
|
"filePath": "src/tokens/semantic/corner.json",
|
|
775
775
|
"isSource": true,
|
|
776
776
|
"name": "Corner Radius Sharp",
|
|
777
777
|
"path": ["semantic", "corner", "radius", "sharp"],
|
|
778
|
-
"comment": "deprecated, use --calcite-
|
|
778
|
+
"comment": "deprecated, use --calcite-corner-radius-none instead"
|
|
779
779
|
},
|
|
780
780
|
{
|
|
781
781
|
"key": "{semantic.corner.radius.none}",
|
package/dist/es6/core.js
CHANGED
|
@@ -168,7 +168,7 @@ export const calciteColorMediumSaturationBlueMBb050 = "#84c1e8";
|
|
|
168
168
|
export const calciteColorMediumSaturationBlueMBb060 = "#6db5e3";
|
|
169
169
|
export const calciteColorMediumSaturationBlueMBb070 = "#548eb4";
|
|
170
170
|
export const calciteColorMediumSaturationBlueMBb080 = "#3a6884";
|
|
171
|
-
export const calciteColorMediumSaturationBlueMBb090 = "#
|
|
171
|
+
export const calciteColorMediumSaturationBlueMBb090 = "#2b465f";
|
|
172
172
|
export const calciteColorMediumSaturationBlueMBb100 = "#071a26";
|
|
173
173
|
export const calciteColorMediumSaturationGreenBlueMGb010 = "#dbf2f1";
|
|
174
174
|
export const calciteColorMediumSaturationGreenBlueMGb020 = "#beedec";
|
|
@@ -290,7 +290,7 @@ export const calciteColorMediumSaturationVioletMVv070 = "#796397";
|
|
|
290
290
|
export const calciteColorMediumSaturationVioletMVv080 = "#584572";
|
|
291
291
|
export const calciteColorMediumSaturationVioletMVv090 = "#36264c";
|
|
292
292
|
export const calciteColorMediumSaturationVioletMVv100 = "#140726";
|
|
293
|
-
export const calciteColorHighSaturationBlueHBb010 = "#
|
|
293
|
+
export const calciteColorHighSaturationBlueHBb010 = "#d6efff";
|
|
294
294
|
export const calciteColorHighSaturationBlueHBb020 = "#9fd4f3";
|
|
295
295
|
export const calciteColorHighSaturationBlueHBb030 = "#77bde7";
|
|
296
296
|
export const calciteColorHighSaturationBlueHBb040 = "#50a7da";
|
package/dist/es6/dark.d.ts
CHANGED
|
@@ -8,7 +8,9 @@ export const calciteColorBackgroundNone: string;
|
|
|
8
8
|
export const calciteColorForeground1: string;
|
|
9
9
|
export const calciteColorForeground2: string;
|
|
10
10
|
export const calciteColorForeground3: string;
|
|
11
|
+
/** deprecated, use --calcite-color-foreground-highlight instead */
|
|
11
12
|
export const calciteColorForegroundCurrent: string;
|
|
13
|
+
export const calciteColorForegroundHighlight: string;
|
|
12
14
|
export const calciteColorTransparent: string;
|
|
13
15
|
export const calciteColorTransparentHover: string;
|
|
14
16
|
export const calciteColorTransparentPress: string;
|
|
@@ -47,3 +49,4 @@ export const calciteColorBorder3: string;
|
|
|
47
49
|
export const calciteColorBorderInput: string;
|
|
48
50
|
export const calciteColorBorderGhost: string;
|
|
49
51
|
export const calciteColorBorderWhite: string;
|
|
52
|
+
export const calciteColorFocus: string;
|
package/dist/es6/dark.js
CHANGED
|
@@ -8,7 +8,8 @@ export const calciteColorBackgroundNone = "rgba(255, 255, 255, 0)";
|
|
|
8
8
|
export const calciteColorForeground1 = "#2b2b2b";
|
|
9
9
|
export const calciteColorForeground2 = "#212121";
|
|
10
10
|
export const calciteColorForeground3 = "#141414";
|
|
11
|
-
export const calciteColorForegroundCurrent = "#
|
|
11
|
+
export const calciteColorForegroundCurrent = "#2b465f"; // deprecated, use --calcite-color-foreground-highlight instead
|
|
12
|
+
export const calciteColorForegroundHighlight = "#2b465f";
|
|
12
13
|
export const calciteColorTransparent = "rgba(255, 255, 255, 0)";
|
|
13
14
|
export const calciteColorTransparentHover = "rgba(255, 255, 255, 0.12)";
|
|
14
15
|
export const calciteColorTransparentPress = "rgba(255, 255, 255, 0.16)";
|
|
@@ -38,7 +39,7 @@ export const calciteColorInversePress = "#f2f2f2";
|
|
|
38
39
|
export const calciteColorText1 = "#ffffff";
|
|
39
40
|
export const calciteColorText2 = "#bfbfbf";
|
|
40
41
|
export const calciteColorText3 = "#9e9e9e";
|
|
41
|
-
export const calciteColorTextHighlight = "#
|
|
42
|
+
export const calciteColorTextHighlight = "#d6efff";
|
|
42
43
|
export const calciteColorTextInverse = "#141414";
|
|
43
44
|
export const calciteColorTextLink = "#00a0ff";
|
|
44
45
|
export const calciteColorBorder1 = "#545454";
|
|
@@ -47,3 +48,4 @@ export const calciteColorBorder3 = "#404040";
|
|
|
47
48
|
export const calciteColorBorderInput = "#757575";
|
|
48
49
|
export const calciteColorBorderGhost = "rgba(117, 117, 117, 0.3)";
|
|
49
50
|
export const calciteColorBorderWhite = "#f7f7f7";
|
|
51
|
+
export const calciteColorFocus = "#009af2";
|