@assure-one/design-system 1.30.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -36,6 +36,271 @@ 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
+ * `Button` parts, stamped as `data-slot="button[-<part>]"` (ADR-008).
41
+ * States on the root: `data-variant`, `data-size`, `data-disabled`, and the
42
+ * pre-existing `data-loading="true"`.
43
+ *
44
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
45
+ */
46
+ type ButtonSlot = "root" | "icon-start" | "icon-end" | "spinner";
47
+ /**
48
+ * `LinkButton` parts, stamped as `data-slot="link-button[-<part>]"` (ADR-008).
49
+ * States on the root: `data-variant`, `data-size`.
50
+ *
51
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
52
+ */
53
+ type LinkButtonSlot = "root" | "icon-start" | "icon-end";
54
+ /**
55
+ * `Badge` parts, stamped as `data-slot="badge[-<part>]"` (ADR-008).
56
+ * States on the root: `data-variant`, `data-size`.
57
+ *
58
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
59
+ */
60
+ type BadgeSlot = "root" | "dot" | "icon";
61
+ /**
62
+ * `Input` parts, stamped as `data-slot="input[-<part>]"` (ADR-008).
63
+ * `root` is the `<input>` itself — the control frame, and the element
64
+ * `className` lands on (`C-INPUT-CLASSNAME`). The wrappers around it are
65
+ * private (target architecture §29.2).
66
+ * States on the root: `data-variant`, `data-size`, `data-disabled`,
67
+ * `data-invalid`.
68
+ *
69
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
70
+ */
71
+ type InputSlot = "root" | "label" | "icon-start" | "icon-end" | "password-toggle" | "error";
72
+ /**
73
+ * `Textarea` parts, stamped as `data-slot="textarea[-<part>]"` (ADR-008).
74
+ * `root` is the `<textarea>`. States on the root: `data-variant`, `data-size`,
75
+ * `data-disabled`, `data-invalid`.
76
+ *
77
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
78
+ */
79
+ type TextareaSlot = "root" | "label" | "error" | "count";
80
+ /**
81
+ * `SearchInput` parts, stamped as `data-slot="search-input[-<part>]"`
82
+ * (ADR-008). `root` is the positioning wrapper `className` lands on;
83
+ * `control` is the `<input type="search">`.
84
+ * States on the root: `data-size`, `data-disabled`.
85
+ *
86
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
87
+ */
88
+ type SearchInputSlot = "root" | "control" | "icon" | "clear";
89
+ /**
90
+ * `Select` parts, stamped as `data-slot="select-<part>"` (ADR-008). There is
91
+ * no `root`: `SelectRoot` renders no element. Radix's own `data-state`,
92
+ * `data-disabled`, `data-placeholder` and `data-highlighted` are left as they
93
+ * are (`P-DATA-STATE`).
94
+ *
95
+ * `SelectValue` and `SelectGroup` are re-exported Radix components with no
96
+ * wrapper of ours, so they carry no slot yet; W4-08 gives them one along with
97
+ * `classNames.value` (`C-DOM-10`).
98
+ *
99
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
100
+ */
101
+ type SelectSlot = "trigger" | "icon" | "content" | "viewport" | "item" | "item-indicator" | "label" | "separator" | "scroll-up-button" | "scroll-down-button";
102
+ /**
103
+ * `Checkbox` parts, stamped as `data-slot="checkbox[-<part>]"` (ADR-008).
104
+ * `root` is the Radix root — the box, and the element `className` lands on.
105
+ * Radix's `data-state` (`checked` / `unchecked` / `indeterminate`) is left as
106
+ * it is; `data-shape` is not part of the state vocabulary, so the shape stays
107
+ * a class until W4-13.
108
+ *
109
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
110
+ */
111
+ type CheckboxSlot = "root" | "indicator" | "label";
112
+ /**
113
+ * `RadioGroup` / `RadioGroupItem` parts, stamped as
114
+ * `data-slot="radio-group[-<part>]"` (ADR-008). `root` is the group,
115
+ * `item` the radio. Radix's `data-state` is left as it is.
116
+ *
117
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
118
+ */
119
+ type RadioGroupSlot = "root" | "item" | "indicator" | "label";
120
+ /**
121
+ * `Switch` parts, stamped as `data-slot="switch[-<part>]"` (ADR-008).
122
+ * `root` is the Radix root — the track, and the element `className` lands on;
123
+ * the label wrapper is a private wrapper. States on the root: `data-size`.
124
+ *
125
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
126
+ */
127
+ type SwitchSlot = "root" | "thumb" | "label";
128
+ /**
129
+ * `Label` parts, stamped as `data-slot="label[-<part>]"` (ADR-008).
130
+ * `required` is the asterisk marker.
131
+ *
132
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
133
+ */
134
+ type LabelSlot = "root" | "required";
135
+ /**
136
+ * `FileUpload` parts, stamped as `data-slot="file-upload[-<part>]"` (ADR-008).
137
+ * `dropzone` is the `<label>` that `C-DOM-04` freezes and that
138
+ * `[&_[data-slot=file-upload-dropzone]]` replaces (target architecture §29.4).
139
+ * States: `data-disabled` and `data-invalid` on the root, `data-disabled` and
140
+ * `data-state="drag-over"` on the dropzone.
141
+ *
142
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
143
+ */
144
+ type FileUploadSlot = "root" | "dropzone" | "input" | "error";
145
+ /**
146
+ * `Dialog` parts, stamped as `data-slot="dialog-<part>"` (ADR-008). There is
147
+ * no `root`: `Dialog` is Radix's non-rendering root. `close` is stamped on
148
+ * both the built-in close button and `DialogClose`; they are the same part —
149
+ * a control that dismisses the dialog. States: `data-size` on the content.
150
+ * Radix's `data-state` is left as it is (`P-DATA-STATE`).
151
+ *
152
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
153
+ */
154
+ type DialogSlot = "overlay" | "content" | "header" | "title" | "description" | "footer" | "close";
155
+ /**
156
+ * `AlertDialog` parts, stamped as `data-slot="alert-dialog-<part>"`
157
+ * (ADR-008). No `root` — Radix's root renders no element.
158
+ *
159
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
160
+ */
161
+ type AlertDialogSlot = "overlay" | "content" | "header" | "title" | "description" | "footer" | "action" | "cancel";
162
+ /**
163
+ * `Sheet` parts, stamped as `data-slot="sheet-<part>"` (ADR-008).
164
+ * States: `data-size` on the content, carrying today's `width` preset — the
165
+ * prop `C-SHEET-WIDTH` renames to `size` in W5-07. The `side` is not in the
166
+ * §29.2 vocabulary and stays a class.
167
+ *
168
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
169
+ */
170
+ type SheetSlot = "overlay" | "content" | "header" | "title" | "description" | "footer" | "close";
171
+ /**
172
+ * `SideDrawer` parts, stamped as `data-slot="side-drawer[-<part>]"`
173
+ * (ADR-008). `root` is the panel. The screen-reader-only Radix title that the
174
+ * panel always renders is an accessibility fallback, not a part, so it carries
175
+ * no slot. States: `data-size` on the root, carrying the `width` preset.
176
+ *
177
+ * `SideDrawer` itself is `C-SIDEDRAWER` and is replaced by `Sheet` in W5-08;
178
+ * the slots exist so the two can be styled the same way in the meantime.
179
+ *
180
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
181
+ */
182
+ type SideDrawerSlot = "overlay" | "root" | "header" | "heading" | "subtitle" | "close" | "body" | "footer";
183
+ /**
184
+ * `Popover` parts, stamped as `data-slot="popover-content"` (ADR-008).
185
+ * `Popover`, `PopoverTrigger`, `PopoverAnchor` and `PopoverClose` are bare
186
+ * Radix re-exports, so the content is the only part we render.
187
+ *
188
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
189
+ */
190
+ type PopoverSlot = "content";
191
+ /**
192
+ * `DropdownMenu` parts, stamped as `data-slot="dropdown-menu-<part>"`
193
+ * (ADR-008). No `root`, no `trigger`: both are bare Radix re-exports.
194
+ * `destructive` items get no `data-intent` yet — W3-02 defines the intent
195
+ * values, and this task does not invent them.
196
+ *
197
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
198
+ */
199
+ type DropdownMenuSlot = "content" | "item" | "checkbox-item" | "radio-item" | "item-indicator" | "label" | "separator" | "shortcut" | "sub-trigger" | "sub-content";
200
+ /**
201
+ * `ContextMenu` parts, stamped as `data-slot="context-menu-<part>"`
202
+ * (ADR-008). The same part names as `DropdownMenu`, which is what makes the
203
+ * shared `Menu` internals of W5 a rename-free change for consumers.
204
+ *
205
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
206
+ */
207
+ type ContextMenuSlot = "content" | "item" | "checkbox-item" | "radio-item" | "item-indicator" | "label" | "separator" | "shortcut" | "sub-trigger" | "sub-content";
208
+ /**
209
+ * `Tooltip` parts, stamped as `data-slot="tooltip-content"` (ADR-008).
210
+ * `TooltipTrigger` is a bare Radix re-export.
211
+ *
212
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
213
+ */
214
+ type TooltipSlot = "content";
215
+ /**
216
+ * `Toast` parts, stamped as `data-slot="toast[-<part>]"` (ADR-008).
217
+ * `region` is the live region that `C-TOAST-ARIALABEL` currently locates by
218
+ * `aria-label="Notifications"`; `data-slot="toast-region"` is the replacement
219
+ * that guard moves to (W5-15). States: `data-variant` on the root; its
220
+ * `data-state` (`open` / `closed`) already existed.
221
+ *
222
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
223
+ */
224
+ type ToastSlot = "region" | "root" | "icon" | "title" | "description" | "action" | "close";
225
+ /**
226
+ * `Table` parts, stamped as `data-slot="table[-<part>]"` (ADR-008).
227
+ * `root` is the `<table>` — the element `className` lands on; `wrapper` is the
228
+ * overflow container that `wrapperClassName` styles today and
229
+ * `classNames.wrapper` replaces (`C-CLASSNAME-PROPS`). `header` is `<thead>`
230
+ * and `head` is a `<th>`, matching the `TableHeader` / `TableHead` component
231
+ * names. Native table semantics are permanent (`P-NATIVE-TABLE`).
232
+ *
233
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
234
+ */
235
+ type TableSlot = "root" | "wrapper" | "header" | "body" | "footer" | "row" | "head" | "cell" | "caption";
236
+ /**
237
+ * `DataTable*` parts, stamped as `data-slot="data-table[-<part>]"` (ADR-008).
238
+ * These are `C-DT-PARTS`, the parallel copy of `Table*` that W6-03 folds back
239
+ * in; the part names deliberately match `table`'s so that fold is a no-op for
240
+ * a consumer's selectors (`header` = `<thead>` via `DataTableHead`, `head` =
241
+ * the `<th>` via `DataTableHeader`).
242
+ *
243
+ * `head-button` is the sortable header's `<button>` that `C-DOM-13` freezes.
244
+ * The four cell components share one `cell` part and are told apart by
245
+ * `data-variant` (`name`, `mono`, `id`, `due`).
246
+ *
247
+ * `DataTableSearch` and `DataTablePagination` render an `Input` and a
248
+ * `Pagination` with no wrapper of their own, so they carry those components'
249
+ * slots (`data-slot="input"`, `data-slot="pagination"`) rather than one of
250
+ * their own — stamping over it would delete the inner component's part name.
251
+ * W6-06 gives the search its own `classNames.search` (`C-DOM-18`).
252
+ *
253
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
254
+ */
255
+ type DataTableSlot = "root" | "toolbar" | "spacer" | "results-count" | "header" | "body" | "row" | "head" | "head-button" | "head-indicator" | "cell" | "checkbox-cell";
256
+ /**
257
+ * `Pagination` parts, stamped as `data-slot="pagination[-<part>]"` (ADR-008).
258
+ * `root` is the `<nav>`. The current page carries `data-selected` alongside
259
+ * its existing `aria-current="page"`.
260
+ *
261
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
262
+ */
263
+ type PaginationSlot = "root" | "label" | "pages" | "previous" | "next" | "page" | "ellipsis";
264
+ /**
265
+ * `Shell` / `Main` / `Content` parts, stamped as `data-slot="shell[-<part>]"`
266
+ * (ADR-008). Three elements, three names: the app frame, the column beside the
267
+ * sidebar and the scrolling page region.
268
+ *
269
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
270
+ */
271
+ type ShellSlot = "root" | "main" | "content";
272
+ /**
273
+ * `Sidebar` and its parts, stamped as `data-slot="sidebar[-<part>]"`
274
+ * (ADR-008). This is the anatomy `C-DOM-06` is waiting for: PRO and TAX carry
275
+ * identical copies of `group-data-[labels=hide]/sidebar:*` and
276
+ * `[&>div:first-child]` overrides because there is no name for
277
+ * `section-header`, `link-label` or `user` today.
278
+ *
279
+ * `group/sidebar`, `data-labels`, `data-state`, `data-peek`, `data-overlay`,
280
+ * `data-collapsible` and `data-variant` on the root are **unchanged** — they
281
+ * are the frozen part of `C-DOM-06`, and no state attribute is re-stamped over
282
+ * them. W7-03 adds `data-collapsed` to the slots and the `SidebarSection`
283
+ * header slot; this change only names the parts.
284
+ *
285
+ * `group` is a `SidebarLinkGroup`: `group-link` is its activating row,
286
+ * `group-trigger` its chevron and `group-content` the collapsible body.
287
+ * The `tone` props on `SidebarSection` and `SidebarLinkBadge` get no
288
+ * `data-intent`: they are `C-TONE`, and W3-21 defines the intent values.
289
+ *
290
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
291
+ */
292
+ 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";
293
+ /**
294
+ * `SidebarBrandSwitcher` parts, stamped as
295
+ * `data-slot="sidebar-brand-switcher[-<part>]"` (ADR-008). Its menu is a
296
+ * `DropdownMenuContent` and keeps that component's slots; its `trailing`
297
+ * children are rendered bare, with no wrapper of ours to name (W7-03 gives
298
+ * them one).
299
+ *
300
+ * @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
301
+ */
302
+ type SidebarBrandSwitcherSlot = "root" | "trigger" | "icon";
303
+
39
304
  declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
40
305
  declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
41
306
  declare const AlertDialogPortal: React$1.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
@@ -229,7 +494,7 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
229
494
  * - ghost → transparent, hover:bg-bg-2
230
495
  * - outline → bordered surface
231
496
  * - link → text-accent (cyan) with underline-on-hover
232
- * - accent → bg-accent (cyan CTA)
497
+ * - accent → stable suite-level cyan CTA (does not follow product scope)
233
498
  * - dashed → full-bleed "+ Add another" CTA, transparent fill + dashed border
234
499
  *
235
500
  * Control text scale (shared across the button-family control primitives
@@ -240,8 +505,11 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
240
505
  */
241
506
  declare const buttonVariants: (props?: ({
242
507
  variant?: "link" | "success" | "destructive" | "accent" | "primary" | "secondary" | "ghost" | "outline" | "dashed" | null | undefined;
243
- size?: "sm" | "md" | "lg" | "icon-xs" | "icon-sm" | "icon" | null | undefined;
508
+ size?: "icon" | "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | "icon-xs" | "icon-sm" | null | undefined;
244
509
  } & class_variance_authority_types.ClassProp) | undefined) => string;
510
+ type ButtonVariant = NonNullable<VariantProps<typeof buttonVariants>["variant"]>;
511
+ type ButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]>;
512
+
245
513
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
246
514
  /** Render as the child element via Radix `Slot` (shadcn pattern). */
247
515
  asChild?: boolean;
@@ -251,6 +519,7 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
251
519
  }
252
520
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
253
521
 
522
+ type CalendarCaptionLayout = "dropdown" | "label";
254
523
  type CalendarHighlightColor = "primary" | "success" | "warning" | "destructive";
255
524
  interface CalendarHighlight {
256
525
  date: Date;
@@ -264,7 +533,7 @@ interface CalendarProps extends Omit<DayPickerProps, "mode" | "selected" | "onSe
264
533
  maxDate?: Date;
265
534
  className?: string;
266
535
  }
267
- declare function Calendar({ selected, onSelect, highlights, minDate, maxDate, className, classNames, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
536
+ declare function Calendar({ selected, onSelect, highlights, minDate, maxDate, className, classNames, captionLayout, navLayout, startMonth, endMonth, components, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
268
537
  declare namespace Calendar {
269
538
  var displayName: string;
270
539
  }
@@ -305,7 +574,7 @@ declare const CardAction: React$1.ForwardRefExoticComponent<React$1.HTMLAttribut
305
574
  * neutral → --color-fg-3
306
575
  */
307
576
  declare const categoryTagVariants: (props?: ({
308
- tone?: "neutral" | "brand" | "audit" | "books" | "tax" | null | undefined;
577
+ tone?: "brand" | "neutral" | "audit" | "books" | "tax" | null | undefined;
309
578
  } & class_variance_authority_types.ClassProp) | undefined) => string;
310
579
  type CategoryTone = NonNullable<VariantProps<typeof categoryTagVariants>["tone"]>;
311
580
  interface CategoryTagProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof categoryTagVariants> {
@@ -527,6 +796,10 @@ interface DatePickerProps {
527
796
  * start so the calendar opens beneath the visible glyph.
528
797
  */
529
798
  iconPosition?: "left" | "right";
799
+ /** Day-mode caption style. Default `"dropdown"` (Month + Year selects). */
800
+ captionLayout?: CalendarCaptionLayout;
801
+ /** Extra classes for the visible text input (merged last). */
802
+ inputClassName?: string;
530
803
  }
531
804
 
532
805
  declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<HTMLInputElement>>;
@@ -553,6 +826,8 @@ interface DateRangePickerProps {
553
826
  /** Calendar glyph position inside the trigger. Default `"right"`. */
554
827
  iconPosition?: "left" | "right";
555
828
  "aria-label"?: string;
829
+ /** Month caption style. Default `"dropdown"` (Month + Year selects). */
830
+ captionLayout?: CalendarCaptionLayout;
556
831
  }
557
832
  declare const DateRangePicker: React$1.ForwardRefExoticComponent<DateRangePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
558
833
 
@@ -1047,7 +1322,7 @@ declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.
1047
1322
  */
1048
1323
  declare const inputVariants: (props?: ({
1049
1324
  variant?: "ghost" | "default" | null | undefined;
1050
- inputSize?: "sm" | "md" | "lg" | null | undefined;
1325
+ inputSize?: "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | null | undefined;
1051
1326
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1052
1327
  type InputVariants = VariantProps<typeof inputVariants>;
1053
1328
  interface InputProps$1 extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size">, InputVariants {
@@ -1100,8 +1375,6 @@ interface LabelProps extends React$1.ComponentPropsWithoutRef<typeof LabelPrimit
1100
1375
  }
1101
1376
  declare const Label: React$1.ForwardRefExoticComponent<LabelProps & React$1.RefAttributes<HTMLLabelElement>>;
1102
1377
 
1103
- type ButtonVariant = "primary" | "secondary" | "destructive" | "success" | "ghost" | "outline" | "link" | "accent" | "dashed";
1104
- type ButtonSize = "sm" | "md" | "lg";
1105
1378
  interface LinkButtonProps$1 extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> {
1106
1379
  href: string;
1107
1380
  variant?: ButtonVariant;
@@ -1324,14 +1597,6 @@ declare namespace OTPInput {
1324
1597
  var displayName: string;
1325
1598
  }
1326
1599
 
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
1600
  interface PaginationProps extends React.HTMLAttributes<HTMLElement> {
1336
1601
  currentPage: number;
1337
1602
  totalPages: number;
@@ -1596,9 +1861,8 @@ declare namespace ResponsiveDialog {
1596
1861
  * the React `key` on the inner element — so a route change remounts the inner
1597
1862
  * node and re-runs the entrance.
1598
1863
  *
1599
- * The motion is driven by tw-animate-css `enter` utilities; the design-system's
1600
- * global `prefers-reduced-motion: reduce` rule neutralizes the animation, so no
1601
- * per-component reduced-motion handling is required.
1864
+ * The motion is driven by tw-animate-css `enter` utilities and locally disabled
1865
+ * under `prefers-reduced-motion`, with the package-level rule as a final fallback.
1602
1866
  *
1603
1867
  * Pass `usePathname()` (or any stable per-route string) as `routeKey` from the
1604
1868
  * client layout. Works unchanged in both the firm app and the client portal.
@@ -1616,7 +1880,7 @@ declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & Re
1616
1880
  declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1617
1881
 
1618
1882
  declare const searchInputVariants: (props?: ({
1619
- inputSize?: "sm" | "md" | "lg" | null | undefined;
1883
+ inputSize?: "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | null | undefined;
1620
1884
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1621
1885
  type SearchInputVariants = VariantProps<typeof searchInputVariants>;
1622
1886
  interface SearchInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "size">, SearchInputVariants {
@@ -1864,12 +2128,13 @@ declare const Sheet: {
1864
2128
  ({ side, children, ...props }: SheetProps): react_jsx_runtime.JSX.Element;
1865
2129
  displayName: string;
1866
2130
  };
2131
+
1867
2132
  declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
1868
2133
  declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
1869
2134
  declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
1870
2135
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1871
2136
  declare const sheetVariants: (props?: ({
1872
- side?: "left" | "right" | "top" | "bottom" | null | undefined;
2137
+ side?: "left" | "top" | "right" | "bottom" | null | undefined;
1873
2138
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1874
2139
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1875
2140
  /** If false, the built-in close button is hidden. Default: true. */
@@ -2314,17 +2579,6 @@ interface SwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Switc
2314
2579
  }
2315
2580
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
2316
2581
 
2317
- /**
2318
- * Table — semantic data-table primitives:
2319
- * - sentence-case headers in the body font (12px, medium, `text-fg-3`)
2320
- * on `bg-surface-2` — quiet column labels, not mono eyebrows
2321
- * - 1px `border-rule` under header, `border-rule-soft` between rows
2322
- * - 13px body cells in `text-fg-2`, airy 44px rows, hover gets `bg-bg-2`
2323
- *
2324
- * Public API: Table / TableHeader / TableBody / TableRow /
2325
- * TableHead / TableCell / TableCaption. `wrapperClassName` wraps
2326
- * the responsive overflow container.
2327
- */
2328
2582
  interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
2329
2583
  /** Class for the wrapping `div` that handles overflow. */
2330
2584
  wrapperClassName?: string;
@@ -3878,7 +4132,7 @@ declare const SidebarLinkLabel: React$1.ForwardRefExoticComponent<SidebarLinkLab
3878
4132
  type SidebarLinkActionProps = React$1.HTMLAttributes<HTMLSpanElement>;
3879
4133
  declare const SidebarLinkAction: React$1.ForwardRefExoticComponent<SidebarLinkActionProps & React$1.RefAttributes<HTMLSpanElement>>;
3880
4134
  declare const sidebarLinkBadgeVariants: (props?: ({
3881
- tone?: "warning" | "danger" | "neutral" | "default" | null | undefined;
4135
+ tone?: "warning" | "default" | "danger" | "neutral" | null | undefined;
3882
4136
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3883
4137
  type SidebarLinkBadgeVariants = VariantProps<typeof sidebarLinkBadgeVariants>;
3884
4138
  interface SidebarLinkBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, SidebarLinkBadgeVariants {
@@ -5705,6 +5959,46 @@ interface DisplayMenuProps {
5705
5959
  }
5706
5960
  declare function DisplayMenu({ sections, onReset, isAtDefault, tooltip, dataTour, triggerIcon, triggerLabel, className, flyoutSide, }: DisplayMenuProps): react_jsx_runtime.JSX.Element;
5707
5961
 
5962
+ interface StickyStackProps {
5963
+ /** Fixed layers in visual top-to-bottom order. */
5964
+ layers: readonly string[];
5965
+ /** Offset above the first layer, usually the app-shell header height. */
5966
+ top?: React$1.CSSProperties["top"];
5967
+ children: React$1.ReactNode;
5968
+ }
5969
+ /**
5970
+ * Coordinates fixed page chrome and sticky section headers without hard-coded
5971
+ * heights. Layers can live in different descendants as long as they share this
5972
+ * provider.
5973
+ */
5974
+ declare function StickyStack({ layers, top, children }: StickyStackProps): react_jsx_runtime.JSX.Element;
5975
+ interface StickyStackLayerProps extends React$1.HTMLAttributes<HTMLDivElement> {
5976
+ /** Name declared in the parent StickyStack layers array. */
5977
+ name: string;
5978
+ /** Classes applied to the in-flow spacer/measurement host. */
5979
+ hostClassName?: string;
5980
+ }
5981
+ /**
5982
+ * A measured fixed layer with an automatic in-flow spacer. The fixed surface
5983
+ * stays aligned to the width and left edge of the layer's original host.
5984
+ */
5985
+ declare const StickyStackLayer: React$1.ForwardRefExoticComponent<StickyStackLayerProps & React$1.RefAttributes<HTMLDivElement>>;
5986
+ interface StickyStackStickyProps extends React$1.HTMLAttributes<HTMLDivElement> {
5987
+ /** Stick after this layer. Omit to stick after the complete fixed stack. */
5988
+ after?: string;
5989
+ }
5990
+ /**
5991
+ * A native sticky region that consumes the measured stack offset while
5992
+ * remaining in document flow. Use it for rails or other persistent regions.
5993
+ */
5994
+ declare const StickyStackSticky: React$1.ForwardRefExoticComponent<StickyStackStickyProps & React$1.RefAttributes<HTMLDivElement>>;
5995
+ type StickyStackSectionHeaderProps = StickyStackStickyProps;
5996
+ /**
5997
+ * A sticky section-header slot. Multiple headers with the same `after` value
5998
+ * share one offset, so the next section replaces the previous.
5999
+ */
6000
+ declare const StickyStackSectionHeader: React$1.ForwardRefExoticComponent<StickyStackStickyProps & React$1.RefAttributes<HTMLDivElement>>;
6001
+
5708
6002
  declare function cn(...inputs: ClassValue[]): string;
5709
6003
 
5710
6004
  /**
@@ -5761,4 +6055,4 @@ interface BrandScopeProps extends React.HTMLAttributes<HTMLDivElement> {
5761
6055
  */
5762
6056
  declare const BrandScope: React$1.ForwardRefExoticComponent<BrandScopeProps & React$1.RefAttributes<HTMLDivElement>>;
5763
6057
 
5764
- 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, 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, 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, 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 };
6058
+ 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, 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, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputSlot, 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, type LabelSlot, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, 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, 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, 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, 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, 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, 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 };