@assure-one/design-system 1.2.0 → 1.4.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
@@ -102,6 +102,40 @@ interface AspectRatioProps extends React$1.ComponentPropsWithoutRef<typeof Aspec
102
102
  }
103
103
  declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
104
104
 
105
+ /**
106
+ * AttachmentChip — a full attachment / file row.
107
+ *
108
+ * Layout: FileTypeBadge + (name truncate + meta below) + trailing ghost
109
+ * icon actions (view / download). Presentational: handlers and the file
110
+ * URL are passed in, so the chip itself never owns state.
111
+ *
112
+ * Two variants:
113
+ *
114
+ * default — settled row on a page / panel (border + surface, hover bg-2),
115
+ * matches the v2 `.txq-ai-file` transaction-receipt row.
116
+ * onAccent — for outbound chat bubbles painted with the suite accent;
117
+ * translucent-white fill and on-accent text, matches the v2
118
+ * `.v2-cx-row.out .v2-cx-file` message attachment.
119
+ */
120
+ declare const attachmentChipVariants: (props?: ({
121
+ variant?: "default" | "onAccent" | null | undefined;
122
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
123
+ interface AttachmentChipProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof attachmentChipVariants> {
124
+ /** File name, e.g. `2023-return.pdf`. Truncates when it overflows. */
125
+ name: string;
126
+ /** Format label for the FileTypeBadge. Derived from `name` when omitted. */
127
+ fileType?: string;
128
+ /** Secondary line — size and/or date, e.g. `2.4 MB · uploaded just now`. */
129
+ meta?: string;
130
+ /** View handler — renders the eye action as a button. */
131
+ onView?: () => void;
132
+ /** Download handler — renders the download action as a button. */
133
+ onDownload?: () => void;
134
+ /** File URL — backs the view action as a real anchor when `onView` is absent. */
135
+ href?: string;
136
+ }
137
+ declare const AttachmentChip: React$1.ForwardRefExoticComponent<AttachmentChipProps & React$1.RefAttributes<HTMLDivElement>>;
138
+
105
139
  declare const avatarVariants: (props?: ({
106
140
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
107
141
  variant?: "initials" | "branded" | null | undefined;
@@ -125,7 +159,7 @@ declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.Re
125
159
  * neutral pill.
126
160
  */
127
161
  declare const badgeVariants: (props?: ({
128
- variant?: "info" | "success" | "warning" | "destructive" | "default" | "secondary" | "outline" | null | undefined;
162
+ variant?: "info" | "success" | "warning" | "destructive" | "secondary" | "outline" | "default" | null | undefined;
129
163
  size?: "sm" | "md" | null | undefined;
130
164
  } & class_variance_authority_types.ClassProp) | undefined) => string;
131
165
  interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
@@ -194,8 +228,8 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
194
228
  * Use `asChild` to render as a different element (e.g. an anchor / next/link).
195
229
  */
196
230
  declare const buttonVariants: (props?: ({
197
- variant?: "link" | "success" | "destructive" | "secondary" | "outline" | "accent" | "primary" | "ghost" | "dashed" | null | undefined;
198
- size?: "sm" | "md" | "lg" | "icon" | "icon-xs" | "icon-sm" | null | undefined;
231
+ variant?: "link" | "success" | "destructive" | "accent" | "primary" | "secondary" | "ghost" | "outline" | "dashed" | null | undefined;
232
+ size?: "sm" | "md" | "lg" | "icon-xs" | "icon-sm" | "icon" | null | undefined;
199
233
  } & class_variance_authority_types.ClassProp) | undefined) => string;
200
234
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
201
235
  /** Render as the child element via Radix `Slot` (shadcn pattern). */
@@ -247,6 +281,43 @@ declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttribu
247
281
  declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
248
282
  declare const CardAction: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
249
283
 
284
+ /**
285
+ * CategoryDivider — THE category separator: a tone-tinted category pill, a
286
+ * flex-1 hairline rule, and an optional trailing count chip. Used to group a
287
+ * run of feed items / cards by service line. Per the ONE-brand rule, this tag
288
+ * is the *only* place per-service color is allowed — everything else stays on
289
+ * the single brand. Pure presentational.
290
+ *
291
+ * Tones map to the suite tints:
292
+ * brand → --color-brand-pro · audit → --color-brand-audit ·
293
+ * books → --color-brand-books · tax → --color-brand-tax ·
294
+ * neutral → --color-fg-3
295
+ */
296
+ declare const categoryTagVariants: (props?: ({
297
+ tone?: "neutral" | "brand" | "audit" | "books" | "tax" | null | undefined;
298
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
299
+ type CategoryTone = NonNullable<VariantProps<typeof categoryTagVariants>["tone"]>;
300
+ interface CategoryTagProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof categoryTagVariants> {
301
+ /** Tag label text. */
302
+ label: string;
303
+ /** Optional leading icon rendered inside the pill. */
304
+ icon?: React.ReactNode;
305
+ }
306
+ /**
307
+ * CategoryTag — the standalone tone-tinted category pill, reusable in card
308
+ * headers and feed-item rows. Same atom CategoryDivider renders on its left.
309
+ */
310
+ declare const CategoryTag: React$1.ForwardRefExoticComponent<CategoryTagProps & React$1.RefAttributes<HTMLSpanElement>>;
311
+ interface CategoryDividerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof categoryTagVariants> {
312
+ /** Category label shown in the tone-tinted tag. */
313
+ label: string;
314
+ /** Optional leading icon rendered inside the tag. */
315
+ icon?: React.ReactNode;
316
+ /** Optional item count → trailing neutral count chip. */
317
+ count?: number;
318
+ }
319
+ declare const CategoryDivider: React$1.ForwardRefExoticComponent<CategoryDividerProps & React$1.RefAttributes<HTMLDivElement>>;
320
+
250
321
  interface CheckboxProps extends Omit<React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>, "checked" | "defaultChecked"> {
251
322
  /** Optional inline label rendered to the right of the box */
252
323
  label?: string;
@@ -514,6 +585,32 @@ interface DismissibleChipProps extends Omit<React$1.ButtonHTMLAttributes<HTMLBut
514
585
  }
515
586
  declare const DismissibleChip: React$1.ForwardRefExoticComponent<DismissibleChipProps & React$1.RefAttributes<HTMLButtonElement>>;
516
587
 
588
+ /**
589
+ * DocumentsWorkspaceLayout — 3-pane CSS-grid shell for a firm Documents workspace.
590
+ *
591
+ * Renders three independently-scrolling columns: a clients rail, a folder tree,
592
+ * and a files area. The root fills its parent height and does not scroll itself.
593
+ * Each pane is a flex column container; consumers are responsible for placing
594
+ * their own scroll regions inside the slots.
595
+ *
596
+ * Responsive grid:
597
+ * Base (<lg): 2 visible columns — clientsRail + filesArea. The folderTree
598
+ * pane is hidden so it does not occupy the 2-column base template.
599
+ * lg (>=1024px): All 3 columns — 248px rail | 220px folders | remaining files.
600
+ * xl (>=1280px): Wider columns — 280px rail | 244px folders | remaining files.
601
+ *
602
+ * No padding is imposed on any pane; the consumer owns spacing inside each slot.
603
+ */
604
+ interface DocumentsWorkspaceLayoutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
605
+ /** Left column — client list rail (always visible). */
606
+ clientsRail: React.ReactNode;
607
+ /** Middle column — folder/category tree (hidden below lg breakpoint). */
608
+ folderTree: React.ReactNode;
609
+ /** Right column — file list and preview area (always visible). */
610
+ filesArea: React.ReactNode;
611
+ }
612
+ declare const DocumentsWorkspaceLayout: React$1.ForwardRefExoticComponent<DocumentsWorkspaceLayoutProps & React$1.RefAttributes<HTMLDivElement>>;
613
+
517
614
  /**
518
615
  * DonutChart — segmented SVG arc meter (the "Review control center" donut).
519
616
  *
@@ -616,6 +713,48 @@ interface FileChipProps extends React.HTMLAttributes<HTMLDivElement> {
616
713
  }
617
714
  declare const FileChip: React$1.ForwardRefExoticComponent<FileChipProps & React$1.RefAttributes<HTMLDivElement>>;
618
715
 
716
+ /**
717
+ * FileTypeBadge — a colored format square for a file type.
718
+ *
719
+ * A static, presentational tile showing a short uppercase format token
720
+ * (PDF / IMG / DOC …) tinted by category. Consolidates the per-surface
721
+ * `FileTypeIcon` re-implementations (`.v2-fileic`, `.txq-ai-file-ico`,
722
+ * invoice/attachment tiles) into one primitive.
723
+ *
724
+ * Color map (auto-derived from the resolved type):
725
+ * PDF → danger (red) · IMG/PNG/JPG → info (blue) · DOC/DOCX → accent (blue)
726
+ * XLS/XLSX/CSV → success (green) · PPT → warning · ZIP → neutral
727
+ * anything else → neutral
728
+ *
729
+ * Pass `format` (or its alias `type`) with a format/extension token, or
730
+ * `fileName` to derive the type from the extension. Override the auto color
731
+ * with `tone`.
732
+ */
733
+ declare const fileTypeBadgeVariants: (props?: ({
734
+ size?: "sm" | "md" | null | undefined;
735
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
736
+ /** Semantic color tone for the badge square. */
737
+ type FileTypeTone = "danger" | "info" | "accent" | "success" | "warning" | "neutral";
738
+ /**
739
+ * Derive a canonical file-type code from a file name's extension.
740
+ *
741
+ * @param fileName - The file name, e.g. `2023-return.pdf`.
742
+ * @returns The canonical uppercase code (e.g. `PDF`), or `FILE` when the name
743
+ * has no usable extension.
744
+ */
745
+ declare function fileTypeFromName(fileName: string): string;
746
+ interface FileTypeBadgeProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "children">, VariantProps<typeof fileTypeBadgeVariants> {
747
+ /** Format/extension token, e.g. `PDF`, `docx`. Takes precedence over `fileName`. */
748
+ format?: string;
749
+ /** Alias for `format` — a format/extension token. */
750
+ type?: string;
751
+ /** File name to derive the type from when `format`/`type` are absent. */
752
+ fileName?: string;
753
+ /** Override the auto-derived color. Defaults to `"auto"` (color by type). */
754
+ tone?: FileTypeTone | "auto";
755
+ }
756
+ declare const FileTypeBadge: React$1.ForwardRefExoticComponent<FileTypeBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
757
+
619
758
  interface FileUploadProps extends React.HTMLAttributes<HTMLDivElement> {
620
759
  accept?: string;
621
760
  maxSize?: number;
@@ -675,6 +814,29 @@ declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimi
675
814
  declare const HoverCardPortal: React$1.FC<HoverCardPrimitive.HoverCardPortalProps>;
676
815
  declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
677
816
 
817
+ /**
818
+ * IconTile — the recurring tinted rounded-square icon chip. A tone tint fills
819
+ * the square and colors the icon; `grid place-items-center` keeps the glyph
820
+ * centered. Consolidates v2's `.v2-qico` / `.v2-item-ico` / `.nr-ico` /
821
+ * `.licon` / `.aico` icon-chip pattern into one primitive.
822
+ *
823
+ * tone — `pro` (default), `neutral`, status (`info` | `success` | `warning`
824
+ * | `danger`), and suite tints (`audit` | `books` | `tax`).
825
+ * size — `sm` (~30px) | `md` (~38px) | `lg` (~42px). Icon scales with it.
826
+ * badge — optional ReactNode pinned to the top-right corner (e.g. a count).
827
+ */
828
+ declare const iconTileVariants: (props?: ({
829
+ tone?: "info" | "success" | "warning" | "danger" | "neutral" | "audit" | "books" | "tax" | "pro" | null | undefined;
830
+ size?: "sm" | "md" | "lg" | null | undefined;
831
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
832
+ interface IconTileProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof iconTileVariants> {
833
+ /** The icon (or any node) rendered centered inside the tile. */
834
+ icon: React.ReactNode;
835
+ /** Optional overlay pinned to the top-right corner, e.g. a count badge. */
836
+ badge?: React.ReactNode;
837
+ }
838
+ declare const IconTile: React$1.ForwardRefExoticComponent<IconTileProps & React$1.RefAttributes<HTMLDivElement>>;
839
+
678
840
  interface IconProps extends React.SVGAttributes<SVGElement> {
679
841
  size?: number;
680
842
  }
@@ -692,6 +854,12 @@ declare function CloseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX
692
854
  declare function CheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
693
855
  declare function LayoutDashboardIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
694
856
  declare function BuildingIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
857
+ /** Landmark / "bank" glyph (columns + pediment) — the accounting service mark. */
858
+ declare function LandmarkIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
859
+ /** Folder with an up-arrow — the "upload documents" / document-request mark. */
860
+ declare function FolderUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
861
+ /** Pen-tool / nibbed signature pen — the e-signature mark. */
862
+ declare function PenToolIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
695
863
  declare function MapPinIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
696
864
  declare function FileReturnIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
697
865
  declare function ClipboardCheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
@@ -837,7 +1005,7 @@ declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.
837
1005
  * (rule-strong border, surface bg, accent focus ring).
838
1006
  */
839
1007
  declare const inputVariants: (props?: ({
840
- variant?: "default" | "ghost" | null | undefined;
1008
+ variant?: "ghost" | "default" | null | undefined;
841
1009
  inputSize?: "sm" | "md" | "lg" | null | undefined;
842
1010
  } & class_variance_authority_types.ClassProp) | undefined) => string;
843
1011
  type InputVariants = VariantProps<typeof inputVariants>;
@@ -985,6 +1153,39 @@ interface LogoProps {
985
1153
  }
986
1154
  declare function Logo({ size, href, showText, className, iconClassName, textClassName, productName, inverted, }: LogoProps): react_jsx_runtime.JSX.Element;
987
1155
 
1156
+ /**
1157
+ * MasterDetailLayout — responsive list + detail two-pane scaffold.
1158
+ *
1159
+ * Backs the duplicated "list on the left, detail on the right" pattern found
1160
+ * across messages, documents, billing, and signatures. Generic over content:
1161
+ * pass any node into the `list` and `detail` slots.
1162
+ *
1163
+ * Desktop (>= md): fixed-width list column + flex-1 detail. Each pane owns
1164
+ * its own scroll (`min-h-0` + `overflow-auto`) so the two scroll
1165
+ * independently and neither pushes the page.
1166
+ * Mobile (< md): the list fills the width; when `detailOpen` is true the
1167
+ * detail slides in over the list from the right. A back affordance is
1168
+ * rendered at the top of the detail pane when `onBack` is supplied.
1169
+ */
1170
+ interface MasterDetailLayoutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
1171
+ /** Left pane — the master list (sessions, files, threads…). */
1172
+ list: React.ReactNode;
1173
+ /** Right pane — the selected record's detail view. */
1174
+ detail: React.ReactNode;
1175
+ /**
1176
+ * Whether the detail pane is shown on mobile. On desktop both panes are
1177
+ * always visible and this prop only governs the small-screen overlay.
1178
+ */
1179
+ detailOpen?: boolean;
1180
+ /** Mobile back handler — returns from the detail overlay to the list. */
1181
+ onBack?: () => void;
1182
+ /** Accessible label for the mobile back button. */
1183
+ backLabel?: string;
1184
+ /** Width of the list column on desktop. Number is treated as px. */
1185
+ listWidth?: number | string;
1186
+ }
1187
+ declare const MasterDetailLayout: React$1.ForwardRefExoticComponent<MasterDetailLayoutProps & React$1.RefAttributes<HTMLDivElement>>;
1188
+
988
1189
  interface MultiFilterPillProps {
989
1190
  label: string;
990
1191
  icon?: React$1.ReactNode;
@@ -1219,6 +1420,61 @@ interface RankedBarsProps extends React.HTMLAttributes<HTMLUListElement> {
1219
1420
  }
1220
1421
  declare const RankedBars: React$1.ForwardRefExoticComponent<RankedBarsProps & React$1.RefAttributes<HTMLUListElement>>;
1221
1422
 
1423
+ type SheetSide = "top" | "right" | "bottom" | "left";
1424
+ type DialogSize = "sm" | "md" | "lg" | "full";
1425
+ interface ResponsiveDialogProps {
1426
+ /** Controlled open state. */
1427
+ open: boolean;
1428
+ /** Open-state change handler (fires on overlay/esc/close as well). */
1429
+ onOpenChange: (open: boolean) => void;
1430
+ /** Accessible title. When omitted, a visually-hidden label is supplied. */
1431
+ title?: React$1.ReactNode;
1432
+ /** Supporting description rendered under the title. */
1433
+ description?: React$1.ReactNode;
1434
+ /** Body content. */
1435
+ children?: React$1.ReactNode;
1436
+ /**
1437
+ * Footer actions. Accepts a node, or a render-prop receiving a `close`
1438
+ * callback (`() => onOpenChange(false)`) for self-dismissing buttons.
1439
+ */
1440
+ footer?: React$1.ReactNode | ((close: () => void) => React$1.ReactNode);
1441
+ /** Class applied to the rendered Sheet/Dialog content surface. */
1442
+ className?: string;
1443
+ /** Sheet side on mobile. Default `"bottom"`. */
1444
+ side?: SheetSide;
1445
+ /** Desktop Dialog max-width preset. Default `"md"`. */
1446
+ size?: DialogSize;
1447
+ }
1448
+ /**
1449
+ * Renders a bottom Sheet on mobile and a centered Dialog on desktop from one
1450
+ * controlled API. Composes the existing Sheet and Dialog primitives.
1451
+ */
1452
+ declare function ResponsiveDialog({ open, onOpenChange, title, description, children, footer, className, side, size, }: ResponsiveDialogProps): react_jsx_runtime.JSX.Element;
1453
+ declare namespace ResponsiveDialog {
1454
+ var displayName: string;
1455
+ }
1456
+
1457
+ /**
1458
+ * RouteTransition — a tiny, generic page-transition wrapper.
1459
+ *
1460
+ * Fades and slides its children up (~8px → 0, ~250ms, ease-out-quart) on
1461
+ * mount, and replays the animation whenever `routeKey` changes by using it as
1462
+ * the React `key` on the inner element — so a route change remounts the inner
1463
+ * node and re-runs the entrance.
1464
+ *
1465
+ * The motion is driven by tw-animate-css `enter` utilities; the design-system's
1466
+ * global `prefers-reduced-motion: reduce` rule neutralizes the animation, so no
1467
+ * per-component reduced-motion handling is required.
1468
+ *
1469
+ * Pass `usePathname()` (or any stable per-route string) as `routeKey` from the
1470
+ * client layout. Works unchanged in both the firm app and the client portal.
1471
+ */
1472
+ interface RouteTransitionProps extends React.HTMLAttributes<HTMLDivElement> {
1473
+ /** Stable per-route string (e.g. `usePathname()`). Used as the inner key. */
1474
+ routeKey: string;
1475
+ }
1476
+ declare const RouteTransition: React$1.ForwardRefExoticComponent<RouteTransitionProps & React$1.RefAttributes<HTMLDivElement>>;
1477
+
1222
1478
  interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
1223
1479
  children: React$1.ReactNode;
1224
1480
  }
@@ -1571,7 +1827,7 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
1571
1827
 
1572
1828
  declare const spinnerVariants: (props?: ({
1573
1829
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
1574
- tone?: "current" | "success" | "warning" | "destructive" | "accent" | "muted" | null | undefined;
1830
+ tone?: "current" | "success" | "warning" | "destructive" | "muted" | "accent" | null | undefined;
1575
1831
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1576
1832
  interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
1577
1833
  /**
@@ -1612,6 +1868,33 @@ interface StatProps extends React.HTMLAttributes<HTMLDivElement> {
1612
1868
  }
1613
1869
  declare const Stat: React$1.ForwardRefExoticComponent<StatProps & React$1.RefAttributes<HTMLDivElement>>;
1614
1870
 
1871
+ /**
1872
+ * StatusDot — standalone attention / unread / presence dot.
1873
+ *
1874
+ * A small filled circle for NON-avatar surfaces: nav rails, bottom nav,
1875
+ * top-bar bells, list rows, unread markers. (Avatar already renders its own
1876
+ * corner presence dot — use that for avatar-attached dots.)
1877
+ *
1878
+ * tone — danger (default) | warning | info | success | pro | neutral
1879
+ * size — sm ~7px (default) | md ~9px
1880
+ * ring — adds a 2px solid surface ring so the dot reads when overlaid on
1881
+ * icons / avatars (box-shadow, so it never shifts layout)
1882
+ * pulse — subtle expanding ping halo; hidden under prefers-reduced-motion
1883
+ *
1884
+ * The dot fills with `currentColor`, so the ping clone inherits the same tone
1885
+ * automatically. `aria-hidden` by default — pass `aria-label` to expose it.
1886
+ */
1887
+ declare const statusDotVariants: (props?: ({
1888
+ tone?: "info" | "success" | "warning" | "danger" | "neutral" | "pro" | null | undefined;
1889
+ size?: "sm" | "md" | null | undefined;
1890
+ ring?: boolean | null | undefined;
1891
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1892
+ interface StatusDotProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof statusDotVariants> {
1893
+ /** Subtle expanding ping halo. Respects `prefers-reduced-motion`. */
1894
+ pulse?: boolean;
1895
+ }
1896
+ declare const StatusDot: React$1.ForwardRefExoticComponent<StatusDotProps & React$1.RefAttributes<HTMLSpanElement>>;
1897
+
1615
1898
  /**
1616
1899
  * StatusIcon — progress-aware state circle for arbitrary pipeline stages.
1617
1900
  *
@@ -1642,13 +1925,14 @@ declare function StatusIcon({ state, progress, color, size, className, ...props
1642
1925
  * in-review → info "In review"
1643
1926
  * needs-revision → danger "Needs revision"
1644
1927
  * accepted/signed/
1645
- * approved/paid → success "Accepted" / "Signed" / …
1928
+ * approved/paid/
1929
+ * received → success "Accepted" / "Signed" / "Received" / …
1646
1930
  * draft/pending → secondary
1647
1931
  * overdue → danger
1648
1932
  *
1649
1933
  * Pass `children` to override the label while keeping the mapped variant.
1650
1934
  */
1651
- type PillStatus = "requested" | "in-review" | "needs-revision" | "accepted" | "signed" | "approved" | "paid" | "complete" | "draft" | "pending" | "overdue" | "declined";
1935
+ type PillStatus = "requested" | "in-review" | "needs-revision" | "accepted" | "signed" | "approved" | "paid" | "complete" | "received" | "draft" | "pending" | "overdue" | "declined";
1652
1936
  interface StatusPillProps extends Omit<BadgeProps, "variant"> {
1653
1937
  status: PillStatus;
1654
1938
  /** Show a leading dot. Default `true` (status atoms read better with one). */
@@ -1676,6 +1960,32 @@ interface StepperProps extends React.HTMLAttributes<HTMLDivElement> {
1676
1960
  }
1677
1961
  declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
1678
1962
 
1963
+ /**
1964
+ * StickyActionBar — a frosted action bar pinned to the bottom of its scroll
1965
+ * container. Holds a left-aligned `hint` (info / summary text) and right-aligned
1966
+ * action buttons (`children`).
1967
+ *
1968
+ * Frosted surface (`bg-surface/80` + `backdrop-blur`) over a top rule, so page
1969
+ * content scrolls visibly beneath it. Presentational only — the call site owns
1970
+ * the buttons and their disabled/loading state.
1971
+ *
1972
+ * `offsetForMobileNav` lifts the bar to clear the 56px mobile tab bar plus the
1973
+ * iOS safe-area inset, so it never hides behind the bottom navigation.
1974
+ *
1975
+ * Generic by design: it backs the portal signing footer and the transactions
1976
+ * submit bar, and is intended to replace the firm app's hand-rolled
1977
+ * bulk-action bar chrome.
1978
+ */
1979
+ interface StickyActionBarProps extends React.HTMLAttributes<HTMLDivElement> {
1980
+ /** Action buttons, right-aligned. */
1981
+ children: React.ReactNode;
1982
+ /** Left-aligned info / summary text. */
1983
+ hint?: React.ReactNode;
1984
+ /** Lift the bar above the 56px mobile tab bar + safe-area inset. */
1985
+ offsetForMobileNav?: boolean;
1986
+ }
1987
+ declare const StickyActionBar: React$1.ForwardRefExoticComponent<StickyActionBarProps & React$1.RefAttributes<HTMLDivElement>>;
1988
+
1679
1989
  interface SubmitButtonProps extends Omit<ButtonProps, "type" | "loading"> {
1680
1990
  pendingText?: string;
1681
1991
  children: React.ReactNode;
@@ -1686,6 +1996,60 @@ interface SubmitButtonProps extends Omit<ButtonProps, "type" | "loading"> {
1686
1996
  */
1687
1997
  declare const SubmitButton: React$1.ForwardRefExoticComponent<SubmitButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1688
1998
 
1999
+ /**
2000
+ * SuiteProgress — a discrete, segmented progress meter with a percent readout.
2001
+ *
2002
+ * Renders `total` equal-width segments in a flex row. Segments before `value`
2003
+ * are filled in the suite tone; the rest sit on the `surface-3` track. An
2004
+ * optional numeric percent renders to the right (bold + tabular, with a
2005
+ * smaller "%").
2006
+ *
2007
+ * Distinct from the `SegmentedProgress` step-meter (steps/current, no percent):
2008
+ * SuiteProgress is the percent-bearing bar with suite-brand tones, used for
2009
+ * pipeline and engagement *completion* (e.g. "3 of 5 — 60%"). Pick the step
2010
+ * meter when the count itself is the message; pick this when the percentage is.
2011
+ *
2012
+ * Pure presentational — no client runtime required.
2013
+ */
2014
+ declare const suiteProgressFillVariants: (props?: ({
2015
+ tone?: "audit" | "books" | "tax" | "pro" | null | undefined;
2016
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2017
+ declare const SIZE_STYLES: {
2018
+ readonly sm: {
2019
+ readonly row: "gap-2";
2020
+ readonly track: "gap-0.5";
2021
+ readonly segment: "h-1";
2022
+ readonly text: "text-xs";
2023
+ };
2024
+ readonly md: {
2025
+ readonly row: "gap-3";
2026
+ readonly track: "gap-1";
2027
+ readonly segment: "h-[5px]";
2028
+ readonly text: "text-sm";
2029
+ };
2030
+ };
2031
+ type SuiteProgressSize = keyof typeof SIZE_STYLES;
2032
+ type SuiteProgressTone = NonNullable<VariantProps<typeof suiteProgressFillVariants>["tone"]>;
2033
+ interface SuiteProgressProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "role"> {
2034
+ /** Number of completed segments. */
2035
+ value: number;
2036
+ /** Total segment count. */
2037
+ total: number;
2038
+ /** Show the numeric percent to the right. Defaults to true. */
2039
+ showPercent?: boolean;
2040
+ /** Override the displayed percent (0–100). Falls back to value/total. */
2041
+ percent?: number;
2042
+ /** Suite tone for filled segments. Defaults to "pro". */
2043
+ tone?: SuiteProgressTone;
2044
+ /** Bar height + text scale. Defaults to "md". */
2045
+ size?: SuiteProgressSize;
2046
+ /** Optional leading label, rendered before the segments. */
2047
+ label?: string;
2048
+ /** Extra classes applied to every segment. */
2049
+ segmentClassName?: string;
2050
+ }
2051
+ declare const SuiteProgress: React$1.ForwardRefExoticComponent<SuiteProgressProps & React$1.RefAttributes<HTMLDivElement>>;
2052
+
1689
2053
  declare const switchVariants: (props?: ({
1690
2054
  size?: "sm" | "md" | null | undefined;
1691
2055
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1754,7 +2118,7 @@ declare namespace TeamMemberSelect {
1754
2118
  }
1755
2119
 
1756
2120
  declare const textareaVariants: (props?: ({
1757
- variant?: "default" | "ghost" | null | undefined;
2121
+ variant?: "ghost" | "default" | null | undefined;
1758
2122
  inputSize?: "sm" | "md" | "lg" | null | undefined;
1759
2123
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1760
2124
  type TextareaVariants = VariantProps<typeof textareaVariants>;
@@ -1790,7 +2154,7 @@ interface ToastProviderProps {
1790
2154
  declare function ToastProvider({ children }: ToastProviderProps): react_jsx_runtime.JSX.Element;
1791
2155
 
1792
2156
  declare const itemVariants: (props?: ({
1793
- variant?: "default" | "outline" | null | undefined;
2157
+ variant?: "outline" | "default" | null | undefined;
1794
2158
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1795
2159
  type ToggleGroupRootProps = React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof itemVariants>;
1796
2160
  declare const ToggleGroup: React$1.ForwardRefExoticComponent<ToggleGroupRootProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -2049,6 +2413,147 @@ interface FolderTreeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "on
2049
2413
  }
2050
2414
  declare const FolderTree: React$1.ForwardRefExoticComponent<FolderTreeProps & React$1.RefAttributes<HTMLDivElement>>;
2051
2415
 
2416
+ /**
2417
+ * ClientRailItem — a client row in the firm Documents left rail.
2418
+ *
2419
+ * Renders as a full-width, left-aligned `<button>`. Displays the client
2420
+ * avatar, name, an optional pending-documents indicator (purple dot +
2421
+ * "N pending" label), a file-count chip, and a meta suffix (e.g. a relative
2422
+ * timestamp).
2423
+ *
2424
+ * Active state highlights the row with `bg-pro-bg` and a 3 px left accent
2425
+ * bar in brand purple. Hover (when not active) applies `bg-surface-2`.
2426
+ *
2427
+ * Spread standard `<button>` attributes (including `onClick`) directly.
2428
+ */
2429
+ interface ClientRailItemProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
2430
+ /** Client or entity display name. */
2431
+ name: string;
2432
+ /** Optional avatar image URL — forwarded to the DS Avatar `src` prop. */
2433
+ avatarSrc?: string;
2434
+ /** Entity kind label, e.g. "Individual" or "Business". */
2435
+ entityType: string;
2436
+ /** Number of pending document requests; 0 / undefined → no pending badge. */
2437
+ pendingCount?: number;
2438
+ /** Total file count shown in the name-row chip. Omit to hide the chip. */
2439
+ fileCount?: number;
2440
+ /** Trailing meta node — typically a relative-time string like "2h ago". */
2441
+ metaSuffix?: React.ReactNode;
2442
+ /** Whether this row is the currently-selected client in the rail. */
2443
+ active?: boolean;
2444
+ }
2445
+ declare const ClientRailItem: React$1.ForwardRefExoticComponent<ClientRailItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2446
+ /**
2447
+ * ClientRailGroupHeader — section label row for the Documents left rail.
2448
+ *
2449
+ * When `accent` is true a 7 px pro-tone dot precedes the label and the text
2450
+ * is coloured in brand purple — signals that the group contains clients with
2451
+ * pending document requests. An optional `count` is appended as " · N".
2452
+ */
2453
+ interface ClientRailGroupHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
2454
+ /** Group label text, e.g. "Awaiting documents" or "All clients". */
2455
+ label: string;
2456
+ /** Optional count appended as " · N" after the label. */
2457
+ count?: number;
2458
+ /**
2459
+ * When true, renders a purple StatusDot before the label and colours the
2460
+ * label in `text-pro-fg` (brand purple). Use for "Awaiting documents" groups.
2461
+ */
2462
+ accent?: boolean;
2463
+ }
2464
+ declare const ClientRailGroupHeader: React$1.ForwardRefExoticComponent<ClientRailGroupHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2465
+
2466
+ interface DocumentFileRowProps extends React$1.HTMLAttributes<HTMLDivElement> {
2467
+ name: string;
2468
+ fileType: string;
2469
+ size?: string;
2470
+ date?: string;
2471
+ by?: string;
2472
+ status?: React$1.ReactNode;
2473
+ nameAdornment?: React$1.ReactNode;
2474
+ menu?: React$1.ReactNode;
2475
+ selected?: boolean;
2476
+ showCheckbox?: boolean;
2477
+ onSelectedChange?: (checked: boolean) => void;
2478
+ onOpen?: () => void;
2479
+ }
2480
+ type DocumentFileCardProps = DocumentFileRowProps;
2481
+ declare const DocumentFileRow: React$1.ForwardRefExoticComponent<DocumentFileRowProps & React$1.RefAttributes<HTMLDivElement>>;
2482
+ declare const DocumentFileCard: React$1.ForwardRefExoticComponent<DocumentFileRowProps & React$1.RefAttributes<HTMLDivElement>>;
2483
+
2484
+ /**
2485
+ * DocumentRequestField — one numbered "document N" card inside the Request
2486
+ * Documents modal. Renders a header badge, an optional remove button, and a
2487
+ * three-field grid: document-type slot (caller-supplied), a required label
2488
+ * input, and an optional note input.
2489
+ *
2490
+ * Props:
2491
+ * - `index` — zero-based position; badge shows `index + 1`.
2492
+ * - `typeControl` — ReactNode rendered in the Type field slot (pass a
2493
+ * select, combobox, or disabled placeholder).
2494
+ * - `label` — controlled value for the Label input.
2495
+ * - `onLabelChange` — called with the new string on every keystroke.
2496
+ * - `note` — controlled value for the Note input.
2497
+ * - `onNoteChange` — called with the new string on every keystroke.
2498
+ * - `onRemove` — when provided (and `canRemove` is true) a remove
2499
+ * button appears in the header row.
2500
+ * - `canRemove` — guards `onRemove`; set false when only one field
2501
+ * remains so the user cannot delete the last entry.
2502
+ */
2503
+ interface DocumentRequestFieldProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
2504
+ /** Zero-based index; displayed as `index + 1` in the badge and aria-labels. */
2505
+ index: number;
2506
+ /** Slot for the document-type control (select, combobox, disabled input, etc.). */
2507
+ typeControl: React.ReactNode;
2508
+ /** Controlled value for the Label field. */
2509
+ label: string;
2510
+ /** Called with the updated string whenever the Label input changes. */
2511
+ onLabelChange: (value: string) => void;
2512
+ /** Controlled value for the Note field. */
2513
+ note: string;
2514
+ /** Called with the updated string whenever the Note input changes. */
2515
+ onNoteChange: (value: string) => void;
2516
+ /** Callback to remove this card from the list. Only rendered when `canRemove` is also true. */
2517
+ onRemove?: () => void;
2518
+ /** Whether removal is permitted (e.g. false when this is the last card). */
2519
+ canRemove?: boolean;
2520
+ }
2521
+ declare const DocumentRequestField: React$1.ForwardRefExoticComponent<DocumentRequestFieldProps & React$1.RefAttributes<HTMLDivElement>>;
2522
+
2523
+ /**
2524
+ * MissingDocumentsPanel — an AI insight card that surfaces documents still
2525
+ * expected from a client within an engagement.
2526
+ *
2527
+ * Items carry one of three states that map to a `<StatusPill>` semantic:
2528
+ * missing → "Requested" (warning)
2529
+ * pending → "Pending" (secondary)
2530
+ * received → "Received" (success)
2531
+ *
2532
+ * When no items remain, the panel renders a compact "All documents received"
2533
+ * success line instead of an empty list.
2534
+ *
2535
+ * Pass `onRequest` to show a "Request missing" footer button. The panel is
2536
+ * fully controlled — it renders whatever `items` you supply.
2537
+ */
2538
+ type DocumentItemState = "missing" | "pending" | "received";
2539
+ interface MissingDocumentItem {
2540
+ /** Document label shown in the row. */
2541
+ label: string;
2542
+ /** Optional due / expected date string (e.g. "Due Jun 20"). */
2543
+ dueDate?: string;
2544
+ /** Current fulfilment state for this document. */
2545
+ state: DocumentItemState;
2546
+ }
2547
+ interface MissingDocumentsPanelProps extends React.HTMLAttributes<HTMLDivElement> {
2548
+ /** List of expected documents and their current states. */
2549
+ items: MissingDocumentItem[];
2550
+ /** Subtitle below the panel title. */
2551
+ subtitle?: string;
2552
+ /** When provided a "Request missing" button is rendered in the footer. */
2553
+ onRequest?: () => void;
2554
+ }
2555
+ declare const MissingDocumentsPanel: React$1.ForwardRefExoticComponent<MissingDocumentsPanelProps & React$1.RefAttributes<HTMLDivElement>>;
2556
+
2052
2557
  /**
2053
2558
  * NewMenu — the TopBar "+ New" create dropdown. A primary button opens a
2054
2559
  * menu of create actions, optionally split into labelled groups (e.g.
@@ -2235,7 +2740,7 @@ declare const SidebarLinkLabel: React$1.ForwardRefExoticComponent<SidebarLinkLab
2235
2740
  type SidebarLinkActionProps = React$1.HTMLAttributes<HTMLSpanElement>;
2236
2741
  declare const SidebarLinkAction: React$1.ForwardRefExoticComponent<SidebarLinkActionProps & React$1.RefAttributes<HTMLSpanElement>>;
2237
2742
  declare const sidebarLinkBadgeVariants: (props?: ({
2238
- tone?: "warning" | "default" | "neutral" | "danger" | null | undefined;
2743
+ tone?: "warning" | "danger" | "neutral" | "default" | null | undefined;
2239
2744
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2240
2745
  type SidebarLinkBadgeVariants = VariantProps<typeof sidebarLinkBadgeVariants>;
2241
2746
  interface SidebarLinkBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, SidebarLinkBadgeVariants {
@@ -3297,4 +3802,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
3297
3802
 
3298
3803
  declare function cn(...inputs: ClassValue[]): string;
3299
3804
 
3300
- export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, 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, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, 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, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, 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, 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, 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, DocumentIcon, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, 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, 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, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, 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, PenSignIcon, 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, type QuickReplyChip, RadioGroup, RadioGroupItem, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, RotateCcwIcon, 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 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, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, StarIcon, StarRating, type StarRatingProps, Stat, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StopIcon, StrikethroughIcon, SubmitButton, 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 TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, 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, ToastProvider, 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, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
3805
+ export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, 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, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, 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, 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, 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, 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, DocumentFileCard, type DocumentFileCardProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentRequestField, type DocumentRequestFieldProps, 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, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, 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, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, 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, 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, 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, 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 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, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, 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, 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 TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, 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, ToastProvider, 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, 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, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };