@assure-one/design-system 1.33.0 → 1.34.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
@@ -1,4 +1,5 @@
1
- export { C as ColorName, R as ReferenceTokens, S as SystemTokens, c as colors, r as radii, a as reference, s as shadows, b as spacing, d as surfaces, e as systemTokens, t as typography } from './system-BDU18fVg.js';
1
+ import { S as SystemTokens, i as iconSizes } from './system-BDU18fVg.js';
2
+ export { C as ColorName, R as ReferenceTokens, c as colors, r as radii, a as reference, s as shadows, b as spacing, d as surfaces, e as systemTokens, t as typography } from './system-BDU18fVg.js';
2
3
  import * as React$1 from 'react';
3
4
  import { ReactNode, CSSProperties } from 'react';
4
5
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
@@ -468,10 +469,10 @@ declare const avatarVariants: (props?: ({
468
469
  variant?: "initials" | "branded" | null | undefined;
469
470
  } & class_variance_authority_types.ClassProp) | undefined) => string;
470
471
  declare const statusStyles: {
471
- readonly online: "bg-success-fg";
472
- readonly away: "bg-warning-fg";
473
- readonly busy: "bg-danger-fg";
474
- readonly offline: "bg-fg-4";
472
+ readonly online: "ds:bg-success-fg";
473
+ readonly away: "ds:bg-warning-fg";
474
+ readonly busy: "ds:bg-danger-fg";
475
+ readonly offline: "ds:bg-fg-4";
475
476
  };
476
477
  interface AvatarProps extends Omit<React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>, "children">, VariantProps<typeof avatarVariants> {
477
478
  src?: string | null;
@@ -486,7 +487,7 @@ declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.Re
486
487
  * neutral pill.
487
488
  */
488
489
  declare const badgeVariants: (props?: ({
489
- variant?: "info" | "success" | "warning" | "destructive" | "secondary" | "outline" | "default" | null | undefined;
490
+ variant?: "info" | "success" | "warning" | "outline" | "default" | "destructive" | "secondary" | null | undefined;
490
491
  size?: "sm" | "md" | null | undefined;
491
492
  } & class_variance_authority_types.ClassProp) | undefined) => string;
492
493
  interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
@@ -555,8 +556,8 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
555
556
  * Use `asChild` to render as a different element (e.g. an anchor / next/link).
556
557
  */
557
558
  declare const buttonVariants: (props?: ({
558
- variant?: "accent" | "link" | "success" | "destructive" | "primary" | "secondary" | "ghost" | "outline" | "dashed" | null | undefined;
559
- size?: "icon" | "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | "icon-xs" | "icon-sm" | null | undefined;
559
+ variant?: "accent" | "success" | "outline" | "ghost" | "link" | "dashed" | "destructive" | "primary" | "secondary" | null | undefined;
560
+ size?: "sm" | "md" | "lg" | "default" | "compact" | "icon" | "comfortable" | "icon-xs" | "icon-sm" | null | undefined;
560
561
  } & class_variance_authority_types.ClassProp) | undefined) => string;
561
562
  type ButtonVariant = NonNullable<VariantProps<typeof buttonVariants>["variant"]>;
562
563
  type ButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]>;
@@ -887,10 +888,10 @@ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.D
887
888
  declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
888
889
  declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
889
890
  declare const dialogSizeStyles: {
890
- readonly sm: "max-w-sm";
891
- readonly md: "max-w-lg";
892
- readonly lg: "max-w-2xl";
893
- readonly full: "max-w-[calc(100vw-2rem)]";
891
+ readonly sm: "ds:max-w-sm";
892
+ readonly md: "ds:max-w-lg";
893
+ readonly lg: "ds:max-w-2xl";
894
+ readonly full: "ds:max-w-[calc(100vw-2rem)]";
894
895
  };
895
896
  interface DialogContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
896
897
  size?: keyof typeof dialogSizeStyles;
@@ -914,7 +915,7 @@ declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitiv
914
915
  declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
915
916
 
916
917
  declare const chipVariants: (props?: ({
917
- variant?: "primary" | "neutral" | null | undefined;
918
+ variant?: "neutral" | "primary" | null | undefined;
918
919
  } & class_variance_authority_types.ClassProp) | undefined) => string;
919
920
  interface DismissibleChipProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onClick" | "children">, VariantProps<typeof chipVariants> {
920
921
  label: React$1.ReactNode;
@@ -1186,7 +1187,7 @@ declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCard
1186
1187
  * badge — optional ReactNode pinned to the top-right corner (e.g. a count).
1187
1188
  */
1188
1189
  declare const iconTileVariants: (props?: ({
1189
- tone?: "info" | "success" | "warning" | "danger" | "neutral" | "audit" | "books" | "tax" | "pro" | null | undefined;
1190
+ tone?: "neutral" | "info" | "success" | "warning" | "danger" | "audit" | "books" | "tax" | "pro" | null | undefined;
1190
1191
  size?: "sm" | "md" | "lg" | null | undefined;
1191
1192
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1192
1193
  interface IconTileProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof iconTileVariants> {
@@ -1197,9 +1198,140 @@ interface IconTileProps extends React.HTMLAttributes<HTMLDivElement>, VariantPro
1197
1198
  }
1198
1199
  declare const IconTile: React$1.ForwardRefExoticComponent<IconTileProps & React$1.RefAttributes<HTMLDivElement>>;
1199
1200
 
1201
+ /**
1202
+ * Shared component vocabulary (W3-01, ADR-007, target architecture §28).
1203
+ *
1204
+ * Every component that offers one of these axes must use *this* type for it,
1205
+ * never a private union with the same words. Components that support only a
1206
+ * subset narrow with `Extract<…>`; nothing may widen a list. The lists are
1207
+ * closed: adding a word is an ADR-007 amendment, not a component change.
1208
+ *
1209
+ * Types only — this module has no runtime and adds nothing to `dist/index.js`.
1210
+ * All four names are `@experimental` until decision D4 (`danger` vs
1211
+ * `destructive`) is resolved and the Wave 3 components that adopt them are
1212
+ * marked stable (ADR-007 acceptance condition).
1213
+ */
1214
+
1215
+ /**
1216
+ * Semantic meaning → colour family.
1217
+ *
1218
+ * `intent` says *what the element means*; `variant` says how loudly. A
1219
+ * `danger` action, a `danger` badge and a `danger` alert share one colour
1220
+ * family (`--ds-color-danger-*`) at three different emphases.
1221
+ *
1222
+ * `danger` is the canonical word (decision D4, default); `destructive` is
1223
+ * accepted by components as a deprecated alias for the 2.x line and is *not*
1224
+ * a member of this type.
1225
+ *
1226
+ * @experimental
1227
+ */
1228
+ type Intent = "neutral" | "brand" | "info" | "success" | "warning" | "danger";
1229
+ /**
1230
+ * Visual emphasis — how strongly the element asserts itself, independent of
1231
+ * what it means. Actions, badges, alerts and chips each pick the subset that
1232
+ * applies (`Extract<Variant, "solid" | "soft" | "outline">` for Badge).
1233
+ *
1234
+ * - `solid` — filled with the intent colour, contrasting foreground
1235
+ * - `soft` — tinted background, intent-coloured foreground
1236
+ * - `outline` — border only, transparent background
1237
+ * - `ghost` — no border or background until hovered
1238
+ * - `link` — inline text, underlined on hover; actions only
1239
+ *
1240
+ * State (`disabled`, `loading`, `pressed`, `selected`, …) is never a variant:
1241
+ * it is a boolean prop reflected as a `data-*` or ARIA attribute.
1242
+ *
1243
+ * @experimental
1244
+ */
1245
+ type Variant = "solid" | "soft" | "outline" | "ghost" | "link";
1246
+ /**
1247
+ * The shared control size step (ADR-013, W2-03): one name means one outer
1248
+ * height on every control that offers it, read from
1249
+ * `--ds-control-height-{size}`. Derived from the token scale so the type and
1250
+ * the tokens cannot disagree; it resolves to `"xs" | "sm" | "md" | "lg" | "xl"`.
1251
+ *
1252
+ * The pixels behind each step are decision D5; existing components keep
1253
+ * today's geometry under these names until 2.0 (compat token per control).
1254
+ *
1255
+ * @experimental
1256
+ */
1257
+ type ControlSize = keyof SystemTokens["control"]["height"];
1258
+ /**
1259
+ * Corner treatment, offered only where it is a real choice (W2-07 radius roles,
1260
+ * target architecture §18, §28).
1261
+ *
1262
+ * - `rounded` — the component's radius role (`--ds-radius-control`,
1263
+ * `--ds-radius-badge`, …)
1264
+ * - `pill` — `--ds-radius-full`
1265
+ * - `square` — no rounding beyond the smallest reference step; icon tiles only
1266
+ *
1267
+ * A component's *default* shape is whatever it renders today; changing a
1268
+ * default is decision D1 and waits for 2.0.
1269
+ *
1270
+ * @experimental
1271
+ */
1272
+ type Shape = "rounded" | "pill" | "square";
1273
+
1274
+ /**
1275
+ * Named icon boxes — the four `--ds-icon-size-*` steps of W2-10 (12 / 14 / 16 /
1276
+ * 20 px), spelled with the shared size vocabulary (ADR-007) and derived from the
1277
+ * token scale so the type and the tokens cannot disagree.
1278
+ */
1279
+ type IconSize = Extract<ControlSize, keyof typeof iconSizes>;
1200
1280
  interface IconProps extends React.SVGAttributes<SVGElement> {
1201
- size?: number;
1281
+ /**
1282
+ * The icon box. A size name renders `var(--ds-icon-size-<name>)` — with the
1283
+ * legacy `--icon-size-<name>` and then the token's pixel value as fallbacks —
1284
+ * so a theme can retune the boxes; a number is a pixel box, as before.
1285
+ * Defaults to 24, the grid the glyphs are drawn on.
1286
+ */
1287
+ size?: IconSize | number;
1288
+ /**
1289
+ * Stroke width of every stroked element, set once on the root `<svg>` and
1290
+ * inherited. Defaults to 1.5, the catalogue's baseline; the few glyphs drawn
1291
+ * heavier (`XIcon`, `CheckIcon`, `BoldIcon`) default to their own weight.
1292
+ */
1293
+ strokeWidth?: number | string;
1294
+ /**
1295
+ * Accessible name. Icons are decorative (`aria-hidden`); a `title` exposes
1296
+ * the svg as `role="img"` with a `<title>` child. (An `aria-label` alone
1297
+ * still lands on the hidden svg, as it always has — C-DOM-15 freezes that
1298
+ * DOM for Pro; use `title` to name an icon.)
1299
+ */
1300
+ title?: string;
1202
1301
  }
1302
+ /** What every catalogue icon and every `createIcon()` product is. */
1303
+ interface IconComponent {
1304
+ (props: IconProps): React.JSX.Element;
1305
+ displayName?: string;
1306
+ }
1307
+ interface IconDefinition {
1308
+ /** Component name, e.g. `"ArchiveIcon"`; becomes the `displayName`. */
1309
+ name: string;
1310
+ /**
1311
+ * What to draw. Path data strings become `currentColor` strokes with round
1312
+ * caps and joins, the catalogue's outline style; pass elements for anything
1313
+ * else (filled dots, rects, a mark's fixed colours). Elements must not set
1314
+ * their own `strokeWidth` — it lives on the root so the prop works.
1315
+ */
1316
+ paths: string | readonly string[] | React.ReactNode;
1317
+ /** Defaults to `"0 0 24 24"`. A product icon drawn on another grid sets its own. */
1318
+ viewBox?: string;
1319
+ /** This glyph's default stroke width when the caller passes none. Defaults to 1.5. */
1320
+ strokeWidth?: number | string;
1321
+ }
1322
+ /**
1323
+ * Builds an icon component with the catalogue's props, sizing, stroke and
1324
+ * accessibility contract from path data or SVG elements. Products use it for
1325
+ * icons that are theirs (vendor logos, annotation shapes) without inlining
1326
+ * `<svg>` at call sites; the catalogue uses it for its newer glyphs.
1327
+ *
1328
+ * @example
1329
+ * const ArchiveIcon = createIcon({
1330
+ * name: "ArchiveIcon",
1331
+ * paths: ["M3 3h18a1 1 0 011 1v3a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1z", "M4 8v11a2 2 0 002 2h12a2 2 0 002-2V8", "M10 12h4"],
1332
+ * });
1333
+ */
1334
+ declare function createIcon(definition: IconDefinition): IconComponent;
1203
1335
  declare function DocumentIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1204
1336
  declare function ArrowRightIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1205
1337
  declare function StarIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
@@ -1217,8 +1349,12 @@ declare function UsersIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX
1217
1349
  declare function FileTextIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1218
1350
  declare function ShieldIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1219
1351
  declare function MenuIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1220
- declare function CloseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1221
- declare function CheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1352
+ /**
1353
+ * @deprecated Use `XIcon` — the same glyph under its lucide name (the catalogue
1354
+ * drew it twice). This alias is the identical component and stays through 2.x.
1355
+ */
1356
+ declare const CloseIcon: typeof XIcon;
1357
+ declare function CheckIcon({ size, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1222
1358
  declare function LayoutDashboardIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1223
1359
  declare function BuildingIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1224
1360
  /** Landmark / "bank" glyph (columns + pediment) — the accounting service mark. */
@@ -1279,7 +1415,7 @@ declare function PaperclipIcon({ size, ...props }: IconProps): react_jsx_runtime
1279
1415
  declare function AtSignIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1280
1416
  declare function ZoomInIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1281
1417
  declare function ZoomOutIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1282
- declare function XIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1418
+ declare function XIcon({ size, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1283
1419
  declare function MessageCircleWarningIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1284
1420
  declare function FlagIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1285
1421
  declare function LockOpenIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
@@ -1289,7 +1425,11 @@ declare function CopyIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.
1289
1425
  declare function MonitorIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1290
1426
  declare function SmartphoneIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1291
1427
  declare function AlertTriangleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1292
- declare function ArrowRightSmallIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1428
+ /**
1429
+ * @deprecated Use `ArrowRightIcon` — it is the same path; "small" was never a
1430
+ * different drawing. This alias is the identical component and stays through 2.x.
1431
+ */
1432
+ declare const ArrowRightSmallIcon: typeof ArrowRightIcon;
1293
1433
  declare function ArrowLeftIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1294
1434
  declare function CreditCardIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1295
1435
  declare function AlertCircleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
@@ -1312,7 +1452,7 @@ declare function SlashIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX
1312
1452
  declare function SparklesIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1313
1453
  declare function Trash2Icon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1314
1454
  declare function UserIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1315
- declare function BoldIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1455
+ declare function BoldIcon({ size, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1316
1456
  declare function ItalicIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1317
1457
  declare function UnderlineIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1318
1458
  declare function StrikethroughIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
@@ -1366,6 +1506,42 @@ declare function TrendingDownIcon({ size, ...props }: IconProps): react_jsx_runt
1366
1506
  declare function PlayIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1367
1507
  declare function PauseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1368
1508
  declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
1509
+ /** Six-dot drag handle for sortable rows and kanban cards. */
1510
+ declare const GripVerticalIcon: IconComponent;
1511
+ /** Enter full screen / expand a panel — four outward corners. */
1512
+ declare const MaximizeIcon: IconComponent;
1513
+ /** Leave full screen / shrink a panel — four inward corners. */
1514
+ declare const MinimizeIcon: IconComponent;
1515
+ declare const ArchiveIcon: IconComponent;
1516
+ declare const ThumbsUpIcon: IconComponent;
1517
+ declare const ThumbsDownIcon: IconComponent;
1518
+ declare const LayersIcon: IconComponent;
1519
+ /** Formula / sum — the Greek capital sigma. */
1520
+ declare const SigmaIcon: IconComponent;
1521
+ /** Video camera; pair with `PlayIcon` for playback. */
1522
+ declare const VideoIcon: IconComponent;
1523
+ declare const MicIcon: IconComponent;
1524
+ /** Speaker with two sound waves — audio on. */
1525
+ declare const Volume2Icon: IconComponent;
1526
+ /** Speaker with a cross — muted. */
1527
+ declare const VolumeXIcon: IconComponent;
1528
+ /** Two clockwise arrows — refresh / sync. `RotateCcwIcon` is the single-arrow undo. */
1529
+ declare const RefreshCwIcon: IconComponent;
1530
+ /** Stopwatch — elapsed time and timers; `ClockIcon` is wall-clock time. */
1531
+ declare const TimerIcon: IconComponent;
1532
+ declare const BrainIcon: IconComponent;
1533
+ /** Pop-out / opens elsewhere — box with an arrow leaving the top-right corner. */
1534
+ declare const ExternalLinkIcon: IconComponent;
1535
+ /** Dock to the right — the mirror of `PanelLeftIcon`. */
1536
+ declare const PanelRightIcon: IconComponent;
1537
+ /** Collapse — the pair of `ChevronsUpDownIcon`. */
1538
+ declare const ChevronsDownUpIcon: IconComponent;
1539
+ /**
1540
+ * Filled trash can for destructive affordances inside small round buttons,
1541
+ * where the outline `TrashIcon` reads as thin. Same family as the solid status
1542
+ * icons: the slots are knockouts.
1543
+ */
1544
+ declare const TrashSolidIcon: IconComponent;
1369
1545
 
1370
1546
  /**
1371
1547
  * Input variants. Mirrors the raw HTML `<input>` styled per the suite tokens
@@ -1373,7 +1549,7 @@ declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.
1373
1549
  */
1374
1550
  declare const inputVariants: (props?: ({
1375
1551
  variant?: "ghost" | "default" | null | undefined;
1376
- inputSize?: "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | null | undefined;
1552
+ inputSize?: "sm" | "md" | "lg" | "default" | "compact" | "comfortable" | null | undefined;
1377
1553
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1378
1554
  type InputVariants = VariantProps<typeof inputVariants>;
1379
1555
  interface InputProps$1 extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size">, InputVariants {
@@ -1506,26 +1682,26 @@ declare const LoadingRows: React$1.ForwardRefExoticComponent<LoadingRowsProps &
1506
1682
  declare const sizeStyles: {
1507
1683
  readonly sm: {
1508
1684
  readonly icon: 20;
1509
- readonly text: "text-sm";
1510
- readonly gap: "gap-2";
1685
+ readonly text: "ds:text-sm";
1686
+ readonly gap: "ds:gap-2";
1511
1687
  readonly assetHeight: 24;
1512
1688
  };
1513
1689
  readonly md: {
1514
1690
  readonly icon: 24;
1515
- readonly text: "text-[17px]";
1516
- readonly gap: "gap-2.5";
1691
+ readonly text: "ds:text-[17px]";
1692
+ readonly gap: "ds:gap-2.5";
1517
1693
  readonly assetHeight: 30;
1518
1694
  };
1519
1695
  readonly lg: {
1520
1696
  readonly icon: 32;
1521
- readonly text: "text-xl";
1522
- readonly gap: "gap-3";
1697
+ readonly text: "ds:text-xl";
1698
+ readonly gap: "ds:gap-3";
1523
1699
  readonly assetHeight: 40;
1524
1700
  };
1525
1701
  readonly xl: {
1526
1702
  readonly icon: 40;
1527
- readonly text: "text-2xl";
1528
- readonly gap: "gap-3.5";
1703
+ readonly text: "ds:text-2xl";
1704
+ readonly gap: "ds:gap-3.5";
1529
1705
  readonly assetHeight: 48;
1530
1706
  };
1531
1707
  };
@@ -1805,7 +1981,7 @@ declare function PriorityIcon({ priority, size, className, ...props }: PriorityI
1805
1981
  * state — but for back-compat we still accept `value: number`.
1806
1982
  */
1807
1983
  declare const progressBarVariants: (props?: ({
1808
- variant?: "info" | "success" | "warning" | "destructive" | "default" | null | undefined;
1984
+ variant?: "info" | "success" | "warning" | "default" | "destructive" | null | undefined;
1809
1985
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1810
1986
  interface ProgressBarProps extends Omit<React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>, "value">, VariantProps<typeof progressBarVariants> {
1811
1987
  /** 0..max. Set to `null` for an indeterminate track. */
@@ -1824,7 +2000,7 @@ declare const ProgressBar: React$1.ForwardRefExoticComponent<ProgressBarProps &
1824
2000
  * Public API preserved: `value`, `max`, `size`, `strokeWidth`, `label`, `sublabel`.
1825
2001
  */
1826
2002
  declare const progressRingVariants: (props?: ({
1827
- variant?: "info" | "success" | "warning" | "destructive" | "default" | null | undefined;
2003
+ variant?: "info" | "success" | "warning" | "default" | "destructive" | null | undefined;
1828
2004
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1829
2005
  interface ProgressRingProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof progressRingVariants> {
1830
2006
  value: number;
@@ -1931,7 +2107,7 @@ declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & Re
1931
2107
  declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1932
2108
 
1933
2109
  declare const searchInputVariants: (props?: ({
1934
- inputSize?: "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | null | undefined;
2110
+ inputSize?: "sm" | "md" | "lg" | "default" | "compact" | "comfortable" | null | undefined;
1935
2111
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1936
2112
  type SearchInputVariants = VariantProps<typeof searchInputVariants>;
1937
2113
  interface SearchInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "size">, SearchInputVariants {
@@ -2061,10 +2237,10 @@ declare function SectionHeader({ title, description, align, className, }: Sectio
2061
2237
  * but Section keeps its 24px (`px-6`) gutter for narrower marketing pages.
2062
2238
  */
2063
2239
  declare const maxWidthStyles: {
2064
- readonly sm: "max-w-3xl";
2065
- readonly md: "max-w-4xl";
2066
- readonly lg: "max-w-5xl";
2067
- readonly xl: "max-w-6xl";
2240
+ readonly sm: "ds:max-w-3xl";
2241
+ readonly md: "ds:max-w-4xl";
2242
+ readonly lg: "ds:max-w-5xl";
2243
+ readonly xl: "ds:max-w-6xl";
2068
2244
  };
2069
2245
  interface SectionProps extends React.HTMLAttributes<HTMLElement> {
2070
2246
  maxWidth?: keyof typeof maxWidthStyles;
@@ -2185,7 +2361,7 @@ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dial
2185
2361
  declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
2186
2362
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2187
2363
  declare const sheetVariants: (props?: ({
2188
- side?: "left" | "top" | "right" | "bottom" | null | undefined;
2364
+ side?: "left" | "right" | "bottom" | "top" | null | undefined;
2189
2365
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2190
2366
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
2191
2367
  /** If false, the built-in close button is hidden. Default: true. */
@@ -2277,7 +2453,7 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
2277
2453
 
2278
2454
  declare const spinnerVariants: (props?: ({
2279
2455
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
2280
- tone?: "accent" | "current" | "success" | "warning" | "destructive" | "muted" | null | undefined;
2456
+ tone?: "accent" | "success" | "warning" | "current" | "destructive" | "muted" | null | undefined;
2281
2457
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2282
2458
  interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
2283
2459
  /**
@@ -2457,7 +2633,7 @@ declare const Stat: React$1.ForwardRefExoticComponent<StatProps & React$1.RefAtt
2457
2633
  * automatically. `aria-hidden` by default — pass `aria-label` to expose it.
2458
2634
  */
2459
2635
  declare const statusDotVariants: (props?: ({
2460
- tone?: "info" | "success" | "warning" | "danger" | "neutral" | "pro" | null | undefined;
2636
+ tone?: "neutral" | "info" | "success" | "warning" | "danger" | "pro" | null | undefined;
2461
2637
  size?: "sm" | "md" | null | undefined;
2462
2638
  ring?: boolean | null | undefined;
2463
2639
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2588,16 +2764,16 @@ declare const suiteProgressFillVariants: (props?: ({
2588
2764
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2589
2765
  declare const SIZE_STYLES: {
2590
2766
  readonly sm: {
2591
- readonly row: "gap-2";
2592
- readonly track: "gap-0.5";
2593
- readonly segment: "h-1";
2594
- readonly text: "text-xs";
2767
+ readonly row: "ds:gap-2";
2768
+ readonly track: "ds:gap-0.5";
2769
+ readonly segment: "ds:h-1";
2770
+ readonly text: "ds:text-xs";
2595
2771
  };
2596
2772
  readonly md: {
2597
- readonly row: "gap-3";
2598
- readonly track: "gap-1";
2599
- readonly segment: "h-[5px]";
2600
- readonly text: "text-sm";
2773
+ readonly row: "ds:gap-3";
2774
+ readonly track: "ds:gap-1";
2775
+ readonly segment: "ds:h-[5px]";
2776
+ readonly text: "ds:text-sm";
2601
2777
  };
2602
2778
  };
2603
2779
  type SuiteProgressSize = keyof typeof SIZE_STYLES;
@@ -2653,7 +2829,7 @@ declare const TableCaption: React$1.ForwardRefExoticComponent<TableCaptionProps
2653
2829
  declare const Tabs: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2654
2830
  declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2655
2831
  declare const triggerVariants: (props?: ({
2656
- variant?: "underline" | "pill" | null | undefined;
2832
+ variant?: "pill" | "underline" | null | undefined;
2657
2833
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2658
2834
  interface TabsTriggerProps extends React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger>, VariantProps<typeof triggerVariants> {
2659
2835
  }
@@ -4254,9 +4430,9 @@ type DocumentFileCardProps = DocumentFileRowProps;
4254
4430
  declare const DocumentFileRow: React$1.ForwardRefExoticComponent<DocumentFileRowProps & React$1.RefAttributes<HTMLDivElement>>;
4255
4431
  declare const DocumentFileCard: React$1.ForwardRefExoticComponent<DocumentFileRowProps & React$1.RefAttributes<HTMLDivElement>>;
4256
4432
  declare const lineCaptionToneClass: {
4257
- readonly muted: "text-fg-4";
4258
- readonly warning: "text-warning-fg";
4259
- readonly danger: "text-danger-fg";
4433
+ readonly muted: "ds:text-fg-4";
4434
+ readonly warning: "ds:text-warning-fg";
4435
+ readonly danger: "ds:text-danger-fg";
4260
4436
  };
4261
4437
  interface DocumentFileLineProps extends React$1.HTMLAttributes<HTMLDivElement> {
4262
4438
  /** The file's own name. */
@@ -4629,7 +4805,7 @@ declare const SidebarLinkLabel: React$1.ForwardRefExoticComponent<SidebarLinkLab
4629
4805
  type SidebarLinkActionProps = React$1.HTMLAttributes<HTMLSpanElement>;
4630
4806
  declare const SidebarLinkAction: React$1.ForwardRefExoticComponent<SidebarLinkActionProps & React$1.RefAttributes<HTMLSpanElement>>;
4631
4807
  declare const sidebarLinkBadgeVariants: (props?: ({
4632
- tone?: "warning" | "default" | "danger" | "neutral" | null | undefined;
4808
+ tone?: "neutral" | "warning" | "danger" | "default" | null | undefined;
4633
4809
  } & class_variance_authority_types.ClassProp) | undefined) => string;
4634
4810
  type SidebarLinkBadgeVariants = VariantProps<typeof sidebarLinkBadgeVariants>;
4635
4811
  interface SidebarLinkBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, SidebarLinkBadgeVariants {
@@ -6580,4 +6756,4 @@ interface BrandScopeProps extends React.HTMLAttributes<HTMLDivElement> {
6580
6756
  */
6581
6757
  declare const BrandScope: React$1.ForwardRefExoticComponent<BrandScopeProps & React$1.RefAttributes<HTMLDivElement>>;
6582
6758
 
6583
- export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, type AgreementFirm, AgreementPaneHeading, type AgreementPaneHeadingProps, type AgreementStatus, type AgreementStep, AgreementViewer, type AgreementViewerProps, AiDraftCard, type AiDraftCardProps, type AiDraftState, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, type AlertDialogSlot, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, BRAND_PRODUCTS, Badge, type BadgeProps, type BadgeSlot, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, type BrandProduct, BrandScope, type BrandScopeProps, BrandScopeProvider, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, type ButtonSize, type ButtonSlot, type ButtonVariant, COUNTRY_CODES, Calendar, type CalendarCaptionLayout, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, type CellValue, type ChannelTabItem, ChannelTabs, type ChannelTabsProps, type ChannelTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, type CheckboxSlot, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Code, type CodeProps, type CodeSlot, type CodeVariant, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, type ContextMenuSlot, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, Dash, DashGrid, type DashGridProps, type DashWidget, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, type DataTableSlot, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, type DataTableViewSelection, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, type DialogSlot, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, type DisplayMenuOption, type DisplayMenuProps, type DisplayMenuSection, DocumentChecklist, type DocumentChecklistFile, type DocumentChecklistItem, type DocumentChecklistProps, type DocumentChecklistStatus, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileLine, type DocumentFileLineProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentList, type DocumentListProps, DocumentListSection, type DocumentListSectionProps, type DocumentRequestActivityKind, type DocumentRequestAssigneeOption, DocumentRequestCard, type DocumentRequestCardProps, DocumentRequestDetail, type DocumentRequestDetailActivityEvent, type DocumentRequestDetailComment, type DocumentRequestDetailDoc, type DocumentRequestDetailProps, type DocumentRequestDetailTab, DocumentRequestField, type DocumentRequestFieldProps, type DocumentRequestItemSummary, type DocumentRequestRequestedItem, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRequestUpload, type DocumentRequestUploadFile, type DocumentRequestUploadProps, DocumentRow, type DocumentRowProps, type DocumentSource, DocumentSourceFilter, type DocumentSourceFilterProps, type DocumentSourceFilterValue, DocumentSourceTag, type DocumentSourceTagProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, type DropdownMenuSlot, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, type EmailMessageCardProps, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, type FileUploadSlot, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, type GridColumn, type GridInputType, type GridProps, type GridRow, type GridValue, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingSlot, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Inline, type InlineProps, type InlineSlot, Input, type InputSlot, type InputVariants, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, Kbd, type KbdGlyph, KbdHint, type KbdHintProps, type KbdProps, type KbdSlot, type KbdVariant, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, type LabelSlot, LandmarkIcon, type LayoutAlign, type LayoutBreakpoint, LayoutDashboardIcon, type LayoutGap, LayoutGridIcon, type LayoutJustify, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, type LinkButtonProps$1 as LinkButtonProps, type LinkButtonSlot, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MasterDetailLayout, type MasterDetailLayoutProps, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, type PaginationSlot, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, type PopoverSlot, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, ProposalAddOn, type ProposalAddOnProps, type ProposalBillingMode, type ProposalBillingRow, ProposalBillingTerms, type ProposalBillingTermsProps, ProposalConsentGate, type ProposalConsentGateProps, ProposalCustomPage, type ProposalCustomPageKind, type ProposalCustomPageProps, ProposalNote, type ProposalNoteProps, ProposalPackageCard, type ProposalPackageCardProps, type ProposalPackageMode, ProposalPaymentCapture, type ProposalPaymentCaptureProps, ProposalPricingSummary, type ProposalPricingSummaryProps, ProposalServiceRow, type ProposalServiceRowProps, ProposalSignatureBlock, type ProposalSignatureBlockProps, type ProposalSigner, ProposalSignerList, type ProposalSignerListProps, type ProposalSignerStatus, type QuestionAddressValue, type QuestionFileValue, type QuestionHelp, type QuestionLabeledColumn, type QuestionLabeledRow, type QuestionLabeledValue, type QuestionNameValue, type QuestionOption, type QuestionTableColumn, type QuestionTableRow, type QuestionType, QuestionnairePanel, type QuestionnairePanelGroup, type QuestionnairePanelProps, type QuestionnairePanelSection, type QuestionnairePanelStatus, Questions, type QuestionsProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RadioGroupSlot, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, type Responsive, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputSlot, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSlot, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, type SheetSlot, SheetTitle, SheetTrigger, Shell, type ShellProps, type ShellSlot, ShieldIcon, SideDrawer, type SideDrawerSlot, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherExtra, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, type SidebarBrandSwitcherSlot, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarSlot, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, SignatureEditor, type SignatureEditorProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, SpreadsheetPreview, type SpreadsheetPreviewProps, Stack, type StackDirection, type StackProps, type StackSlot, StackedBarChart, type StackedBarChartProps, type StackedBarDatum, type StackedBarSeries, StagePill, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StickyStack, StickyStackLayer, type StickyStackLayerProps, type StickyStackProps, StickyStackSectionHeader, type StickyStackSectionHeaderProps, StickyStackSticky, type StickyStackStickyProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Surface, type SurfaceElevation, type SurfacePadding, type SurfaceProps, type SurfaceRadius, type SurfaceSlot, Switch, type SwitchSlot, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowData, type TableRowProps, type TableSlot, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Text, type TextColor, type TextProps, type TextSize, type TextSlot, type TextWeight, Textarea, type TextareaSlot, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, type ToastAction, type ToastContextValue, type ToastOptions, ToastProvider, type ToastSlot, type ToastVariant, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, type TooltipSlot, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, assetPath, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getAssetBasePath, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, setAssetBasePath, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
6759
+ export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, type AgreementFirm, AgreementPaneHeading, type AgreementPaneHeadingProps, type AgreementStatus, type AgreementStep, AgreementViewer, type AgreementViewerProps, AiDraftCard, type AiDraftCardProps, type AiDraftState, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, type AlertDialogSlot, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, ArchiveIcon, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, BRAND_PRODUCTS, Badge, type BadgeProps, type BadgeSlot, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, BrainIcon, type BrandIconProps, type BrandProduct, BrandScope, type BrandScopeProps, BrandScopeProvider, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, type ButtonSize, type ButtonSlot, type ButtonVariant, COUNTRY_CODES, Calendar, type CalendarCaptionLayout, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, type CellValue, type ChannelTabItem, ChannelTabs, type ChannelTabsProps, type ChannelTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, type CheckboxSlot, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Code, type CodeProps, type CodeSlot, type CodeVariant, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, type ContextMenuSlot, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type ControlSize, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, Dash, DashGrid, type DashGridProps, type DashWidget, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, type DataTableSlot, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, type DataTableViewSelection, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, type DialogSlot, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, type DisplayMenuOption, type DisplayMenuProps, type DisplayMenuSection, DocumentChecklist, type DocumentChecklistFile, type DocumentChecklistItem, type DocumentChecklistProps, type DocumentChecklistStatus, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileLine, type DocumentFileLineProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentList, type DocumentListProps, DocumentListSection, type DocumentListSectionProps, type DocumentRequestActivityKind, type DocumentRequestAssigneeOption, DocumentRequestCard, type DocumentRequestCardProps, DocumentRequestDetail, type DocumentRequestDetailActivityEvent, type DocumentRequestDetailComment, type DocumentRequestDetailDoc, type DocumentRequestDetailProps, type DocumentRequestDetailTab, DocumentRequestField, type DocumentRequestFieldProps, type DocumentRequestItemSummary, type DocumentRequestRequestedItem, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRequestUpload, type DocumentRequestUploadFile, type DocumentRequestUploadProps, DocumentRow, type DocumentRowProps, type DocumentSource, DocumentSourceFilter, type DocumentSourceFilterProps, type DocumentSourceFilterValue, DocumentSourceTag, type DocumentSourceTagProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, type DropdownMenuSlot, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, type EmailMessageCardProps, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, ExternalLinkIcon, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, type FileUploadSlot, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, type GridColumn, type GridInputType, type GridProps, type GridRow, type GridValue, GripVerticalIcon, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingSlot, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, type IconComponent, type IconDefinition, type IconProps, type IconSize, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Inline, type InlineProps, type InlineSlot, Input, type InputSlot, type InputVariants, type Intent, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, Kbd, type KbdGlyph, KbdHint, type KbdHintProps, type KbdProps, type KbdSlot, type KbdVariant, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, type LabelSlot, LandmarkIcon, LayersIcon, type LayoutAlign, type LayoutBreakpoint, LayoutDashboardIcon, type LayoutGap, LayoutGridIcon, type LayoutJustify, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, type LinkButtonProps$1 as LinkButtonProps, type LinkButtonSlot, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MasterDetailLayout, type MasterDetailLayoutProps, MaximizeIcon, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicIcon, MicrosoftBrandIcon, MinimizeIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, type PaginationSlot, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PanelRightIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, type PopoverSlot, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, ProposalAddOn, type ProposalAddOnProps, type ProposalBillingMode, type ProposalBillingRow, ProposalBillingTerms, type ProposalBillingTermsProps, ProposalConsentGate, type ProposalConsentGateProps, ProposalCustomPage, type ProposalCustomPageKind, type ProposalCustomPageProps, ProposalNote, type ProposalNoteProps, ProposalPackageCard, type ProposalPackageCardProps, type ProposalPackageMode, ProposalPaymentCapture, type ProposalPaymentCaptureProps, ProposalPricingSummary, type ProposalPricingSummaryProps, ProposalServiceRow, type ProposalServiceRowProps, ProposalSignatureBlock, type ProposalSignatureBlockProps, type ProposalSigner, ProposalSignerList, type ProposalSignerListProps, type ProposalSignerStatus, type QuestionAddressValue, type QuestionFileValue, type QuestionHelp, type QuestionLabeledColumn, type QuestionLabeledRow, type QuestionLabeledValue, type QuestionNameValue, type QuestionOption, type QuestionTableColumn, type QuestionTableRow, type QuestionType, QuestionnairePanel, type QuestionnairePanelGroup, type QuestionnairePanelProps, type QuestionnairePanelSection, type QuestionnairePanelStatus, Questions, type QuestionsProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RadioGroupSlot, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, RefreshCwIcon, ReplyIcon, type Responsive, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputSlot, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSlot, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, type Shape, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, type SheetSlot, SheetTitle, SheetTrigger, Shell, type ShellProps, type ShellSlot, ShieldIcon, SideDrawer, type SideDrawerSlot, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherExtra, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, type SidebarBrandSwitcherSlot, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarSlot, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, SigmaIcon, SignatureEditor, type SignatureEditorProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, SpreadsheetPreview, type SpreadsheetPreviewProps, Stack, type StackDirection, type StackProps, type StackSlot, StackedBarChart, type StackedBarChartProps, type StackedBarDatum, type StackedBarSeries, StagePill, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StickyStack, StickyStackLayer, type StickyStackLayerProps, type StickyStackProps, StickyStackSectionHeader, type StickyStackSectionHeaderProps, StickyStackSticky, type StickyStackStickyProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Surface, type SurfaceElevation, type SurfacePadding, type SurfaceProps, type SurfaceRadius, type SurfaceSlot, Switch, type SwitchSlot, SystemTokens, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowData, type TableRowProps, type TableSlot, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Text, type TextColor, type TextProps, type TextSize, type TextSlot, type TextWeight, Textarea, type TextareaSlot, type TextareaVariants, ThumbsDownIcon, ThumbsUpIcon, 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, TimerIcon, type ToastAction, type ToastContextValue, type ToastOptions, ToastProvider, type ToastSlot, type ToastVariant, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, type TooltipSlot, TooltipTrigger, Trash2Icon, TrashIcon, TrashSolidIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, type Variant, VideoIcon, VisuallyHidden, Volume2Icon, VolumeXIcon, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, assetPath, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, createIcon, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getAssetBasePath, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, setAssetBasePath, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };