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

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 (63) hide show
  1. package/README.md +2 -2
  2. package/dist/agent-ui.css +1 -1
  3. package/dist/api.colors.json +1505 -0
  4. package/dist/api.colors.yaml +1139 -0
  5. package/dist/{api.json → api.components.json} +2877 -385
  6. package/dist/api.tokens.json +541 -0
  7. package/dist/api.tokens.yaml +410 -0
  8. package/dist/docs/components/accordion-item.yaml +41 -0
  9. package/dist/docs/components/accordion.yaml +5 -0
  10. package/dist/docs/components/agent-activity.yaml +32 -0
  11. package/dist/docs/components/agent-feed.yaml +8 -0
  12. package/dist/docs/components/agent-message.yaml +74 -0
  13. package/dist/docs/components/agent-prompt.yaml +47 -0
  14. package/dist/docs/components/agent-seeds.yaml +53 -0
  15. package/dist/docs/components/agent-text.yaml +47 -0
  16. package/dist/docs/components/agent-thread.yaml +20 -0
  17. package/dist/docs/components/app-shell.yaml +18 -12
  18. package/dist/docs/components/breadcrumb-item.yaml +32 -0
  19. package/dist/docs/components/breadcrumb.yaml +11 -0
  20. package/dist/docs/components/button.yaml +51 -21
  21. package/dist/docs/components/calendar.yaml +77 -0
  22. package/dist/docs/components/canvas.yaml +12 -4
  23. package/dist/docs/components/checkbox.yaml +45 -15
  24. package/dist/docs/components/command-group.yaml +32 -0
  25. package/dist/docs/components/command-input.yaml +29 -0
  26. package/dist/docs/components/command-item.yaml +41 -0
  27. package/dist/docs/components/command.yaml +17 -0
  28. package/dist/docs/components/container.yaml +9 -15
  29. package/dist/docs/components/dialog.yaml +24 -11
  30. package/dist/docs/components/drawer.yaml +21 -13
  31. package/dist/docs/components/editor.yaml +12 -10
  32. package/dist/docs/components/field.yaml +24 -13
  33. package/dist/docs/components/graph-port.yaml +23 -0
  34. package/dist/docs/components/gripper.yaml +23 -0
  35. package/dist/docs/components/icon.yaml +9 -2
  36. package/dist/docs/components/input-otp.yaml +44 -0
  37. package/dist/docs/components/input.yaml +51 -24
  38. package/dist/docs/components/optgroup.yaml +29 -0
  39. package/dist/docs/components/option.yaml +29 -0
  40. package/dist/docs/components/page-context.yaml +12 -4
  41. package/dist/docs/components/page-main.yaml +18 -6
  42. package/dist/docs/components/pagination.yaml +41 -0
  43. package/dist/docs/components/pane.yaml +23 -0
  44. package/dist/docs/components/radio.yaml +42 -14
  45. package/dist/docs/components/range.yaml +24 -15
  46. package/dist/docs/components/root.yaml +11 -0
  47. package/dist/docs/components/segment.yaml +35 -0
  48. package/dist/docs/components/segmented-control.yaml +23 -0
  49. package/dist/docs/components/select.yaml +56 -0
  50. package/dist/docs/components/sidebar.yaml +51 -17
  51. package/dist/docs/components/switch.yaml +48 -18
  52. package/dist/docs/components/tab.yaml +38 -0
  53. package/dist/docs/components/table-cell.yaml +17 -0
  54. package/dist/docs/components/table-header.yaml +20 -0
  55. package/dist/docs/components/table-row.yaml +14 -0
  56. package/dist/docs/components/table.yaml +44 -0
  57. package/dist/docs/components/tabs.yaml +14 -0
  58. package/dist/docs/components/textarea.yaml +54 -19
  59. package/dist/docs/components/toast.yaml +53 -0
  60. package/dist/docs/components/tooltip.yaml +24 -11
  61. package/dist/docs/components/tree-item.yaml +47 -0
  62. package/dist/docs/components/tree.yaml +8 -0
  63. package/package.json +6 -2
@@ -69,17 +69,30 @@ events:
69
69
  description: Fires when the dialog closes (Escape, backdrop click, or API).
70
70
 
71
71
  tokens:
72
- color:
73
- - --aui-modal
74
- - --aui-doc
75
- - --aui-border-muted
76
- - --aui-ink
77
- - --aui-backdrop-color
78
- - --aui-backdrop-opacity
79
- shadow:
80
- - --aui-shadow-lg
81
- shape:
82
- - --aui-radius
72
+ - name: --aui-dialog-background
73
+ default: var(--aui-modal, var(--aui-doc))
74
+ description: Background color of the dialog content panel.
75
+ - name: --aui-dialog-color
76
+ default: var(--aui-ink)
77
+ description: Text color inside the dialog.
78
+ - name: --aui-dialog-border
79
+ default: var(--aui-border-muted)
80
+ description: Border color of the dialog and child separators.
81
+ - name: --aui-dialog-border-radius
82
+ default: var(--aui-radius)
83
+ description: Border radius of the dialog content panel.
84
+ - name: --aui-dialog-shadow
85
+ default: var(--aui-shadow-lg)
86
+ description: Box shadow of the dialog content panel.
87
+ - name: --aui-dialog-width
88
+ default: min(90vw, 32rem)
89
+ description: Width of the dialog content panel (default size).
90
+ - name: --aui-dialog-backdrop-color
91
+ default: var(--aui-backdrop-color, oklch(0% 0 0))
92
+ description: Color of the backdrop overlay.
93
+ - name: --aui-dialog-backdrop-opacity
94
+ default: var(--aui-backdrop-opacity, 0.3)
95
+ description: Opacity of the backdrop overlay.
83
96
 
84
97
  examples:
85
98
  - html: |
@@ -59,19 +59,27 @@ events:
59
59
  description: Fires when the drawer closes.
60
60
 
61
61
  tokens:
62
- color:
63
- - --aui-modal
64
- - --aui-doc
65
- - --aui-border-muted
66
- - --aui-ink
67
- - --aui-backdrop-color
68
- - --aui-backdrop-opacity
69
- sizing:
70
- - --aui-drawer-width
71
- - --aui-drawer-height
72
- motion:
73
- - --aui-duration
74
- - --aui-easing
62
+ - name: --aui-drawer-background
63
+ default: var(--aui-modal, var(--aui-doc))
64
+ description: Background color of the drawer content panel.
65
+ - name: --aui-drawer-color
66
+ default: var(--aui-ink)
67
+ description: Text color inside the drawer.
68
+ - name: --aui-drawer-border
69
+ default: var(--aui-border-muted)
70
+ description: Border color of the drawer edge and child separators.
71
+ - name: --aui-drawer-width
72
+ default: 24rem
73
+ description: Width of the drawer when anchored left or right.
74
+ - name: --aui-drawer-height
75
+ default: 24rem
76
+ description: Height of the drawer when anchored top or bottom.
77
+ - name: --aui-drawer-backdrop-color
78
+ default: var(--aui-backdrop-color, oklch(0% 0 0))
79
+ description: Color of the backdrop overlay.
80
+ - name: --aui-drawer-backdrop-opacity
81
+ default: var(--aui-backdrop-opacity, 0.3)
82
+ description: Opacity of the backdrop overlay.
75
83
 
76
84
  examples:
77
85
  - html: |
@@ -130,16 +130,18 @@ composition:
130
130
  creates a viewport wrapper and moves all children into it.
131
131
 
132
132
  tokens:
133
- color:
134
- - --aui-doc
135
- - --aui-border-muted
136
- - --aui-accent
137
- - --aui-focus
138
- motion:
139
- - --_editor-zoom
140
- - --_editor-pan-x
141
- - --_editor-pan-y
142
- - --_editor-grid-size
133
+ - name: --aui-editor-background
134
+ default: var(--aui-doc)
135
+ description: Background color of the editor stage.
136
+ - name: --aui-editor-border-radius
137
+ default: var(--aui-radius)
138
+ description: Border radius of the editor container.
139
+ - name: --aui-editor-selection-color
140
+ default: var(--aui-accent)
141
+ description: Color of the selection rectangle border and fill.
142
+ - name: --aui-editor-focus-color
143
+ default: var(--aui-focus)
144
+ description: Focus ring color when the editor is focused.
143
145
 
144
146
  examples:
145
147
  - html: |
@@ -97,19 +97,30 @@ css-notes:
97
97
  # ── CSS tokens consumed ──────────────────────────────────
98
98
 
99
99
  tokens:
100
- spacing:
101
- - --aui-space
102
- typography:
103
- - --aui-font-family
104
- - --aui-font-size
105
- - --aui-text-line-height
106
- - --aui-control-line-height-relaxed
107
- color:
108
- - --aui-ink
109
- - --aui-ink-muted
110
- - --aui-ink-disabled
111
- - --aui-border-danger
112
- - --aui-danger
100
+ - name: --aui-field-gap
101
+ default: calc(var(--aui-space) * 2)
102
+ description: Vertical gap between label, control, and description.
103
+ - name: --aui-field-label-font-size
104
+ default: var(--aui-font-sm)
105
+ description: Label text font size.
106
+ - name: --aui-field-label-font-weight
107
+ default: var(--aui-font-weight-medium)
108
+ description: Label text font weight.
109
+ - name: --aui-field-label-color
110
+ default: var(--aui-ink-muted)
111
+ description: Label text color.
112
+ - name: --aui-field-label-line-height
113
+ default: var(--aui-control-line-height-relaxed)
114
+ description: Label text line height.
115
+ - name: --aui-field-description-color
116
+ default: var(--aui-ink-muted)
117
+ description: Description text color.
118
+ - name: --aui-field-description-font-size
119
+ default: var(--aui-font-sm)
120
+ description: Description text font size.
121
+ - name: --aui-field-error-color
122
+ default: var(--aui-danger, oklch(0.65 0.2 25))
123
+ description: Error message text color.
113
124
 
114
125
  # ── Examples ──────────────────────────────────────────────
115
126
 
@@ -65,6 +65,29 @@ composition:
65
65
  Place inside aui-graph-node. The port-id is referenced by
66
66
  noodle selectors as "nodeId:portId".
67
67
 
68
+ tokens:
69
+ - name: --aui-graph-port-size
70
+ default: 8px
71
+ description: Diameter of the port dot.
72
+ - name: --aui-graph-port-background
73
+ default: var(--aui-doc)
74
+ description: Fill color of the port dot (unfilled state).
75
+ - name: --aui-graph-port-border-width
76
+ default: 2px
77
+ description: Border width of the port dot.
78
+ - name: --aui-graph-port-border-color
79
+ default: var(--aui-border)
80
+ description: Default border color of the port dot.
81
+ - name: --aui-graph-port-border-color-input
82
+ default: var(--aui-success)
83
+ description: Border color for input-type ports.
84
+ - name: --aui-graph-port-border-color-output
85
+ default: var(--aui-accent)
86
+ description: Border color for output-type ports.
87
+ - name: --aui-graph-port-hover-shadow
88
+ default: "0 0 6px color-mix(in srgb, var(--aui-accent) 40%, transparent)"
89
+ description: Box shadow on hover.
90
+
68
91
  examples:
69
92
  - html: |
70
93
  <aui-graph-port port-id="out" side="right" type="output"></aui-graph-port>
@@ -39,6 +39,29 @@ a11y:
39
39
  aria:
40
40
  aria-orientation: Set from orientation attribute.
41
41
 
42
+ tokens:
43
+ - name: --aui-gripper-color
44
+ default: var(--aui-border-muted)
45
+ description: Color of the feedback line at rest.
46
+ - name: --aui-gripper-color-hover
47
+ default: var(--aui-accent)
48
+ description: Color of the feedback line on hover.
49
+ - name: --aui-gripper-color-dragging
50
+ default: var(--aui-accent)
51
+ description: Color of the accent bar while dragging.
52
+ - name: --aui-gripper-size
53
+ default: 2px
54
+ description: Width/height of the feedback line at rest.
55
+ - name: --aui-gripper-size-dragging
56
+ default: 6px
57
+ description: Width/height of the accent bar while dragging.
58
+ - name: --aui-gripper-border-radius
59
+ default: 2px
60
+ description: Border radius of the feedback line at rest.
61
+ - name: --aui-gripper-border-radius-dragging
62
+ default: 6px
63
+ description: Border radius of the accent bar while dragging.
64
+
42
65
  events:
43
66
  aui:resize-start:
44
67
  description: Fired when drag begins.
@@ -80,8 +80,15 @@ a11y:
80
80
  # ── CSS tokens consumed ──────────────────────────────────
81
81
 
82
82
  tokens:
83
- sizing:
84
- - --aui-icon-size
83
+ - name: --aui-icon-width
84
+ default: var(--aui-icon-size)
85
+ description: Icon width.
86
+ - name: --aui-icon-height
87
+ default: var(--aui-icon-size)
88
+ description: Icon height.
89
+ - name: --aui-icon-color
90
+ default: currentColor
91
+ description: Icon fill color, inherited from parent.
85
92
 
86
93
  # ── Examples ──────────────────────────────────────────────
87
94
 
@@ -43,6 +43,50 @@ a11y:
43
43
  ArrowRight: Move to next cell.
44
44
  Backspace: Clear current cell and move to previous.
45
45
 
46
+ tokens:
47
+ - name: --aui-input-otp-gap
48
+ default: var(--aui-pad-gap-control)
49
+ description: Gap between cells.
50
+ - name: --aui-input-otp-cell-size
51
+ default: var(--aui-size)
52
+ description: Width and height of each cell.
53
+ - name: --aui-input-otp-font-family
54
+ default: var(--aui-font-family)
55
+ description: Cell text font family.
56
+ - name: --aui-input-otp-font-size
57
+ default: var(--aui-font-xl)
58
+ description: Cell text font size.
59
+ - name: --aui-input-otp-font-weight
60
+ default: var(--aui-font-weight-semibold)
61
+ description: Cell text font weight.
62
+ - name: --aui-input-otp-color
63
+ default: var(--aui-ink)
64
+ description: Cell text color.
65
+ - name: --aui-input-otp-background
66
+ default: var(--aui-control, var(--aui-fill))
67
+ description: Cell background color.
68
+ - name: --aui-input-otp-border
69
+ default: var(--aui-stroke)
70
+ description: Cell border color.
71
+ - name: --aui-input-otp-border-radius
72
+ default: var(--aui-radius)
73
+ description: Cell corner radius.
74
+ - name: --aui-input-otp-border-hover
75
+ default: var(--aui-stroke-hover, var(--aui-border-hover))
76
+ description: Cell border color on hover.
77
+ - name: --aui-input-otp-border-filled
78
+ default: var(--aui-solid, var(--aui-accent, oklch(0.55 0.2 260)))
79
+ description: Cell border color when filled.
80
+ - name: --aui-input-otp-background-disabled
81
+ default: var(--aui-fill-disabled, var(--aui-action-disabled))
82
+ description: Cell background when disabled.
83
+ - name: --aui-input-otp-color-disabled
84
+ default: var(--aui-ink-disabled, var(--aui-ink-muted))
85
+ description: Cell text color when disabled.
86
+ - name: --aui-input-otp-border-disabled
87
+ default: var(--aui-stroke-disabled, var(--aui-border-disabled))
88
+ description: Cell border color when disabled.
89
+
46
90
  events:
47
91
  aui:complete:
48
92
  description: Fired when all cells are filled. detail.value contains the code.
@@ -217,30 +217,57 @@ css-notes:
217
217
  # ── CSS tokens consumed ──────────────────────────────────
218
218
 
219
219
  tokens:
220
- sizing:
221
- - --aui-size
222
- - --aui-font-size
223
- - --aui-icon-size
224
- spacing:
225
- - --aui-pad-control-block
226
- - --aui-pad-control-inline
227
- color:
228
- - --aui-ink
229
- - --aui-ink-muted
230
- - --aui-ink-placeholder
231
- - --aui-ink-disabled
232
- - --aui-control
233
- - --aui-fill
234
- - --aui-fill-disabled
235
- - --aui-stroke
236
- - --aui-stroke-hover
237
- - --aui-stroke-disabled
238
- - --aui-focus
239
- shape:
240
- - --aui-radius
241
- motion:
242
- - --aui-duration
243
- - --aui-easing
220
+ - name: --aui-input-size
221
+ default: var(--aui-size)
222
+ description: Overall height and minimum width.
223
+ - name: --aui-input-font-family
224
+ default: var(--aui-font-family)
225
+ description: Font family for input text.
226
+ - name: --aui-input-font-size
227
+ default: var(--aui-font-size)
228
+ description: Input text font size.
229
+ - name: --aui-input-font-weight
230
+ default: var(--aui-control-font-weight)
231
+ description: Input text font weight.
232
+ - name: --aui-input-line-height
233
+ default: var(--aui-control-line-height-relaxed)
234
+ description: Input text line height.
235
+ - name: --aui-input-letter-spacing
236
+ default: var(--aui-letter-spacing)
237
+ description: Input text letter spacing.
238
+ - name: --aui-input-color
239
+ default: var(--aui-ink)
240
+ description: Text color.
241
+ - name: --aui-input-background
242
+ default: var(--aui-control, var(--aui-fill))
243
+ description: Background fill color.
244
+ - name: --aui-input-border
245
+ default: var(--aui-stroke)
246
+ description: Border color.
247
+ - name: --aui-input-border-radius
248
+ default: var(--aui-radius)
249
+ description: Corner radius.
250
+ - name: --aui-input-padding-inline
251
+ default: var(--aui-pad-control-inline)
252
+ description: Horizontal padding.
253
+ - name: --aui-input-padding-block
254
+ default: var(--aui-pad-control-block)
255
+ description: Vertical padding.
256
+ - name: --aui-input-placeholder-color
257
+ default: var(--aui-ink-placeholder, var(--aui-ink-muted))
258
+ description: Placeholder text color.
259
+ - name: --aui-input-icon-size
260
+ default: var(--aui-icon-size)
261
+ description: Size of leading and trailing icons.
262
+ - name: --aui-input-icon-color
263
+ default: var(--aui-ink-muted)
264
+ description: Color of leading and trailing icons.
265
+ - name: --aui-input-border-hover
266
+ default: var(--aui-stroke-hover, var(--aui-border-hover))
267
+ description: Border color on hover.
268
+ - name: --aui-input-border-focus
269
+ default: var(--aui-focus)
270
+ description: Border and outline color on focus.
244
271
 
245
272
  # ── Examples ──────────────────────────────────────────────
246
273
 
@@ -11,6 +11,35 @@ description: >
11
11
  vertical dividers. When a group overflows, all its items move to the
12
12
  overflow menu together, rendered under a divider + uppercase header.
13
13
 
14
+ tokens:
15
+ - name: --aui-optgroup-gap
16
+ default: var(--aui-space)
17
+ description: Vertical gap between group label and options.
18
+ - name: --aui-optgroup-border
19
+ default: var(--aui-border-muted)
20
+ description: Separator border color between groups.
21
+ - name: --aui-optgroup-label-font-family
22
+ default: var(--aui-font-family)
23
+ description: Group label font family.
24
+ - name: --aui-optgroup-label-font-size
25
+ default: var(--aui-group-header-font)
26
+ description: Group label font size.
27
+ - name: --aui-optgroup-label-font-weight
28
+ default: var(--aui-font-weight-medium)
29
+ description: Group label font weight.
30
+ - name: --aui-optgroup-label-color
31
+ default: var(--aui-ink-muted)
32
+ description: Group label text color.
33
+ - name: --aui-optgroup-label-size
34
+ default: var(--aui-size)
35
+ description: Group label minimum height.
36
+ - name: --aui-optgroup-label-padding-block
37
+ default: var(--aui-pad-control-block)
38
+ description: Group label vertical padding.
39
+ - name: --aui-optgroup-label-padding-inline
40
+ default: var(--aui-pad-control-inline)
41
+ description: Group label horizontal padding.
42
+
14
43
  attributes:
15
44
  label:
16
45
  type: string
@@ -35,6 +35,35 @@ attributes:
35
35
  description: >
36
36
  Display label override. When empty, textContent is used.
37
37
 
38
+ tokens:
39
+ - name: --aui-option-color
40
+ default: var(--aui-ink)
41
+ description: Option text color.
42
+ - name: --aui-option-border-radius
43
+ default: var(--aui-radius)
44
+ description: Option corner radius.
45
+ - name: --aui-option-padding-inline
46
+ default: var(--aui-pad-control-inline)
47
+ description: Horizontal padding.
48
+ - name: --aui-option-padding-block
49
+ default: var(--aui-pad-control-block)
50
+ description: Vertical padding.
51
+ - name: --aui-option-gap
52
+ default: var(--aui-pad-gap-control)
53
+ description: Gap between content slots.
54
+ - name: --aui-option-font-size
55
+ default: var(--aui-font-size)
56
+ description: Option text font size.
57
+ - name: --aui-option-min-height
58
+ default: var(--aui-size)
59
+ description: Minimum row height.
60
+ - name: --aui-option-color-hover
61
+ default: var(--aui-ink-strong)
62
+ description: Text color on hover and keyboard highlight.
63
+ - name: --aui-option-background-hover
64
+ default: var(--aui-fill-hover, var(--aui-action-hover))
65
+ description: Background on hover and keyboard highlight.
66
+
38
67
  a11y:
39
68
  role: option
40
69
  aria:
@@ -25,10 +25,18 @@ composition:
25
25
  based on which children are present.
26
26
 
27
27
  tokens:
28
- sizing:
29
- - --aui-pad-control-block
30
- - --aui-size
31
- - --aui-space
28
+ - name: --aui-page-context-min-height
29
+ default: "calc(var(--aui-pad-control-block) * 2 + var(--aui-size))"
30
+ description: Minimum height of the context bar.
31
+ - name: --aui-page-context-gap
32
+ default: "calc(var(--aui-space) * 2)"
33
+ description: Gap between grid columns in the context bar.
34
+ - name: --aui-page-context-padding-block
35
+ default: var(--aui-space)
36
+ description: Block padding of the context bar.
37
+ - name: --aui-page-context-padding-inline
38
+ default: "calc(var(--aui-space) * 3)"
39
+ description: Inline padding of the context bar.
32
40
 
33
41
  examples:
34
42
  - html: |
@@ -20,12 +20,24 @@ composition:
20
20
  children.
21
21
 
22
22
  tokens:
23
- color:
24
- - --aui-panel
25
- - --aui-border
26
- sizing:
27
- - --aui-space
28
- - --aui-radius
23
+ - name: --aui-page-main-gap
24
+ default: "calc(var(--aui-space) * 2)"
25
+ description: Gap between the main panel and adjacent elements.
26
+ - name: --aui-page-main-padding-block-end
27
+ default: "calc(var(--aui-space) * 2)"
28
+ description: Bottom padding of the page-main area.
29
+ - name: --aui-page-main-padding-inline-end
30
+ default: "calc(var(--aui-space) * 2)"
31
+ description: Right padding of the page-main area.
32
+ - name: --aui-page-main-background
33
+ default: var(--aui-panel)
34
+ description: Background of the main content panel.
35
+ - name: --aui-page-main-border-radius
36
+ default: var(--aui-radius)
37
+ description: Border radius of the main content panel.
38
+ - name: --aui-page-main-border-color
39
+ default: var(--aui-border)
40
+ description: Border color for sticky header/footer separators.
29
41
 
30
42
  examples:
31
43
  - html: |
@@ -38,6 +38,47 @@ events:
38
38
  change:
39
39
  description: Fired when page changes. detail.page is the new page number.
40
40
 
41
+ tokens:
42
+ - name: --aui-pagination-gap
43
+ default: 2px
44
+ description: Gap between page buttons.
45
+ - name: --aui-pagination-font-family
46
+ default: var(--aui-font-family)
47
+ description: Font family for page numbers.
48
+ - name: --aui-pagination-font-size
49
+ default: var(--aui-font-size)
50
+ description: Font size for page numbers.
51
+ - name: --aui-pagination-color
52
+ default: var(--aui-ink-muted)
53
+ description: Text color of page buttons.
54
+ - name: --aui-pagination-color-hover
55
+ default: var(--aui-ink)
56
+ description: Text color of page buttons on hover.
57
+ - name: --aui-pagination-background-hover
58
+ default: var(--aui-fill-hover, var(--aui-action-hover))
59
+ description: Background color of page buttons on hover.
60
+ - name: --aui-pagination-border-radius
61
+ default: var(--aui-radius)
62
+ description: Border radius of page buttons.
63
+ - name: --aui-pagination-padding-inline
64
+ default: calc(var(--aui-pad-control-inline) * 0.5)
65
+ description: Horizontal padding inside page buttons.
66
+ - name: --aui-pagination-current-background
67
+ default: var(--aui-solid, var(--aui-accent, oklch(0.55 0.2 260)))
68
+ description: Background color of the current page button.
69
+ - name: --aui-pagination-current-color
70
+ default: var(--aui-on-solid, #fff)
71
+ description: Text color of the current page button.
72
+ - name: --aui-pagination-current-font-weight
73
+ default: var(--aui-font-weight-medium)
74
+ description: Font weight of the current page button.
75
+ - name: --aui-pagination-arrow-font-size
76
+ default: var(--aui-font-xl)
77
+ description: Font size for prev/next arrow icons.
78
+ - name: --aui-pagination-ellipsis-color
79
+ default: var(--aui-ink-muted)
80
+ description: Color of the ellipsis indicators.
81
+
41
82
  examples:
42
83
  - html: <aui-pagination page="3" total="10"></aui-pagination>
43
84
  description: Pagination on page 3 of 10.
@@ -64,6 +64,29 @@ attributes:
64
64
  Resize priority. High-priority panes absorb delta first during
65
65
  cascade resize. Low-priority panes resize last.
66
66
 
67
+ tokens:
68
+ - name: --aui-pane-accent
69
+ default: var(--aui-focus)
70
+ description: Accent color for edge indicators during drag.
71
+ - name: --aui-pane-border
72
+ default: var(--aui-border)
73
+ description: Border color for pane header divider.
74
+ - name: --aui-pane-background
75
+ default: var(--aui-panel)
76
+ description: Background color for the pane header.
77
+ - name: --aui-pane-content-padding
78
+ default: calc(2 * var(--aui-space))
79
+ description: Padding inside the pane content area.
80
+ - name: --aui-pane-header-font-size
81
+ default: var(--aui-group-header-font)
82
+ description: Font size for the pane header label.
83
+ - name: --aui-pane-header-font-weight
84
+ default: var(--aui-font-weight-semibold)
85
+ description: Font weight for the pane header label.
86
+ - name: --aui-pane-header-letter-spacing
87
+ default: "0.04em"
88
+ description: Letter spacing for the uppercase pane header label.
89
+
67
90
  composition:
68
91
  parents: [aui-panes]
69
92
  children: [any]
@@ -99,20 +99,48 @@ events:
99
99
  description: Fires when this radio becomes selected.
100
100
 
101
101
  tokens:
102
- sizing:
103
- - --aui-size
104
- - --aui-widget-size
105
- - --aui-font-size
106
- color:
107
- - --aui-ink
108
- - --aui-control
109
- - --aui-fill
110
- - --aui-stroke
111
- - --aui-solid
112
- - --aui-focus
113
- motion:
114
- - --aui-duration
115
- - --aui-easing
102
+ - name: --aui-radio-gap
103
+ default: calc(var(--aui-space) * 2)
104
+ description: Gap between circle and label.
105
+ - name: --aui-radio-font-family
106
+ default: var(--aui-font-family)
107
+ description: Label font family.
108
+ - name: --aui-radio-font-size
109
+ default: var(--aui-font-size)
110
+ description: Label font size.
111
+ - name: --aui-radio-line-height
112
+ default: var(--aui-control-line-height-relaxed)
113
+ description: Label line height.
114
+ - name: --aui-radio-color
115
+ default: var(--aui-ink)
116
+ description: Label text color.
117
+ - name: --aui-radio-circle-size
118
+ default: var(--aui-widget-size)
119
+ description: Width and height of the radio circle.
120
+ - name: --aui-radio-circle-background
121
+ default: var(--aui-control, var(--aui-fill))
122
+ description: Unchecked circle background.
123
+ - name: --aui-radio-circle-border
124
+ default: var(--aui-stroke)
125
+ description: Unchecked circle border color.
126
+ - name: --aui-radio-checked-background
127
+ default: var(--aui-accent)
128
+ description: Selected circle background.
129
+ - name: --aui-radio-checked-border
130
+ default: var(--aui-accent)
131
+ description: Selected circle border color.
132
+ - name: --aui-radio-checked-dot-color
133
+ default: var(--aui-solid-ink)
134
+ description: Inner dot color when selected.
135
+ - name: --aui-radio-border-hover
136
+ default: var(--aui-stroke-hover, var(--aui-border-hover))
137
+ description: Circle border on hover.
138
+ - name: --aui-radio-background-disabled
139
+ default: var(--aui-fill-disabled, var(--aui-action-disabled))
140
+ description: Circle background when disabled.
141
+ - name: --aui-radio-border-disabled
142
+ default: var(--aui-stroke-disabled, var(--aui-border-disabled))
143
+ description: Circle border when disabled.
116
144
 
117
145
  css-notes:
118
146
  attr-audit: