@assure-one/design-system 0.4.0 → 0.5.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
@@ -93,8 +93,8 @@ interface AvatarProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Avata
93
93
  declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLSpanElement>>;
94
94
 
95
95
  /**
96
- * Badge — status atom. Variants port the `.pill` family in `_shared.css`
97
- * (lines 257-289). Default variant is the neutral pill.
96
+ * Badge — status atom. Pill-family variants. Default variant is the
97
+ * neutral pill.
98
98
  */
99
99
  declare const badgeVariants: (props?: ({
100
100
  variant?: "info" | "success" | "warning" | "destructive" | "default" | "secondary" | "outline" | null | undefined;
@@ -138,24 +138,25 @@ type BreadcrumbSeparatorProps = React.HTMLAttributes<HTMLSpanElement>;
138
138
  declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbSeparatorProps & React$1.RefAttributes<HTMLSpanElement>>;
139
139
 
140
140
  /**
141
- * Button — Assure Pro action atom.
141
+ * Button — action atom.
142
142
  *
143
- * Variants port the `.btn-*` rules in `_shared.css` (lines 164-203):
144
- * - primary → bg-pro-fg (Pro purple, the firm app's brand identity)
143
+ * Variants:
144
+ * - primary → bg-pro-fg (suite accent)
145
145
  * - secondary → ghost surface bg-bg-2
146
146
  * - destructive → bg-danger-fg
147
147
  * - success → bg-success-fg
148
148
  * - ghost → transparent, hover:bg-bg-2
149
- * - outline → bordered surface (matches `.btn-ghost` from spec)
149
+ * - outline → bordered surface
150
150
  * - link → text-accent (cyan) with underline-on-hover
151
- * - accent → bg-accent (cyan CTA per spec §6.2)
151
+ * - accent → bg-accent (cyan CTA)
152
+ * - dashed → full-bleed "+ Add another" CTA, transparent fill + dashed border
152
153
  *
153
- * Sizes match shadcn convention; default `md` matches spec's 8px/14px padding.
154
+ * Sizes match shadcn convention; default `md` is 8px/14px padding.
154
155
  * Use `asChild` to render as a different element (e.g. an anchor / next/link).
155
156
  */
156
157
  declare const buttonVariants: (props?: ({
157
- variant?: "link" | "success" | "destructive" | "secondary" | "outline" | "primary" | "ghost" | "accent" | null | undefined;
158
- size?: "sm" | "md" | "lg" | "icon" | null | undefined;
158
+ variant?: "link" | "success" | "destructive" | "secondary" | "outline" | "primary" | "ghost" | "accent" | "dashed" | null | undefined;
159
+ size?: "sm" | "md" | "lg" | "icon" | "icon-xs" | "icon-sm" | null | undefined;
159
160
  } & class_variance_authority_types.ClassProp) | undefined) => string;
160
161
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
161
162
  /** Render as the child element via Radix `Slot` (shadcn pattern). */
@@ -185,8 +186,8 @@ declare namespace Calendar {
185
186
  }
186
187
 
187
188
  /**
188
- * Card — surface container. Default surfaces use the `.surface` rule from
189
- * `_shared.css` (12px radius, 1px rule border, surface bg). Three variants:
189
+ * Card — surface container. 12px radius, 1px rule border, surface bg.
190
+ * Three variants:
190
191
  *
191
192
  * default — settled card on the page (current behavior, unchanged)
192
193
  * interactive — clickable card; hover darkens the border
@@ -425,8 +426,7 @@ declare const DropdownMenuShortcut: {
425
426
  };
426
427
 
427
428
  /**
428
- * EmptyState — restated with Assure Pro tokens. Display headline (Geist),
429
- * fg-3 description, neutral icon halo on bg-2.
429
+ * EmptyState — display headline (Geist), fg-3 description, neutral icon halo on bg-2.
430
430
  *
431
431
  * Public API preserved: `icon`, `title`, `description`, `action`.
432
432
  */
@@ -464,6 +464,34 @@ interface FormSuccessProps extends React.HTMLAttributes<HTMLParagraphElement> {
464
464
  */
465
465
  declare function FormSuccess({ children, className, ...props }: FormSuccessProps): react_jsx_runtime.JSX.Element;
466
466
 
467
+ /**
468
+ * FormSection — a single grouped block inside a settings/profile form.
469
+ *
470
+ * Renders a real `<fieldset>` + `<legend>` so assistive tech announces the
471
+ * group, and gives consumers a consistent place to hang a title, helper
472
+ * description, and (optionally) an action button on the trailing edge of
473
+ * the heading row.
474
+ *
475
+ * Use inside a parent `<form>` — repeat one `<FormSection>` per logical
476
+ * group (Contact, Address, Notifications, etc.). Slot whatever fields you
477
+ * want into `children`; FormSection does not impose a grid.
478
+ *
479
+ * For marketing-style centered section heads, prefer `<SectionHeader>`.
480
+ * For lower-level title+description blocks that aren't part of a form,
481
+ * use `<SectionHead>` from `./section`.
482
+ */
483
+ interface FormSectionProps extends Omit<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, "title"> {
484
+ /** The section heading (renders as `<legend>` text). */
485
+ title: React.ReactNode;
486
+ /** Optional helper text shown directly under the title. */
487
+ description?: React.ReactNode;
488
+ /** Optional trailing slot for an action button or status. */
489
+ action?: React.ReactNode;
490
+ /** Space between the heading block and the fields. Default `mt-4`. */
491
+ headSpacing?: string;
492
+ }
493
+ declare const FormSection: React$1.ForwardRefExoticComponent<FormSectionProps & React$1.RefAttributes<HTMLFieldSetElement>>;
494
+
467
495
  declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
468
496
  declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
469
497
  declare const HoverCardPortal: React$1.FC<HoverCardPrimitive.HoverCardPortalProps>;
@@ -616,9 +644,15 @@ declare function MicrosoftBrandIcon({ size, ...props }: IconProps): react_jsx_ru
616
644
  * to surface active filter count.
617
645
  */
618
646
  declare function FilterIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
647
+ declare function CheckCircleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
648
+ declare function XCircleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
649
+ declare function AlertTriangleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
650
+ declare function InfoCircleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
651
+ declare function TrendingUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
652
+ declare function TrendingDownIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
619
653
 
620
654
  /**
621
- * Input variants. Mirrors the raw HTML `<input>` styled per Assure Pro tokens
655
+ * Input variants. Mirrors the raw HTML `<input>` styled per the suite tokens
622
656
  * (rule-strong border, surface bg, accent focus ring).
623
657
  */
624
658
  declare const inputVariants: (props?: ({
@@ -634,7 +668,31 @@ interface InputProps$1 extends Omit<React.InputHTMLAttributes<HTMLInputElement>,
634
668
  }
635
669
  declare const Input: React$1.ForwardRefExoticComponent<InputProps$1 & React$1.RefAttributes<HTMLInputElement>>;
636
670
 
637
- declare function KeyboardShortcutsDialog(): react_jsx_runtime.JSX.Element;
671
+ interface KeyboardShortcut {
672
+ keys: readonly string[];
673
+ description: string;
674
+ }
675
+ interface KeyboardShortcutSection {
676
+ title: string;
677
+ icon?: React$1.ReactNode;
678
+ shortcuts: readonly KeyboardShortcut[];
679
+ /** When true, this section spans 2 rows in the 2-column grid layout. */
680
+ wide?: boolean;
681
+ }
682
+ interface KeyboardShortcutsDialogProps {
683
+ /**
684
+ * App-specific sections to display above the universal General section.
685
+ * Omit for portal/utility apps that only need the universal keys.
686
+ */
687
+ sections?: readonly KeyboardShortcutSection[];
688
+ /**
689
+ * Key that toggles the dialog. Default `"?"`. Pass `null` to disable the
690
+ * built-in hotkey listener — useful when an app wants to own the global
691
+ * keydown handling.
692
+ */
693
+ hotkey?: string | null;
694
+ }
695
+ declare function KeyboardShortcutsDialog({ sections, hotkey, }?: KeyboardShortcutsDialogProps): react_jsx_runtime.JSX.Element;
638
696
 
639
697
  declare const labelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
640
698
  interface LabelProps extends React$1.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
@@ -642,7 +700,7 @@ interface LabelProps extends React$1.ComponentPropsWithoutRef<typeof LabelPrimit
642
700
  }
643
701
  declare const Label: React$1.ForwardRefExoticComponent<LabelProps & React$1.RefAttributes<HTMLLabelElement>>;
644
702
 
645
- type ButtonVariant = "primary" | "secondary" | "destructive" | "success" | "ghost" | "outline" | "link" | "accent";
703
+ type ButtonVariant = "primary" | "secondary" | "destructive" | "success" | "ghost" | "outline" | "link" | "accent" | "dashed";
646
704
  type ButtonSize = "sm" | "md" | "lg";
647
705
  interface LinkButtonProps$1 extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> {
648
706
  href: string;
@@ -652,20 +710,68 @@ interface LinkButtonProps$1 extends Omit<React.AnchorHTMLAttributes<HTMLAnchorEl
652
710
  iconRight?: React.ReactNode;
653
711
  children: React.ReactNode;
654
712
  className?: string;
713
+ /**
714
+ * Render a native `<a>` instead of `next/link`. Use for:
715
+ * - cross-origin URLs (e.g. https://other-app.example/sign-in)
716
+ * - same-origin `/api/*` route handlers that 302-redirect off-app
717
+ * (next/link tries to client-route, which doesn't follow the 302)
718
+ * - mailto: / tel: schemes
719
+ *
720
+ * When `target="_blank"` is also set and no explicit `rel` was passed,
721
+ * `rel="noopener noreferrer"` is applied automatically.
722
+ */
723
+ external?: boolean;
655
724
  }
656
725
  /**
657
- * LinkButton — visually identical to `<Button>` but renders a `next/link`.
726
+ * LinkButton — visually identical to `<Button>` but renders a link.
658
727
  * Shares `buttonVariants` so styling stays in lock-step.
728
+ *
729
+ * - Default: renders `next/link` (client-routed internal navigation).
730
+ * - `external`: renders a native `<a>` so the browser handles the request
731
+ * end-to-end. Required for cross-origin URLs and same-origin `/api/*`
732
+ * handlers that 302 off-app.
659
733
  */
660
734
  declare const LinkButton: React$1.ForwardRefExoticComponent<LinkButtonProps$1 & React$1.RefAttributes<HTMLAnchorElement>>;
661
735
 
662
736
  /**
663
- * Logo — Assure Pro wordmark. Per spec §4 and §6.2, the firm-app brand is
664
- * "Assure Pro": "Assure" in fg + "Pro" in pro-fg purple, set in Geist
665
- * (font-display). Mirrors the `.wordmark` rule in `_shared.css` (lines 226-249).
737
+ * LoadingRows — N repeating skeleton bars stacked vertically.
738
+ *
739
+ * Replaces the recurring `Array.from({length:N}).map((_, i) => <Skeleton/>)`
740
+ * snippet that surfaces in inboxes, document lists, settings tables, and
741
+ * any other list-shaped loading state. The primitive owns the `aria-busy`
742
+ * + `aria-label` semantics so each consumer doesn't reinvent them.
666
743
  *
667
- * Public API kept stable: `size`, `href`, `showText`, `inverted`, plus the
668
- * style-override hooks (`className`, `iconClassName`, `textClassName`).
744
+ * For richer per-row composition (avatar + two text lines, table cells,
745
+ * card grids) keep using `<Skeleton>` / `<SkeletonCircle>` / `<SkeletonText>`
746
+ * directly inside your own list renderer. `LoadingRows` is the *uniform*
747
+ * row case.
748
+ */
749
+ interface LoadingRowsProps extends React.HTMLAttributes<HTMLDivElement> {
750
+ /** How many skeleton rows to render. */
751
+ count?: number;
752
+ /** Height of each row. Accepts any Tailwind height utility (`h-14`, `h-3.5`). Default `h-14`. */
753
+ rowHeight?: string;
754
+ /** Vertical gap between rows. Default `gap-2`. */
755
+ gap?: string;
756
+ /** Override the row Skeleton className (radius, width, etc). */
757
+ rowClassName?: string;
758
+ /** Accessible label announced to screen readers. */
759
+ label?: string;
760
+ }
761
+ declare const LoadingRows: React$1.ForwardRefExoticComponent<LoadingRowsProps & React$1.RefAttributes<HTMLDivElement>>;
762
+
763
+ /**
764
+ * Logo — Assure suite wordmark. Renders "Assure" in `fg` plus an optional
765
+ * product suffix in `pro-fg` (e.g., "Pro", "Tax"), set in Geist (font-display).
766
+ *
767
+ * The product suffix is configurable so the same component serves every
768
+ * Assure product. The default preserves the original "Assure Pro" output —
769
+ * existing consumers do not need to change anything.
770
+ *
771
+ * Public API:
772
+ * - `size`, `href`, `showText`, `inverted` (visual)
773
+ * - `productName` (the suffix text; `null` renders just "Assure")
774
+ * - `className`, `iconClassName`, `textClassName` (style overrides)
669
775
  */
670
776
  declare const sizeStyles: {
671
777
  readonly sm: {
@@ -691,10 +797,12 @@ interface LogoProps {
691
797
  className?: string;
692
798
  iconClassName?: string;
693
799
  textClassName?: string;
694
- /** When true, render on dark/brand surfaces (white "Assure" + lighter "Pro"). */
800
+ /** Product suffix rendered after "Assure". Pass `null` to render just "Assure". Defaults to "Pro" for backwards compatibility. */
801
+ productName?: string | null;
802
+ /** When true, render on dark/brand surfaces (white "Assure" + lighter suffix). */
695
803
  inverted?: boolean;
696
804
  }
697
- declare function Logo({ size, href, showText, className, iconClassName, textClassName, inverted, }: LogoProps): react_jsx_runtime.JSX.Element;
805
+ declare function Logo({ size, href, showText, className, iconClassName, textClassName, productName, inverted, }: LogoProps): react_jsx_runtime.JSX.Element;
698
806
 
699
807
  interface MultiFilterPillProps {
700
808
  label: string;
@@ -754,11 +862,10 @@ declare namespace OTPInput {
754
862
 
755
863
  /**
756
864
  * Pagination — custom (no Radix equivalent).
757
- * Restyled to Assure Pro tokens: tabular-nums numerals, mono context label,
758
- * cyan accent for the current page (matches the `.tab.is-active` treatment
759
- * in `_shared.css`), `border-rule` divider boundaries.
865
+ * Tokenized: tabular-nums numerals, mono context label, cyan accent for the
866
+ * current page, `border-rule` divider boundaries.
760
867
  *
761
- * Public API preserved for 988 firm + 174 portal call sites:
868
+ * Public API:
762
869
  * currentPage, totalPages, onPageChange, siblingCount, totalItems, pageSize.
763
870
  */
764
871
  interface PaginationProps extends React.HTMLAttributes<HTMLElement> {
@@ -1092,10 +1199,9 @@ interface StarRatingProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "ro
1092
1199
  declare const StarRating: React$1.ForwardRefExoticComponent<StarRatingProps & React$1.RefAttributes<HTMLDivElement>>;
1093
1200
 
1094
1201
  /**
1095
- * Stat — paired numeric display + caption, the StatNum primitive from
1096
- * spec §4. Numerals are set in `font-display` (Geist) at a fluid clamp size
1097
- * with `font-variant-numeric: tabular-nums` for vertical alignment, ported
1098
- * from the `.stat-num` rule in `_shared.css` (lines 152-161).
1202
+ * Stat — paired numeric display + caption (the StatNum primitive).
1203
+ * Numerals are set in `font-display` (Geist) at a fluid clamp size with
1204
+ * `font-variant-numeric: tabular-nums` for vertical alignment.
1099
1205
  */
1100
1206
  interface StatProps extends React.HTMLAttributes<HTMLDivElement> {
1101
1207
  value: string;
@@ -1142,14 +1248,13 @@ interface SwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Switc
1142
1248
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
1143
1249
 
1144
1250
  /**
1145
- * Table — semantic data-table primitives. Ports the `.data-table` rules
1146
- * from `_shared.css` (lines 542-590):
1251
+ * Table — semantic data-table primitives:
1147
1252
  * - mono uppercase headers (10px, 0.12em tracking) on `bg-surface-2`
1148
1253
  * - 1px `border-rule` under header, `border-rule-soft` between rows
1149
1254
  * - 13px body cells in `text-fg-2`, hover row gets `bg-bg-2`
1150
1255
  *
1151
- * Public API preserved: Table / TableHeader / TableBody / TableRow /
1152
- * TableHead / TableCell / TableCaption. `wrapperClassName` still wraps
1256
+ * Public API: Table / TableHeader / TableBody / TableRow /
1257
+ * TableHead / TableCell / TableCaption. `wrapperClassName` wraps
1153
1258
  * the responsive overflow container.
1154
1259
  */
1155
1260
  interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
@@ -1214,12 +1319,17 @@ interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaEl
1214
1319
  declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
1215
1320
 
1216
1321
  type ToastVariant = "default" | "success" | "destructive" | "warning";
1322
+ interface ToastAction {
1323
+ label: string;
1324
+ onClick: () => void;
1325
+ }
1217
1326
  interface Toast {
1218
1327
  id: string;
1219
1328
  title: string;
1220
1329
  description?: string;
1221
1330
  variant?: ToastVariant;
1222
1331
  duration?: number;
1332
+ action?: ToastAction;
1223
1333
  }
1224
1334
  interface ToastContextValue {
1225
1335
  toast: (options: Omit<Toast, "id">) => string;
@@ -1427,7 +1537,7 @@ declare const SidebarUser: React$1.ForwardRefExoticComponent<SidebarUserProps &
1427
1537
 
1428
1538
  /**
1429
1539
  * AppHeader — sticky 56px-tall top bar mounted inside `<Main>`, above
1430
- * `<Content>`. Ports `.app-header` from `_shared.css` (lines 393-404).
1540
+ * `<Content>`.
1431
1541
  *
1432
1542
  * Children flow horizontally:
1433
1543
  * breadcrumb → title → flex-1 spacer → search → actions
@@ -1460,20 +1570,32 @@ type AppHeaderActionsProps = React.HTMLAttributes<HTMLDivElement>;
1460
1570
  declare const AppHeaderActions: React$1.ForwardRefExoticComponent<AppHeaderActionsProps & React$1.RefAttributes<HTMLDivElement>>;
1461
1571
 
1462
1572
  /**
1463
- * PageHeader — top-of-page title block: eyebrow → headline → meta row.
1464
- * Ports `.page-header` rules from `_shared.css` (lines 486-498).
1573
+ * PageHeader — top-of-page title block: eyebrow → headline + actions row → description → meta row.
1574
+ * Absorbs the trailing-edge `actions` slot pattern that consumer files
1575
+ * frequently reinvent via `flex items-center justify-between`.
1576
+ *
1577
+ * `title` is a string. If a consumer needs richer markup in the headline
1578
+ * they should compose around PageHeader rather than via this prop.
1465
1579
  *
1466
- * `title` is a string per the consumer-side contract (see
1467
- * `assure-pro-spec/from-lighttaxes-claude.md`, "Page header" section).
1468
- * If a consumer needs richer markup in the headline they should compose
1469
- * around PageHeader rather than via this prop.
1580
+ * Layout rules:
1581
+ * - `eyebrow` sits above the title with a 6px gap.
1582
+ * - `actions` sits to the trailing edge of the title row. On viewports
1583
+ * below `sm`, the actions wrap underneath; consumers can override via
1584
+ * className.
1585
+ * - `description` is a fg-3 subtitle line under the title.
1586
+ * - `meta` is the existing pills/spec/separator slot, still rendered
1587
+ * below the description.
1470
1588
  */
1471
1589
  interface PageHeaderProps extends Omit<React.HTMLAttributes<HTMLElement>, "title"> {
1472
1590
  /** Slot above the title — usually `<Eyebrow numeric>`. */
1473
1591
  eyebrow?: React.ReactNode;
1474
1592
  /** Page title text. */
1475
1593
  title: string;
1476
- /** Slot below the title for pills, specs, separators. */
1594
+ /** Subtitle line under the title (e.g. one-sentence purpose statement). */
1595
+ description?: React.ReactNode;
1596
+ /** Trailing-edge slot for actions (Button, ButtonGroup, etc.). */
1597
+ actions?: React.ReactNode;
1598
+ /** Slot below the description for pills, specs, separators. */
1477
1599
  meta?: React.ReactNode;
1478
1600
  }
1479
1601
  declare const PageHeader: React$1.ForwardRefExoticComponent<PageHeaderProps & React$1.RefAttributes<HTMLElement>>;
@@ -1488,6 +1610,113 @@ type PageHeaderSepProps = React.HTMLAttributes<HTMLSpanElement>;
1488
1610
  /** PageHeaderSep — the `·` dot separator used between meta items. */
1489
1611
  declare const PageHeaderSep: React$1.ForwardRefExoticComponent<PageHeaderSepProps & React$1.RefAttributes<HTMLSpanElement>>;
1490
1612
 
1613
+ /**
1614
+ * MetadataGrid + DataItem — label / value pair grid.
1615
+ *
1616
+ * Used inside detail surfaces (Client > Overview, Engagement > Header,
1617
+ * Invoice > Summary) where the page needs to lay out a list of facts:
1618
+ *
1619
+ * EIN 12-3456789
1620
+ * Joined Aug 2022
1621
+ * Primary contact Liz Chen <liz@acme.test>
1622
+ * Tier Annual
1623
+ *
1624
+ * Replaces the recurring `<div className="grid grid-cols-2 gap-x-6 gap-y-3">`
1625
+ * + per-row `<div>label</div><div>value</div>` shape.
1626
+ *
1627
+ * `MetadataGrid` provides the grid; `DataItem` owns the label/value
1628
+ * typography. Both compose: a `DataItem` can take `span={2}` to occupy
1629
+ * a full row in a 2-column grid.
1630
+ */
1631
+ interface MetadataGridProps extends React.HTMLAttributes<HTMLDListElement> {
1632
+ /** Number of columns. Default 2. Use 1 for narrow surfaces (mobile cards). */
1633
+ columns?: 1 | 2 | 3 | 4;
1634
+ /** Horizontal gap between cells. Default `gap-x-6`. */
1635
+ gapX?: string;
1636
+ /** Vertical gap between rows. Default `gap-y-3`. */
1637
+ gapY?: string;
1638
+ }
1639
+ declare const MetadataGrid: React$1.ForwardRefExoticComponent<MetadataGridProps & React$1.RefAttributes<HTMLDListElement>>;
1640
+ interface DataItemProps {
1641
+ /** Label rendered as `<dt>`. Should be a noun phrase, sentence case. */
1642
+ label: React.ReactNode;
1643
+ /** Value rendered as `<dd>`. */
1644
+ value: React.ReactNode;
1645
+ /** Span this many grid columns. Useful for long string values inside a 2-col grid. */
1646
+ span?: 1 | 2 | 3 | 4;
1647
+ className?: string;
1648
+ }
1649
+ declare function DataItem({ label, value, span, className }: DataItemProps): react_jsx_runtime.JSX.Element;
1650
+
1651
+ /**
1652
+ * KpiCard — single-stat tile: label + value + optional tone, trend, hint.
1653
+ *
1654
+ * Replaces the three different KPI / stat-card shapes that recur across
1655
+ * the dashboard, billing, and attention-queue surfaces:
1656
+ *
1657
+ * ┌──────────────────────┐
1658
+ * │ 🔵 Clients │
1659
+ * │ 247 ▲ 12% │
1660
+ * │ vs last month │
1661
+ * │ ╱╲╱╲ sparkline │
1662
+ * └──────────────────────┘
1663
+ *
1664
+ * - `value` is the big-typography figure (count, currency).
1665
+ * - `label` is the small caption.
1666
+ * - `tone` colors the icon tile / value via semantic tokens (info,
1667
+ * success, warning, destructive, accent, muted). Default `muted`.
1668
+ * - `icon` slot accepts any node; rendered inside a rounded tile.
1669
+ * - `delta` renders a trend chip (arrow + change). `direction` drives the
1670
+ * arrow; `sentiment` drives the colour and defaults from direction
1671
+ * (up → positive, down → negative, flat → neutral). Pass `sentiment`
1672
+ * explicitly for inverted metrics where "up" is bad (e.g. past-due ↑).
1673
+ * - `trend` (number[]) draws a filled sparkline across the card bottom,
1674
+ * tinted by the delta sentiment (or tone when there's no delta).
1675
+ * - `hint` is an optional `text-fg-4` line ("+18 this month", "6 invoices").
1676
+ * - `action` is an optional trailing slot for a button or link.
1677
+ *
1678
+ * Renders as a `<Card>`. Wrap in a `<Link>` from the consumer side if
1679
+ * the tile should navigate.
1680
+ */
1681
+ type KpiTone = "info" | "success" | "warning" | "destructive" | "accent" | "muted";
1682
+ type DeltaDirection = "up" | "down" | "flat";
1683
+ type DeltaSentiment = "positive" | "negative" | "neutral";
1684
+ interface KpiDelta {
1685
+ /** The change to display, e.g. `"12%"`, `"+18"`, `"-$4.2k"`. */
1686
+ value: React.ReactNode;
1687
+ /** Arrow glyph: `up` ↗, `down` ↘, `flat` —. */
1688
+ direction: DeltaDirection;
1689
+ /**
1690
+ * Colour family. Defaults from `direction` (up → positive, down →
1691
+ * negative, flat → neutral). Set explicitly for inverted metrics where
1692
+ * a rise is bad (e.g. `direction: "up"`, `sentiment: "negative"`).
1693
+ */
1694
+ sentiment?: DeltaSentiment;
1695
+ /** Optional context line under the value, e.g. `"vs last month"`. */
1696
+ label?: React.ReactNode;
1697
+ }
1698
+ interface KpiCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
1699
+ /** Small caption under the value. */
1700
+ label: React.ReactNode;
1701
+ /** Main figure — count, currency, percentage. Renders as a 2xl bold. */
1702
+ value: React.ReactNode;
1703
+ /** Optional leading icon, rendered inside a colored tile. */
1704
+ icon?: React.ReactNode;
1705
+ /** Color family for the icon tile + (optional) the value. Default `muted`. */
1706
+ tone?: KpiTone;
1707
+ /** Optional trend chip (arrow + change) shown beside the value. */
1708
+ delta?: KpiDelta;
1709
+ /** Optional sparkline data drawn across the card bottom. */
1710
+ trend?: number[];
1711
+ /** Optional subline below the value (e.g. `"+18 this month"`). */
1712
+ hint?: React.ReactNode;
1713
+ /** Optional trailing-edge slot for a button or link. */
1714
+ action?: React.ReactNode;
1715
+ /** When `true`, the value text picks up the tone color. Default `false` (value stays fg). */
1716
+ toneValue?: boolean;
1717
+ }
1718
+ declare const KpiCard: React$1.ForwardRefExoticComponent<KpiCardProps & React$1.RefAttributes<HTMLDivElement>>;
1719
+
1491
1720
  interface DataTableProps extends React.HTMLAttributes<HTMLDivElement> {
1492
1721
  /** When true, renders the table card with a flat top edge so it
1493
1722
  * visually attaches to a `<DataTableToolbar>` above it. */
@@ -1511,8 +1740,7 @@ type DataTableToolbarProps = React.HTMLAttributes<HTMLDivElement>;
1511
1740
  /**
1512
1741
  * DataTableToolbar — top row above the table. Renders the same surface
1513
1742
  * card as `<table>`, but with rounded corners only on top so the table
1514
- * below visually attaches to it (see `.toolbar` rules in `_shared.css`,
1515
- * lines 592-633).
1743
+ * below visually attaches to it.
1516
1744
  */
1517
1745
  declare const DataTableToolbar: React$1.ForwardRefExoticComponent<DataTableToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
1518
1746
  interface DataTableSearchProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
@@ -1532,8 +1760,7 @@ interface DataTableResultsCountProps extends Omit<React.HTMLAttributes<HTMLSpanE
1532
1760
  total: number;
1533
1761
  }
1534
1762
  /**
1535
- * DataTableResultsCount — small spec-styled "12 of 247" indicator.
1536
- * Mono + tabular per `.results-count` (`_shared.css` lines 628-633).
1763
+ * DataTableResultsCount — small "12 of 247" indicator. Mono + tabular.
1537
1764
  */
1538
1765
  declare const DataTableResultsCount: React$1.ForwardRefExoticComponent<DataTableResultsCountProps & React$1.RefAttributes<HTMLSpanElement>>;
1539
1766
  /**
@@ -1582,14 +1809,12 @@ type DataTableCellProps = React.TdHTMLAttributes<HTMLTableCellElement>;
1582
1809
  declare const DataTableCell: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1583
1810
  /**
1584
1811
  * DataTableCellName — primary identifier of the row. Display font,
1585
- * fg color, medium weight (matches `.cell-name` in `_shared.css`
1586
- * line 586).
1812
+ * fg color, medium weight.
1587
1813
  */
1588
1814
  declare const DataTableCellName: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1589
1815
  /**
1590
1816
  * DataTableCellMono — currency / IDs / numerics. Geist Mono with
1591
- * tabular numerals and the same tight tracking the spec uses
1592
- * (`.cell-mono`, `_shared.css` lines 579-584).
1817
+ * tabular numerals and tight tracking.
1593
1818
  */
1594
1819
  declare const DataTableCellMono: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1595
1820
  /**
@@ -1651,13 +1876,9 @@ interface DataTablePaginationProps extends Omit<React.HTMLAttributes<HTMLElement
1651
1876
  declare const DataTablePagination: React$1.ForwardRefExoticComponent<DataTablePaginationProps & React$1.RefAttributes<HTMLElement>>;
1652
1877
 
1653
1878
  /**
1654
- * Detail layout composites — port of the `.detail-grid` / `.detail-spine`
1655
- * pattern from `_shared.css` (lines 814-822) and the canonical detail page
1656
- * mockup (`assure-pro-spec/mockups/04-client-detail.html`).
1657
- *
1658
- * Two-column layout: a sticky left rail (the "spine", 320px) holding
1659
- * identity + key facts, and a scrollable main column for tabs, sections,
1660
- * tables, and activity feeds.
1879
+ * Detail layout composites — two-column layout: a sticky left rail (the
1880
+ * "spine", 320px) holding identity + key facts, and a scrollable main
1881
+ * column for tabs, sections, tables, and activity feeds.
1661
1882
  */
1662
1883
  type DetailGridProps = React.HTMLAttributes<HTMLDivElement>;
1663
1884
  declare const DetailGrid: React$1.ForwardRefExoticComponent<DetailGridProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1684,8 +1905,6 @@ declare const DetailMain: React$1.ForwardRefExoticComponent<DetailMainProps & Re
1684
1905
 
1685
1906
  /**
1686
1907
  * ActivityList — vertical feed of activity rows.
1687
- * Ports `.activity-list` / `.activity-item` from `_shared.css` (lines 635-664)
1688
- * with the simplified row API from `from-lighttaxes-claude.md` (line 71):
1689
1908
  *
1690
1909
  * <ActivityList>
1691
1910
  * <ActivityItem dot="success" actor="Anna" text="filed" target="1120S" time="2h ago" />
@@ -1705,8 +1924,6 @@ declare const ActivityItem: React$1.ForwardRefExoticComponent<ActivityItemProps
1705
1924
 
1706
1925
  /**
1707
1926
  * Kanban — flex container for board columns.
1708
- * Ports `.kanban` / `.kanban-col` / `.kanban-card` from `_shared.css`
1709
- * (lines 700-778). API per `from-lighttaxes-claude.md` line 81-84.
1710
1927
  */
1711
1928
  type KanbanProps = React.HTMLAttributes<HTMLDivElement>;
1712
1929
  declare const Kanban: React$1.ForwardRefExoticComponent<KanbanProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1715,17 +1932,33 @@ interface KanbanColumnProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
1715
1932
  count: number;
1716
1933
  }
1717
1934
  declare const KanbanColumn: React$1.ForwardRefExoticComponent<KanbanColumnProps & React$1.RefAttributes<HTMLDivElement>>;
1718
- declare const kanbanCardVariants: (props?: ({
1719
- variant?: "default" | "pro" | "danger" | "warn" | null | undefined;
1720
- } & class_variance_authority_types.ClassProp) | undefined) => string;
1721
- interface KanbanCardProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof kanbanCardVariants> {
1935
+ type KanbanPriority = "high" | "medium" | "low";
1936
+ type KanbanDueStatus = "overdue" | "soon" | "default";
1937
+ interface KanbanCardProps extends React.HTMLAttributes<HTMLDivElement> {
1938
+ /** Category tag, e.g. a return type ("1040", "1120S"). Rendered as an info chip. */
1939
+ label?: string;
1940
+ /** Task title. Providing this switches the card to the structured rich layout. */
1941
+ title?: string;
1942
+ /** Client / entity the task belongs to. */
1943
+ client?: string;
1944
+ /** Priority — drives the colored priority chip. */
1945
+ priority?: KanbanPriority;
1946
+ /** Preformatted due date, e.g. "Apr 15". */
1947
+ dueDate?: string;
1948
+ /** Urgency of `dueDate` — colors it red (overdue) or amber (soon). Default muted. */
1949
+ dueStatus?: KanbanDueStatus;
1950
+ /** Assignee shown as an initials avatar. */
1951
+ assignee?: {
1952
+ name: string;
1953
+ src?: string | null;
1954
+ };
1722
1955
  }
1723
1956
  declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
1724
1957
 
1725
1958
  /**
1726
1959
  * Toolbar — horizontal row of controls used above lists, dashboards, etc.
1727
- * Ports `.toolbar` from `_shared.css` (lines 591-633). FilterChip is a
1728
- * simpler atom than `MultiFilterPill` — single filter, not multi-select.
1960
+ * FilterChip is a simpler atom than `MultiFilterPill` — single filter,
1961
+ * not multi-select.
1729
1962
  */
1730
1963
  type ToolbarProps = React.HTMLAttributes<HTMLDivElement>;
1731
1964
  declare const Toolbar: React$1.ForwardRefExoticComponent<ToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1789,4 +2022,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
1789
2022
 
1790
2023
  declare function cn(...inputs: ClassValue[]): string;
1791
2024
 
1792
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, Button, type ButtonProps, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, 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, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, 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, 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, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FormError, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, KeyboardShortcutsDialog, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageCircleIcon, MessageCircleWarningIcon, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SendIcon, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, 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, StarIcon, StarRating, type StarRatingProps, Stat, type Step, Stepper, type StepperProps, 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, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XIcon, ZoomInIcon, ZoomOutIcon, alertVariants, badgeVariants, buttonVariants, cardVariants, cn, displayToIso, filterChipVariants, inputVariants, isoToDisplay, kanbanCardVariants, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarState, useToast };
2025
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, 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, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, Button, type ButtonProps, 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, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, 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, 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, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, 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, 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, MessageCircleIcon, MessageCircleWarningIcon, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SendIcon, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, 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, StarIcon, StarRating, type StarRatingProps, Stat, type Step, Stepper, type StepperProps, 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, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, ZoomInIcon, ZoomOutIcon, alertVariants, badgeVariants, buttonVariants, cardVariants, cn, displayToIso, filterChipVariants, inputVariants, isoToDisplay, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarState, useToast };