@adobe/design-data-spec 0.3.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 +517 -0
- package/components/action-bar.json +203 -0
- package/components/action-button.json +481 -0
- package/components/action-group.json +82 -0
- package/components/alert-banner.json +111 -0
- package/components/alert-dialog.json +152 -0
- package/components/avatar-group.json +140 -0
- package/components/avatar.json +184 -0
- package/components/badge.json +502 -0
- package/components/body.json +29 -0
- package/components/bottom-navigation-android.json +41 -0
- package/components/breadcrumbs.json +263 -0
- package/components/button-group.json +47 -0
- package/components/button.json +466 -8
- package/components/calendar.json +104 -0
- package/components/cards.json +512 -0
- package/components/checkbox-group.json +54 -0
- package/components/checkbox.json +303 -0
- package/components/close-button.json +170 -0
- package/components/coach-indicator.json +76 -0
- package/components/coach-mark.json +157 -0
- package/components/code.json +25 -0
- package/components/color-area.json +115 -0
- package/components/color-handle.json +85 -0
- package/components/color-loupe.json +74 -0
- package/components/color-slider.json +121 -0
- package/components/color-wheel.json +94 -0
- package/components/combo-box.json +480 -0
- package/components/contextual-help.json +162 -0
- package/components/date-picker.json +439 -0
- package/components/detail.json +30 -0
- package/components/divider.json +73 -0
- package/components/drop-zone.json +211 -0
- package/components/field-label.json +189 -0
- package/components/heading.json +33 -0
- package/components/help-text.json +186 -0
- package/components/illustrated-message.json +155 -0
- package/components/in-field-progress-button.json +44 -0
- package/components/in-field-progress-circle.json +80 -0
- package/components/in-line-alert.json +201 -0
- package/components/link.json +135 -0
- package/components/list-view.json +355 -0
- package/components/menu.json +542 -0
- package/components/meter.json +162 -0
- package/components/number-field.json +468 -0
- package/components/opacity-checkerboard.json +43 -0
- package/components/picker.json +522 -0
- package/components/popover.json +119 -0
- package/components/progress-bar.json +182 -0
- package/components/progress-circle.json +99 -0
- package/components/radio-button.json +285 -0
- package/components/radio-group.json +63 -0
- package/components/rating.json +145 -0
- package/components/scroll-zoom-bar.json +53 -0
- package/components/search-field.json +306 -0
- package/components/segmented-control.json +210 -0
- package/components/select-box.json +248 -0
- package/components/side-navigation.json +293 -0
- package/components/slider.json +370 -0
- package/components/standard-dialog.json +151 -0
- package/components/standard-panel.json +53 -0
- package/components/status-light.json +272 -0
- package/components/steplist.json +270 -0
- package/components/swatch-group.json +62 -0
- package/components/swatch.json +193 -0
- package/components/switch.json +305 -0
- package/components/tab-bar-ios.json +41 -0
- package/components/table.json +392 -0
- package/components/tabs.json +229 -0
- package/components/tag-field.json +203 -0
- package/components/tag-group.json +53 -0
- package/components/tag.json +376 -0
- package/components/takeover-dialog.json +92 -0
- package/components/text-area.json +485 -0
- package/components/text-field.json +501 -0
- package/components/thumbnail.json +109 -0
- package/components/title.json +39 -0
- package/components/toast.json +131 -0
- package/components/tooltip.json +140 -0
- package/components/tray.json +21 -0
- package/components/tree-view.json +341 -0
- 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 +2 -1
- package/rules/rules.yaml +9 -0
- package/schemas/component.schema.json +24 -2
- 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
|
@@ -0,0 +1,517 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opensource.adobe.com/spectrum-design-data/schemas/v0/component.schema.json",
|
|
3
|
+
"$id": "https://opensource.adobe.com/spectrum-design-data/schemas/v0/components/accordion.json",
|
|
4
|
+
"specVersion": "1.0.0-draft",
|
|
5
|
+
"name": "accordion",
|
|
6
|
+
"displayName": "Accordion",
|
|
7
|
+
"description": "An accordion is a vertically stacked set of interactive headings that each contain a title and a content area.",
|
|
8
|
+
"meta": {
|
|
9
|
+
"category": "inputs",
|
|
10
|
+
"documentationUrl": "https://spectrum.adobe.com/page/accordion/"
|
|
11
|
+
},
|
|
12
|
+
"options": {
|
|
13
|
+
"size": {
|
|
14
|
+
"type": "string",
|
|
15
|
+
"enum": ["s", "m", "l", "xl"],
|
|
16
|
+
"default": "m"
|
|
17
|
+
},
|
|
18
|
+
"isQuiet": {
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"default": false
|
|
21
|
+
},
|
|
22
|
+
"isDisabled": {
|
|
23
|
+
"type": "boolean",
|
|
24
|
+
"default": false
|
|
25
|
+
},
|
|
26
|
+
"density": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"enum": ["compact", "regular", "spacious"],
|
|
29
|
+
"default": "regular"
|
|
30
|
+
},
|
|
31
|
+
"items": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"description": "An array of accordion items.",
|
|
34
|
+
"items": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": {
|
|
37
|
+
"label": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "The text label displayed for the accordion item."
|
|
40
|
+
},
|
|
41
|
+
"content": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "The content shown when the accordion item is expanded."
|
|
44
|
+
},
|
|
45
|
+
"isExpanded": {
|
|
46
|
+
"type": "boolean",
|
|
47
|
+
"default": false,
|
|
48
|
+
"description": "Whether the accordion item is expanded by default."
|
|
49
|
+
},
|
|
50
|
+
"hasSwitch": {
|
|
51
|
+
"type": "boolean",
|
|
52
|
+
"default": false,
|
|
53
|
+
"description": "If true, the accordion item includes a switch."
|
|
54
|
+
},
|
|
55
|
+
"hasActionButton": {
|
|
56
|
+
"type": "boolean",
|
|
57
|
+
"default": false,
|
|
58
|
+
"description": "If true, the accordion item includes an action button."
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"required": ["label"]
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"isMultiple": {
|
|
65
|
+
"type": "boolean",
|
|
66
|
+
"default": false,
|
|
67
|
+
"description": "If true, multiple accordion items can be expanded at the same time."
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"states": [
|
|
71
|
+
{
|
|
72
|
+
"name": "hover",
|
|
73
|
+
"trigger": "interaction"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "down",
|
|
77
|
+
"trigger": "interaction"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "keyboard-focus",
|
|
81
|
+
"trigger": "interaction"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"lifecycle": {
|
|
85
|
+
"introduced": "1.0.0-draft"
|
|
86
|
+
},
|
|
87
|
+
"tokenBindings": [
|
|
88
|
+
{
|
|
89
|
+
"token": "accordion-minimum-width",
|
|
90
|
+
"context": "Width (default)"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"token": "field-default-width-medium",
|
|
94
|
+
"context": "Width (default)"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"token": "field-default-width-large",
|
|
98
|
+
"context": "Width (default)"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"token": "field-default-width-extra-large",
|
|
102
|
+
"context": "Width (default)"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"token": "accordion-edge-to-content-area-small",
|
|
106
|
+
"context": "Paddings"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"token": "accordion-edge-to-content-area-medium",
|
|
110
|
+
"context": "Paddings"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"token": "accordion-edge-to-content-area-large",
|
|
114
|
+
"context": "Paddings"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"token": "accordion-edge-to-content-area-extra-large",
|
|
118
|
+
"context": "Paddings"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"token": "accordion-item-to-divider",
|
|
122
|
+
"context": "Spacing (between accordion item and divider)"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"token": "component-height-75",
|
|
126
|
+
"context": "Spacing (top/bottom edge to label)"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"token": "component-height-100",
|
|
130
|
+
"context": "Spacing (top/bottom edge to label)"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"token": "component-height-200",
|
|
134
|
+
"context": "Spacing (top/bottom edge to label)"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"token": "component-height-300",
|
|
138
|
+
"context": "Spacing (top/bottom edge to label)"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"token": "accordion-edge-to-text",
|
|
142
|
+
"context": "Spacing (end edges to content)"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"token": "accordion-top-to-text-compact-small",
|
|
146
|
+
"context": "Spacing (top edge to text)"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"token": "accordion-top-to-text-small",
|
|
150
|
+
"context": "Spacing (top edge to text)"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"token": "accordion-top-to-text-spacious-small",
|
|
154
|
+
"context": "Spacing (top edge to text)"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"token": "accordion-top-to-text-compact-medium",
|
|
158
|
+
"context": "Spacing (top edge to text)"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"token": "accordion-top-to-text-medium",
|
|
162
|
+
"context": "Spacing (top edge to text)"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"token": "accordion-top-to-text-spacious-medium",
|
|
166
|
+
"context": "Spacing (top edge to text)"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"token": "accordion-top-to-text-compact-large",
|
|
170
|
+
"context": "Spacing (top edge to text)"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"token": "accordion-top-to-text-large",
|
|
174
|
+
"context": "Spacing (top edge to text)"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"token": "accordion-top-to-text-spacious-large",
|
|
178
|
+
"context": "Spacing (top edge to text)"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"token": "accordion-top-to-text-compact-extra-large",
|
|
182
|
+
"context": "Spacing (top edge to text)"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"token": "accordion-top-to-text-extra-large",
|
|
186
|
+
"context": "Spacing (top edge to text)"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"token": "accordion-top-to-text-spacious-extra-large",
|
|
190
|
+
"context": "Spacing (top edge to text)"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"token": "accordion-bottom-to-text-compact-small",
|
|
194
|
+
"context": "Spacing (bottom edge to text)"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"token": "accordion-bottom-to-text-small",
|
|
198
|
+
"context": "Spacing (bottom edge to text)"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"token": "accordion-bottom-to-text-spacious-small",
|
|
202
|
+
"context": "Spacing (bottom edge to text)"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"token": "accordion-bottom-to-text-compact-medium",
|
|
206
|
+
"context": "Spacing (bottom edge to text)"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"token": "accordion-bottom-to-text-medium",
|
|
210
|
+
"context": "Spacing (bottom edge to text)"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"token": "accordion-bottom-to-text-spacious-medium",
|
|
214
|
+
"context": "Spacing (bottom edge to text)"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"token": "accordion-bottom-to-text-compact-large",
|
|
218
|
+
"context": "Spacing (bottom edge to text)"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"token": "accordion-bottom-to-text-large",
|
|
222
|
+
"context": "Spacing (bottom edge to text)"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"token": "accordion-bottom-to-text-spacious-large",
|
|
226
|
+
"context": "Spacing (bottom edge to text)"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"token": "accordion-bottom-to-text-compact-extra-large",
|
|
230
|
+
"context": "Spacing (bottom edge to text)"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"token": "accordion-bottom-to-text-extra-large",
|
|
234
|
+
"context": "Spacing (bottom edge to text)"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"token": "accordion-bottom-to-text-spacious-extra-large",
|
|
238
|
+
"context": "Spacing (bottom edge to text)"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"token": "accordion-focus-indicator-gap",
|
|
242
|
+
"context": "Focus indicator"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"token": "focus-indicator-thickness",
|
|
246
|
+
"context": "Focus indicator"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"token": "corner-radius-medium-size-small",
|
|
250
|
+
"context": "Rounding"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"token": "corner-radius-medium-size-medium",
|
|
254
|
+
"context": "Rounding"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"token": "corner-radius-medium-size-large",
|
|
258
|
+
"context": "Rounding"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"token": "corner-radius-medium-size-extra-large",
|
|
262
|
+
"context": "Rounding"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"token": "field-top-to-disclosure-icon-compact-small",
|
|
266
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"token": "field-top-to-disclosure-icon-small",
|
|
270
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"token": "field-top-to-disclosure-icon-spacious-small",
|
|
274
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"token": "field-top-to-disclosure-icon-compact-medium",
|
|
278
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"token": "field-top-to-disclosure-icon-medium",
|
|
282
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"token": "field-top-to-disclosure-icon-spacious-medium",
|
|
286
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"token": "field-top-to-disclosure-icon-compact-large",
|
|
290
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"token": "field-top-to-disclosure-icon-large",
|
|
294
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"token": "field-top-to-disclosure-icon-spacious-large",
|
|
298
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"token": "field-top-to-disclosure-icon-compact-extra-large",
|
|
302
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"token": "field-top-to-disclosure-icon-extra-large",
|
|
306
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"token": "field-top-to-disclosure-icon-spacious-extra-large",
|
|
310
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"token": "field-edge-to-disclosure-icon-75",
|
|
314
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"token": "field-edge-to-disclosure-icon-100",
|
|
318
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"token": "field-edge-to-disclosure-icon-200",
|
|
322
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"token": "field-edge-to-disclosure-icon-300",
|
|
326
|
+
"context": "Spacing (end edge to disclosure icon)"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"token": "accordion-disclosure-indicator-to-text-small",
|
|
330
|
+
"context": "Spacing (disclosure icon to text)"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"token": "accordion-disclosure-indicator-to-text-medium",
|
|
334
|
+
"context": "Spacing (disclosure icon to text)"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"token": "accordion-disclosure-indicator-to-text-large",
|
|
338
|
+
"context": "Spacing (disclosure icon to text)"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"token": "accordion-disclosure-indicator-to-text-extra-large",
|
|
342
|
+
"context": "Spacing (disclosure icon to text)"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"token": "spacing-100",
|
|
346
|
+
"context": "Spacing (section title to action area)"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"token": "accordion-content-area-top-to-content",
|
|
350
|
+
"context": "Expanded (content area top/bottom to text)"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"token": "accordion-content-area-bottom-to-content",
|
|
354
|
+
"context": "Expanded (content area top/bottom to text)"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"token": "accordion-content-area-edge-to-content-small",
|
|
358
|
+
"context": "Expanded (content area start/end edges)"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"token": "accordion-content-area-edge-to-content-medium",
|
|
362
|
+
"context": "Expanded (content area start/end edges)"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"token": "accordion-content-area-edge-to-content-large",
|
|
366
|
+
"context": "Expanded (content area start/end edges)"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"token": "accordion-content-area-edge-to-content-extra-large",
|
|
370
|
+
"context": "Expanded (content area start/end edges)"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"token": "background-opacity-default",
|
|
374
|
+
"context": "Background"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"token": "background-opacity-hover",
|
|
378
|
+
"context": "Background"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"token": "background-opacity-down",
|
|
382
|
+
"context": "Background"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"token": "background-opacity-key-focus",
|
|
386
|
+
"context": "Background"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"token": "neutral-content-color-default",
|
|
390
|
+
"context": "Section title and chevron"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"token": "neutral-content-color-hover",
|
|
394
|
+
"context": "Section title and chevron"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"token": "neutral-content-color-key-focus",
|
|
398
|
+
"context": "Section title and chevron"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"token": "disabled-content-color",
|
|
402
|
+
"context": "Disabled"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"token": "focus-indicator-color",
|
|
406
|
+
"context": "Focus ring"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"token": "default-font-family",
|
|
410
|
+
"context": "Value"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"token": "bold-font-weight",
|
|
414
|
+
"context": "Value"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"token": "default-font-style",
|
|
418
|
+
"context": "Value"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"token": "font-size-100",
|
|
422
|
+
"context": "Value"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"token": "font-size-200",
|
|
426
|
+
"context": "Value"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"token": "font-size-300",
|
|
430
|
+
"context": "Value"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"token": "font-size-400",
|
|
434
|
+
"context": "Value"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"token": "line-height-100",
|
|
438
|
+
"context": "Value"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"token": "cjk-line-height-100",
|
|
442
|
+
"context": "Value"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"token": "accordion-top-to-text-regular-small",
|
|
446
|
+
"context": "S"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"token": "accordion-bottom-to-text-regular-small",
|
|
450
|
+
"context": "S"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"token": "accordion-top-to-text-regular-medium",
|
|
454
|
+
"context": "S"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"token": "accordion-bottom-to-text-regular-medium",
|
|
458
|
+
"context": "S"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"token": "accordion-top-to-text-regular-large",
|
|
462
|
+
"context": "S"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"token": "accordion-bottom-to-text-regular-large",
|
|
466
|
+
"context": "S"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"token": "accordion-top-to-text-regular-extra-large",
|
|
470
|
+
"context": "S"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"token": "accordion-bottom-to-text-regular-extra-large",
|
|
474
|
+
"context": "S"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"token": "field-top-to-disclosure-icon-75-compact",
|
|
478
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"token": "field-top-to-disclosure-icon-75-regular",
|
|
482
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"token": "field-top-to-disclosure-icon-75-spacious",
|
|
486
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"token": "field-top-to-disclosure-icon-100-compact",
|
|
490
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"token": "field-top-to-disclosure-icon-200-compact",
|
|
494
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"token": "field-top-to-disclosure-icon-200-regular",
|
|
498
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"token": "field-top-to-disclosure-icon-200-spacious",
|
|
502
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"token": "field-top-to-disclosure-icon-300-compact",
|
|
506
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"token": "field-top-to-disclosure-icon-300-regular",
|
|
510
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"token": "field-top-to-disclosure-icon-300-spacious",
|
|
514
|
+
"context": "Spacing (top/bottom to disclosure icon)"
|
|
515
|
+
}
|
|
516
|
+
]
|
|
517
|
+
}
|