@agent-ui-kit/web-components 0.0.5 → 0.0.7

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.
Files changed (62) hide show
  1. package/dist/agent-ui.css +1 -1
  2. package/dist/api.colors.json +1505 -0
  3. package/dist/api.colors.yaml +1139 -0
  4. package/dist/api.json +2877 -385
  5. package/dist/api.tokens.json +541 -0
  6. package/dist/api.tokens.yaml +410 -0
  7. package/dist/docs/components/accordion-item.yaml +41 -0
  8. package/dist/docs/components/accordion.yaml +5 -0
  9. package/dist/docs/components/agent-activity.yaml +32 -0
  10. package/dist/docs/components/agent-feed.yaml +8 -0
  11. package/dist/docs/components/agent-message.yaml +74 -0
  12. package/dist/docs/components/agent-prompt.yaml +47 -0
  13. package/dist/docs/components/agent-seeds.yaml +53 -0
  14. package/dist/docs/components/agent-text.yaml +47 -0
  15. package/dist/docs/components/agent-thread.yaml +20 -0
  16. package/dist/docs/components/app-shell.yaml +18 -12
  17. package/dist/docs/components/breadcrumb-item.yaml +32 -0
  18. package/dist/docs/components/breadcrumb.yaml +11 -0
  19. package/dist/docs/components/button.yaml +51 -21
  20. package/dist/docs/components/calendar.yaml +77 -0
  21. package/dist/docs/components/canvas.yaml +12 -4
  22. package/dist/docs/components/checkbox.yaml +45 -15
  23. package/dist/docs/components/command-group.yaml +32 -0
  24. package/dist/docs/components/command-input.yaml +29 -0
  25. package/dist/docs/components/command-item.yaml +41 -0
  26. package/dist/docs/components/command.yaml +17 -0
  27. package/dist/docs/components/container.yaml +9 -15
  28. package/dist/docs/components/dialog.yaml +24 -11
  29. package/dist/docs/components/drawer.yaml +21 -13
  30. package/dist/docs/components/editor.yaml +12 -10
  31. package/dist/docs/components/field.yaml +24 -13
  32. package/dist/docs/components/graph-port.yaml +23 -0
  33. package/dist/docs/components/gripper.yaml +23 -0
  34. package/dist/docs/components/icon.yaml +9 -2
  35. package/dist/docs/components/input-otp.yaml +44 -0
  36. package/dist/docs/components/input.yaml +51 -24
  37. package/dist/docs/components/optgroup.yaml +29 -0
  38. package/dist/docs/components/option.yaml +29 -0
  39. package/dist/docs/components/page-context.yaml +12 -4
  40. package/dist/docs/components/page-main.yaml +18 -6
  41. package/dist/docs/components/pagination.yaml +41 -0
  42. package/dist/docs/components/pane.yaml +23 -0
  43. package/dist/docs/components/radio.yaml +42 -14
  44. package/dist/docs/components/range.yaml +24 -15
  45. package/dist/docs/components/root.yaml +11 -0
  46. package/dist/docs/components/segment.yaml +35 -0
  47. package/dist/docs/components/segmented-control.yaml +23 -0
  48. package/dist/docs/components/select.yaml +56 -0
  49. package/dist/docs/components/sidebar.yaml +51 -17
  50. package/dist/docs/components/switch.yaml +48 -18
  51. package/dist/docs/components/tab.yaml +38 -0
  52. package/dist/docs/components/table-cell.yaml +17 -0
  53. package/dist/docs/components/table-header.yaml +20 -0
  54. package/dist/docs/components/table-row.yaml +14 -0
  55. package/dist/docs/components/table.yaml +44 -0
  56. package/dist/docs/components/tabs.yaml +14 -0
  57. package/dist/docs/components/textarea.yaml +54 -19
  58. package/dist/docs/components/toast.yaml +53 -0
  59. package/dist/docs/components/tooltip.yaml +24 -11
  60. package/dist/docs/components/tree-item.yaml +47 -0
  61. package/dist/docs/components/tree.yaml +8 -0
  62. package/package.json +5 -1
@@ -0,0 +1,541 @@
1
+ {
2
+ "package": "@agent-ui-kit/web-components",
3
+ "version": "0.0.7",
4
+ "generated": "2026-03-21T16:06:31.486Z",
5
+ "description": "Design tokens: sizing, typography, spacing, radius, shadow, animation.",
6
+ "scales": {
7
+ "size": [
8
+ "xs",
9
+ "sm",
10
+ "md",
11
+ "lg",
12
+ "xl"
13
+ ],
14
+ "fontSize": [
15
+ "xs",
16
+ "sm",
17
+ "md",
18
+ "lg",
19
+ "xl",
20
+ "2xl"
21
+ ],
22
+ "space": [
23
+ "xs",
24
+ "sm",
25
+ "md",
26
+ "lg",
27
+ "xl"
28
+ ],
29
+ "icon": [
30
+ "xs",
31
+ "sm",
32
+ "md",
33
+ "lg",
34
+ "xl",
35
+ "2xl",
36
+ "3xl"
37
+ ],
38
+ "widget": [
39
+ "xs",
40
+ "sm",
41
+ "md",
42
+ "lg",
43
+ "xl"
44
+ ],
45
+ "radius": [
46
+ "sharp",
47
+ "round",
48
+ "rounded"
49
+ ],
50
+ "shadow": [
51
+ "xs",
52
+ "sm",
53
+ "md",
54
+ "lg",
55
+ "xl"
56
+ ]
57
+ },
58
+ "paddingTiers": {
59
+ "control": "Buttons, inputs, options, tabs, cells",
60
+ "container": "Card insets, dialog bodies, panels",
61
+ "page": "Section margins, page edges"
62
+ },
63
+ "tokens": {
64
+ "--aui-font-family": {
65
+ "value": "system-ui, -apple-system, sans-serif",
66
+ "category": ""
67
+ },
68
+ "--aui-font-family-mono": {
69
+ "value": "ui-monospace, SFMono-Regular, \"SF Mono\", \"Menlo\", \"Consolas\", \"Liberation Mono\", monospace",
70
+ "category": ""
71
+ },
72
+ "--aui-size-xs": {
73
+ "value": "1.5rem",
74
+ "category": "Size (height-min)"
75
+ },
76
+ "--aui-size-sm": {
77
+ "value": "1.75rem",
78
+ "category": "Size (height-min)"
79
+ },
80
+ "--aui-size-md": {
81
+ "value": "2.25rem",
82
+ "category": "Size (height-min)"
83
+ },
84
+ "--aui-size-lg": {
85
+ "value": "2.75rem",
86
+ "category": "Size (height-min)"
87
+ },
88
+ "--aui-size-xl": {
89
+ "value": "3.25rem",
90
+ "category": "Size (height-min)"
91
+ },
92
+ "--aui-size": {
93
+ "value": "var(--aui-size-md)",
94
+ "category": "Size (height-min)"
95
+ },
96
+ "--aui-control-height-xs": {
97
+ "value": "var(--aui-size-xs)",
98
+ "category": "Control Height (interactive element height)"
99
+ },
100
+ "--aui-control-height-sm": {
101
+ "value": "var(--aui-size-sm)",
102
+ "category": "Control Height (interactive element height)"
103
+ },
104
+ "--aui-control-height-md": {
105
+ "value": "var(--aui-size-md)",
106
+ "category": "Control Height (interactive element height)"
107
+ },
108
+ "--aui-control-height-lg": {
109
+ "value": "var(--aui-size-lg)",
110
+ "category": "Control Height (interactive element height)"
111
+ },
112
+ "--aui-control-height-xl": {
113
+ "value": "var(--aui-size-xl)",
114
+ "category": "Control Height (interactive element height)"
115
+ },
116
+ "--aui-control-height": {
117
+ "value": "var(--aui-size)",
118
+ "category": "Control Height (interactive element height)"
119
+ },
120
+ "--aui-hit-target-xs": {
121
+ "value": "var(--aui-control-height-xs)",
122
+ "category": "Hit Target (minimum touch/click target)"
123
+ },
124
+ "--aui-hit-target-sm": {
125
+ "value": "var(--aui-control-height-sm)",
126
+ "category": "Hit Target (minimum touch/click target)"
127
+ },
128
+ "--aui-hit-target-md": {
129
+ "value": "var(--aui-control-height-md)",
130
+ "category": "Hit Target (minimum touch/click target)"
131
+ },
132
+ "--aui-hit-target-lg": {
133
+ "value": "var(--aui-control-height-lg)",
134
+ "category": "Hit Target (minimum touch/click target)"
135
+ },
136
+ "--aui-hit-target-xl": {
137
+ "value": "var(--aui-control-height-xl)",
138
+ "category": "Hit Target (minimum touch/click target)"
139
+ },
140
+ "--aui-hit-target": {
141
+ "value": "var(--aui-control-height)",
142
+ "category": "Hit Target (minimum touch/click target)"
143
+ },
144
+ "--aui-font-xs": {
145
+ "value": "0.75rem",
146
+ "category": "Font Size"
147
+ },
148
+ "--aui-font-sm": {
149
+ "value": "0.8125rem",
150
+ "category": "Font Size"
151
+ },
152
+ "--aui-font-md": {
153
+ "value": "0.875rem",
154
+ "category": "Font Size"
155
+ },
156
+ "--aui-font-lg": {
157
+ "value": "0.9375rem",
158
+ "category": "Font Size"
159
+ },
160
+ "--aui-font-xl": {
161
+ "value": "1rem",
162
+ "category": "Font Size"
163
+ },
164
+ "--aui-font-2xl": {
165
+ "value": "1.5rem",
166
+ "category": "Font Size"
167
+ },
168
+ "--aui-font-size": {
169
+ "value": "var(--aui-font-md)",
170
+ "category": "Font Size"
171
+ },
172
+ "--aui-tracking-xs": {
173
+ "value": "0.01em",
174
+ "category": "Letter Spacing"
175
+ },
176
+ "--aui-tracking-sm": {
177
+ "value": "0.005em",
178
+ "category": "Letter Spacing"
179
+ },
180
+ "--aui-tracking-md": {
181
+ "value": "0em",
182
+ "category": "Letter Spacing"
183
+ },
184
+ "--aui-tracking-lg": {
185
+ "value": "-0.005em",
186
+ "category": "Letter Spacing"
187
+ },
188
+ "--aui-tracking-xl": {
189
+ "value": "-0.01em",
190
+ "category": "Letter Spacing"
191
+ },
192
+ "--aui-tracking-2xl": {
193
+ "value": "-0.025em",
194
+ "category": "Letter Spacing"
195
+ },
196
+ "--aui-letter-spacing": {
197
+ "value": "var(--aui-tracking-md)",
198
+ "category": "Letter Spacing"
199
+ },
200
+ "--aui-space-xs": {
201
+ "value": "0.125rem",
202
+ "category": "Space"
203
+ },
204
+ "--aui-space-sm": {
205
+ "value": "0.1875rem",
206
+ "category": "Space"
207
+ },
208
+ "--aui-space-md": {
209
+ "value": "0.25rem",
210
+ "category": "Space"
211
+ },
212
+ "--aui-space-lg": {
213
+ "value": "0.25rem",
214
+ "category": "Space"
215
+ },
216
+ "--aui-space-xl": {
217
+ "value": "0.25rem",
218
+ "category": "Space"
219
+ },
220
+ "--aui-space": {
221
+ "value": "var(--aui-space-md)",
222
+ "category": "Space"
223
+ },
224
+ "--aui-pad-k-control": {
225
+ "value": "1",
226
+ "category": "Padding tuning knobs (density scaling)"
227
+ },
228
+ "--aui-pad-k-container": {
229
+ "value": "1",
230
+ "category": "Padding tuning knobs (density scaling)"
231
+ },
232
+ "--aui-pad-control-block": {
233
+ "value": "calc(var(--aui-space) * 2 * var(--aui-pad-k-control))",
234
+ "category": "Tier 1: Control Padding (buttons, inputs, options, tabs, cells)"
235
+ },
236
+ "--aui-pad-control-inline": {
237
+ "value": "calc(var(--aui-space) * 4 * var(--aui-pad-k-control))",
238
+ "category": "Tier 1: Control Padding (buttons, inputs, options, tabs, cells)"
239
+ },
240
+ "--aui-pad-inline-icon": {
241
+ "value": "calc(var(--aui-space) * 2 * var(--aui-pad-k-control))",
242
+ "category": "Tier 1: Control Padding (buttons, inputs, options, tabs, cells)"
243
+ },
244
+ "--aui-pad-block": {
245
+ "value": "var(--aui-pad-control-block)",
246
+ "category": "Backward-compat aliases"
247
+ },
248
+ "--aui-pad-inline": {
249
+ "value": "var(--aui-pad-control-inline)",
250
+ "category": "Backward-compat aliases"
251
+ },
252
+ "--aui-pad-container": {
253
+ "value": "calc(var(--aui-space) * 4 * var(--aui-pad-k-container))",
254
+ "category": "Tier 2: Container Padding (card insets, dialog bodies, panels)"
255
+ },
256
+ "--aui-pad-page": {
257
+ "value": "calc(var(--aui-space) * 8)",
258
+ "category": "Tier 3: Page Padding (section margins, page edges)"
259
+ },
260
+ "--aui-pad-gap-control": {
261
+ "value": "calc(var(--aui-space) * 2 * var(--aui-pad-k-control))",
262
+ "category": "Gap tokens"
263
+ },
264
+ "--aui-pad-gap-container": {
265
+ "value": "calc(var(--aui-space) * 4 * var(--aui-pad-k-container))",
266
+ "category": "Gap tokens"
267
+ },
268
+ "--aui-pad-gap-page": {
269
+ "value": "calc(var(--aui-space) * 8)",
270
+ "category": "Gap tokens"
271
+ },
272
+ "--aui-pad-gap": {
273
+ "value": "var(--aui-pad-gap-container)",
274
+ "category": "Backward-compat alias"
275
+ },
276
+ "--aui-icon-xs": {
277
+ "value": "0.75rem",
278
+ "category": "Icon"
279
+ },
280
+ "--aui-icon-sm": {
281
+ "value": "0.875rem",
282
+ "category": "Icon"
283
+ },
284
+ "--aui-icon-md": {
285
+ "value": "1rem",
286
+ "category": "Icon"
287
+ },
288
+ "--aui-icon-lg": {
289
+ "value": "1.125rem",
290
+ "category": "Icon"
291
+ },
292
+ "--aui-icon-xl": {
293
+ "value": "1.25rem",
294
+ "category": "Icon"
295
+ },
296
+ "--aui-icon-2xl": {
297
+ "value": "1.75rem",
298
+ "category": "Icon"
299
+ },
300
+ "--aui-icon-3xl": {
301
+ "value": "2.5rem",
302
+ "category": "Icon"
303
+ },
304
+ "--aui-icon-size": {
305
+ "value": "var(--aui-icon-md)",
306
+ "category": "Icon"
307
+ },
308
+ "--aui-widget-xs": {
309
+ "value": "0.75rem",
310
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
311
+ },
312
+ "--aui-widget-sm": {
313
+ "value": "1rem",
314
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
315
+ },
316
+ "--aui-widget-md": {
317
+ "value": "1.25rem",
318
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
319
+ },
320
+ "--aui-widget-lg": {
321
+ "value": "1.5rem",
322
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
323
+ },
324
+ "--aui-widget-xl": {
325
+ "value": "1.75rem",
326
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
327
+ },
328
+ "--aui-widget-size": {
329
+ "value": "var(--aui-widget-md)",
330
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
331
+ },
332
+ "--aui-widget-font-xs": {
333
+ "value": "0.5625rem",
334
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
335
+ },
336
+ "--aui-widget-font-sm": {
337
+ "value": "0.625rem",
338
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
339
+ },
340
+ "--aui-widget-font-md": {
341
+ "value": "0.625rem",
342
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
343
+ },
344
+ "--aui-widget-font-lg": {
345
+ "value": "0.625rem",
346
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
347
+ },
348
+ "--aui-widget-font-xl": {
349
+ "value": "0.75rem",
350
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
351
+ },
352
+ "--aui-widget-font": {
353
+ "value": "var(--aui-widget-font-md)",
354
+ "category": "Widget (checkbox, radio, switch, range, badge, kbd)"
355
+ },
356
+ "--aui-radius-sharp": {
357
+ "value": "0.25rem",
358
+ "category": "Radius"
359
+ },
360
+ "--aui-radius-round": {
361
+ "value": "1.25rem",
362
+ "category": "Radius"
363
+ },
364
+ "--aui-radius-rounded": {
365
+ "value": "0.75rem",
366
+ "category": "Radius"
367
+ },
368
+ "--aui-radius": {
369
+ "value": "var(--aui-radius-round)",
370
+ "category": "Radius"
371
+ },
372
+ "--aui-font-weight-control": {
373
+ "value": "400",
374
+ "category": "Shadow"
375
+ },
376
+ "--aui-font-weight-text": {
377
+ "value": "400",
378
+ "category": "Shadow"
379
+ },
380
+ "--aui-font-weight-medium": {
381
+ "value": "500",
382
+ "category": "Shadow"
383
+ },
384
+ "--aui-font-weight-semibold": {
385
+ "value": "600",
386
+ "category": "Shadow"
387
+ },
388
+ "--aui-control-font-weight": {
389
+ "value": "var(--aui-font-weight-control)",
390
+ "category": "Shadow"
391
+ },
392
+ "--aui-font-weight": {
393
+ "value": "var(--aui-font-weight-text)",
394
+ "category": "Shadow"
395
+ },
396
+ "--aui-control-line-height": {
397
+ "value": "1",
398
+ "category": "Shadow"
399
+ },
400
+ "--aui-control-line-height-dense": {
401
+ "value": "1.25",
402
+ "category": "Shadow"
403
+ },
404
+ "--aui-control-line-height-relaxed": {
405
+ "value": "1.5",
406
+ "category": "Shadow"
407
+ },
408
+ "--aui-control-line-height-spacious": {
409
+ "value": "1.75",
410
+ "category": "Shadow"
411
+ },
412
+ "--aui-text-line-height": {
413
+ "value": "1.5",
414
+ "category": "Shadow"
415
+ },
416
+ "--aui-line-height": {
417
+ "value": "var(--aui-text-line-height)",
418
+ "category": "Shadow"
419
+ },
420
+ "--aui-duration": {
421
+ "value": "0.225s",
422
+ "category": "Shadow"
423
+ },
424
+ "--aui-easing": {
425
+ "value": "cubic-bezier(0.2, 0, 0, 1)",
426
+ "category": "Shadow"
427
+ },
428
+ "--aui-easing-bounce-out": {
429
+ "value": "cubic-bezier(0.175, 0.885, 0.32, 1.275)",
430
+ "category": "Shadow"
431
+ },
432
+ "--aui-easing-bounce-in": {
433
+ "value": "cubic-bezier(0.6, -0.28, 0.735, 0.045)",
434
+ "category": "Shadow"
435
+ },
436
+ "--aui-focus-ring": {
437
+ "value": "var(--aui-accent-scrim-600)",
438
+ "category": "Shadow"
439
+ },
440
+ "--aui-backdrop-color": {
441
+ "value": "oklch(0% 0 0)",
442
+ "category": "Shadow"
443
+ },
444
+ "--aui-backdrop-opacity": {
445
+ "value": "0.3",
446
+ "category": "Shadow"
447
+ },
448
+ "--aui-tooltip-width-max": {
449
+ "value": "20rem",
450
+ "category": "Tooltip"
451
+ },
452
+ "--aui-popover-height-max": {
453
+ "value": "calc(100dvh - 2rem)",
454
+ "category": "Popover"
455
+ },
456
+ "--aui-popover-gap": {
457
+ "value": "0.25rem",
458
+ "category": "Popover"
459
+ },
460
+ "--aui-popover-viewport-margin": {
461
+ "value": "0.5rem",
462
+ "category": "Popover"
463
+ },
464
+ "--aui-drawer-width": {
465
+ "value": "24rem",
466
+ "category": "Drawer"
467
+ },
468
+ "--aui-drawer-height": {
469
+ "value": "24rem",
470
+ "category": "Drawer"
471
+ },
472
+ "--aui-sidebar-width": {
473
+ "value": "16rem",
474
+ "category": "Layout"
475
+ },
476
+ "--aui-sidebar-width-min": {
477
+ "value": "3.5rem",
478
+ "category": "Layout"
479
+ },
480
+ "--aui-sidebar-width-max": {
481
+ "value": "20rem",
482
+ "category": "Layout"
483
+ },
484
+ "--aui-sidebar-width-collapsed": {
485
+ "value": "calc(var(--aui-size) + var(--aui-space) * 2)",
486
+ "category": "Layout"
487
+ },
488
+ "--aui-badge-dot": {
489
+ "value": "0.5rem",
490
+ "category": "Badge"
491
+ },
492
+ "--aui-group-header-font": {
493
+ "value": "0.625rem",
494
+ "category": "Group Header"
495
+ },
496
+ "--aui-tabs-indicator": {
497
+ "value": "2px",
498
+ "category": "Tabs"
499
+ },
500
+ "--aui-focus": {
501
+ "value": "var(--aui-accent)",
502
+ "category": "Tabs"
503
+ },
504
+ "--aui-fill": {
505
+ "value": "var(--aui-action)",
506
+ "category": "Tabs"
507
+ },
508
+ "--aui-fill-hover": {
509
+ "value": "var(--aui-action-hover)",
510
+ "category": "Tabs"
511
+ },
512
+ "--aui-fill-active": {
513
+ "value": "var(--aui-action-active)",
514
+ "category": "Tabs"
515
+ },
516
+ "--aui-fill-selected": {
517
+ "value": "var(--aui-action-selected)",
518
+ "category": "Tabs"
519
+ },
520
+ "--aui-fill-disabled": {
521
+ "value": "var(--aui-action-disabled)",
522
+ "category": "Tabs"
523
+ },
524
+ "--aui-stroke": {
525
+ "value": "var(--aui-border)",
526
+ "category": "Tabs"
527
+ },
528
+ "--aui-stroke-hover": {
529
+ "value": "var(--aui-border-hover)",
530
+ "category": "Tabs"
531
+ },
532
+ "--aui-stroke-selected": {
533
+ "value": "var(--aui-border-selected)",
534
+ "category": "Tabs"
535
+ },
536
+ "--aui-stroke-disabled": {
537
+ "value": "var(--aui-border-disabled)",
538
+ "category": "Tabs"
539
+ }
540
+ }
541
+ }