-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomponents-manifest.json
More file actions
554 lines (554 loc) · 22.7 KB
/
Copy pathcomponents-manifest.json
File metadata and controls
554 lines (554 loc) · 22.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
{
"$schema": "https://airtime.design/design-system/manifest/v1",
"version": "3",
"figma": "https://www.figma.com/design/4ycNiPIJ2oXZVaCwaECbUa/Airtime-apps-design-system",
"components": {
"button": {
"file": "components/button.css",
"figma": "node-id=1-2299",
"base": ".btn",
"variants": [
"btn-primary",
"btn-secondary",
"btn-destructive",
"btn-modeless",
"btn-modeless-destructive"
],
"modifiers": [
"btn-outline",
"btn-ghost",
"btn-icon-only",
"btn-icon-only-lg"
],
"notes": [
"btn-icon-only is a square 28×28px modifier combined with a variant class (e.g. btn btn-primary btn-icon-only)",
"btn-icon-only-lg keeps the 28×28px button but renders the inner icon at 20px (vs 16px default) — combine with btn-icon-only",
"Ghost with icon-only has no dedicated CSS — use btn-outline + style borderColor:transparent",
"Modeless is for use on teal/light backgrounds only; wrap in a teal-bg container for demos",
"Disabled: use :disabled attribute or aria-disabled='true' — applies opacity-32"
],
"examples": {
"primary": "<button class=\"btn btn-primary\">Label</button>",
"secondary": "<button class=\"btn btn-secondary\">Label</button>",
"destructive": "<button class=\"btn btn-destructive\">Delete</button>",
"modeless": "<button class=\"btn btn-modeless\">Label</button>",
"modeless-destructive": "<button class=\"btn btn-modeless-destructive\">Delete</button>",
"primary-outline": "<button class=\"btn btn-primary btn-outline\">Label</button>",
"secondary-outline": "<button class=\"btn btn-secondary btn-outline\">Label</button>",
"primary-ghost": "<button class=\"btn btn-primary btn-ghost\">Label</button>",
"icon-only-primary": "<button class=\"btn btn-primary btn-icon-only\" aria-label=\"Add\"><img src=\"icons/Plus_Stroke_16.svg\" alt=\"\" /></button>",
"icon-only-secondary": "<button class=\"btn btn-secondary btn-icon-only\" aria-label=\"More\"><img src=\"icons/More_Fill_16.svg\" alt=\"\" /></button>",
"icon-only-destructive": "<button class=\"btn btn-destructive btn-icon-only\" aria-label=\"Delete\"><img src=\"icons/Trash_Fill_16.svg\" alt=\"\" /></button>",
"icon-only-modeless-destructive": "<button class=\"btn btn-modeless-destructive btn-icon-only\" aria-label=\"Delete\"><img src=\"icons/Trash_Fill_16.svg\" alt=\"\" /></button>",
"icon-only-ghost": "<button class=\"btn btn-secondary btn-outline btn-icon-only\" aria-label=\"Add\" style=\"border-color:transparent\"><img src=\"icons/Plus_Stroke_16.svg\" alt=\"\" /></button>",
"icon-only-large": "<button class=\"btn btn-primary btn-icon-only btn-icon-only-lg\" aria-label=\"Add\"><img src=\"icons/Plus_Stroke_20.svg\" alt=\"\" /></button>",
"with-icon-left": "<button class=\"btn btn-primary\"><img src=\"icons/Plus_Stroke_16.svg\" alt=\"\" />Add</button>",
"disabled": "<button class=\"btn btn-primary\" disabled>Label</button>"
},
"cssClasses": [
"btn",
"btn-destructive",
"btn-ghost",
"btn-icon-only",
"btn-icon-only-lg",
"btn-modeless",
"btn-modeless-destructive",
"btn-outline",
"btn-primary",
"btn-secondary"
]
},
"input": {
"file": "components/input.css",
"figma": "node-id=18-9302",
"base": ".input",
"variants": [
"input-lg",
"input-no-fill",
"input-error"
],
"patterns": [
"input-wrapper",
"input-split"
],
"parts": {
"input-wrapper": "Visual container for input with icon slots",
"input-bare": "Naked <input> inside .input-wrapper",
"input-icon-left": "16px left icon slot",
"input-icon-right": "16px right icon / clear button slot",
"input-split": "Multi-segment container (e.g. XYWH, RGBA)",
"input-split-segment": "Individual <input> inside .input-split",
"input-split-divider": "1px separator between segments",
"input-split-label": "Read-only label segment (e.g. '100%')"
},
"examples": {
"default": "<input class=\"input\" type=\"text\" placeholder=\"Placeholder\" />",
"large": "<input class=\"input input-lg\" type=\"text\" placeholder=\"Placeholder\" />",
"ghost": "<input class=\"input input-no-fill\" type=\"text\" placeholder=\"Inline edit\" />",
"error": "<input class=\"input input-error\" type=\"text\" value=\"Invalid value\" />",
"disabled": "<input class=\"input\" type=\"text\" placeholder=\"Disabled\" disabled />",
"with-icons": "<div class=\"input-wrapper\">\n <img class=\"input-icon-left\" src=\"icons/Search_Stroke_16.svg\" alt=\"\" />\n <input class=\"input-bare\" type=\"text\" placeholder=\"Search...\" />\n <button class=\"input-icon-right\" aria-label=\"Clear\"><img src=\"icons/Xmark_Stroke_16.svg\" alt=\"\" /></button>\n</div>",
"split": "<div class=\"input-split\">\n <input class=\"input-split-segment\" type=\"text\" value=\"100\" aria-label=\"X\" />\n <span class=\"input-split-divider\"></span>\n <input class=\"input-split-segment\" type=\"text\" value=\"100\" aria-label=\"Y\" />\n <span class=\"input-split-divider\"></span>\n <div class=\"input-split-label\">100%</div>\n</div>"
},
"cssClasses": [
"input",
"input-bare",
"input-error",
"input-icon-left",
"input-icon-right",
"input-lg",
"input-no-fill",
"input-split",
"input-split-divider",
"input-split-label",
"input-split-segment",
"input-wrapper",
"input-wrapper-lg"
]
},
"dropdown": {
"file": "components/dropdown.css",
"figma": "node-id=1-1624",
"requires": [
"components/menus.css",
"components/rows.css"
],
"base": ".dropdown",
"parts": {
"dropdown-trigger": "Visible button — glass fill",
"dropdown-trigger-no-fill": "No background/border; bg appears on hover",
"dropdown-trigger-thumbnail": "Tall trigger with image on left",
"dropdown-thumbnail": "Image container inside thumbnail trigger",
"dropdown-chevron": "Chevron icon inside trigger",
"dropdown-menu": "Positioning wrapper — pair with .menu from menus.css"
},
"notes": [
"dropdown-menu must be paired with .menu (from menus.css) for styling",
"dropdown-menu uses position:absolute — parent .dropdown must be position:relative",
"Do NOT put overflow:hidden on any ancestor — it will clip the open menu"
],
"examples": {
"default": "<div class=\"dropdown\">\n <button class=\"dropdown-trigger\" aria-haspopup=\"listbox\" aria-expanded=\"false\">\n <span>Option A</span>\n <img class=\"dropdown-chevron\" src=\"icons/ChevronDownSmall_Stroke_16.svg\" alt=\"\" />\n </button>\n <ul class=\"menu dropdown-menu\" hidden>\n <button class=\"row\" role=\"option\">Option A</button>\n <button class=\"row\" role=\"option\">Option B</button>\n </ul>\n</div>",
"ghost": "<div class=\"dropdown\">\n <button class=\"dropdown-trigger dropdown-trigger-no-fill\" aria-haspopup=\"listbox\" aria-expanded=\"false\">\n <span>Option A</span>\n <img class=\"dropdown-chevron\" src=\"icons/ChevronDownSmall_Stroke_16.svg\" alt=\"\" />\n </button>\n <ul class=\"menu dropdown-menu\" hidden>...</ul>\n</div>"
},
"cssClasses": [
"dropdown",
"dropdown-chevron",
"dropdown-icon-left",
"dropdown-menu",
"dropdown-thumbnail",
"dropdown-trigger",
"dropdown-trigger-no-fill",
"dropdown-trigger-thumbnail"
]
},
"menu": {
"file": "components/menus.css",
"figma": "node-id=8-2445",
"requires": [
"components/rows.css"
],
"base": ".menu",
"variants": [
"menu-thumbnail",
"menu-account",
"menu-scrollable"
],
"parts": {
"menu-divider": "1px separator between groups of items"
},
"notes": [
".menu provides the floating surface; rows inside it are from rows.css",
".menu-scrollable adds max-height + overflow-y:auto for long lists"
],
"examples": {
"default": "<ul class=\"menu\" role=\"menu\">\n <button class=\"row\" role=\"menuitem\"><img class=\"row-icon-left\" src=\"icons/Checkmark_Stroke_16.svg\" alt=\"\" /><span>Option 1</span></button>\n <button class=\"row\" role=\"menuitem\"><span>Option 2</span></button>\n <div class=\"menu-divider\"></div>\n <button class=\"row row-destructive\" role=\"menuitem\"><img class=\"row-icon-left\" src=\"icons/Trash_Fill_16.svg\" alt=\"\" /><span>Delete</span></button>\n</ul>"
},
"cssClasses": [
"menu",
"menu-above-left",
"menu-above-right",
"menu-account",
"menu-below-left",
"menu-below-right",
"menu-divider",
"menu-scrollable",
"menu-thumbnail",
"row",
"row-account",
"row-thumbnail"
]
},
"rows": {
"file": "components/rows.css",
"figma": "node-id=18-9101",
"base": ".row",
"variants": [
"row-destructive",
"row-thumbnail",
"row-account"
],
"parts": {
"row-icon-left": "16px left icon",
"row-icon-right": "16px right icon (e.g. chevron)",
"row-thumbnail-image": "71×40px thumbnail container inside .row-thumbnail",
"row-account-avatar": "40px avatar",
"row-account-info": "Name + email column",
"row-account-name": "Bold 16px name",
"row-account-email": "11px email (content-secondary)"
},
"examples": {
"default": "<button class=\"row\"><span>Label</span></button>",
"with-icon-left": "<div class=\"row\" role=\"option\"><img class=\"row-icon-left\" src=\"icons/Checkmark_Stroke_16.svg\" alt=\"\" /><span>Label</span></div>",
"with-chevron": "<button class=\"row\"><span>Settings</span><img class=\"row-icon-right\" src=\"icons/ChevronForwardSmall_Stroke_16.svg\" alt=\"\" /></button>",
"destructive": "<button class=\"row row-destructive\"><img class=\"row-icon-left\" src=\"icons/Trash_Fill_16.svg\" alt=\"\" /><span>Delete</span></button>"
},
"cssClasses": [
"row",
"row-account",
"row-account-avatar",
"row-account-email",
"row-account-info",
"row-account-name",
"row-destructive",
"row-icon-left",
"row-icon-right",
"row-label",
"row-thumbnail",
"row-thumbnail-image"
]
},
"segmented": {
"file": "components/segmented.css",
"figma": "node-id=1-2299",
"base": ".segmented",
"parts": {
"segmented-item": "Individual segment button",
"segmented-item-label": "Label-only segment (smaller padding)",
"segmented-item-icon": "Icon-only segment (square)",
"segmented-item-icon-label": "Icon + label segment"
},
"states": {
"active": "Apply .active class to the selected segment"
},
"examples": {
"title": "<div class=\"segmented\" role=\"group\">\n <button class=\"segmented-item active\">Title</button>\n <button class=\"segmented-item\">Title</button>\n <button class=\"segmented-item\">Title</button>\n</div>",
"icon-label": "<div class=\"segmented\" role=\"group\">\n <button class=\"segmented-item segmented-item-icon-label active\">\n <img class=\"segmented-icon\" src=\"icons/RealRoom_Fill_16.svg\" alt=\"\" />\n <span>Real Room</span>\n </button>\n <button class=\"segmented-item segmented-item-icon-label\">\n <img class=\"segmented-icon\" src=\"icons/Blur_Fill_16.svg\" alt=\"\" />\n <span>Blurred</span>\n </button>\n</div>"
},
"cssClasses": [
"active",
"segmented",
"segmented-icon",
"segmented-item",
"segmented-item-icon",
"segmented-item-icon-label",
"segmented-item-label"
]
},
"checkbox": {
"file": "components/checkbox.css",
"base": ".checkbox",
"parts": {
"checkbox-box": "Visual box (required)",
"checkbox-label": "Text label (optional)"
},
"examples": {
"default": "<label class=\"checkbox\">\n <input type=\"checkbox\" />\n <span class=\"checkbox-box\"></span>\n <span class=\"checkbox-label\">Label</span>\n</label>"
},
"cssClasses": [
"checkbox",
"checkbox-box",
"checkbox-label"
]
},
"radio": {
"file": "components/radio.css",
"base": ".radio",
"parts": {
"radio-box": "Visual circle (required)",
"radio-label": "Text label (optional)"
},
"examples": {
"default": "<label class=\"radio\">\n <input type=\"radio\" name=\"group\" />\n <span class=\"radio-box\"></span>\n <span class=\"radio-label\">Option</span>\n</label>"
},
"cssClasses": [
"radio",
"radio-box",
"radio-label"
]
},
"slider": {
"file": "components/slider.css",
"base": ".slider",
"variants": [
"slider-threshold"
],
"notes": [
"Use CSS custom property --slider-value (e.g. '75%') for the track fill",
"Update --slider-value via JS on input event"
],
"examples": {
"default": "<input class=\"slider\" type=\"range\" min=\"0\" max=\"100\" value=\"75\" style=\"--slider-value:75%\" oninput=\"this.style.setProperty('--slider-value',this.value+'%')\" />"
},
"cssClasses": [
"slider",
"slider-color",
"slider-threshold",
"slider-threshold-handle",
"slider-threshold-track"
]
},
"progress": {
"file": "components/progress.css",
"base": ".progress",
"examples": {
"default": "<progress class=\"progress\" value=\"75\" max=\"100\"></progress>"
},
"cssClasses": [
"progress"
]
},
"loader": {
"file": "components/loader.css",
"base": ".loader",
"variants": [
"loader-lg"
],
"notes": [
"Default: 16px spin. loader-lg: 24px spin."
],
"examples": {
"default": "<span class=\"loader\" aria-label=\"Loading\"></span>",
"large": "<span class=\"loader loader-lg\" aria-label=\"Loading\"></span>"
},
"cssClasses": [
"loader",
"loader-lg"
]
},
"badge": {
"file": "components/badge.css",
"figma": "node-id=1-2251",
"base": ".badge",
"notes": [
"Teal pill. For numbers or short text (e.g. '3', '99+')."
],
"examples": {
"default": "<span class=\"badge\">3</span>",
"overflow": "<span class=\"badge\">99+</span>"
},
"cssClasses": [
"badge"
]
},
"divider": {
"file": "components/divider.css",
"base": ".divider",
"variants": [
"divider-vertical"
],
"examples": {
"horizontal": "<hr class=\"divider\" />",
"vertical": "<div class=\"divider-vertical\"></div>"
},
"cssClasses": [
"divider",
"divider-vertical"
]
},
"avatar": {
"file": "components/avatar.css",
"figma": "node-id=1-2255",
"base": ".avatar",
"sizes": [
"avatar-16",
"avatar-20",
"avatar-32",
"avatar-40"
],
"parts": {
"avatar-silhouette": "Person icon overlay (no-photo fallback)"
},
"notes": [
"Default (no size class) = 24px"
],
"examples": {
"photo": "<div class=\"avatar avatar-40\"><img src=\"photo.jpg\" alt=\"Name\" /></div>",
"silhouette": "<div class=\"avatar avatar-32\"><div class=\"avatar-silhouette\"><img src=\"icons/Silhouette_Fill_24.svg\" alt=\"\" /></div></div>"
},
"cssClasses": [
"avatar",
"avatar-16",
"avatar-20",
"avatar-32",
"avatar-40",
"avatar-silhouette"
]
},
"thumbnail": {
"file": "components/thumbnail.css",
"figma": "node-id=1-9398",
"base": ".thumbnail",
"parts": {
"thumbnail-media": "16:9 image container",
"thumbnail-name": "Label below image",
"thumbnail-badge": "Overlay chip (timestamp etc.)",
"thumbnail-badge-tl": "Top-left badge position",
"thumbnail-badge-bl": "Bottom-left badge position",
"thumbnail-action": "Icon button overlay (28×28)",
"thumbnail-action-label": "Icon button with text label",
"thumbnail-action-tl": "Top-left action position",
"thumbnail-action-tr": "Top-right action position"
},
"states": {
"selected": "Add .selected to .thumbnail for 2px inset teal border"
},
"examples": {
"default": "<div class=\"thumbnail\">\n <div class=\"thumbnail-media\"><img src=\"scene.jpg\" alt=\"Scene name\" /></div>\n <span class=\"thumbnail-name\">Scene Name</span>\n</div>",
"with-action": "<div class=\"thumbnail\">\n <div class=\"thumbnail-media\">\n <img src=\"scene.jpg\" alt=\"\" />\n <button class=\"thumbnail-action thumbnail-action-tr\" aria-label=\"Pin\"><img src=\"icons/Pin_Fill_16.svg\" alt=\"\" /></button>\n </div>\n <span class=\"thumbnail-name\">Scene Name</span>\n</div>"
},
"cssClasses": [
"selected",
"thumbnail",
"thumbnail-action",
"thumbnail-action-label",
"thumbnail-action-tl",
"thumbnail-action-tr",
"thumbnail-badge",
"thumbnail-badge-bl",
"thumbnail-badge-tl",
"thumbnail-media",
"thumbnail-name"
]
},
"overlay": {
"file": "components/overlays.css",
"figma": "node-id=25-10412",
"components": {
"tooltip": {
"base": ".tooltip",
"notes": [
"Arrow direction via data-arrow attribute: left, right, top-left, top-center, top-right, bottom-left, bottom-center, bottom-right"
],
"example": "<div class=\"tooltip\" data-arrow=\"bottom-center\">Tooltip text</div>"
},
"coach-mark": {
"base": ".coach-mark",
"parts": {
"coach-mark-text": "Body text",
"coach-mark-footer": "Prev / step counter / Next row",
"coach-mark-step": "'1 / 3' counter",
"coach-mark-next": "Next button wrapper (right-aligned)"
},
"notes": [
"Arrow direction via data-arrow (same values as tooltip)",
"320px wide teal floating panel",
"Prev / Next buttons use the DS .btn .btn-modeless component"
],
"example": "<div class=\"coach-mark\" data-arrow=\"bottom-center\">\n <p class=\"coach-mark-text\">Tip text here</p>\n <div class=\"coach-mark-footer\">\n <button class=\"btn btn-modeless\">Back</button>\n <span class=\"coach-mark-step\">1 / 3</span>\n <div class=\"coach-mark-next\"><button class=\"btn btn-modeless\">Next</button></div>\n </div>\n</div>"
}
},
"cssClasses": [
"coach-mark",
"coach-mark-footer",
"coach-mark-next",
"coach-mark-step",
"coach-mark-text",
"tooltip"
]
},
"color-picker": {
"file": "components/color-picker.css",
"figma": "node-id=1-2251",
"requires": [
"components/slider.css",
"components/input.css",
"components/dropdown.css"
],
"base": ".color-picker",
"parts": {
"color-picker-canvas": "Saturation/brightness gradient field (set --color-picker-hue CSS var)",
"color-picker-canvas-thumb": "Draggable circle cursor on canvas",
"color-picker-hue": "Rainbow hue strip slider",
"color-picker-alpha": "Checkerboard + alpha gradient slider (set --color-picker-color CSS var)",
"color-picker-slider-thumb": "Draggable thumb on hue/alpha sliders",
"color-picker-values": "Bottom row (eyedropper, mode selector, inputs)",
"color-picker-mode": "Mode dropdown trigger (HSB/RGB/CSS)",
"color-picker-inputs": "Split input container for H/S/B values"
},
"notes": [
"Requires JS for interactivity — canvas drag, slider drag, EyeDropper API",
"Do NOT put overflow:hidden on .color-picker — it clips the mode dropdown menu",
"Slider order in HTML: alpha first, hue second",
"Split input gap should be 4px (var(--space-10)) not 8px",
"Eyedropper button uses the DS .btn.btn-secondary.btn-icon-only component"
],
"cssClasses": [
"color-picker",
"color-picker-alpha",
"color-picker-canvas",
"color-picker-canvas-thumb",
"color-picker-hue",
"color-picker-inputs",
"color-picker-mode",
"color-picker-slider-thumb",
"color-picker-values"
]
},
"swatches": {
"file": "components/swatches.css",
"figma": "node-id=1-2251",
"base": ".swatches",
"parts": {
"swatches-header": "Label + action buttons row",
"swatches-label": "Section label text",
"swatches-actions": "Add/remove button slot",
"swatches-grid": "Auto-fill grid of swatch items",
"swatch": "Individual color swatch (click to select)",
"swatch-inner": "Colored circle inside .swatch"
},
"states": {
"selected": "Add .selected to .swatch for teal ring"
},
"examples": {
"default": "<div class=\"swatches\">\n <div class=\"swatches-header\">\n <span class=\"swatches-label\">Colors</span>\n </div>\n <div class=\"swatches-grid\">\n <div class=\"swatch selected\"><div class=\"swatch-inner\" style=\"background:#05DEFD\"></div></div>\n <div class=\"swatch\"><div class=\"swatch-inner\" style=\"background:#00B09F\"></div></div>\n </div>\n</div>"
},
"cssClasses": [
"selected",
"slider",
"swatch",
"swatch-inner",
"swatches",
"swatches-actions",
"swatches-grid",
"swatches-header",
"swatches-label",
"swatches-opacity"
]
},
"scrollbar": {
"file": "components/scrollbar.css",
"base": ".scrollbar",
"variants": [
"scrollbar-strong",
"scrollbar-vertical"
],
"notes": [
"Apply to the scrollable container element",
"scrollbar-vertical for vertical-only scroll containers"
],
"examples": {
"horizontal": "<div class=\"scrollbar\" style=\"overflow-x:auto\">...</div>",
"vertical": "<div class=\"scrollbar scrollbar-vertical\" style=\"overflow-y:auto;max-height:300px\">...</div>"
},
"cssClasses": [
"scrollbar",
"scrollbar-strong",
"scrollbar-strong-thumb",
"scrollbar-thumb",
"scrollbar-vertical"
]
}
},
"_generated": "2026-03-16"
}