@assure-one/design-system 1.31.0 → 1.33.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.
Files changed (42) hide show
  1. package/README.md +61 -6
  2. package/codemods/0.2.0-radix-migration.mjs +315 -0
  3. package/codemods/README.md +365 -0
  4. package/codemods/lib/css-selectors.mjs +33 -0
  5. package/codemods/lib/css-values.mjs +223 -0
  6. package/codemods/lib/ds-stylesheet.mjs +168 -0
  7. package/codemods/lib/environment.mjs +72 -0
  8. package/codemods/lib/files.mjs +100 -0
  9. package/codemods/lib/forms.mjs +253 -0
  10. package/codemods/lib/jsx.mjs +0 -0
  11. package/codemods/lib/ledger.mjs +84 -0
  12. package/codemods/lib/registry.mjs +32 -0
  13. package/codemods/lib/report.mjs +119 -0
  14. package/codemods/lib/runner.mjs +164 -0
  15. package/codemods/run.mjs +161 -0
  16. package/codemods/transforms/cm-14-hidden-mirrors.mjs +275 -0
  17. package/codemods/transforms/cm-15-dom-selectors.mjs +573 -0
  18. package/codemods/transforms/cm-16-globals-css.mjs +487 -0
  19. package/codemods/transforms/cm-20-select-sentinels.mjs +442 -0
  20. package/dist/css/base.css +60 -0
  21. package/dist/css/components.css +7 -0
  22. package/dist/css/legacy-aliases.css +665 -0
  23. package/dist/css/shadcn.css +155 -0
  24. package/dist/css/tailwind.css +296 -0
  25. package/dist/css/tokens.css +630 -0
  26. package/dist/index.d.ts +807 -27
  27. package/dist/index.js +2038 -683
  28. package/dist/index.js.map +1 -1
  29. package/dist/styles.css +1 -1
  30. package/dist/system-BDU18fVg.d.ts +559 -0
  31. package/dist/testing/index.cjs +458 -0
  32. package/dist/testing/index.d.cts +253 -0
  33. package/dist/testing/index.d.ts +253 -0
  34. package/dist/testing/index.js +452 -0
  35. package/dist/testing/setup.cjs +123 -0
  36. package/dist/testing/setup.js +121 -0
  37. package/dist/testing/style-stub.cjs +7 -0
  38. package/dist/testing/style-stub.js +5 -0
  39. package/dist/tokens/index.d.ts +50 -439
  40. package/dist/tokens/index.js +557 -50
  41. package/dist/tokens/index.js.map +1 -1
  42. package/package.json +74 -5
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { ColorName, ReferenceTokens, SystemTokens, colors, radii, reference, shadows, spacing, surfaces, systemTokens, typography } from './tokens/index.js';
1
+ export { C as ColorName, R as ReferenceTokens, S as SystemTokens, c as colors, r as radii, a as reference, s as shadows, b as spacing, d as surfaces, e as systemTokens, t as typography } from './system-BDU18fVg.js';
2
2
  import * as React$1 from 'react';
3
3
  import { ReactNode, CSSProperties } from 'react';
4
4
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
@@ -36,6 +36,322 @@ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPri
36
36
  declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
37
37
  declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
38
38
 
39
+ /**
40
+ * `Code` parts, stamped as `data-slot="code[-<part>]"` (ADR-008). Inline, the
41
+ * root is the `<code>`; as a block, the root is the `<pre>` and `content` the
42
+ * `<code>` inside it. State on the root: `data-variant`.
43
+ *
44
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
45
+ */
46
+ type CodeSlot = "root" | "content";
47
+ /**
48
+ * `Kbd` part, stamped as `data-slot="kbd"` (ADR-008). State on the root:
49
+ * `data-variant`. `KbdHint` and `CommandPalette` render it.
50
+ *
51
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
52
+ */
53
+ type KbdSlot = "root";
54
+ /**
55
+ * `Button` parts, stamped as `data-slot="button[-<part>]"` (ADR-008).
56
+ * States on the root: `data-variant`, `data-size`, `data-disabled`, and the
57
+ * pre-existing `data-loading="true"`.
58
+ *
59
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
60
+ */
61
+ type ButtonSlot = "root" | "icon-start" | "icon-end" | "spinner";
62
+ /**
63
+ * `LinkButton` parts, stamped as `data-slot="link-button[-<part>]"` (ADR-008).
64
+ * States on the root: `data-variant`, `data-size`.
65
+ *
66
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
67
+ */
68
+ type LinkButtonSlot = "root" | "icon-start" | "icon-end";
69
+ /**
70
+ * `Badge` parts, stamped as `data-slot="badge[-<part>]"` (ADR-008).
71
+ * States on the root: `data-variant`, `data-size`.
72
+ *
73
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
74
+ */
75
+ type BadgeSlot = "root" | "dot" | "icon";
76
+ /**
77
+ * `Input` parts, stamped as `data-slot="input[-<part>]"` (ADR-008).
78
+ * `root` is the `<input>` itself — the control frame, and the element
79
+ * `className` lands on (`C-INPUT-CLASSNAME`). The wrappers around it are
80
+ * private (target architecture §29.2).
81
+ * States on the root: `data-variant`, `data-size`, `data-disabled`,
82
+ * `data-invalid`.
83
+ *
84
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
85
+ */
86
+ type InputSlot = "root" | "label" | "icon-start" | "icon-end" | "password-toggle" | "error";
87
+ /**
88
+ * `Textarea` parts, stamped as `data-slot="textarea[-<part>]"` (ADR-008).
89
+ * `root` is the `<textarea>`. States on the root: `data-variant`, `data-size`,
90
+ * `data-disabled`, `data-invalid`.
91
+ *
92
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
93
+ */
94
+ type TextareaSlot = "root" | "label" | "error" | "count";
95
+ /**
96
+ * `SearchInput` parts, stamped as `data-slot="search-input[-<part>]"`
97
+ * (ADR-008). `root` is the positioning wrapper `className` lands on;
98
+ * `control` is the `<input type="search">`.
99
+ * States on the root: `data-size`, `data-disabled`.
100
+ *
101
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
102
+ */
103
+ type SearchInputSlot = "root" | "control" | "icon" | "clear";
104
+ /**
105
+ * `Select` parts, stamped as `data-slot="select-<part>"` (ADR-008). There is
106
+ * no `root`: `SelectRoot` renders no element. Radix's own `data-state`,
107
+ * `data-disabled`, `data-placeholder` and `data-highlighted` are left as they
108
+ * are (`P-DATA-STATE`).
109
+ *
110
+ * `SelectValue` and `SelectGroup` are re-exported Radix components with no
111
+ * wrapper of ours, so they carry no slot yet; W4-08 gives them one along with
112
+ * `classNames.value` (`C-DOM-10`).
113
+ *
114
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
115
+ */
116
+ type SelectSlot = "trigger" | "icon" | "content" | "viewport" | "item" | "item-indicator" | "label" | "separator" | "scroll-up-button" | "scroll-down-button";
117
+ /**
118
+ * `Checkbox` parts, stamped as `data-slot="checkbox[-<part>]"` (ADR-008).
119
+ * `root` is the Radix root — the box, and the element `className` lands on.
120
+ * Radix's `data-state` (`checked` / `unchecked` / `indeterminate`) is left as
121
+ * it is; `data-shape` is not part of the state vocabulary, so the shape stays
122
+ * a class until W4-13.
123
+ *
124
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
125
+ */
126
+ type CheckboxSlot = "root" | "indicator" | "label";
127
+ /**
128
+ * `RadioGroup` / `RadioGroupItem` parts, stamped as
129
+ * `data-slot="radio-group[-<part>]"` (ADR-008). `root` is the group,
130
+ * `item` the radio. Radix's `data-state` is left as it is.
131
+ *
132
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
133
+ */
134
+ type RadioGroupSlot = "root" | "item" | "indicator" | "label";
135
+ /**
136
+ * `Switch` parts, stamped as `data-slot="switch[-<part>]"` (ADR-008).
137
+ * `root` is the Radix root — the track, and the element `className` lands on;
138
+ * the label wrapper is a private wrapper. States on the root: `data-size`.
139
+ *
140
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
141
+ */
142
+ type SwitchSlot = "root" | "thumb" | "label";
143
+ /**
144
+ * `Label` parts, stamped as `data-slot="label[-<part>]"` (ADR-008).
145
+ * `required` is the asterisk marker.
146
+ *
147
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
148
+ */
149
+ type LabelSlot = "root" | "required";
150
+ /**
151
+ * `FileUpload` parts, stamped as `data-slot="file-upload[-<part>]"` (ADR-008).
152
+ * `dropzone` is the `<label>` that `C-DOM-04` freezes and that
153
+ * `[&_[data-slot=file-upload-dropzone]]` replaces (target architecture §29.4).
154
+ * States: `data-disabled` and `data-invalid` on the root, `data-disabled` and
155
+ * `data-state="drag-over"` on the dropzone.
156
+ *
157
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
158
+ */
159
+ type FileUploadSlot = "root" | "dropzone" | "input" | "error";
160
+ /**
161
+ * `Dialog` parts, stamped as `data-slot="dialog-<part>"` (ADR-008). There is
162
+ * no `root`: `Dialog` is Radix's non-rendering root. `close` is stamped on
163
+ * both the built-in close button and `DialogClose`; they are the same part —
164
+ * a control that dismisses the dialog. States: `data-size` on the content.
165
+ * Radix's `data-state` is left as it is (`P-DATA-STATE`).
166
+ *
167
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
168
+ */
169
+ type DialogSlot = "overlay" | "content" | "header" | "title" | "description" | "footer" | "close";
170
+ /**
171
+ * `AlertDialog` parts, stamped as `data-slot="alert-dialog-<part>"`
172
+ * (ADR-008). No `root` — Radix's root renders no element.
173
+ *
174
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
175
+ */
176
+ type AlertDialogSlot = "overlay" | "content" | "header" | "title" | "description" | "footer" | "action" | "cancel";
177
+ /**
178
+ * `Sheet` parts, stamped as `data-slot="sheet-<part>"` (ADR-008).
179
+ * States: `data-size` on the content, carrying today's `width` preset — the
180
+ * prop `C-SHEET-WIDTH` renames to `size` in W5-07. The `side` is not in the
181
+ * §29.2 vocabulary and stays a class.
182
+ *
183
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
184
+ */
185
+ type SheetSlot = "overlay" | "content" | "header" | "title" | "description" | "footer" | "close";
186
+ /**
187
+ * `SideDrawer` parts, stamped as `data-slot="side-drawer[-<part>]"`
188
+ * (ADR-008). `root` is the panel. The screen-reader-only Radix title that the
189
+ * panel always renders is an accessibility fallback, not a part, so it carries
190
+ * no slot. States: `data-size` on the root, carrying the `width` preset.
191
+ *
192
+ * `SideDrawer` itself is `C-SIDEDRAWER` and is replaced by `Sheet` in W5-08;
193
+ * the slots exist so the two can be styled the same way in the meantime.
194
+ *
195
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
196
+ */
197
+ type SideDrawerSlot = "overlay" | "root" | "header" | "heading" | "subtitle" | "close" | "body" | "footer";
198
+ /**
199
+ * `Popover` parts, stamped as `data-slot="popover-content"` (ADR-008).
200
+ * `Popover`, `PopoverTrigger`, `PopoverAnchor` and `PopoverClose` are bare
201
+ * Radix re-exports, so the content is the only part we render.
202
+ *
203
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
204
+ */
205
+ type PopoverSlot = "content";
206
+ /**
207
+ * `DropdownMenu` parts, stamped as `data-slot="dropdown-menu-<part>"`
208
+ * (ADR-008). No `root`, no `trigger`: both are bare Radix re-exports.
209
+ * `destructive` items get no `data-intent` yet — W3-02 defines the intent
210
+ * values, and this task does not invent them.
211
+ *
212
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
213
+ */
214
+ type DropdownMenuSlot = "content" | "item" | "checkbox-item" | "radio-item" | "item-indicator" | "label" | "separator" | "shortcut" | "sub-trigger" | "sub-content";
215
+ /**
216
+ * `ContextMenu` parts, stamped as `data-slot="context-menu-<part>"`
217
+ * (ADR-008). The same part names as `DropdownMenu`, which is what makes the
218
+ * shared `Menu` internals of W5 a rename-free change for consumers.
219
+ *
220
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
221
+ */
222
+ type ContextMenuSlot = "content" | "item" | "checkbox-item" | "radio-item" | "item-indicator" | "label" | "separator" | "shortcut" | "sub-trigger" | "sub-content";
223
+ /**
224
+ * `Tooltip` parts, stamped as `data-slot="tooltip-content"` (ADR-008).
225
+ * `TooltipTrigger` is a bare Radix re-export.
226
+ *
227
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
228
+ */
229
+ type TooltipSlot = "content";
230
+ /**
231
+ * `Toast` parts, stamped as `data-slot="toast[-<part>]"` (ADR-008).
232
+ * `region` is the live region that `C-TOAST-ARIALABEL` currently locates by
233
+ * `aria-label="Notifications"`; `data-slot="toast-region"` is the replacement
234
+ * that guard moves to (W5-15). States: `data-variant` on the root; its
235
+ * `data-state` (`open` / `closed`) already existed.
236
+ *
237
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
238
+ */
239
+ type ToastSlot = "region" | "root" | "icon" | "title" | "description" | "action" | "close";
240
+ /**
241
+ * `Table` parts, stamped as `data-slot="table[-<part>]"` (ADR-008).
242
+ * `root` is the `<table>` — the element `className` lands on; `wrapper` is the
243
+ * overflow container that `wrapperClassName` styles today and
244
+ * `classNames.wrapper` replaces (`C-CLASSNAME-PROPS`). `header` is `<thead>`
245
+ * and `head` is a `<th>`, matching the `TableHeader` / `TableHead` component
246
+ * names. Native table semantics are permanent (`P-NATIVE-TABLE`).
247
+ *
248
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
249
+ */
250
+ type TableSlot = "root" | "wrapper" | "header" | "body" | "footer" | "row" | "head" | "cell" | "caption";
251
+ /**
252
+ * `DataTable*` parts, stamped as `data-slot="data-table[-<part>]"` (ADR-008).
253
+ * These are `C-DT-PARTS`, the parallel copy of `Table*` that W6-03 folds back
254
+ * in; the part names deliberately match `table`'s so that fold is a no-op for
255
+ * a consumer's selectors (`header` = `<thead>` via `DataTableHead`, `head` =
256
+ * the `<th>` via `DataTableHeader`).
257
+ *
258
+ * `head-button` is the sortable header's `<button>` that `C-DOM-13` freezes.
259
+ * The four cell components share one `cell` part and are told apart by
260
+ * `data-variant` (`name`, `mono`, `id`, `due`).
261
+ *
262
+ * `DataTableSearch` and `DataTablePagination` render an `Input` and a
263
+ * `Pagination` with no wrapper of their own, so they carry those components'
264
+ * slots (`data-slot="input"`, `data-slot="pagination"`) rather than one of
265
+ * their own — stamping over it would delete the inner component's part name.
266
+ * W6-06 gives the search its own `classNames.search` (`C-DOM-18`).
267
+ *
268
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
269
+ */
270
+ type DataTableSlot = "root" | "toolbar" | "spacer" | "results-count" | "header" | "body" | "row" | "head" | "head-button" | "head-indicator" | "cell" | "checkbox-cell";
271
+ /**
272
+ * `Pagination` parts, stamped as `data-slot="pagination[-<part>]"` (ADR-008).
273
+ * `root` is the `<nav>`. The current page carries `data-selected` alongside
274
+ * its existing `aria-current="page"`.
275
+ *
276
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
277
+ */
278
+ type PaginationSlot = "root" | "label" | "pages" | "previous" | "next" | "page" | "ellipsis";
279
+ /**
280
+ * `Shell` / `Main` / `Content` parts, stamped as `data-slot="shell[-<part>]"`
281
+ * (ADR-008). Three elements, three names: the app frame, the column beside the
282
+ * sidebar and the scrolling page region.
283
+ *
284
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
285
+ */
286
+ type ShellSlot = "root" | "main" | "content";
287
+ /**
288
+ * `Sidebar` and its parts, stamped as `data-slot="sidebar[-<part>]"`
289
+ * (ADR-008). This is the anatomy `C-DOM-06` is waiting for: PRO and TAX carry
290
+ * identical copies of `group-data-[labels=hide]/sidebar:*` and
291
+ * `[&>div:first-child]` overrides because there is no name for
292
+ * `section-header`, `link-label` or `user` today.
293
+ *
294
+ * `group/sidebar`, `data-labels`, `data-state`, `data-peek`, `data-overlay`,
295
+ * `data-collapsible` and `data-variant` on the root are **unchanged** — they
296
+ * are the frozen part of `C-DOM-06`, and no state attribute is re-stamped over
297
+ * them. W7-03 adds `data-collapsed` to the slots and the `SidebarSection`
298
+ * header slot; this change only names the parts.
299
+ *
300
+ * `group` is a `SidebarLinkGroup`: `group-link` is its activating row,
301
+ * `group-trigger` its chevron and `group-content` the collapsible body.
302
+ * The `tone` props on `SidebarSection` and `SidebarLinkBadge` get no
303
+ * `data-intent`: they are `C-TONE`, and W3-21 defines the intent values.
304
+ *
305
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
306
+ */
307
+ type SidebarSlot = "root" | "trigger" | "pin" | "brand" | "brand-text" | "section" | "section-header" | "section-label" | "link" | "link-label" | "link-action" | "link-badge" | "group" | "group-link" | "group-trigger" | "group-content" | "footer" | "user" | "user-name" | "user-subtitle";
308
+ /**
309
+ * `SidebarBrandSwitcher` parts, stamped as
310
+ * `data-slot="sidebar-brand-switcher[-<part>]"` (ADR-008). Its menu is a
311
+ * `DropdownMenuContent` and keeps that component's slots; its `trailing`
312
+ * children are rendered bare, with no wrapper of ours to name (W7-03 gives
313
+ * them one).
314
+ *
315
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
316
+ */
317
+ type SidebarBrandSwitcherSlot = "root" | "trigger" | "icon";
318
+ /**
319
+ * `Text` parts, stamped as `data-slot="text"` (ADR-008). One part: the
320
+ * element that carries the role, and the element `className` lands on (with
321
+ * `asChild`, the child the caller supplied).
322
+ *
323
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-12).
324
+ */
325
+ type TextSlot = "root";
326
+ /**
327
+ * `Heading` parts, stamped as `data-slot="heading"` (ADR-008). One part: the
328
+ * `<h1>`…`<h6>` itself, which is the element `className` lands on.
329
+ *
330
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-13).
331
+ */
332
+ type HeadingSlot = "root";
333
+ /**
334
+ * `Stack` has one part, its root, stamped as `data-slot="stack"` (ADR-008).
335
+ * No state attributes: a responsive `direction` has no single value to
336
+ * stamp, and the primitive's job is spacing, not state.
337
+ *
338
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-15).
339
+ */
340
+ type StackSlot = "root";
341
+ /**
342
+ * `Inline` has one part, its root, stamped as `data-slot="inline"` (ADR-008).
343
+ *
344
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-15).
345
+ */
346
+ type InlineSlot = "root";
347
+ /**
348
+ * `Surface` has one part, its root, stamped as `data-slot="surface"`
349
+ * (ADR-008). Composites built on it (Card, W3-17) declare their own parts.
350
+ *
351
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-16).
352
+ */
353
+ type SurfaceSlot = "root";
354
+
39
355
  declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
40
356
  declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
41
357
  declare const AlertDialogPortal: React$1.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
@@ -239,11 +555,12 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
239
555
  * Use `asChild` to render as a different element (e.g. an anchor / next/link).
240
556
  */
241
557
  declare const buttonVariants: (props?: ({
242
- variant?: "link" | "success" | "destructive" | "accent" | "primary" | "secondary" | "ghost" | "outline" | "dashed" | null | undefined;
243
- size?: "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | "icon-xs" | "icon-sm" | "icon" | null | undefined;
558
+ variant?: "accent" | "link" | "success" | "destructive" | "primary" | "secondary" | "ghost" | "outline" | "dashed" | null | undefined;
559
+ size?: "icon" | "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | "icon-xs" | "icon-sm" | null | undefined;
244
560
  } & class_variance_authority_types.ClassProp) | undefined) => string;
245
561
  type ButtonVariant = NonNullable<VariantProps<typeof buttonVariants>["variant"]>;
246
562
  type ButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]>;
563
+
247
564
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
248
565
  /** Render as the child element via Radix `Slot` (shadcn pattern). */
249
566
  asChild?: boolean;
@@ -253,6 +570,7 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
253
570
  }
254
571
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
255
572
 
573
+ type CalendarCaptionLayout = "dropdown" | "label";
256
574
  type CalendarHighlightColor = "primary" | "success" | "warning" | "destructive";
257
575
  interface CalendarHighlight {
258
576
  date: Date;
@@ -266,7 +584,7 @@ interface CalendarProps extends Omit<DayPickerProps, "mode" | "selected" | "onSe
266
584
  maxDate?: Date;
267
585
  className?: string;
268
586
  }
269
- declare function Calendar({ selected, onSelect, highlights, minDate, maxDate, className, classNames, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
587
+ declare function Calendar({ selected, onSelect, highlights, minDate, maxDate, className, classNames, captionLayout, navLayout, startMonth, endMonth, components, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
270
588
  declare namespace Calendar {
271
589
  var displayName: string;
272
590
  }
@@ -307,7 +625,7 @@ declare const CardAction: React$1.ForwardRefExoticComponent<React$1.HTMLAttribut
307
625
  * neutral → --color-fg-3
308
626
  */
309
627
  declare const categoryTagVariants: (props?: ({
310
- tone?: "neutral" | "brand" | "audit" | "books" | "tax" | null | undefined;
628
+ tone?: "brand" | "neutral" | "audit" | "books" | "tax" | null | undefined;
311
629
  } & class_variance_authority_types.ClassProp) | undefined) => string;
312
630
  type CategoryTone = NonNullable<VariantProps<typeof categoryTagVariants>["tone"]>;
313
631
  interface CategoryTagProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof categoryTagVariants> {
@@ -529,6 +847,10 @@ interface DatePickerProps {
529
847
  * start so the calendar opens beneath the visible glyph.
530
848
  */
531
849
  iconPosition?: "left" | "right";
850
+ /** Day-mode caption style. Default `"dropdown"` (Month + Year selects). */
851
+ captionLayout?: CalendarCaptionLayout;
852
+ /** Extra classes for the visible text input (merged last). */
853
+ inputClassName?: string;
532
854
  }
533
855
 
534
856
  declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<HTMLInputElement>>;
@@ -555,6 +877,8 @@ interface DateRangePickerProps {
555
877
  /** Calendar glyph position inside the trigger. Default `"right"`. */
556
878
  iconPosition?: "left" | "right";
557
879
  "aria-label"?: string;
880
+ /** Month caption style. Default `"dropdown"` (Month + Year selects). */
881
+ captionLayout?: CalendarCaptionLayout;
558
882
  }
559
883
  declare const DateRangePicker: React$1.ForwardRefExoticComponent<DateRangePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
560
884
 
@@ -1324,14 +1648,6 @@ declare namespace OTPInput {
1324
1648
  var displayName: string;
1325
1649
  }
1326
1650
 
1327
- /**
1328
- * Pagination — custom (no Radix equivalent).
1329
- * Tokenized: tabular-nums numerals, mono context label, cyan accent for the
1330
- * current page, `border-rule` divider boundaries.
1331
- *
1332
- * Public API:
1333
- * currentPage, totalPages, onPageChange, siblingCount, totalItems, pageSize.
1334
- */
1335
1651
  interface PaginationProps extends React.HTMLAttributes<HTMLElement> {
1336
1652
  currentPage: number;
1337
1653
  totalPages: number;
@@ -1863,12 +2179,13 @@ declare const Sheet: {
1863
2179
  ({ side, children, ...props }: SheetProps): react_jsx_runtime.JSX.Element;
1864
2180
  displayName: string;
1865
2181
  };
2182
+
1866
2183
  declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
1867
2184
  declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
1868
2185
  declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
1869
2186
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1870
2187
  declare const sheetVariants: (props?: ({
1871
- side?: "left" | "right" | "top" | "bottom" | null | undefined;
2188
+ side?: "left" | "top" | "right" | "bottom" | null | undefined;
1872
2189
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1873
2190
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1874
2191
  /** If false, the built-in close button is hidden. Default: true. */
@@ -1960,7 +2277,7 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
1960
2277
 
1961
2278
  declare const spinnerVariants: (props?: ({
1962
2279
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
1963
- tone?: "current" | "success" | "warning" | "destructive" | "muted" | "accent" | null | undefined;
2280
+ tone?: "accent" | "current" | "success" | "warning" | "destructive" | "muted" | null | undefined;
1964
2281
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1965
2282
  interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
1966
2283
  /**
@@ -2313,17 +2630,6 @@ interface SwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Switc
2313
2630
  }
2314
2631
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
2315
2632
 
2316
- /**
2317
- * Table — semantic data-table primitives:
2318
- * - sentence-case headers in the body font (12px, medium, `text-fg-3`)
2319
- * on `bg-surface-2` — quiet column labels, not mono eyebrows
2320
- * - 1px `border-rule` under header, `border-rule-soft` between rows
2321
- * - 13px body cells in `text-fg-2`, airy 44px rows, hover gets `bg-bg-2`
2322
- *
2323
- * Public API: Table / TableHeader / TableBody / TableRow /
2324
- * TableHead / TableCell / TableCaption. `wrapperClassName` wraps
2325
- * the responsive overflow container.
2326
- */
2327
2633
  interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
2328
2634
  /** Class for the wrapping `div` that handles overflow. */
2329
2635
  wrapperClassName?: string;
@@ -2440,6 +2746,40 @@ interface ToggleGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof T
2440
2746
  }
2441
2747
  declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2442
2748
 
2749
+ /** `inline`: one `<code>` in running text. `block`: `<pre><code>`, keeps whitespace, scrolls. */
2750
+ type CodeVariant = "inline" | "block";
2751
+ interface CodeProps extends React.HTMLAttributes<HTMLElement> {
2752
+ /** Default `inline`. */
2753
+ variant?: CodeVariant;
2754
+ }
2755
+ /**
2756
+ * Monospace text, inline or as a block.
2757
+ *
2758
+ * @experimental W2-14 typography primitive.
2759
+ */
2760
+ declare const Code: React$1.ForwardRefExoticComponent<CodeProps & React$1.RefAttributes<HTMLElement>>;
2761
+
2762
+ /** `keycap`: the 18px key with a heavier bottom edge (CommandPalette). `flat`: the 20px badge (KbdHint). */
2763
+ type KbdVariant = "keycap" | "flat";
2764
+ /** A platform-spelled key: `⌘ ⌥ ⇧ ⌃` on Apple platforms, `Ctrl Alt Shift Ctrl` elsewhere. `mod` is the primary modifier. */
2765
+ type KbdGlyph = "mod" | "alt" | "shift" | "ctrl";
2766
+ interface KbdProps extends React.HTMLAttributes<HTMLElement> {
2767
+ /** Default `keycap`. */
2768
+ variant?: KbdVariant;
2769
+ /**
2770
+ * A platform-spelled key rendered before `children`. Decided after mount
2771
+ * (amendment A3): server and hydration render the non-Apple spelling, then
2772
+ * the detected one replaces it.
2773
+ */
2774
+ glyph?: KbdGlyph;
2775
+ }
2776
+ /**
2777
+ * One key of a keyboard shortcut; one `Kbd` per key of a chord.
2778
+ *
2779
+ * @experimental W2-14 typography primitive.
2780
+ */
2781
+ declare const Kbd: React$1.ForwardRefExoticComponent<KbdProps & React$1.RefAttributes<HTMLElement>>;
2782
+
2443
2783
  declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
2444
2784
  declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2445
2785
  declare const TooltipPortal: React$1.FC<TooltipPrimitive.TooltipPortalProps>;
@@ -2547,6 +2887,418 @@ declare namespace IntentBadge {
2547
2887
  var displayName: string;
2548
2888
  }
2549
2889
 
2890
+ /**
2891
+ * The size of a run of text, named as a typography *role* — what the text is
2892
+ * (body copy, a field label, a caption…) — never as a pixel value. The twelve
2893
+ * roles of target architecture §15, each a role token (`--text-<role>` plus its
2894
+ * line-height, letter-spacing and font-weight companions, W2-01) that the
2895
+ * Tailwind bridge exposes as the `text-<role>` utility. Roles gated on decision
2896
+ * D1 (`title-page`, `title-sub`, `label`, `code`) keep today's value until D1
2897
+ * lands; see `docs/design-system/typography-roles.md`.
2898
+ *
2899
+ * @experimental W2-12.
2900
+ */
2901
+ type TextSize = "display" | "title-page" | "title-section" | "title-sub" | "body" | "body-sm" | "label" | "helper" | "caption" | "micro" | "overline" | "code";
2902
+ /**
2903
+ * An `intent`-free ink colour (target architecture §15.2). `default`…`subtle`
2904
+ * are the four legible steps of the foreground ramp (`fg` … `fg-4`; `fg-5` is
2905
+ * decorative and not offered), `inverse` is the canvas colour for text on an
2906
+ * inverted surface, and the status and brand colours are their `-fg` tokens.
2907
+ *
2908
+ * @experimental W2-12.
2909
+ */
2910
+ type TextColor = "default" | "secondary" | "muted" | "subtle" | "inverse" | "danger" | "success" | "warning" | "brand";
2911
+ /**
2912
+ * A font weight from the loaded set (400/500/600/700). A role already carries
2913
+ * a weight; this prop overrides it.
2914
+ *
2915
+ * @experimental W2-12.
2916
+ */
2917
+ type TextWeight = "regular" | "medium" | "semibold" | "bold";
2918
+ /**
2919
+ * Props of `Text`. Every HTML attribute passes through, including the ARIA
2920
+ * `role`; the typography role is the `size` prop, so the two never collide.
2921
+ * `color` replaces the obsolete HTML `color` attribute.
2922
+ *
2923
+ * @experimental W2-12.
2924
+ */
2925
+ interface TextProps extends Omit<React.HTMLAttributes<HTMLElement>, "color"> {
2926
+ /**
2927
+ * The size, named as a typography role. Defaults to `body`, the default
2928
+ * reading text (14px / 1.55 / 400).
2929
+ */
2930
+ size?: TextSize;
2931
+ /**
2932
+ * The ink colour. When omitted the text inherits its parent's colour, so a
2933
+ * `Text` inside a coloured control keeps that control's ink; `default` sets
2934
+ * the document ink (`fg`) explicitly.
2935
+ */
2936
+ color?: TextColor;
2937
+ /** Overrides the role's weight with one of the loaded weights. */
2938
+ weight?: TextWeight;
2939
+ /**
2940
+ * Lining tabular figures for amounts, counts and table numerals (the
2941
+ * `numeric` modifier of target architecture §15): digits share a width, so
2942
+ * columns align and a changing digit does not reflow the row.
2943
+ */
2944
+ numeric?: boolean;
2945
+ /**
2946
+ * Clip to one line with an ellipsis. The element needs a width to clip
2947
+ * against: give it one, or make it a flex or grid child with `min-w-0`.
2948
+ */
2949
+ truncate?: boolean;
2950
+ /**
2951
+ * Render the child element instead of a `<span>`, merging the size classes
2952
+ * and attributes into it (Radix `Slot`). This is how `Text` becomes a
2953
+ * `<p>`, a `<label>`, a `<time>` or a link; there is no `as` prop.
2954
+ */
2955
+ asChild?: boolean;
2956
+ }
2957
+ /**
2958
+ * `Text` — a run of text sized by a typography *role* (W2-12, target
2959
+ * architecture §15.2).
2960
+ *
2961
+ * Renders a `<span>` (or, with `asChild`, the child you pass) and gives it one
2962
+ * of the twelve role tokens — font size, line height, letter spacing and
2963
+ * weight in a single utility — plus an optional ink colour, weight override,
2964
+ * tabular numerals and single-line truncation. It never takes a pixel size: a
2965
+ * role is a name for what the text is, and the number behind it belongs to the
2966
+ * token.
2967
+ *
2968
+ * Server-safe: no hooks, no client directive, no effects. It renders the same
2969
+ * markup on the server and on the client.
2970
+ *
2971
+ * Anatomy: one part, `data-slot="text"`, which is also where `className` and
2972
+ * `style` land (with `asChild`, on the child).
2973
+ *
2974
+ * @example
2975
+ * ```tsx
2976
+ * <Text size="helper" color="muted">Shown to the client after signing.</Text>
2977
+ * <Text size="body-sm" numeric>1,204.50</Text>
2978
+ * <Text size="helper" role="status">Saved</Text>
2979
+ * <Text asChild size="caption"><time dateTime="2026-09-21">21 Sep 2026</time></Text>
2980
+ * ```
2981
+ *
2982
+ * @experimental New export (W2-12); its props may change while decision D1
2983
+ * (visual source of truth) is open.
2984
+ */
2985
+ declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAttributes<HTMLElement>>;
2986
+
2987
+ /**
2988
+ * The document-outline level: which of `<h1>`…`<h6>` renders. Semantic only —
2989
+ * it says where the heading sits in the outline, not how large it is.
2990
+ *
2991
+ * @experimental W2-13.
2992
+ */
2993
+ type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
2994
+ /**
2995
+ * The visual role of a heading: one of the four title roles of target
2996
+ * architecture §15. Independent of `level`. Written out as a literal union so
2997
+ * the public API report records the names.
2998
+ *
2999
+ * @experimental W2-13.
3000
+ */
3001
+ type HeadingSize = "display" | "title-page" | "title-section" | "title-sub";
3002
+ /**
3003
+ * Props of `Heading`. `level` is required on purpose: a heading without an
3004
+ * outline level is the hard-coded `h3`/`h1`/`h4` this component exists to end
3005
+ * (target architecture §15.2, current-state audit §14).
3006
+ *
3007
+ * @experimental W2-13.
3008
+ */
3009
+ interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {
3010
+ /** The outline level: renders `<h{level}>`. Required. */
3011
+ level: HeadingLevel;
3012
+ /**
3013
+ * The visual role, independent of `level`. Defaults from the level
3014
+ * (`1` → `title-page`, `2` → `title-section`, `3`–`6` → `title-sub`), so an
3015
+ * `<h3>` that must look like a section title says `size="title-section"`
3016
+ * instead of becoming an `<h2>`.
3017
+ */
3018
+ size?: HeadingSize;
3019
+ }
3020
+ /**
3021
+ * `Heading` — an `<h1>`…`<h6>` whose outline level and visual size are two
3022
+ * separate props (W2-13, target architecture §15.2).
3023
+ *
3024
+ * `level` is required and picks the element; `size` picks the title role and
3025
+ * defaults from the level. Because the two are independent, a card title can
3026
+ * be the `<h3>` the document outline needs and still render at the section
3027
+ * scale, and a page can keep exactly one `<h1>` without every other title
3028
+ * shrinking. Every size is a role token; there is no pixel size.
3029
+ *
3030
+ * Renders in the display family (`font-display`) and the heading ink (`fg`),
3031
+ * as the base `h1`–`h4` rules do today, so an `<h5>` at `title-sub` matches an
3032
+ * `<h4>` at `title-sub`.
3033
+ *
3034
+ * Server-safe: no hooks, no client directive, no effects.
3035
+ *
3036
+ * Anatomy: one part, `data-slot="heading"`, which is also where `className`
3037
+ * and `style` land.
3038
+ *
3039
+ * @example
3040
+ * ```tsx
3041
+ * <Heading level={1}>Engagements</Heading>
3042
+ * <Heading level={3} size="title-section">Documents</Heading>
3043
+ * ```
3044
+ *
3045
+ * @experimental New export (W2-13); its size vocabulary may change while
3046
+ * decision D1 (visual source of truth) is open.
3047
+ */
3048
+ declare const Heading: React$1.ForwardRefExoticComponent<HeadingProps & React$1.RefAttributes<HTMLHeadingElement>>;
3049
+
3050
+ /**
3051
+ * The shared vocabulary of the layout primitives (W2-15, target architecture
3052
+ * §16, §22, §23): the gap scale, the alignment words, and the one responsive
3053
+ * shape a layout prop may take.
3054
+ *
3055
+ * Every class this module hands out is a literal in the tables below. Tailwind
3056
+ * compiles a utility only when it can read it from source, so a class built
3057
+ * from string pieces at render time would exist in the DOM and nowhere in
3058
+ * `dist/styles.css`. The tables are the whole set; nothing else is generated.
3059
+ *
3060
+ * The gap utilities read the `stack.gap.*` tokens through the parenthesised
3061
+ * custom-property form (`gap-(--stack-gap-md)`), which is what binds a step to
3062
+ * the token rather than to Tailwind's numeric scale: a density scope or a
3063
+ * consumer preset that re-points `--stack-gap-md` moves every `Stack` with it.
3064
+ */
3065
+ /**
3066
+ * The breakpoints a responsive layout prop may name. They are Tailwind's `sm`,
3067
+ * `md` and `lg` (40 / 48 / 64rem), the same values `breakpoints` in the
3068
+ * `/tokens` entry publishes (W2-10). Only `Stack direction` and the `gap` of
3069
+ * `Stack`/`Inline` are responsive (target architecture §22); nothing else on a
3070
+ * layout primitive takes an object.
3071
+ *
3072
+ * @experimental
3073
+ */
3074
+ type LayoutBreakpoint = "sm" | "md" | "lg";
3075
+ /**
3076
+ * A layout prop value that may change at a breakpoint: either one value, or an
3077
+ * object of values by breakpoint. `base` is what applies below `sm`; when it
3078
+ * is omitted the prop's own default applies there, so
3079
+ * `direction={{ md: "row" }}` reads "a column, a row from `md` up".
3080
+ *
3081
+ * @experimental
3082
+ */
3083
+ type Responsive<T> = T | Partial<Record<"base" | LayoutBreakpoint, T>>;
3084
+ /**
3085
+ * The five gaps the library actually writes (W2-02, `stack.gap.*`): 4 / 6 / 8 /
3086
+ * 12 / 16px, plus `none`. `md` (8px) is the single most-written gap in the
3087
+ * library and the default of both `Stack` and `Inline`.
3088
+ *
3089
+ * @experimental
3090
+ */
3091
+ type LayoutGap = "none" | "xs" | "sm" | "md" | "lg" | "xl";
3092
+ /**
3093
+ * Cross-axis alignment of the children (`align-items`).
3094
+ *
3095
+ * @experimental
3096
+ */
3097
+ type LayoutAlign = "start" | "center" | "end" | "stretch" | "baseline";
3098
+ /**
3099
+ * Main-axis distribution of the children (`justify-content`).
3100
+ *
3101
+ * @experimental
3102
+ */
3103
+ type LayoutJustify = "start" | "center" | "end" | "between" | "around" | "evenly";
3104
+
3105
+ /**
3106
+ * The axis a `Stack` lays its children along.
3107
+ *
3108
+ * @experimental
3109
+ */
3110
+ type StackDirection = "column" | "row";
3111
+
3112
+ /**
3113
+ * Props of `Stack`.
3114
+ *
3115
+ * A layout primitive takes tokenised props only for the things it exists for
3116
+ * — the gap between its children and how they line up — and never arbitrary
3117
+ * style props (target architecture §23). There is no `padding`, `margin`,
3118
+ * `p`/`m`/`px`/`mt`, `bg`, `color`, `width`, `height`, `sx` or `css` here, and
3119
+ * `gap` accepts a scale step, not a number or a length. Spacing *around* a
3120
+ * stack belongs to its parent; a box with padding is a `Surface`. `className`
3121
+ * and `style` land on the root element (§29.1).
3122
+ *
3123
+ * @experimental
3124
+ */
3125
+ interface StackProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
3126
+ /**
3127
+ * The axis the children follow. Responsive: `{ base?, sm?, md?, lg? }`, so
3128
+ * a form row can be a column on a phone and a row from `sm` up.
3129
+ * @default "column"
3130
+ */
3131
+ direction?: Responsive<StackDirection>;
3132
+ /**
3133
+ * The gap between children, as a `stack.gap` step (4 / 6 / 8 / 12 / 16px)
3134
+ * or `none`. Responsive like `direction`.
3135
+ * @default "md"
3136
+ */
3137
+ gap?: Responsive<LayoutGap>;
3138
+ /** Cross-axis alignment (`align-items`). Not responsive. */
3139
+ align?: LayoutAlign;
3140
+ /** Main-axis distribution (`justify-content`). Not responsive. */
3141
+ justify?: LayoutJustify;
3142
+ /** Whether children may wrap onto further lines. Not responsive. */
3143
+ wrap?: boolean;
3144
+ }
3145
+ /**
3146
+ * Stack — the one-dimensional layout primitive (W2-15, target architecture
3147
+ * §23). A flex container that owns the spacing *between* its children through
3148
+ * the `stack.gap` tokens, so siblings never carry outer margins of their own.
3149
+ *
3150
+ * Vertical by default; `direction` may switch to a row, at a breakpoint if
3151
+ * needed. Only `direction` and `gap` are responsive — the deliberately small
3152
+ * exception the architecture makes for layout primitives (§22). For a
3153
+ * horizontal, wrapping row use `Inline`.
3154
+ *
3155
+ * Server-safe: no hooks, no client directive, renders a plain `div` and stamps
3156
+ * `data-slot="stack"`. `asChild` is deferred until the design system has its
3157
+ * own `Slot` in the a11y primitives (the Radix package is a behaviour import
3158
+ * the L1b layer may not make directly).
3159
+ *
3160
+ * @experimental Shipped in Wave 2 as a new export nobody is forced to use; the
3161
+ * prop shapes may still change before the wave's exit review.
3162
+ */
3163
+ declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLDivElement>>;
3164
+
3165
+ /**
3166
+ * Props of `Inline`.
3167
+ *
3168
+ * The same discipline as `StackProps`: tokenised props for gap and alignment
3169
+ * only, no arbitrary style props (`padding`, `margin`, `p`/`m`/`px`/`mt`,
3170
+ * `bg`, `color`, `width`, `height`, `sx`, `css`), and `gap` is a scale step.
3171
+ * `className` and `style` land on the root element (§29.1).
3172
+ *
3173
+ * @experimental
3174
+ */
3175
+ interface InlineProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
3176
+ /**
3177
+ * The gap between children, as a `stack.gap` step (4 / 6 / 8 / 12 / 16px)
3178
+ * or `none`. Responsive: `{ base?, sm?, md?, lg? }`.
3179
+ * @default "md"
3180
+ */
3181
+ gap?: Responsive<LayoutGap>;
3182
+ /**
3183
+ * Cross-axis alignment (`align-items`). Not responsive.
3184
+ * @default "center"
3185
+ */
3186
+ align?: LayoutAlign;
3187
+ /** Main-axis distribution (`justify-content`). Not responsive. */
3188
+ justify?: LayoutJustify;
3189
+ /**
3190
+ * Whether children may wrap onto further lines. Not responsive.
3191
+ * @default true
3192
+ */
3193
+ wrap?: boolean;
3194
+ }
3195
+ /**
3196
+ * Inline — the horizontal, wrapping row (W2-15, target architecture §23): a
3197
+ * label beside a badge, a row of chips, the buttons of a toolbar. Children are
3198
+ * centred on the cross axis and wrap by default, which is what a row of mixed
3199
+ * heights and unknown count wants; `Stack direction="row"` is the row that
3200
+ * does not wrap and stretches.
3201
+ *
3202
+ * Only `gap` is responsive (§22). Server-safe: no hooks, no client directive,
3203
+ * renders a plain `div` and stamps `data-slot="inline"`. `asChild` is deferred
3204
+ * with `Stack`'s.
3205
+ *
3206
+ * @experimental Shipped in Wave 2 as a new export nobody is forced to use; the
3207
+ * prop shapes may still change before the wave's exit review.
3208
+ */
3209
+ declare const Inline: React$1.ForwardRefExoticComponent<InlineProps & React$1.RefAttributes<HTMLDivElement>>;
3210
+
3211
+ /**
3212
+ * Inner padding of a `Surface`, as a `surface.padding` role (W2-02): 16 / 20 /
3213
+ * 24px — the three card and panel paddings the library and its consumers
3214
+ * already write — or `none` for a surface whose content pads itself (a table,
3215
+ * an image, a list with its own row padding).
3216
+ *
3217
+ * @experimental
3218
+ */
3219
+ type SurfacePadding = "none" | "sm" | "md" | "lg";
3220
+ /**
3221
+ * Corner radius of a `Surface`, as a radius role (W2-07, target architecture
3222
+ * §18): `surface` for cards, dialogs and sheets, `surface-sm` for popovers,
3223
+ * tooltips, toasts and small cards, or `none`. Control and badge radii are not
3224
+ * offered: a surface is never a control.
3225
+ *
3226
+ * @experimental
3227
+ */
3228
+ type SurfaceRadius = "none" | "surface-sm" | "surface";
3229
+ /**
3230
+ * Elevation of a `Surface`, as an elevation role (W2-08, target architecture
3231
+ * §19): `flat` (resting, border-led — today's `Card`), `raised` (resting
3232
+ * lift), `floating` (anchored transient surfaces), `overlay` (modal surfaces),
3233
+ * or `none` for no shadow at all — which is what the hand-rolled card boxes in
3234
+ * every product render, and the default. `flat` is kept distinct from `none`
3235
+ * because today's `flat` role still aliases the hairline `shadow-quiet` (gated
3236
+ * on D1); when D1 lands the two coincide and nothing here changes.
3237
+ *
3238
+ * @experimental
3239
+ */
3240
+ type SurfaceElevation = "none" | "flat" | "raised" | "floating" | "overlay";
3241
+
3242
+ /**
3243
+ * Props of `Surface`.
3244
+ *
3245
+ * Tokenised props for exactly the three things a surface is (padding, radius,
3246
+ * elevation) and nothing else: no `gap`/`align`/`direction` (that is a `Stack`
3247
+ * inside it), no `bg`, `border`, `shadow`, `rounded`, `p`/`m`/`px`/`mt`,
3248
+ * `color`, `width`, `height`, `sx` or `css`, and no numeric or length values.
3249
+ * `className` and `style` land on the root element (§29.1).
3250
+ *
3251
+ * @experimental
3252
+ */
3253
+ interface SurfaceProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
3254
+ /**
3255
+ * Inner padding, as a `surface.padding` role.
3256
+ * @default "sm"
3257
+ */
3258
+ padding?: SurfacePadding;
3259
+ /**
3260
+ * Corner radius, as a radius role.
3261
+ * @default "surface"
3262
+ */
3263
+ radius?: SurfaceRadius;
3264
+ /**
3265
+ * Shadow, as an elevation role.
3266
+ * @default "none"
3267
+ */
3268
+ elevation?: SurfaceElevation;
3269
+ }
3270
+ /**
3271
+ * Surface — the bordered box content sits on (W2-16, target architecture §23).
3272
+ * It is the primitive behind the 367 (Pro) / 119 (Portal) / 96 (Tax)
3273
+ * hand-rolled card boxes of the consumer usage audit (the class string is
3274
+ * `HAND_ROLLED_CARD` in the stories; it is not spelled here because Tailwind
3275
+ * would compile it from this comment) and the `.surface` helper class: with no
3276
+ * props it renders that box — surface background, 1px rule border,
3277
+ * `radius.surface`, `surface.padding.sm`, no shadow — and every knob is a
3278
+ * role, never a value. `Card` (W3-17) is built on it and adds anatomy.
3279
+ *
3280
+ * Deferred, deliberately:
3281
+ * - `interactive`: a clickable surface renders through `Pressable` (W3-03) so
3282
+ * it gets keyboard activation, `data-pressed` and a focus ring for free; a
3283
+ * `cursor-pointer` hover treatment here would be a click target with no
3284
+ * keyboard semantics. Until then, put a `Button asChild` or a link inside
3285
+ * the surface.
3286
+ * - `asChild`: waits for the design system's own `Slot` (a11y primitives).
3287
+ *
3288
+ * Server-safe: no hooks, no client directive, renders a plain `div` and stamps
3289
+ * `data-slot="surface"`.
3290
+ *
3291
+ * Under a consumer's shadcn theme the hand-rolled box and this primitive differ
3292
+ * on purpose in two places the parity story makes visible: the products'
3293
+ * `rounded-xl` is `--radius` + 4px (16px) where `radius.surface` is 12px, and
3294
+ * their `--border` is not the design system's rule colour. Both are decision
3295
+ * D1 (target architecture §18); `Surface` follows the roles.
3296
+ *
3297
+ * @experimental Shipped in Wave 2 as a new export nobody is forced to use; the
3298
+ * prop shapes may still change before the wave's exit review.
3299
+ */
3300
+ declare const Surface: React$1.ForwardRefExoticComponent<SurfaceProps & React$1.RefAttributes<HTMLDivElement>>;
3301
+
2550
3302
  /**
2551
3303
  * AgreementViewer — the chrome + navigation shell for a multi-step, branded
2552
3304
  * agreement / proposal (the "Signed Agreement Viewer"). It owns the header,
@@ -5426,6 +6178,11 @@ interface EyebrowProps extends React.HTMLAttributes<HTMLDivElement> {
5426
6178
  }
5427
6179
  declare const Eyebrow: React$1.ForwardRefExoticComponent<EyebrowProps & React$1.RefAttributes<HTMLDivElement>>;
5428
6180
  type KbdHintProps = React.HTMLAttributes<HTMLElement>;
6181
+ /**
6182
+ * The flat 20px kbd badge. Since W2-14 it is `Kbd` with `variant="flat"`,
6183
+ * which renders the same element and the same classes; prefer `Kbd` in new
6184
+ * code (target architecture §15.2 consolidates `KbdHint` into it).
6185
+ */
5429
6186
  declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.RefAttributes<HTMLElement>>;
5430
6187
 
5431
6188
  /**
@@ -5746,6 +6503,29 @@ declare const StickyStackSectionHeader: React$1.ForwardRefExoticComponent<Sticky
5746
6503
 
5747
6504
  declare function cn(...inputs: ClassValue[]): string;
5748
6505
 
6506
+ /**
6507
+ * Asset base path — where the design system's own static artwork is served from.
6508
+ *
6509
+ * Brand art ships in `public/brand/` and is addressed root-relative
6510
+ * (`/brand/assure-pro.svg`). That is correct in a consumer app served from the
6511
+ * domain root, and wrong anywhere the host serves from a subpath: this repo's
6512
+ * Storybook lives at `/design-system/` on GitHub Pages, where a root-relative
6513
+ * request leaves the site entirely and 404s.
6514
+ *
6515
+ * Consumers need do nothing. The default base is `/`, which reproduces today's
6516
+ * root-relative URLs byte for byte. A host on a subpath calls
6517
+ * `setAssetBasePath` once before first render.
6518
+ */
6519
+ /**
6520
+ * Point brand artwork at `base`. Accepts it with or without surrounding
6521
+ * slashes; empty, nullish and `"/"` all mean the domain root.
6522
+ */
6523
+ declare function setAssetBasePath(base: string | null | undefined): void;
6524
+ /** The configured base, always with a single trailing slash. */
6525
+ declare function getAssetBasePath(): string;
6526
+ /** Resolve a root-relative design system asset against the configured base. */
6527
+ declare function assetPath(path: string): string;
6528
+
5749
6529
  /**
5750
6530
  * Brand scope — ambient product theming.
5751
6531
  *
@@ -5800,4 +6580,4 @@ interface BrandScopeProps extends React.HTMLAttributes<HTMLDivElement> {
5800
6580
  */
5801
6581
  declare const BrandScope: React$1.ForwardRefExoticComponent<BrandScopeProps & React$1.RefAttributes<HTMLDivElement>>;
5802
6582
 
5803
- export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, type AgreementFirm, AgreementPaneHeading, type AgreementPaneHeadingProps, type AgreementStatus, type AgreementStep, AgreementViewer, type AgreementViewerProps, AiDraftCard, type AiDraftCardProps, type AiDraftState, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, BRAND_PRODUCTS, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, type BrandProduct, BrandScope, type BrandScopeProps, BrandScopeProvider, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, type ButtonSize, type ButtonVariant, COUNTRY_CODES, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, type CellValue, type ChannelTabItem, ChannelTabs, type ChannelTabsProps, type ChannelTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, Dash, DashGrid, type DashGridProps, type DashWidget, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, type DataTableViewSelection, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, type DisplayMenuOption, type DisplayMenuProps, type DisplayMenuSection, DocumentChecklist, type DocumentChecklistFile, type DocumentChecklistItem, type DocumentChecklistProps, type DocumentChecklistStatus, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileLine, type DocumentFileLineProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentList, type DocumentListProps, DocumentListSection, type DocumentListSectionProps, type DocumentRequestActivityKind, type DocumentRequestAssigneeOption, DocumentRequestCard, type DocumentRequestCardProps, DocumentRequestDetail, type DocumentRequestDetailActivityEvent, type DocumentRequestDetailComment, type DocumentRequestDetailDoc, type DocumentRequestDetailProps, type DocumentRequestDetailTab, DocumentRequestField, type DocumentRequestFieldProps, type DocumentRequestItemSummary, type DocumentRequestRequestedItem, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRequestUpload, type DocumentRequestUploadFile, type DocumentRequestUploadProps, DocumentRow, type DocumentRowProps, type DocumentSource, DocumentSourceFilter, type DocumentSourceFilterProps, type DocumentSourceFilterValue, DocumentSourceTag, type DocumentSourceTagProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, type EmailMessageCardProps, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, type GridColumn, type GridInputType, type GridProps, type GridRow, type GridValue, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, type LinkButtonProps$1 as LinkButtonProps, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MasterDetailLayout, type MasterDetailLayoutProps, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, ProposalAddOn, type ProposalAddOnProps, type ProposalBillingMode, type ProposalBillingRow, ProposalBillingTerms, type ProposalBillingTermsProps, ProposalConsentGate, type ProposalConsentGateProps, ProposalCustomPage, type ProposalCustomPageKind, type ProposalCustomPageProps, ProposalNote, type ProposalNoteProps, ProposalPackageCard, type ProposalPackageCardProps, type ProposalPackageMode, ProposalPaymentCapture, type ProposalPaymentCaptureProps, ProposalPricingSummary, type ProposalPricingSummaryProps, ProposalServiceRow, type ProposalServiceRowProps, ProposalSignatureBlock, type ProposalSignatureBlockProps, type ProposalSigner, ProposalSignerList, type ProposalSignerListProps, type ProposalSignerStatus, type QuestionAddressValue, type QuestionFileValue, type QuestionHelp, type QuestionLabeledColumn, type QuestionLabeledRow, type QuestionLabeledValue, type QuestionNameValue, type QuestionOption, type QuestionTableColumn, type QuestionTableRow, type QuestionType, QuestionnairePanel, type QuestionnairePanelGroup, type QuestionnairePanelProps, type QuestionnairePanelSection, type QuestionnairePanelStatus, Questions, type QuestionsProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherExtra, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, SignatureEditor, type SignatureEditorProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, SpreadsheetPreview, type SpreadsheetPreviewProps, StackedBarChart, type StackedBarChartProps, type StackedBarDatum, type StackedBarSeries, StagePill, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StickyStack, StickyStackLayer, type StickyStackLayerProps, type StickyStackProps, StickyStackSectionHeader, type StickyStackSectionHeaderProps, StickyStackSticky, type StickyStackStickyProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowData, type TableRowProps, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, type ToastAction, type ToastContextValue, type ToastOptions, ToastProvider, type ToastVariant, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
6583
+ export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, type AgreementFirm, AgreementPaneHeading, type AgreementPaneHeadingProps, type AgreementStatus, type AgreementStep, AgreementViewer, type AgreementViewerProps, AiDraftCard, type AiDraftCardProps, type AiDraftState, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, type AlertDialogSlot, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, BRAND_PRODUCTS, Badge, type BadgeProps, type BadgeSlot, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, type BrandProduct, BrandScope, type BrandScopeProps, BrandScopeProvider, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, type ButtonSize, type ButtonSlot, type ButtonVariant, COUNTRY_CODES, Calendar, type CalendarCaptionLayout, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, type CellValue, type ChannelTabItem, ChannelTabs, type ChannelTabsProps, type ChannelTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, type CheckboxSlot, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Code, type CodeProps, type CodeSlot, type CodeVariant, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, type ContextMenuSlot, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, Dash, DashGrid, type DashGridProps, type DashWidget, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, type DataTableSlot, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, type DataTableViewSelection, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, type DialogSlot, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, type DisplayMenuOption, type DisplayMenuProps, type DisplayMenuSection, DocumentChecklist, type DocumentChecklistFile, type DocumentChecklistItem, type DocumentChecklistProps, type DocumentChecklistStatus, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileLine, type DocumentFileLineProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentList, type DocumentListProps, DocumentListSection, type DocumentListSectionProps, type DocumentRequestActivityKind, type DocumentRequestAssigneeOption, DocumentRequestCard, type DocumentRequestCardProps, DocumentRequestDetail, type DocumentRequestDetailActivityEvent, type DocumentRequestDetailComment, type DocumentRequestDetailDoc, type DocumentRequestDetailProps, type DocumentRequestDetailTab, DocumentRequestField, type DocumentRequestFieldProps, type DocumentRequestItemSummary, type DocumentRequestRequestedItem, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRequestUpload, type DocumentRequestUploadFile, type DocumentRequestUploadProps, DocumentRow, type DocumentRowProps, type DocumentSource, DocumentSourceFilter, type DocumentSourceFilterProps, type DocumentSourceFilterValue, DocumentSourceTag, type DocumentSourceTagProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, type DropdownMenuSlot, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, type EmailMessageCardProps, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, type FileUploadSlot, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, type GridColumn, type GridInputType, type GridProps, type GridRow, type GridValue, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingSlot, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Inline, type InlineProps, type InlineSlot, Input, type InputSlot, type InputVariants, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, Kbd, type KbdGlyph, KbdHint, type KbdHintProps, type KbdProps, type KbdSlot, type KbdVariant, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, type LabelSlot, LandmarkIcon, type LayoutAlign, type LayoutBreakpoint, LayoutDashboardIcon, type LayoutGap, LayoutGridIcon, type LayoutJustify, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, type LinkButtonProps$1 as LinkButtonProps, type LinkButtonSlot, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MasterDetailLayout, type MasterDetailLayoutProps, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, type PaginationSlot, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, type PopoverSlot, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, ProposalAddOn, type ProposalAddOnProps, type ProposalBillingMode, type ProposalBillingRow, ProposalBillingTerms, type ProposalBillingTermsProps, ProposalConsentGate, type ProposalConsentGateProps, ProposalCustomPage, type ProposalCustomPageKind, type ProposalCustomPageProps, ProposalNote, type ProposalNoteProps, ProposalPackageCard, type ProposalPackageCardProps, type ProposalPackageMode, ProposalPaymentCapture, type ProposalPaymentCaptureProps, ProposalPricingSummary, type ProposalPricingSummaryProps, ProposalServiceRow, type ProposalServiceRowProps, ProposalSignatureBlock, type ProposalSignatureBlockProps, type ProposalSigner, ProposalSignerList, type ProposalSignerListProps, type ProposalSignerStatus, type QuestionAddressValue, type QuestionFileValue, type QuestionHelp, type QuestionLabeledColumn, type QuestionLabeledRow, type QuestionLabeledValue, type QuestionNameValue, type QuestionOption, type QuestionTableColumn, type QuestionTableRow, type QuestionType, QuestionnairePanel, type QuestionnairePanelGroup, type QuestionnairePanelProps, type QuestionnairePanelSection, type QuestionnairePanelStatus, Questions, type QuestionsProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RadioGroupSlot, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, type Responsive, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputSlot, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSlot, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, type SheetSlot, SheetTitle, SheetTrigger, Shell, type ShellProps, type ShellSlot, ShieldIcon, SideDrawer, type SideDrawerSlot, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherExtra, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, type SidebarBrandSwitcherSlot, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarSlot, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, SignatureEditor, type SignatureEditorProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, SpreadsheetPreview, type SpreadsheetPreviewProps, Stack, type StackDirection, type StackProps, type StackSlot, StackedBarChart, type StackedBarChartProps, type StackedBarDatum, type StackedBarSeries, StagePill, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StickyStack, StickyStackLayer, type StickyStackLayerProps, type StickyStackProps, StickyStackSectionHeader, type StickyStackSectionHeaderProps, StickyStackSticky, type StickyStackStickyProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Surface, type SurfaceElevation, type SurfacePadding, type SurfaceProps, type SurfaceRadius, type SurfaceSlot, Switch, type SwitchSlot, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowData, type TableRowProps, type TableSlot, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Text, type TextColor, type TextProps, type TextSize, type TextSlot, type TextWeight, Textarea, type TextareaSlot, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, type ToastAction, type ToastContextValue, type ToastOptions, ToastProvider, type ToastSlot, type ToastVariant, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, type TooltipSlot, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, assetPath, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getAssetBasePath, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, setAssetBasePath, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };