@assure-one/design-system 0.4.1 → 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/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).
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.
738
770
  *
739
- * Public API kept stable: `size`, `href`, `showText`, `inverted`, plus the
740
- * style-override hooks (`className`, `iconClassName`, `textClassName`).
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> {
@@ -1164,10 +1199,9 @@ interface StarRatingProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "ro
1164
1199
  declare const StarRating: React$1.ForwardRefExoticComponent<StarRatingProps & React$1.RefAttributes<HTMLDivElement>>;
1165
1200
 
1166
1201
  /**
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).
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.
1171
1205
  */
1172
1206
  interface StatProps extends React.HTMLAttributes<HTMLDivElement> {
1173
1207
  value: string;
@@ -1214,14 +1248,13 @@ interface SwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Switc
1214
1248
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
1215
1249
 
1216
1250
  /**
1217
- * Table — semantic data-table primitives. Ports the `.data-table` rules
1218
- * from `_shared.css` (lines 542-590):
1251
+ * Table — semantic data-table primitives:
1219
1252
  * - mono uppercase headers (10px, 0.12em tracking) on `bg-surface-2`
1220
1253
  * - 1px `border-rule` under header, `border-rule-soft` between rows
1221
1254
  * - 13px body cells in `text-fg-2`, hover row gets `bg-bg-2`
1222
1255
  *
1223
- * Public API preserved: Table / TableHeader / TableBody / TableRow /
1224
- * TableHead / TableCell / TableCaption. `wrapperClassName` still wraps
1256
+ * Public API: Table / TableHeader / TableBody / TableRow /
1257
+ * TableHead / TableCell / TableCaption. `wrapperClassName` wraps
1225
1258
  * the responsive overflow container.
1226
1259
  */
1227
1260
  interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
@@ -1286,12 +1319,17 @@ interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaEl
1286
1319
  declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
1287
1320
 
1288
1321
  type ToastVariant = "default" | "success" | "destructive" | "warning";
1322
+ interface ToastAction {
1323
+ label: string;
1324
+ onClick: () => void;
1325
+ }
1289
1326
  interface Toast {
1290
1327
  id: string;
1291
1328
  title: string;
1292
1329
  description?: string;
1293
1330
  variant?: ToastVariant;
1294
1331
  duration?: number;
1332
+ action?: ToastAction;
1295
1333
  }
1296
1334
  interface ToastContextValue {
1297
1335
  toast: (options: Omit<Toast, "id">) => string;
@@ -1499,7 +1537,7 @@ declare const SidebarUser: React$1.ForwardRefExoticComponent<SidebarUserProps &
1499
1537
 
1500
1538
  /**
1501
1539
  * AppHeader — sticky 56px-tall top bar mounted inside `<Main>`, above
1502
- * `<Content>`. Ports `.app-header` from `_shared.css` (lines 393-404).
1540
+ * `<Content>`.
1503
1541
  *
1504
1542
  * Children flow horizontally:
1505
1543
  * breadcrumb → title → flex-1 spacer → search → actions
@@ -1533,14 +1571,11 @@ declare const AppHeaderActions: React$1.ForwardRefExoticComponent<AppHeaderActio
1533
1571
 
1534
1572
  /**
1535
1573
  * 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`.
1574
+ * Absorbs the trailing-edge `actions` slot pattern that consumer files
1575
+ * frequently reinvent via `flex items-center justify-between`.
1539
1576
  *
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.
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.
1544
1579
  *
1545
1580
  * Layout rules:
1546
1581
  * - `eyebrow` sits above the title with a 6px gap.
@@ -1614,31 +1649,54 @@ interface DataItemProps {
1614
1649
  declare function DataItem({ label, value, span, className }: DataItemProps): react_jsx_runtime.JSX.Element;
1615
1650
 
1616
1651
  /**
1617
- * KpiCard — single-stat tile: label + value + optional tone + optional hint.
1652
+ * KpiCard — single-stat tile: label + value + optional tone, trend, hint.
1618
1653
  *
1619
1654
  * Replaces the three different KPI / stat-card shapes that recur across
1620
1655
  * the dashboard, billing, and attention-queue surfaces:
1621
1656
  *
1622
- * ┌──────────────┐
1623
- * │ 🔵 247 │
1624
- * │ Clients │
1625
- * └──────────────┘
1657
+ * ┌──────────────────────┐
1658
+ * │ 🔵 Clients │
1659
+ * │ 247 ▲ 12% │
1660
+ * │ vs last month │
1661
+ * │ ╱╲╱╲ sparkline │
1662
+ * └──────────────────────┘
1626
1663
  *
1627
1664
  * - `value` is the big-typography figure (count, currency).
1628
1665
  * - `label` is the small caption.
1629
1666
  * - `tone` colors the icon tile / value via semantic tokens (info,
1630
1667
  * success, warning, destructive, accent, muted). Default `muted`.
1631
1668
  * - `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").
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").
1634
1676
  * - `action` is an optional trailing slot for a button or link.
1635
1677
  *
1636
1678
  * Renders as a `<Card>`. Wrap in a `<Link>` from the consumer side if
1637
1679
  * the tile should navigate.
1638
1680
  */
1639
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
+ }
1640
1698
  interface KpiCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
1641
- /** Small caption above (or below, depending on layout) the value. */
1699
+ /** Small caption under the value. */
1642
1700
  label: React.ReactNode;
1643
1701
  /** Main figure — count, currency, percentage. Renders as a 2xl bold. */
1644
1702
  value: React.ReactNode;
@@ -1646,6 +1704,10 @@ interface KpiCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title
1646
1704
  icon?: React.ReactNode;
1647
1705
  /** Color family for the icon tile + (optional) the value. Default `muted`. */
1648
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[];
1649
1711
  /** Optional subline below the value (e.g. `"+18 this month"`). */
1650
1712
  hint?: React.ReactNode;
1651
1713
  /** Optional trailing-edge slot for a button or link. */
@@ -1678,8 +1740,7 @@ type DataTableToolbarProps = React.HTMLAttributes<HTMLDivElement>;
1678
1740
  /**
1679
1741
  * DataTableToolbar — top row above the table. Renders the same surface
1680
1742
  * 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).
1743
+ * below visually attaches to it.
1683
1744
  */
1684
1745
  declare const DataTableToolbar: React$1.ForwardRefExoticComponent<DataTableToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
1685
1746
  interface DataTableSearchProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
@@ -1699,8 +1760,7 @@ interface DataTableResultsCountProps extends Omit<React.HTMLAttributes<HTMLSpanE
1699
1760
  total: number;
1700
1761
  }
1701
1762
  /**
1702
- * DataTableResultsCount — small spec-styled "12 of 247" indicator.
1703
- * Mono + tabular per `.results-count` (`_shared.css` lines 628-633).
1763
+ * DataTableResultsCount — small "12 of 247" indicator. Mono + tabular.
1704
1764
  */
1705
1765
  declare const DataTableResultsCount: React$1.ForwardRefExoticComponent<DataTableResultsCountProps & React$1.RefAttributes<HTMLSpanElement>>;
1706
1766
  /**
@@ -1749,14 +1809,12 @@ type DataTableCellProps = React.TdHTMLAttributes<HTMLTableCellElement>;
1749
1809
  declare const DataTableCell: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1750
1810
  /**
1751
1811
  * DataTableCellName — primary identifier of the row. Display font,
1752
- * fg color, medium weight (matches `.cell-name` in `_shared.css`
1753
- * line 586).
1812
+ * fg color, medium weight.
1754
1813
  */
1755
1814
  declare const DataTableCellName: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1756
1815
  /**
1757
1816
  * 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).
1817
+ * tabular numerals and tight tracking.
1760
1818
  */
1761
1819
  declare const DataTableCellMono: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
1762
1820
  /**
@@ -1818,13 +1876,9 @@ interface DataTablePaginationProps extends Omit<React.HTMLAttributes<HTMLElement
1818
1876
  declare const DataTablePagination: React$1.ForwardRefExoticComponent<DataTablePaginationProps & React$1.RefAttributes<HTMLElement>>;
1819
1877
 
1820
1878
  /**
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.
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.
1828
1882
  */
1829
1883
  type DetailGridProps = React.HTMLAttributes<HTMLDivElement>;
1830
1884
  declare const DetailGrid: React$1.ForwardRefExoticComponent<DetailGridProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1851,8 +1905,6 @@ declare const DetailMain: React$1.ForwardRefExoticComponent<DetailMainProps & Re
1851
1905
 
1852
1906
  /**
1853
1907
  * 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
1908
  *
1857
1909
  * <ActivityList>
1858
1910
  * <ActivityItem dot="success" actor="Anna" text="filed" target="1120S" time="2h ago" />
@@ -1872,8 +1924,6 @@ declare const ActivityItem: React$1.ForwardRefExoticComponent<ActivityItemProps
1872
1924
 
1873
1925
  /**
1874
1926
  * 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
1927
  */
1878
1928
  type KanbanProps = React.HTMLAttributes<HTMLDivElement>;
1879
1929
  declare const Kanban: React$1.ForwardRefExoticComponent<KanbanProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1882,17 +1932,33 @@ interface KanbanColumnProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
1882
1932
  count: number;
1883
1933
  }
1884
1934
  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> {
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
+ };
1889
1955
  }
1890
1956
  declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
1891
1957
 
1892
1958
  /**
1893
1959
  * 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.
1960
+ * FilterChip is a simpler atom than `MultiFilterPill` — single filter,
1961
+ * not multi-select.
1896
1962
  */
1897
1963
  type ToolbarProps = React.HTMLAttributes<HTMLDivElement>;
1898
1964
  declare const Toolbar: React$1.ForwardRefExoticComponent<ToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1956,4 +2022,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
1956
2022
 
1957
2023
  declare function cn(...inputs: ClassValue[]): string;
1958
2024
 
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 };
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 };