@adobe/design-data-spec 0.4.0 → 0.5.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/components/accordion.json +431 -1
- package/components/action-bar.json +183 -1
- package/components/action-button.json +407 -1
- package/components/action-group.json +15 -1
- package/components/alert-banner.json +79 -1
- package/components/alert-dialog.json +107 -1
- package/components/avatar-group.json +115 -1
- package/components/avatar.json +131 -1
- package/components/badge.json +430 -1
- package/components/breadcrumbs.json +175 -1
- package/components/button-group.json +11 -1
- package/components/button.json +466 -8
- package/components/cards.json +483 -1
- package/components/checkbox-group.json +2 -1
- package/components/checkbox.json +243 -1
- package/components/close-button.json +123 -1
- package/components/coach-indicator.json +39 -1
- package/components/coach-mark.json +103 -1
- package/components/color-area.json +39 -1
- package/components/color-handle.json +51 -1
- package/components/color-loupe.json +55 -1
- package/components/color-slider.json +43 -1
- package/components/color-wheel.json +35 -1
- package/components/combo-box.json +387 -1
- package/components/contextual-help.json +83 -1
- package/components/date-picker.json +279 -1
- package/components/divider.json +47 -1
- package/components/drop-zone.json +167 -1
- package/components/field-label.json +147 -1
- package/components/help-text.json +147 -1
- package/components/illustrated-message.json +107 -1
- package/components/in-field-progress-circle.json +55 -1
- package/components/in-line-alert.json +155 -1
- package/components/link.json +91 -1
- package/components/list-view.json +263 -1
- package/components/menu.json +467 -1
- package/components/meter.json +115 -1
- package/components/number-field.json +399 -1
- package/components/opacity-checkerboard.json +19 -1
- package/components/picker.json +431 -1
- package/components/popover.json +51 -1
- package/components/progress-bar.json +115 -1
- package/components/progress-circle.json +55 -1
- package/components/radio-button.json +243 -1
- package/components/radio-group.json +2 -1
- package/components/rating.json +99 -1
- package/components/search-field.json +235 -1
- package/components/segmented-control.json +135 -1
- package/components/select-box.json +187 -1
- package/components/side-navigation.json +223 -1
- package/components/slider.json +279 -1
- package/components/standard-dialog.json +99 -1
- package/components/status-light.json +219 -1
- package/components/steplist.json +215 -1
- package/components/swatch-group.json +15 -1
- package/components/swatch.json +136 -2
- package/components/switch.json +251 -1
- package/components/table.json +271 -1
- package/components/tabs.json +151 -1
- package/components/tag-field.json +151 -1
- package/components/tag-group.json +19 -1
- package/components/tag.json +323 -1
- package/components/takeover-dialog.json +35 -1
- package/components/text-area.json +383 -1
- package/components/text-field.json +411 -1
- package/components/thumbnail.json +83 -1
- package/components/title.json +39 -0
- package/components/toast.json +99 -1
- package/components/tooltip.json +87 -1
- package/components/tree-view.json +279 -1
- package/conformance/invalid/SPEC-027/dataset.json +25 -0
- package/conformance/invalid/SPEC-027/expected-errors.json +10 -0
- package/conformance/valid/token-bindings.json +27 -0
- package/package.json +1 -1
- package/rules/rules.yaml +9 -0
- package/schemas/component.schema.json +22 -0
- package/schemas/token.schema.json +27 -0
- package/spec/agent-surface.md +39 -9
- package/spec/component-format.md +41 -16
- package/spec/token-format.md +18 -0
- package/src/validate.js +27 -3
package/components/picker.json
CHANGED
|
@@ -88,5 +88,435 @@
|
|
|
88
88
|
],
|
|
89
89
|
"lifecycle": {
|
|
90
90
|
"introduced": "1.0.0-draft"
|
|
91
|
-
}
|
|
91
|
+
},
|
|
92
|
+
"tokenBindings": [
|
|
93
|
+
{
|
|
94
|
+
"token": "field-default-width-small",
|
|
95
|
+
"context": "Width (default)"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"token": "field-default-width-medium",
|
|
99
|
+
"context": "Width (default)"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"token": "field-default-width-large",
|
|
103
|
+
"context": "Width (default)"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"token": "field-default-width-extra-large",
|
|
107
|
+
"context": "Width (default)"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"token": "picker-minimum-width-multiplier",
|
|
111
|
+
"context": "Width (minimum)"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"token": "component-height-75",
|
|
115
|
+
"context": "Height"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"token": "component-height-100",
|
|
119
|
+
"context": "Height"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"token": "component-height-200",
|
|
123
|
+
"context": "Height"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"token": "component-height-300",
|
|
127
|
+
"context": "Height"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"token": "corner-radius-medium-size-small",
|
|
131
|
+
"context": "Rounding"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"token": "corner-radius-medium-size-medium",
|
|
135
|
+
"context": "Rounding"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"token": "corner-radius-medium-size-large",
|
|
139
|
+
"context": "Rounding"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"token": "corner-radius-medium-size-extra-large",
|
|
143
|
+
"context": "Rounding"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"token": "component-edge-to-text-75",
|
|
147
|
+
"context": "Spacing (start/end edge to value)"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"token": "component-edge-to-text-100",
|
|
151
|
+
"context": "Spacing (start/end edge to value)"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"token": "component-edge-to-text-200",
|
|
155
|
+
"context": "Spacing (start/end edge to value)"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"token": "component-edge-to-text-300",
|
|
159
|
+
"context": "Spacing (start/end edge to value)"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"token": "field-edge-to-text-quiet",
|
|
163
|
+
"context": "Spacing (start/end edge to value)"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"token": "focus-indicator-thickness",
|
|
167
|
+
"context": "Focus indicator"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"token": "focus-indicator-gap",
|
|
171
|
+
"context": "Focus indicator"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"token": "component-size-difference-down",
|
|
175
|
+
"context": "Component size (down)"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"token": "component-size-width-ratio-down",
|
|
179
|
+
"context": "Component size (down)"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"token": "component-size-minimum-perspective-down",
|
|
183
|
+
"context": "Component size (down)"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"token": "workflow-icon-size-75",
|
|
187
|
+
"context": "Prefix min-width"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"token": "workflow-icon-size-100",
|
|
191
|
+
"context": "Prefix min-width"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"token": "workflow-icon-size-200",
|
|
195
|
+
"context": "Prefix min-width"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"token": "workflow-icon-size-300",
|
|
199
|
+
"context": "Prefix min-width"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"token": "picker-end-edge-to-disclosure-icon-quiet",
|
|
203
|
+
"context": "Spacing (start/end edge to prefix)"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"token": "text-to-visual-75",
|
|
207
|
+
"context": "Spacing (prefix to value/placeholder)"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"token": "text-to-visual-100",
|
|
211
|
+
"context": "Spacing (prefix to value/placeholder)"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"token": "text-to-visual-200",
|
|
215
|
+
"context": "Spacing (prefix to value/placeholder)"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"token": "text-to-visual-300",
|
|
219
|
+
"context": "Spacing (prefix to value/placeholder)"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"token": "chevron-icon-size-75",
|
|
223
|
+
"context": "Chevron/disclosure icon"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"token": "chevron-icon-size-100",
|
|
227
|
+
"context": "Chevron/disclosure icon"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"token": "chevron-icon-size-200",
|
|
231
|
+
"context": "Chevron/disclosure icon"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"token": "chevron-icon-size-300",
|
|
235
|
+
"context": "Chevron/disclosure icon"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"token": "field-top-to-disclosure-icon-75",
|
|
239
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"token": "field-top-to-disclosure-icon-100",
|
|
243
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"token": "field-top-to-disclosure-icon-200",
|
|
247
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"token": "field-top-to-disclosure-icon-300",
|
|
251
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"token": "field-edge-to-disclosure-icon-75",
|
|
255
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"token": "field-edge-to-disclosure-icon-100",
|
|
259
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"token": "field-edge-to-disclosure-icon-200",
|
|
263
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"token": "field-edge-to-disclosure-icon-300",
|
|
267
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"token": "field-edge-to-alert-icon-small",
|
|
271
|
+
"context": "Leading icon (leading icon to end edge)"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"token": "field-edge-to-alert-icon-medium",
|
|
275
|
+
"context": "Leading icon (leading icon to end edge)"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"token": "field-edge-to-alert-icon-large",
|
|
279
|
+
"context": "Leading icon (leading icon to end edge)"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"token": "field-edge-to-alert-icon-extra-large",
|
|
283
|
+
"context": "Leading icon (leading icon to end edge)"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"token": "component-top-to-workflow-icon-75",
|
|
287
|
+
"context": "Spacing (top/bottom edge to icon)"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"token": "component-top-to-workflow-icon-100",
|
|
291
|
+
"context": "Spacing (top/bottom edge to icon)"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"token": "component-top-to-workflow-icon-200",
|
|
295
|
+
"context": "Spacing (top/bottom edge to icon)"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"token": "component-top-to-workflow-icon-300",
|
|
299
|
+
"context": "Spacing (top/bottom edge to icon)"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"token": "picker-visual-to-disclosure-icon-small",
|
|
303
|
+
"context": "Spacing (alert icon to disclosure icon)"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"token": "picker-visual-to-disclosure-icon-medium",
|
|
307
|
+
"context": "Spacing (alert icon to disclosure icon)"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"token": "picker-visual-to-disclosure-icon-large",
|
|
311
|
+
"context": "Spacing (alert icon to disclosure icon)"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"token": "picker-visual-to-disclosure-icon-extra-large",
|
|
315
|
+
"context": "Spacing (alert icon to disclosure icon)"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"token": "field-label-to-component",
|
|
319
|
+
"context": "Spacing (field label to picker)"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"token": "field-label-to-component-quiet-small",
|
|
323
|
+
"context": "Spacing (field label to picker)"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"token": "field-label-to-component-quiet-medium",
|
|
327
|
+
"context": "Spacing (field label to picker)"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"token": "field-label-to-component-quiet-large",
|
|
331
|
+
"context": "Spacing (field label to picker)"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"token": "field-label-to-component-quiet-extra-large",
|
|
335
|
+
"context": "Spacing (field label to picker)"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"token": "component-to-menu-small",
|
|
339
|
+
"context": "Spacing (component to menu)"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"token": "component-to-menu-medium",
|
|
343
|
+
"context": "Spacing (component to menu)"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"token": "component-to-menu-large",
|
|
347
|
+
"context": "Spacing (component to menu)"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"token": "component-to-menu-extra-large",
|
|
351
|
+
"context": "Spacing (component to menu)"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"token": "help-text-to-component",
|
|
355
|
+
"context": "Spacing (text area to help text)"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"token": "field-top-to-progress-circle-small",
|
|
359
|
+
"context": "Spacing (top/bottom edge to progress circle icon)"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"token": "field-top-to-progress-circle-medium",
|
|
363
|
+
"context": "Spacing (top/bottom edge to progress circle icon)"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"token": "field-top-to-progress-circle-large",
|
|
367
|
+
"context": "Spacing (top/bottom edge to progress circle icon)"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"token": "field-top-to-progress-circle-extra-large",
|
|
371
|
+
"context": "Spacing (top/bottom edge to progress circle icon)"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"token": "gray-100",
|
|
375
|
+
"context": "Background"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"token": "gray-200",
|
|
379
|
+
"context": "Background"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"token": "negative-border-color-default",
|
|
383
|
+
"context": "Border (error)"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"token": "negative-border-color-hover",
|
|
387
|
+
"context": "Border (error)"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"token": "negative-border-color-down",
|
|
391
|
+
"context": "Border (error)"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"token": "negative-border-color-focus-hover",
|
|
395
|
+
"context": "Border (error)"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"token": "negative-border-color-focus",
|
|
399
|
+
"context": "Border (error)"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"token": "negative-border-color-key-focus",
|
|
403
|
+
"context": "Border (error)"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"token": "neutral-content-color-default",
|
|
407
|
+
"context": "Value"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"token": "neutral-content-color-hover",
|
|
411
|
+
"context": "Value"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"token": "neutral-content-color-down",
|
|
415
|
+
"context": "Value"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"token": "neutral-content-color-focus-hover",
|
|
419
|
+
"context": "Value"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"token": "neutral-content-color-focus",
|
|
423
|
+
"context": "Value"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"token": "neutral-content-color-key-focus",
|
|
427
|
+
"context": "Value"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"token": "neutral-subdued-content-color-default",
|
|
431
|
+
"context": "Label"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"token": "negative-visual-color",
|
|
435
|
+
"context": "Alert icon"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"token": "disabled-background-color",
|
|
439
|
+
"context": "Disabled"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"token": "disabled-content-color",
|
|
443
|
+
"context": "Disabled"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"token": "focus-indicator-color",
|
|
447
|
+
"context": "Focus ring"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"token": "gray-700",
|
|
451
|
+
"context": "Prefix"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"token": "default-font-family",
|
|
455
|
+
"context": "Value"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"token": "regular-font-weight",
|
|
459
|
+
"context": "Value"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"token": "default-font-style",
|
|
463
|
+
"context": "Value"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"token": "component-s-regular",
|
|
467
|
+
"context": "Value"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"token": "component-m-regular",
|
|
471
|
+
"context": "Value"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"token": "component-l-regular",
|
|
475
|
+
"context": "Value"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"token": "component-xl-regular",
|
|
479
|
+
"context": "Value"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"token": "line-height-font-size-75",
|
|
483
|
+
"context": "Value"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"token": "line-height-font-size-100",
|
|
487
|
+
"context": "Value"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"token": "line-height-font-size-200",
|
|
491
|
+
"context": "Value"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"token": "line-height-font-size-300",
|
|
495
|
+
"context": "Value"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"token": "cjk-line-height-100",
|
|
499
|
+
"context": "Value"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"token": "medium-font-weight",
|
|
503
|
+
"context": "Prefix"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"token": "component-s-medium",
|
|
507
|
+
"context": "Prefix"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"token": "component-m-medium",
|
|
511
|
+
"context": "Prefix"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"token": "component-l-medium",
|
|
515
|
+
"context": "Prefix"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"token": "component-xl-medium",
|
|
519
|
+
"context": "Prefix"
|
|
520
|
+
}
|
|
521
|
+
]
|
|
92
522
|
}
|
package/components/popover.json
CHANGED
|
@@ -65,5 +65,55 @@
|
|
|
65
65
|
},
|
|
66
66
|
"lifecycle": {
|
|
67
67
|
"introduced": "1.0.0-draft"
|
|
68
|
-
}
|
|
68
|
+
},
|
|
69
|
+
"tokenBindings": [
|
|
70
|
+
{
|
|
71
|
+
"token": "corner-radius-large-default",
|
|
72
|
+
"context": "Rounding"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"token": "popover-tip-width",
|
|
76
|
+
"context": "Tip"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"token": "popover-tip-height",
|
|
80
|
+
"context": "Tip"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"token": "popover-edge-to-content-area",
|
|
84
|
+
"context": "Spacing (left/right edge to content area)"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"token": "spacing-100",
|
|
88
|
+
"context": "Spacing (tip to source)"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"token": "border-width-100",
|
|
92
|
+
"context": "Border"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"token": "background-layer-2-color",
|
|
96
|
+
"context": "Background and border"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"token": "popover-border-color",
|
|
100
|
+
"context": "Background and border"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"token": "drop-shadow-elevated-color",
|
|
104
|
+
"context": "Drop shadow"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"token": "drop-shadow-elevated-x",
|
|
108
|
+
"context": "Drop shadow"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"token": "drop-shadow-elevated-y",
|
|
112
|
+
"context": "Drop shadow"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"token": "drop-shadow-elevated-blur",
|
|
116
|
+
"context": "Drop shadow"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
69
119
|
}
|
|
@@ -64,5 +64,119 @@
|
|
|
64
64
|
},
|
|
65
65
|
"lifecycle": {
|
|
66
66
|
"introduced": "1.0.0-draft"
|
|
67
|
-
}
|
|
67
|
+
},
|
|
68
|
+
"tokenBindings": [
|
|
69
|
+
{
|
|
70
|
+
"token": "progress-bar-minimum-width",
|
|
71
|
+
"context": "Minimum width"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"token": "progress-bar-maximum-width",
|
|
75
|
+
"context": "Maximum width"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"token": "spacing-75",
|
|
79
|
+
"context": "Spacing (field label to progress bar)"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"token": "spacing-200",
|
|
83
|
+
"context": "Minimum spacing (field label to text)"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"token": "component-top-to-text-75",
|
|
87
|
+
"context": "Spacing (top edge to text)"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"token": "component-top-to-text-100",
|
|
91
|
+
"context": "Spacing (top edge to text)"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"token": "component-top-to-text-200",
|
|
95
|
+
"context": "Spacing (top edge to text)"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"token": "component-top-to-text-300",
|
|
99
|
+
"context": "Spacing (top edge to text)"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"token": "progress-bar-thickness-small",
|
|
103
|
+
"context": "Thickness (track)"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"token": "progress-bar-thickness-medium",
|
|
107
|
+
"context": "Thickness (track)"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"token": "progress-bar-thickness-large",
|
|
111
|
+
"context": "Thickness (track)"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"token": "progress-bar-thickness-extra-large",
|
|
115
|
+
"context": "Thickness (track)"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"token": "corner-radius-full",
|
|
119
|
+
"context": "Rounding"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"token": "default-font-family",
|
|
123
|
+
"context": "Value"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"token": "regular-font-weight",
|
|
127
|
+
"context": "Value"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"token": "default-font-style",
|
|
131
|
+
"context": "Value"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"token": "font-size-75",
|
|
135
|
+
"context": "Value"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"token": "font-size-100",
|
|
139
|
+
"context": "Value"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"token": "font-size-200",
|
|
143
|
+
"context": "Value"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"token": "font-size-300",
|
|
147
|
+
"context": "Value"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"token": "line-height-100",
|
|
151
|
+
"context": "Value"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"token": "cjk-line-height-100",
|
|
155
|
+
"context": "Value"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"token": "neutral-subdued-content-color-default",
|
|
159
|
+
"context": "Text"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"token": "track-color",
|
|
163
|
+
"context": "Track and indicator"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"token": "accent-content-color-default",
|
|
167
|
+
"context": "Track and indicator"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"token": "static-white-text-color",
|
|
171
|
+
"context": "Text (white)"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"token": "static-white-track-color",
|
|
175
|
+
"context": "Track and indicator (white)"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"token": "static-white-track-indicator-color",
|
|
179
|
+
"context": "Track and indicator (white)"
|
|
180
|
+
}
|
|
181
|
+
]
|
|
68
182
|
}
|
|
@@ -41,5 +41,59 @@
|
|
|
41
41
|
},
|
|
42
42
|
"lifecycle": {
|
|
43
43
|
"introduced": "1.0.0-draft"
|
|
44
|
-
}
|
|
44
|
+
},
|
|
45
|
+
"tokenBindings": [
|
|
46
|
+
{
|
|
47
|
+
"token": "progress-circle-size-small",
|
|
48
|
+
"context": "Size"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"token": "progress-circle-size-medium",
|
|
52
|
+
"context": "Size"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"token": "progress-circle-size-large",
|
|
56
|
+
"context": "Size"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"token": "progress-circle-thickness-small",
|
|
60
|
+
"context": "Thickness"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"token": "progress-circle-thickness-medium",
|
|
64
|
+
"context": "Thickness"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"token": "progress-circle-thickness-large",
|
|
68
|
+
"context": "Thickness"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"token": "corner-radius-full",
|
|
72
|
+
"context": "Rounding (fill)"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"token": "track-color",
|
|
76
|
+
"context": "Track and fill"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"token": "accent-content-color-default",
|
|
80
|
+
"context": "Track and fill"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"token": "static-white-track-color",
|
|
84
|
+
"context": "Track and fill (white)"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"token": "static-white-track-indicator-color",
|
|
88
|
+
"context": "Track and fill (white)"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"token": "static-black-track-color",
|
|
92
|
+
"context": "Track and fill (black)"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"token": "static-black-track-indicator-color",
|
|
96
|
+
"context": "Track and fill (black)"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
45
99
|
}
|