@assure-one/design-system 0.4.1 → 0.7.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/README.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # Assure One Design System
2
2
 
3
- The single source of truth for visual design across all Assure One products.
3
+ The single source of truth for visual design across all Assure products.
4
4
 
5
5
  - **Tokens** — semantic CSS variables (color, type, spacing, motion) consumed by every product.
6
6
  - **Primitives** — accessible React components built on Radix + Tailwind 4.
7
- - **Patterns** — common compositions (DataTable, FormField, EmptyState).
7
+ - **Composites** — common patterns (DataTable, PageHeader, Sidebar, Kanban).
8
+
9
+ ## Documentation
10
+
11
+ - [**`CHANGELOG.md`**](./CHANGELOG.md) — release-by-release log of what shipped.
12
+ - [**`CONTRIBUTING.md`**](./CONTRIBUTING.md) — dev loop, release flow, versioning, pitfalls.
13
+ - [**`CLAUDE.md`**](./CLAUDE.md) — invariants and conventions for AI assistants working in this repo.
14
+ - [**`claude-skills/`**](./claude-skills) — drop-in Claude Code skill for consuming projects.
8
15
 
9
16
  ## Install
10
17
 
@@ -38,6 +45,8 @@ pnpm typecheck
38
45
  pnpm lint
39
46
  ```
40
47
 
48
+ See [`CONTRIBUTING.md`](./CONTRIBUTING.md) for the full dev loop, including iterating against a real consuming app.
49
+
41
50
  ## Architecture
42
51
 
43
52
  3-tier token system (W3C Design Tokens spec compatible):
@@ -49,16 +58,6 @@ color.navy.700 → color.action.primary.bg → button.primary.bg
49
58
 
50
59
  Components consume **system tokens**, never reference values directly. Themes (light, dark, per-product accent) re-map system → reference without touching component code.
51
60
 
52
- ## Release
53
-
54
- We use [Changesets](https://github.com/changesets/changesets). Every PR with a user-visible change includes a changeset:
55
-
56
- ```bash
57
- pnpm changeset
58
- ```
59
-
60
- Merging to `main` triggers a "Version Packages" PR. Merging that PR publishes to GitHub Packages.
61
-
62
- ## Status
61
+ ## Releases
63
62
 
64
- Pre-release. Not yet published. APIs may change.
63
+ Tag-driven publish to public npm. See [`CONTRIBUTING.md`](./CONTRIBUTING.md#release-flow) for the full flow; past releases in [`CHANGELOG.md`](./CHANGELOG.md).
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,20 +138,20 @@ 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
152
  * - dashed → full-bleed "+ Add another" CTA, transparent fill + dashed border
153
153
  *
154
- * Sizes match shadcn convention; default `md` matches spec's 8px/14px padding.
154
+ * Sizes match shadcn convention; default `md` is 8px/14px padding.
155
155
  * Use `asChild` to render as a different element (e.g. an anchor / next/link).
156
156
  */
157
157
  declare const buttonVariants: (props?: ({
@@ -186,8 +186,8 @@ declare namespace Calendar {
186
186
  }
187
187
 
188
188
  /**
189
- * Card — surface container. Default surfaces use the `.surface` rule from
190
- * `_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:
191
191
  *
192
192
  * default — settled card on the page (current behavior, unchanged)
193
193
  * interactive — clickable card; hover darkens the border
@@ -426,8 +426,7 @@ declare const DropdownMenuShortcut: {
426
426
  };
427
427
 
428
428
  /**
429
- * EmptyState — restated with Assure Pro tokens. Display headline (Geist),
430
- * fg-3 description, neutral icon halo on bg-2.
429
+ * EmptyState — display headline (Geist), fg-3 description, neutral icon halo on bg-2.
431
430
  *
432
431
  * Public API preserved: `icon`, `title`, `description`, `action`.
433
432
  */
@@ -645,9 +644,15 @@ declare function MicrosoftBrandIcon({ size, ...props }: IconProps): react_jsx_ru
645
644
  * to surface active filter count.
646
645
  */
647
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;
648
653
 
649
654
  /**
650
- * 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
651
656
  * (rule-strong border, surface bg, accent focus ring).
652
657
  */
653
658
  declare const inputVariants: (props?: ({
@@ -663,7 +668,31 @@ interface InputProps$1 extends Omit<React.InputHTMLAttributes<HTMLInputElement>,
663
668
  }
664
669
  declare const Input: React$1.ForwardRefExoticComponent<InputProps$1 & React$1.RefAttributes<HTMLInputElement>>;
665
670
 
666
- 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;
667
696
 
668
697
  declare const labelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
669
698
  interface LabelProps extends React$1.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
@@ -732,12 +761,17 @@ interface LoadingRowsProps extends React.HTMLAttributes<HTMLDivElement> {
732
761
  declare const LoadingRows: React$1.ForwardRefExoticComponent<LoadingRowsProps & React$1.RefAttributes<HTMLDivElement>>;
733
762
 
734
763
  /**
735
- * Logo — Assure Pro wordmark. Per spec §4 and §6.2, the firm-app brand is
736
- * "Assure Pro": "Assure" in fg + "Pro" in pro-fg purple, set in Geist
737
- * (font-display). Mirrors the `.wordmark` rule in `_shared.css` (lines 226-249).
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).
738
766
  *
739
- * Public API kept stable: `size`, `href`, `showText`, `inverted`, plus the
740
- * style-override hooks (`className`, `iconClassName`, `textClassName`).
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)
741
775
  */
742
776
  declare const sizeStyles: {
743
777
  readonly sm: {
@@ -763,10 +797,12 @@ interface LogoProps {
763
797
  className?: string;
764
798
  iconClassName?: string;
765
799
  textClassName?: string;
766
- /** 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). */
767
803
  inverted?: boolean;
768
804
  }
769
- 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;
770
806
 
771
807
  interface MultiFilterPillProps {
772
808
  label: string;
@@ -826,11 +862,10 @@ declare namespace OTPInput {
826
862
 
827
863
  /**
828
864
  * Pagination — custom (no Radix equivalent).
829
- * Restyled to Assure Pro tokens: tabular-nums numerals, mono context label,
830
- * cyan accent for the current page (matches the `.tab.is-active` treatment
831
- * 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.
832
867
  *
833
- * Public API preserved for 988 firm + 174 portal call sites:
868
+ * Public API:
834
869
  * currentPage, totalPages, onPageChange, siblingCount, totalItems, pageSize.
835
870
  */
836
871
  interface PaginationProps extends React.HTMLAttributes<HTMLElement> {
@@ -932,6 +967,35 @@ declare const SearchInput: React$1.ForwardRefExoticComponent<SearchInputProps &
932
967
  interface SearchSelectOption {
933
968
  id: string;
934
969
  label: string;
970
+ /**
971
+ * Optional section name. When any option carries a `group`, the dropdown
972
+ * renders quiet sentence-case section labels, preserving the order in which
973
+ * groups first appear in `options`. Omit on every option to keep the flat
974
+ * (single-list) rendering.
975
+ */
976
+ group?: string;
977
+ /**
978
+ * Optional CSS color (hex or token) rendered as a small leading dot — handy
979
+ * for category accents (e.g. one hue per service line). Treated as data, so
980
+ * the consumer owns the palette.
981
+ */
982
+ color?: string;
983
+ /**
984
+ * Optional leading icon node. When present the row becomes a rich two-line
985
+ * row with the icon in a circular tile. Pair with `iconClassName` for the
986
+ * tile tint. Takes precedence over `color`.
987
+ */
988
+ icon?: React$1.ReactNode;
989
+ /**
990
+ * Tailwind classes for the icon tile (background + text), e.g.
991
+ * "bg-info/10 text-info". Consumer owns the palette.
992
+ */
993
+ iconClassName?: string;
994
+ /**
995
+ * Optional secondary line shown muted beneath the label (e.g. an email or
996
+ * reference). Promotes the row to the two-line rich layout.
997
+ */
998
+ description?: string;
935
999
  }
936
1000
  interface SearchSelectProps {
937
1001
  options: SearchSelectOption[];
@@ -942,8 +1006,36 @@ interface SearchSelectProps {
942
1006
  placeholder?: string;
943
1007
  className?: string;
944
1008
  disabled?: boolean;
1009
+ /**
1010
+ * When true (and options carry `group`), renders a row of exclusive filter
1011
+ * chips ("All" + each non-pinned group) that scope the list to one category.
1012
+ */
1013
+ groupFilter?: boolean;
1014
+ /**
1015
+ * Group names pinned to the top of the list. Pinned groups are excluded from
1016
+ * the filter chips and only shown when the "All" chip is active — the
1017
+ * standard "favorites/suggested on top" treatment.
1018
+ */
1019
+ pinnedGroups?: string[];
1020
+ /**
1021
+ * Close the dropdown after a selection. Off by default (multi-select keeps
1022
+ * the list open to pick more); turn on when used as a single-select.
1023
+ */
1024
+ closeOnSelect?: boolean;
1025
+ /**
1026
+ * Append a count to each group heading (e.g. "Individuals · 5"). Only has an
1027
+ * effect when options carry `group`.
1028
+ */
1029
+ showGroupCounts?: boolean;
1030
+ /**
1031
+ * Persistent footer action pinned below the list, distinct from the
1032
+ * query-based `onCreate` affordance. Always visible while open — use for a
1033
+ * full "Create new client" entry point. `createNewLabel` sets its label.
1034
+ */
1035
+ onCreateNew?: () => void;
1036
+ createNewLabel?: string;
945
1037
  }
946
- declare function SearchSelect({ options, selected, onSelect, onRemove, onCreate, placeholder, className, disabled, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
1038
+ declare function SearchSelect({ options, selected, onSelect, onRemove, onCreate, placeholder, className, disabled, groupFilter, pinnedGroups, closeOnSelect, showGroupCounts, onCreateNew, createNewLabel, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
947
1039
  declare namespace SearchSelect {
948
1040
  var displayName: string;
949
1041
  }
@@ -1164,10 +1256,9 @@ interface StarRatingProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "ro
1164
1256
  declare const StarRating: React$1.ForwardRefExoticComponent<StarRatingProps & React$1.RefAttributes<HTMLDivElement>>;
1165
1257
 
1166
1258
  /**
1167
- * Stat — paired numeric display + caption, the StatNum primitive from
1168
- * spec §4. Numerals are set in `font-display` (Geist) at a fluid clamp size
1169
- * with `font-variant-numeric: tabular-nums` for vertical alignment, ported
1170
- * from the `.stat-num` rule in `_shared.css` (lines 152-161).
1259
+ * Stat — paired numeric display + caption (the StatNum primitive).
1260
+ * Numerals are set in `font-display` (Geist) at a fluid clamp size with
1261
+ * `font-variant-numeric: tabular-nums` for vertical alignment.
1171
1262
  */
1172
1263
  interface StatProps extends React.HTMLAttributes<HTMLDivElement> {
1173
1264
  value: string;
@@ -1214,14 +1305,13 @@ interface SwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Switc
1214
1305
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
1215
1306
 
1216
1307
  /**
1217
- * Table — semantic data-table primitives. Ports the `.data-table` rules
1218
- * from `_shared.css` (lines 542-590):
1308
+ * Table — semantic data-table primitives:
1219
1309
  * - mono uppercase headers (10px, 0.12em tracking) on `bg-surface-2`
1220
1310
  * - 1px `border-rule` under header, `border-rule-soft` between rows
1221
1311
  * - 13px body cells in `text-fg-2`, hover row gets `bg-bg-2`
1222
1312
  *
1223
- * Public API preserved: Table / TableHeader / TableBody / TableRow /
1224
- * TableHead / TableCell / TableCaption. `wrapperClassName` still wraps
1313
+ * Public API: Table / TableHeader / TableBody / TableRow /
1314
+ * TableHead / TableCell / TableCaption. `wrapperClassName` wraps
1225
1315
  * the responsive overflow container.
1226
1316
  */
1227
1317
  interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
@@ -1286,12 +1376,17 @@ interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaEl
1286
1376
  declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
1287
1377
 
1288
1378
  type ToastVariant = "default" | "success" | "destructive" | "warning";
1379
+ interface ToastAction {
1380
+ label: string;
1381
+ onClick: () => void;
1382
+ }
1289
1383
  interface Toast {
1290
1384
  id: string;
1291
1385
  title: string;
1292
1386
  description?: string;
1293
1387
  variant?: ToastVariant;
1294
1388
  duration?: number;
1389
+ action?: ToastAction;
1295
1390
  }
1296
1391
  interface ToastContextValue {
1297
1392
  toast: (options: Omit<Toast, "id">) => string;
@@ -1499,7 +1594,7 @@ declare const SidebarUser: React$1.ForwardRefExoticComponent<SidebarUserProps &
1499
1594
 
1500
1595
  /**
1501
1596
  * AppHeader — sticky 56px-tall top bar mounted inside `<Main>`, above
1502
- * `<Content>`. Ports `.app-header` from `_shared.css` (lines 393-404).
1597
+ * `<Content>`.
1503
1598
  *
1504
1599
  * Children flow horizontally:
1505
1600
  * breadcrumb → title → flex-1 spacer → search → actions
@@ -1533,14 +1628,11 @@ declare const AppHeaderActions: React$1.ForwardRefExoticComponent<AppHeaderActio
1533
1628
 
1534
1629
  /**
1535
1630
  * PageHeader — top-of-page title block: eyebrow → headline + actions row → description → meta row.
1536
- * Ports `.page-header` rules from `_shared.css` (lines 486-498) and
1537
- * absorbs the trailing-edge `actions` slot pattern that 100+ consumer
1538
- * files reinvent via `flex items-center justify-between`.
1631
+ * Absorbs the trailing-edge `actions` slot pattern that consumer files
1632
+ * frequently reinvent via `flex items-center justify-between`.
1539
1633
  *
1540
- * `title` is a string per the consumer-side contract (see
1541
- * `assure-pro-spec/from-lighttaxes-claude.md`, "Page header" section).
1542
- * If a consumer needs richer markup in the headline they should compose
1543
- * around PageHeader rather than via this prop.
1634
+ * `title` is a string. If a consumer needs richer markup in the headline
1635
+ * they should compose around PageHeader rather than via this prop.
1544
1636
  *
1545
1637
  * Layout rules:
1546
1638
  * - `eyebrow` sits above the title with a 6px gap.
@@ -1614,31 +1706,54 @@ interface DataItemProps {
1614
1706
  declare function DataItem({ label, value, span, className }: DataItemProps): react_jsx_runtime.JSX.Element;
1615
1707
 
1616
1708
  /**
1617
- * KpiCard — single-stat tile: label + value + optional tone + optional hint.
1709
+ * KpiCard — single-stat tile: label + value + optional tone, trend, hint.
1618
1710
  *
1619
1711
  * Replaces the three different KPI / stat-card shapes that recur across
1620
1712
  * the dashboard, billing, and attention-queue surfaces:
1621
1713
  *
1622
- * ┌──────────────┐
1623
- * │ 🔵 247 │
1624
- * │ Clients │
1625
- * └──────────────┘
1714
+ * ┌──────────────────────┐
1715
+ * │ 🔵 Clients │
1716
+ * │ 247 ▲ 12% │
1717
+ * │ vs last month │
1718
+ * │ ╱╲╱╲ sparkline │
1719
+ * └──────────────────────┘
1626
1720
  *
1627
1721
  * - `value` is the big-typography figure (count, currency).
1628
1722
  * - `label` is the small caption.
1629
1723
  * - `tone` colors the icon tile / value via semantic tokens (info,
1630
1724
  * success, warning, destructive, accent, muted). Default `muted`.
1631
1725
  * - `icon` slot accepts any node; rendered inside a rounded tile.
1632
- * - `hint` is an optional `text-xs text-fg-3` line under the value
1633
- * ("+18 this month", "vs. last quarter").
1726
+ * - `delta` renders a trend chip (arrow + change). `direction` drives the
1727
+ * arrow; `sentiment` drives the colour and defaults from direction
1728
+ * (up → positive, down → negative, flat → neutral). Pass `sentiment`
1729
+ * explicitly for inverted metrics where "up" is bad (e.g. past-due ↑).
1730
+ * - `trend` (number[]) draws a filled sparkline across the card bottom,
1731
+ * tinted by the delta sentiment (or tone when there's no delta).
1732
+ * - `hint` is an optional `text-fg-4` line ("+18 this month", "6 invoices").
1634
1733
  * - `action` is an optional trailing slot for a button or link.
1635
1734
  *
1636
1735
  * Renders as a `<Card>`. Wrap in a `<Link>` from the consumer side if
1637
1736
  * the tile should navigate.
1638
1737
  */
1639
1738
  type KpiTone = "info" | "success" | "warning" | "destructive" | "accent" | "muted";
1739
+ type DeltaDirection = "up" | "down" | "flat";
1740
+ type DeltaSentiment = "positive" | "negative" | "neutral";
1741
+ interface KpiDelta {
1742
+ /** The change to display, e.g. `"12%"`, `"+18"`, `"-$4.2k"`. */
1743
+ value: React.ReactNode;
1744
+ /** Arrow glyph: `up` ↗, `down` ↘, `flat` —. */
1745
+ direction: DeltaDirection;
1746
+ /**
1747
+ * Colour family. Defaults from `direction` (up → positive, down →
1748
+ * negative, flat → neutral). Set explicitly for inverted metrics where
1749
+ * a rise is bad (e.g. `direction: "up"`, `sentiment: "negative"`).
1750
+ */
1751
+ sentiment?: DeltaSentiment;
1752
+ /** Optional context line under the value, e.g. `"vs last month"`. */
1753
+ label?: React.ReactNode;
1754
+ }
1640
1755
  interface KpiCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
1641
- /** Small caption above (or below, depending on layout) the value. */
1756
+ /** Small caption under the value. */
1642
1757
  label: React.ReactNode;
1643
1758
  /** Main figure — count, currency, percentage. Renders as a 2xl bold. */
1644
1759
  value: React.ReactNode;
@@ -1646,6 +1761,10 @@ interface KpiCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title
1646
1761
  icon?: React.ReactNode;
1647
1762
  /** Color family for the icon tile + (optional) the value. Default `muted`. */
1648
1763
  tone?: KpiTone;
1764
+ /** Optional trend chip (arrow + change) shown beside the value. */
1765
+ delta?: KpiDelta;
1766
+ /** Optional sparkline data drawn across the card bottom. */
1767
+ trend?: number[];
1649
1768
  /** Optional subline below the value (e.g. `"+18 this month"`). */
1650
1769
  hint?: React.ReactNode;
1651
1770
  /** Optional trailing-edge slot for a button or link. */
@@ -1678,8 +1797,7 @@ type DataTableToolbarProps = React.HTMLAttributes<HTMLDivElement>;
1678
1797
  /**
1679
1798
  * DataTableToolbar — top row above the table. Renders the same surface
1680
1799
  * card as `<table>`, but with rounded corners only on top so the table
1681
- * below visually attaches to it (see `.toolbar` rules in `_shared.css`,
1682
- * lines 592-633).
1800
+ * below visually attaches to it.
1683
1801
  */
1684
1802
  declare const DataTableToolbar: React$1.ForwardRefExoticComponent<DataTableToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
1685
1803
  interface DataTableSearchProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
@@ -1699,8 +1817,7 @@ interface DataTableResultsCountProps extends Omit<React.HTMLAttributes<HTMLSpanE
1699
1817
  total: number;
1700
1818
  }
1701
1819
  /**
1702
- * DataTableResultsCount — small spec-styled "12 of 247" indicator.
1703
- * Mono + tabular per `.results-count` (`_shared.css` lines 628-633).
1820
+ * DataTableResultsCount — small "12 of 247" indicator. Mono + tabular.
1704
1821
  */
1705
1822
  declare const DataTableResultsCount: React$1.ForwardRefExoticComponent<DataTableResultsCountProps & React$1.RefAttributes<HTMLSpanElement>>;
1706
1823
  /**
@@ -1749,14 +1866,12 @@ type DataTableCellProps = React.TdHTMLAttributes<HTMLTableCellElement>;
1749
1866
  declare const DataTableCell: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1750
1867
  /**
1751
1868
  * DataTableCellName — primary identifier of the row. Display font,
1752
- * fg color, medium weight (matches `.cell-name` in `_shared.css`
1753
- * line 586).
1869
+ * fg color, medium weight.
1754
1870
  */
1755
1871
  declare const DataTableCellName: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1756
1872
  /**
1757
1873
  * DataTableCellMono — currency / IDs / numerics. Geist Mono with
1758
- * tabular numerals and the same tight tracking the spec uses
1759
- * (`.cell-mono`, `_shared.css` lines 579-584).
1874
+ * tabular numerals and tight tracking.
1760
1875
  */
1761
1876
  declare const DataTableCellMono: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1762
1877
  /**
@@ -1818,13 +1933,9 @@ interface DataTablePaginationProps extends Omit<React.HTMLAttributes<HTMLElement
1818
1933
  declare const DataTablePagination: React$1.ForwardRefExoticComponent<DataTablePaginationProps & React$1.RefAttributes<HTMLElement>>;
1819
1934
 
1820
1935
  /**
1821
- * Detail layout composites — port of the `.detail-grid` / `.detail-spine`
1822
- * pattern from `_shared.css` (lines 814-822) and the canonical detail page
1823
- * mockup (`assure-pro-spec/mockups/04-client-detail.html`).
1824
- *
1825
- * Two-column layout: a sticky left rail (the "spine", 320px) holding
1826
- * identity + key facts, and a scrollable main column for tabs, sections,
1827
- * tables, and activity feeds.
1936
+ * Detail layout composites — two-column layout: a sticky left rail (the
1937
+ * "spine", 320px) holding identity + key facts, and a scrollable main
1938
+ * column for tabs, sections, tables, and activity feeds.
1828
1939
  */
1829
1940
  type DetailGridProps = React.HTMLAttributes<HTMLDivElement>;
1830
1941
  declare const DetailGrid: React$1.ForwardRefExoticComponent<DetailGridProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1851,8 +1962,6 @@ declare const DetailMain: React$1.ForwardRefExoticComponent<DetailMainProps & Re
1851
1962
 
1852
1963
  /**
1853
1964
  * ActivityList — vertical feed of activity rows.
1854
- * Ports `.activity-list` / `.activity-item` from `_shared.css` (lines 635-664)
1855
- * with the simplified row API from `from-lighttaxes-claude.md` (line 71):
1856
1965
  *
1857
1966
  * <ActivityList>
1858
1967
  * <ActivityItem dot="success" actor="Anna" text="filed" target="1120S" time="2h ago" />
@@ -1872,8 +1981,6 @@ declare const ActivityItem: React$1.ForwardRefExoticComponent<ActivityItemProps
1872
1981
 
1873
1982
  /**
1874
1983
  * Kanban — flex container for board columns.
1875
- * Ports `.kanban` / `.kanban-col` / `.kanban-card` from `_shared.css`
1876
- * (lines 700-778). API per `from-lighttaxes-claude.md` line 81-84.
1877
1984
  */
1878
1985
  type KanbanProps = React.HTMLAttributes<HTMLDivElement>;
1879
1986
  declare const Kanban: React$1.ForwardRefExoticComponent<KanbanProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1882,17 +1989,105 @@ interface KanbanColumnProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
1882
1989
  count: number;
1883
1990
  }
1884
1991
  declare const KanbanColumn: React$1.ForwardRefExoticComponent<KanbanColumnProps & React$1.RefAttributes<HTMLDivElement>>;
1885
- declare const kanbanCardVariants: (props?: ({
1886
- variant?: "default" | "pro" | "danger" | "warn" | null | undefined;
1887
- } & class_variance_authority_types.ClassProp) | undefined) => string;
1888
- interface KanbanCardProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof kanbanCardVariants> {
1992
+ type KanbanPriority = "high" | "medium" | "low";
1993
+ type KanbanDueStatus = "overdue" | "soon" | "default";
1994
+ interface KanbanCardProps extends React.HTMLAttributes<HTMLDivElement> {
1995
+ /** Category tag, e.g. a return type ("1040", "1120S"). Rendered as an info chip. */
1996
+ label?: string;
1997
+ /** Task title. Providing this switches the card to the structured rich layout. */
1998
+ title?: string;
1999
+ /** Client / entity the task belongs to. */
2000
+ client?: string;
2001
+ /** Priority — drives the colored priority chip. */
2002
+ priority?: KanbanPriority;
2003
+ /** Preformatted due date, e.g. "Apr 15". */
2004
+ dueDate?: string;
2005
+ /** Urgency of `dueDate` — colors it red (overdue) or amber (soon). Default muted. */
2006
+ dueStatus?: KanbanDueStatus;
2007
+ /** Assignee shown as an initials avatar. */
2008
+ assignee?: {
2009
+ name: string;
2010
+ src?: string | null;
2011
+ };
1889
2012
  }
1890
2013
  declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
1891
2014
 
2015
+ /**
2016
+ * NotificationPanel — presentational in-app notification list (the bell
2017
+ * dropdown body). Avatar-led: people-driven rows (mentions, messages) show
2018
+ * the sender's avatar, system rows show a neutral type icon. Icons are
2019
+ * neutral on purpose — colour is spent only on the unread signal.
2020
+ *
2021
+ * This is the visual layer only. The app owns data, realtime (SSE),
2022
+ * pagination, and navigation, and composes these pieces:
2023
+ *
2024
+ * <NotificationPanel>
2025
+ * <NotificationPanelHeader unreadCount={3} onMarkAllRead={...} onSettings={...} />
2026
+ * <NotificationFilter value={filter} onValueChange={setFilter} actions={<TypeDropdown />} />
2027
+ * <NotificationList>
2028
+ * {items.map((n) => (
2029
+ * <NotificationItem
2030
+ * key={n.id}
2031
+ * title={n.title}
2032
+ * body={n.body}
2033
+ * typeLabel={n.typeLabel}
2034
+ * client={n.client}
2035
+ * time={n.time}
2036
+ * sender={n.sender} // omit for system rows
2037
+ * icon={<DocumentIcon />} // used when there's no sender
2038
+ * unread={!n.isRead}
2039
+ * onClick={() => open(n)}
2040
+ * />
2041
+ * ))}
2042
+ * </NotificationList>
2043
+ * </NotificationPanel>
2044
+ *
2045
+ * Empty / loading states are the consumer's call (use `EmptyState` and
2046
+ * `Skeleton` from the package).
2047
+ */
2048
+ type NotificationPanelProps = React.HTMLAttributes<HTMLDivElement>;
2049
+ declare const NotificationPanel: React$1.ForwardRefExoticComponent<NotificationPanelProps & React$1.RefAttributes<HTMLDivElement>>;
2050
+ interface NotificationPanelHeaderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2051
+ title?: React.ReactNode;
2052
+ /** Unread count — drives the pill and whether "Mark all read" shows. */
2053
+ unreadCount?: number;
2054
+ onMarkAllRead?: () => void;
2055
+ onSettings?: () => void;
2056
+ }
2057
+ declare const NotificationPanelHeader: React$1.ForwardRefExoticComponent<NotificationPanelHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2058
+ type NotificationFilterValue = "all" | "unread";
2059
+ interface NotificationFilterProps extends React.HTMLAttributes<HTMLDivElement> {
2060
+ value: NotificationFilterValue;
2061
+ onValueChange: (value: NotificationFilterValue) => void;
2062
+ /** Right-aligned slot, e.g. a type-filter dropdown trigger. */
2063
+ actions?: React.ReactNode;
2064
+ }
2065
+ declare const NotificationFilter: React$1.ForwardRefExoticComponent<NotificationFilterProps & React$1.RefAttributes<HTMLDivElement>>;
2066
+ type NotificationListProps = React.HTMLAttributes<HTMLDivElement>;
2067
+ declare const NotificationList: React$1.ForwardRefExoticComponent<NotificationListProps & React$1.RefAttributes<HTMLDivElement>>;
2068
+ interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "title"> {
2069
+ title: React.ReactNode;
2070
+ body?: React.ReactNode;
2071
+ /** Small caption, joined with `client` and `time` on the meta line. */
2072
+ typeLabel?: React.ReactNode;
2073
+ client?: React.ReactNode;
2074
+ /** Preformatted relative time, e.g. "5m". */
2075
+ time?: React.ReactNode;
2076
+ /** People-driven rows: shows the sender avatar instead of the icon tile. */
2077
+ sender?: {
2078
+ name: string;
2079
+ src?: string | null;
2080
+ };
2081
+ /** System rows: icon rendered inside a neutral tile. Ignored when `sender` is set. */
2082
+ icon?: React.ReactNode;
2083
+ unread?: boolean;
2084
+ }
2085
+ declare const NotificationItem: React$1.ForwardRefExoticComponent<NotificationItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2086
+
1892
2087
  /**
1893
2088
  * Toolbar — horizontal row of controls used above lists, dashboards, etc.
1894
- * Ports `.toolbar` from `_shared.css` (lines 591-633). FilterChip is a
1895
- * simpler atom than `MultiFilterPill` — single filter, not multi-select.
2089
+ * FilterChip is a simpler atom than `MultiFilterPill` — single filter,
2090
+ * not multi-select.
1896
2091
  */
1897
2092
  type ToolbarProps = React.HTMLAttributes<HTMLDivElement>;
1898
2093
  declare const Toolbar: React$1.ForwardRefExoticComponent<ToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1956,4 +2151,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
1956
2151
 
1957
2152
  declare function cn(...inputs: ClassValue[]): string;
1958
2153
 
1959
- 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, 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, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, KeyboardShortcutsDialog, 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, 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 };
2154
+ 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, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, 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 };