@assure-one/design-system 1.2.0 → 1.3.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;
@@ -616,6 +687,48 @@ interface FileChipProps extends React.HTMLAttributes<HTMLDivElement> {
616
687
  }
617
688
  declare const FileChip: React$1.ForwardRefExoticComponent<FileChipProps & React$1.RefAttributes<HTMLDivElement>>;
618
689
 
690
+ /**
691
+ * FileTypeBadge — a colored format square for a file type.
692
+ *
693
+ * A static, presentational tile showing a short uppercase format token
694
+ * (PDF / IMG / DOC …) tinted by category. Consolidates the per-surface
695
+ * `FileTypeIcon` re-implementations (`.v2-fileic`, `.txq-ai-file-ico`,
696
+ * invoice/attachment tiles) into one primitive.
697
+ *
698
+ * Color map (auto-derived from the resolved type):
699
+ * PDF → danger (red) · IMG/PNG/JPG → info (blue) · DOC/DOCX → accent (blue)
700
+ * XLS/XLSX/CSV → success (green) · PPT → warning · ZIP → neutral
701
+ * anything else → neutral
702
+ *
703
+ * Pass `format` (or its alias `type`) with a format/extension token, or
704
+ * `fileName` to derive the type from the extension. Override the auto color
705
+ * with `tone`.
706
+ */
707
+ declare const fileTypeBadgeVariants: (props?: ({
708
+ size?: "sm" | "md" | null | undefined;
709
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
710
+ /** Semantic color tone for the badge square. */
711
+ type FileTypeTone = "danger" | "info" | "accent" | "success" | "warning" | "neutral";
712
+ /**
713
+ * Derive a canonical file-type code from a file name's extension.
714
+ *
715
+ * @param fileName - The file name, e.g. `2023-return.pdf`.
716
+ * @returns The canonical uppercase code (e.g. `PDF`), or `FILE` when the name
717
+ * has no usable extension.
718
+ */
719
+ declare function fileTypeFromName(fileName: string): string;
720
+ interface FileTypeBadgeProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "children">, VariantProps<typeof fileTypeBadgeVariants> {
721
+ /** Format/extension token, e.g. `PDF`, `docx`. Takes precedence over `fileName`. */
722
+ format?: string;
723
+ /** Alias for `format` — a format/extension token. */
724
+ type?: string;
725
+ /** File name to derive the type from when `format`/`type` are absent. */
726
+ fileName?: string;
727
+ /** Override the auto-derived color. Defaults to `"auto"` (color by type). */
728
+ tone?: FileTypeTone | "auto";
729
+ }
730
+ declare const FileTypeBadge: React$1.ForwardRefExoticComponent<FileTypeBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
731
+
619
732
  interface FileUploadProps extends React.HTMLAttributes<HTMLDivElement> {
620
733
  accept?: string;
621
734
  maxSize?: number;
@@ -675,6 +788,29 @@ declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimi
675
788
  declare const HoverCardPortal: React$1.FC<HoverCardPrimitive.HoverCardPortalProps>;
676
789
  declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
677
790
 
791
+ /**
792
+ * IconTile — the recurring tinted rounded-square icon chip. A tone tint fills
793
+ * the square and colors the icon; `grid place-items-center` keeps the glyph
794
+ * centered. Consolidates v2's `.v2-qico` / `.v2-item-ico` / `.nr-ico` /
795
+ * `.licon` / `.aico` icon-chip pattern into one primitive.
796
+ *
797
+ * tone — `pro` (default), `neutral`, status (`info` | `success` | `warning`
798
+ * | `danger`), and suite tints (`audit` | `books` | `tax`).
799
+ * size — `sm` (~30px) | `md` (~38px) | `lg` (~42px). Icon scales with it.
800
+ * badge — optional ReactNode pinned to the top-right corner (e.g. a count).
801
+ */
802
+ declare const iconTileVariants: (props?: ({
803
+ tone?: "info" | "success" | "warning" | "danger" | "neutral" | "audit" | "books" | "tax" | "pro" | null | undefined;
804
+ size?: "sm" | "md" | "lg" | null | undefined;
805
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
806
+ interface IconTileProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof iconTileVariants> {
807
+ /** The icon (or any node) rendered centered inside the tile. */
808
+ icon: React.ReactNode;
809
+ /** Optional overlay pinned to the top-right corner, e.g. a count badge. */
810
+ badge?: React.ReactNode;
811
+ }
812
+ declare const IconTile: React$1.ForwardRefExoticComponent<IconTileProps & React$1.RefAttributes<HTMLDivElement>>;
813
+
678
814
  interface IconProps extends React.SVGAttributes<SVGElement> {
679
815
  size?: number;
680
816
  }
@@ -692,6 +828,12 @@ declare function CloseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX
692
828
  declare function CheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
693
829
  declare function LayoutDashboardIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
694
830
  declare function BuildingIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
831
+ /** Landmark / "bank" glyph (columns + pediment) — the accounting service mark. */
832
+ declare function LandmarkIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
833
+ /** Folder with an up-arrow — the "upload documents" / document-request mark. */
834
+ declare function FolderUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
835
+ /** Pen-tool / nibbed signature pen — the e-signature mark. */
836
+ declare function PenToolIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
695
837
  declare function MapPinIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
696
838
  declare function FileReturnIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
697
839
  declare function ClipboardCheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
@@ -837,7 +979,7 @@ declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.
837
979
  * (rule-strong border, surface bg, accent focus ring).
838
980
  */
839
981
  declare const inputVariants: (props?: ({
840
- variant?: "default" | "ghost" | null | undefined;
982
+ variant?: "ghost" | "default" | null | undefined;
841
983
  inputSize?: "sm" | "md" | "lg" | null | undefined;
842
984
  } & class_variance_authority_types.ClassProp) | undefined) => string;
843
985
  type InputVariants = VariantProps<typeof inputVariants>;
@@ -985,6 +1127,39 @@ interface LogoProps {
985
1127
  }
986
1128
  declare function Logo({ size, href, showText, className, iconClassName, textClassName, productName, inverted, }: LogoProps): react_jsx_runtime.JSX.Element;
987
1129
 
1130
+ /**
1131
+ * MasterDetailLayout — responsive list + detail two-pane scaffold.
1132
+ *
1133
+ * Backs the duplicated "list on the left, detail on the right" pattern found
1134
+ * across messages, documents, billing, and signatures. Generic over content:
1135
+ * pass any node into the `list` and `detail` slots.
1136
+ *
1137
+ * Desktop (>= md): fixed-width list column + flex-1 detail. Each pane owns
1138
+ * its own scroll (`min-h-0` + `overflow-auto`) so the two scroll
1139
+ * independently and neither pushes the page.
1140
+ * Mobile (< md): the list fills the width; when `detailOpen` is true the
1141
+ * detail slides in over the list from the right. A back affordance is
1142
+ * rendered at the top of the detail pane when `onBack` is supplied.
1143
+ */
1144
+ interface MasterDetailLayoutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
1145
+ /** Left pane — the master list (sessions, files, threads…). */
1146
+ list: React.ReactNode;
1147
+ /** Right pane — the selected record's detail view. */
1148
+ detail: React.ReactNode;
1149
+ /**
1150
+ * Whether the detail pane is shown on mobile. On desktop both panes are
1151
+ * always visible and this prop only governs the small-screen overlay.
1152
+ */
1153
+ detailOpen?: boolean;
1154
+ /** Mobile back handler — returns from the detail overlay to the list. */
1155
+ onBack?: () => void;
1156
+ /** Accessible label for the mobile back button. */
1157
+ backLabel?: string;
1158
+ /** Width of the list column on desktop. Number is treated as px. */
1159
+ listWidth?: number | string;
1160
+ }
1161
+ declare const MasterDetailLayout: React$1.ForwardRefExoticComponent<MasterDetailLayoutProps & React$1.RefAttributes<HTMLDivElement>>;
1162
+
988
1163
  interface MultiFilterPillProps {
989
1164
  label: string;
990
1165
  icon?: React$1.ReactNode;
@@ -1219,6 +1394,61 @@ interface RankedBarsProps extends React.HTMLAttributes<HTMLUListElement> {
1219
1394
  }
1220
1395
  declare const RankedBars: React$1.ForwardRefExoticComponent<RankedBarsProps & React$1.RefAttributes<HTMLUListElement>>;
1221
1396
 
1397
+ type SheetSide = "top" | "right" | "bottom" | "left";
1398
+ type DialogSize = "sm" | "md" | "lg" | "full";
1399
+ interface ResponsiveDialogProps {
1400
+ /** Controlled open state. */
1401
+ open: boolean;
1402
+ /** Open-state change handler (fires on overlay/esc/close as well). */
1403
+ onOpenChange: (open: boolean) => void;
1404
+ /** Accessible title. When omitted, a visually-hidden label is supplied. */
1405
+ title?: React$1.ReactNode;
1406
+ /** Supporting description rendered under the title. */
1407
+ description?: React$1.ReactNode;
1408
+ /** Body content. */
1409
+ children?: React$1.ReactNode;
1410
+ /**
1411
+ * Footer actions. Accepts a node, or a render-prop receiving a `close`
1412
+ * callback (`() => onOpenChange(false)`) for self-dismissing buttons.
1413
+ */
1414
+ footer?: React$1.ReactNode | ((close: () => void) => React$1.ReactNode);
1415
+ /** Class applied to the rendered Sheet/Dialog content surface. */
1416
+ className?: string;
1417
+ /** Sheet side on mobile. Default `"bottom"`. */
1418
+ side?: SheetSide;
1419
+ /** Desktop Dialog max-width preset. Default `"md"`. */
1420
+ size?: DialogSize;
1421
+ }
1422
+ /**
1423
+ * Renders a bottom Sheet on mobile and a centered Dialog on desktop from one
1424
+ * controlled API. Composes the existing Sheet and Dialog primitives.
1425
+ */
1426
+ declare function ResponsiveDialog({ open, onOpenChange, title, description, children, footer, className, side, size, }: ResponsiveDialogProps): react_jsx_runtime.JSX.Element;
1427
+ declare namespace ResponsiveDialog {
1428
+ var displayName: string;
1429
+ }
1430
+
1431
+ /**
1432
+ * RouteTransition — a tiny, generic page-transition wrapper.
1433
+ *
1434
+ * Fades and slides its children up (~8px → 0, ~250ms, ease-out-quart) on
1435
+ * mount, and replays the animation whenever `routeKey` changes by using it as
1436
+ * the React `key` on the inner element — so a route change remounts the inner
1437
+ * node and re-runs the entrance.
1438
+ *
1439
+ * The motion is driven by tw-animate-css `enter` utilities; the design-system's
1440
+ * global `prefers-reduced-motion: reduce` rule neutralizes the animation, so no
1441
+ * per-component reduced-motion handling is required.
1442
+ *
1443
+ * Pass `usePathname()` (or any stable per-route string) as `routeKey` from the
1444
+ * client layout. Works unchanged in both the firm app and the client portal.
1445
+ */
1446
+ interface RouteTransitionProps extends React.HTMLAttributes<HTMLDivElement> {
1447
+ /** Stable per-route string (e.g. `usePathname()`). Used as the inner key. */
1448
+ routeKey: string;
1449
+ }
1450
+ declare const RouteTransition: React$1.ForwardRefExoticComponent<RouteTransitionProps & React$1.RefAttributes<HTMLDivElement>>;
1451
+
1222
1452
  interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
1223
1453
  children: React$1.ReactNode;
1224
1454
  }
@@ -1571,7 +1801,7 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
1571
1801
 
1572
1802
  declare const spinnerVariants: (props?: ({
1573
1803
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
1574
- tone?: "current" | "success" | "warning" | "destructive" | "accent" | "muted" | null | undefined;
1804
+ tone?: "current" | "success" | "warning" | "destructive" | "muted" | "accent" | null | undefined;
1575
1805
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1576
1806
  interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
1577
1807
  /**
@@ -1612,6 +1842,33 @@ interface StatProps extends React.HTMLAttributes<HTMLDivElement> {
1612
1842
  }
1613
1843
  declare const Stat: React$1.ForwardRefExoticComponent<StatProps & React$1.RefAttributes<HTMLDivElement>>;
1614
1844
 
1845
+ /**
1846
+ * StatusDot — standalone attention / unread / presence dot.
1847
+ *
1848
+ * A small filled circle for NON-avatar surfaces: nav rails, bottom nav,
1849
+ * top-bar bells, list rows, unread markers. (Avatar already renders its own
1850
+ * corner presence dot — use that for avatar-attached dots.)
1851
+ *
1852
+ * tone — danger (default) | warning | info | success | pro | neutral
1853
+ * size — sm ~7px (default) | md ~9px
1854
+ * ring — adds a 2px solid surface ring so the dot reads when overlaid on
1855
+ * icons / avatars (box-shadow, so it never shifts layout)
1856
+ * pulse — subtle expanding ping halo; hidden under prefers-reduced-motion
1857
+ *
1858
+ * The dot fills with `currentColor`, so the ping clone inherits the same tone
1859
+ * automatically. `aria-hidden` by default — pass `aria-label` to expose it.
1860
+ */
1861
+ declare const statusDotVariants: (props?: ({
1862
+ tone?: "info" | "success" | "warning" | "danger" | "neutral" | "pro" | null | undefined;
1863
+ size?: "sm" | "md" | null | undefined;
1864
+ ring?: boolean | null | undefined;
1865
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1866
+ interface StatusDotProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof statusDotVariants> {
1867
+ /** Subtle expanding ping halo. Respects `prefers-reduced-motion`. */
1868
+ pulse?: boolean;
1869
+ }
1870
+ declare const StatusDot: React$1.ForwardRefExoticComponent<StatusDotProps & React$1.RefAttributes<HTMLSpanElement>>;
1871
+
1615
1872
  /**
1616
1873
  * StatusIcon — progress-aware state circle for arbitrary pipeline stages.
1617
1874
  *
@@ -1676,6 +1933,32 @@ interface StepperProps extends React.HTMLAttributes<HTMLDivElement> {
1676
1933
  }
1677
1934
  declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
1678
1935
 
1936
+ /**
1937
+ * StickyActionBar — a frosted action bar pinned to the bottom of its scroll
1938
+ * container. Holds a left-aligned `hint` (info / summary text) and right-aligned
1939
+ * action buttons (`children`).
1940
+ *
1941
+ * Frosted surface (`bg-surface/80` + `backdrop-blur`) over a top rule, so page
1942
+ * content scrolls visibly beneath it. Presentational only — the call site owns
1943
+ * the buttons and their disabled/loading state.
1944
+ *
1945
+ * `offsetForMobileNav` lifts the bar to clear the 56px mobile tab bar plus the
1946
+ * iOS safe-area inset, so it never hides behind the bottom navigation.
1947
+ *
1948
+ * Generic by design: it backs the portal signing footer and the transactions
1949
+ * submit bar, and is intended to replace the firm app's hand-rolled
1950
+ * bulk-action bar chrome.
1951
+ */
1952
+ interface StickyActionBarProps extends React.HTMLAttributes<HTMLDivElement> {
1953
+ /** Action buttons, right-aligned. */
1954
+ children: React.ReactNode;
1955
+ /** Left-aligned info / summary text. */
1956
+ hint?: React.ReactNode;
1957
+ /** Lift the bar above the 56px mobile tab bar + safe-area inset. */
1958
+ offsetForMobileNav?: boolean;
1959
+ }
1960
+ declare const StickyActionBar: React$1.ForwardRefExoticComponent<StickyActionBarProps & React$1.RefAttributes<HTMLDivElement>>;
1961
+
1679
1962
  interface SubmitButtonProps extends Omit<ButtonProps, "type" | "loading"> {
1680
1963
  pendingText?: string;
1681
1964
  children: React.ReactNode;
@@ -1686,6 +1969,60 @@ interface SubmitButtonProps extends Omit<ButtonProps, "type" | "loading"> {
1686
1969
  */
1687
1970
  declare const SubmitButton: React$1.ForwardRefExoticComponent<SubmitButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1688
1971
 
1972
+ /**
1973
+ * SuiteProgress — a discrete, segmented progress meter with a percent readout.
1974
+ *
1975
+ * Renders `total` equal-width segments in a flex row. Segments before `value`
1976
+ * are filled in the suite tone; the rest sit on the `surface-3` track. An
1977
+ * optional numeric percent renders to the right (bold + tabular, with a
1978
+ * smaller "%").
1979
+ *
1980
+ * Distinct from the `SegmentedProgress` step-meter (steps/current, no percent):
1981
+ * SuiteProgress is the percent-bearing bar with suite-brand tones, used for
1982
+ * pipeline and engagement *completion* (e.g. "3 of 5 — 60%"). Pick the step
1983
+ * meter when the count itself is the message; pick this when the percentage is.
1984
+ *
1985
+ * Pure presentational — no client runtime required.
1986
+ */
1987
+ declare const suiteProgressFillVariants: (props?: ({
1988
+ tone?: "audit" | "books" | "tax" | "pro" | null | undefined;
1989
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1990
+ declare const SIZE_STYLES: {
1991
+ readonly sm: {
1992
+ readonly row: "gap-2";
1993
+ readonly track: "gap-0.5";
1994
+ readonly segment: "h-1";
1995
+ readonly text: "text-xs";
1996
+ };
1997
+ readonly md: {
1998
+ readonly row: "gap-3";
1999
+ readonly track: "gap-1";
2000
+ readonly segment: "h-[5px]";
2001
+ readonly text: "text-sm";
2002
+ };
2003
+ };
2004
+ type SuiteProgressSize = keyof typeof SIZE_STYLES;
2005
+ type SuiteProgressTone = NonNullable<VariantProps<typeof suiteProgressFillVariants>["tone"]>;
2006
+ interface SuiteProgressProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "role"> {
2007
+ /** Number of completed segments. */
2008
+ value: number;
2009
+ /** Total segment count. */
2010
+ total: number;
2011
+ /** Show the numeric percent to the right. Defaults to true. */
2012
+ showPercent?: boolean;
2013
+ /** Override the displayed percent (0–100). Falls back to value/total. */
2014
+ percent?: number;
2015
+ /** Suite tone for filled segments. Defaults to "pro". */
2016
+ tone?: SuiteProgressTone;
2017
+ /** Bar height + text scale. Defaults to "md". */
2018
+ size?: SuiteProgressSize;
2019
+ /** Optional leading label, rendered before the segments. */
2020
+ label?: string;
2021
+ /** Extra classes applied to every segment. */
2022
+ segmentClassName?: string;
2023
+ }
2024
+ declare const SuiteProgress: React$1.ForwardRefExoticComponent<SuiteProgressProps & React$1.RefAttributes<HTMLDivElement>>;
2025
+
1689
2026
  declare const switchVariants: (props?: ({
1690
2027
  size?: "sm" | "md" | null | undefined;
1691
2028
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1754,7 +2091,7 @@ declare namespace TeamMemberSelect {
1754
2091
  }
1755
2092
 
1756
2093
  declare const textareaVariants: (props?: ({
1757
- variant?: "default" | "ghost" | null | undefined;
2094
+ variant?: "ghost" | "default" | null | undefined;
1758
2095
  inputSize?: "sm" | "md" | "lg" | null | undefined;
1759
2096
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1760
2097
  type TextareaVariants = VariantProps<typeof textareaVariants>;
@@ -1790,7 +2127,7 @@ interface ToastProviderProps {
1790
2127
  declare function ToastProvider({ children }: ToastProviderProps): react_jsx_runtime.JSX.Element;
1791
2128
 
1792
2129
  declare const itemVariants: (props?: ({
1793
- variant?: "default" | "outline" | null | undefined;
2130
+ variant?: "outline" | "default" | null | undefined;
1794
2131
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1795
2132
  type ToggleGroupRootProps = React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof itemVariants>;
1796
2133
  declare const ToggleGroup: React$1.ForwardRefExoticComponent<ToggleGroupRootProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -2235,7 +2572,7 @@ declare const SidebarLinkLabel: React$1.ForwardRefExoticComponent<SidebarLinkLab
2235
2572
  type SidebarLinkActionProps = React$1.HTMLAttributes<HTMLSpanElement>;
2236
2573
  declare const SidebarLinkAction: React$1.ForwardRefExoticComponent<SidebarLinkActionProps & React$1.RefAttributes<HTMLSpanElement>>;
2237
2574
  declare const sidebarLinkBadgeVariants: (props?: ({
2238
- tone?: "warning" | "default" | "neutral" | "danger" | null | undefined;
2575
+ tone?: "warning" | "danger" | "neutral" | "default" | null | undefined;
2239
2576
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2240
2577
  type SidebarLinkBadgeVariants = VariantProps<typeof sidebarLinkBadgeVariants>;
2241
2578
  interface SidebarLinkBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, SidebarLinkBadgeVariants {
@@ -3297,4 +3634,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
3297
3634
 
3298
3635
  declare function cn(...inputs: ClassValue[]): string;
3299
3636
 
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 };
3637
+ 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, 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, 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, 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 };