@assure-one/design-system 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +432 -14
- package/dist/index.js +1051 -36
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/tokens/index.d.ts +21 -6
- package/dist/tokens/index.js +27 -5
- package/dist/tokens/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { ColorName, ReferenceTokens, SystemTokens, colors, radii, reference, shadows, spacing, surfaces, systemTokens, typography } from './tokens/index.js';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import { ReactNode } from 'react';
|
|
3
|
+
import { CSSProperties, ReactNode } from 'react';
|
|
4
4
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
@@ -68,6 +68,34 @@ declare const Alert: React$1.ForwardRefExoticComponent<AlertProps & React$1.RefA
|
|
|
68
68
|
declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
69
69
|
declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
70
70
|
|
|
71
|
+
/**
|
|
72
|
+
* AreaChart — single-series area + line trend (the "Financial overview"
|
|
73
|
+
* chart). SVG `path` area under a 2.5px line, vertical gradient fill, and
|
|
74
|
+
* hover points with a floating tooltip.
|
|
75
|
+
*
|
|
76
|
+
* Width is measured with a ResizeObserver so the chart fills its column;
|
|
77
|
+
* the initial width is a safe SSR default (no `window` read on the server).
|
|
78
|
+
* The gradient gets a `useId`-scoped `<defs>` id so multiple instances on
|
|
79
|
+
* one page don't collide.
|
|
80
|
+
*
|
|
81
|
+
* Stroke + gradient come from the tokenized chart line color
|
|
82
|
+
* (`--color-chart-line`, `--color-chart-area-*`).
|
|
83
|
+
*/
|
|
84
|
+
interface AreaPoint {
|
|
85
|
+
label: string;
|
|
86
|
+
value: number;
|
|
87
|
+
}
|
|
88
|
+
interface AreaChartProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
89
|
+
data: AreaPoint[];
|
|
90
|
+
/** Plot height in px (excludes the x-axis label row). */
|
|
91
|
+
height?: number;
|
|
92
|
+
/** Format a value for the hover tooltip. Defaults to a thin-space number. */
|
|
93
|
+
formatValue?: (value: number) => string;
|
|
94
|
+
/** Show the x-axis label row under the plot. Default `true`. */
|
|
95
|
+
showAxis?: boolean;
|
|
96
|
+
}
|
|
97
|
+
declare const AreaChart: React$1.ForwardRefExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
98
|
+
|
|
71
99
|
interface AspectRatioProps extends React$1.ComponentPropsWithoutRef<typeof AspectRatioPrimitive.Root> {
|
|
72
100
|
ratio?: number;
|
|
73
101
|
children: React$1.ReactNode;
|
|
@@ -486,6 +514,43 @@ interface DismissibleChipProps extends Omit<React$1.ButtonHTMLAttributes<HTMLBut
|
|
|
486
514
|
}
|
|
487
515
|
declare const DismissibleChip: React$1.ForwardRefExoticComponent<DismissibleChipProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
488
516
|
|
|
517
|
+
/**
|
|
518
|
+
* DonutChart — segmented SVG arc meter (the "Review control center" donut).
|
|
519
|
+
*
|
|
520
|
+
* No Radix equivalent; this is the canonical donut/arc primitive. Segments
|
|
521
|
+
* are drawn as `stroke-dasharray` arcs on stacked circles rotated −90° so
|
|
522
|
+
* the series starts at 12 o'clock. Hovering a segment (or its legend row)
|
|
523
|
+
* thickens it, dims the rest, and swaps the center readout to that
|
|
524
|
+
* segment's value — matching the reference interaction.
|
|
525
|
+
*
|
|
526
|
+
* Colors default to the tokenized chart ramp (`--color-chart-1..4`,
|
|
527
|
+
* cycled). Pass `color` per segment to override. The center shows the
|
|
528
|
+
* total + label by default, or a custom node via `center`.
|
|
529
|
+
*
|
|
530
|
+
* Only a named-property transition is used (`stroke-width`, `opacity`), so
|
|
531
|
+
* it honors `prefers-reduced-motion` through the global base rule.
|
|
532
|
+
*/
|
|
533
|
+
interface DonutSegment {
|
|
534
|
+
label: string;
|
|
535
|
+
value: number;
|
|
536
|
+
/** Override the ramp color for this segment (any CSS color / var). */
|
|
537
|
+
color?: string;
|
|
538
|
+
}
|
|
539
|
+
interface DonutChartProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
540
|
+
segments: DonutSegment[];
|
|
541
|
+
/** Outer diameter in px. */
|
|
542
|
+
size?: number;
|
|
543
|
+
/** Arc thickness in px. */
|
|
544
|
+
strokeWidth?: number;
|
|
545
|
+
/** Caption under the center number ("In pipeline"). */
|
|
546
|
+
centerLabel?: string;
|
|
547
|
+
/** Replace the whole center readout. */
|
|
548
|
+
center?: React.ReactNode;
|
|
549
|
+
/** Render the labelled legend beside the ring. Default `true`. */
|
|
550
|
+
legend?: boolean;
|
|
551
|
+
}
|
|
552
|
+
declare const DonutChart: React$1.ForwardRefExoticComponent<DonutChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
553
|
+
|
|
489
554
|
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
490
555
|
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
491
556
|
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -528,6 +593,29 @@ interface EmptyStateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
528
593
|
}
|
|
529
594
|
declare const EmptyState: React$1.ForwardRefExoticComponent<EmptyStateProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
530
595
|
|
|
596
|
+
/**
|
|
597
|
+
* FileChip — compact attachment row: a colored file-type tile, the file
|
|
598
|
+
* name, a "size · when" meta line, and an optional trailing action
|
|
599
|
+
* (View / Download). Used in the AI receipt panel, document mini-lists,
|
|
600
|
+
* and message attachments.
|
|
601
|
+
*
|
|
602
|
+
* The tile tone keys off `kind`: documents are danger-tinted (PDF red),
|
|
603
|
+
* sheets success, images info, generic neutral — a quick visual file-type
|
|
604
|
+
* cue without a bespoke icon per extension.
|
|
605
|
+
*/
|
|
606
|
+
type FileKind = "doc" | "sheet" | "image" | "generic";
|
|
607
|
+
interface FileChipProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
608
|
+
name: string;
|
|
609
|
+
/** Right-side meta, e.g. "240 KB · uploaded just now". */
|
|
610
|
+
meta?: React.ReactNode;
|
|
611
|
+
kind?: FileKind;
|
|
612
|
+
/** Custom glyph inside the tile; defaults to a document icon. */
|
|
613
|
+
icon?: React.ReactNode;
|
|
614
|
+
/** Trailing action node (a Button / link). */
|
|
615
|
+
action?: React.ReactNode;
|
|
616
|
+
}
|
|
617
|
+
declare const FileChip: React$1.ForwardRefExoticComponent<FileChipProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
618
|
+
|
|
531
619
|
interface FileUploadProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
532
620
|
accept?: string;
|
|
533
621
|
maxSize?: number;
|
|
@@ -1104,6 +1192,33 @@ interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof Ra
|
|
|
1104
1192
|
}
|
|
1105
1193
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1106
1194
|
|
|
1195
|
+
/**
|
|
1196
|
+
* RankedBars — horizontal ranked-bar list (the "Service line performance"
|
|
1197
|
+
* widget). Each row is a name + value, a proportional bar, an optional
|
|
1198
|
+
* up/down change chip, and an optional sub line.
|
|
1199
|
+
*
|
|
1200
|
+
* Bar widths are a `pct` (0–100) you pass — keep the ranking math at the
|
|
1201
|
+
* call site so the primitive stays a pure renderer. Colors cycle the
|
|
1202
|
+
* tokenized chart ramp; override per row with `color`.
|
|
1203
|
+
*/
|
|
1204
|
+
interface RankedBar {
|
|
1205
|
+
label: string;
|
|
1206
|
+
/** Headline figure shown at the row's trailing edge (already formatted). */
|
|
1207
|
+
value?: React.ReactNode;
|
|
1208
|
+
/** Bar fill width as a percent of the track, 0–100. */
|
|
1209
|
+
pct: number;
|
|
1210
|
+
/** Signed period change; positive renders an up chip, negative a down chip. */
|
|
1211
|
+
change?: number;
|
|
1212
|
+
/** Small caption under the bar (e.g. "12 clients"). */
|
|
1213
|
+
sublabel?: React.ReactNode;
|
|
1214
|
+
/** Override the ramp color for this bar. */
|
|
1215
|
+
color?: string;
|
|
1216
|
+
}
|
|
1217
|
+
interface RankedBarsProps extends React.HTMLAttributes<HTMLUListElement> {
|
|
1218
|
+
items: RankedBar[];
|
|
1219
|
+
}
|
|
1220
|
+
declare const RankedBars: React$1.ForwardRefExoticComponent<RankedBarsProps & React$1.RefAttributes<HTMLUListElement>>;
|
|
1221
|
+
|
|
1107
1222
|
interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
|
|
1108
1223
|
children: React$1.ReactNode;
|
|
1109
1224
|
}
|
|
@@ -1258,6 +1373,29 @@ interface SectionHeadProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "t
|
|
|
1258
1373
|
}
|
|
1259
1374
|
declare const SectionHead: React$1.ForwardRefExoticComponent<SectionHeadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1260
1375
|
|
|
1376
|
+
/**
|
|
1377
|
+
* SegmentedProgress — discrete step meter rendered as N pill segments, the
|
|
1378
|
+
* first `current` of which are filled. Used on engagement cards ("step 2
|
|
1379
|
+
* of 5") where a continuous bar would over-state precision.
|
|
1380
|
+
*
|
|
1381
|
+
* `tone` colors the filled segments. Status tones map to the semantic
|
|
1382
|
+
* palette; service tones map to the practice ramp — both resolve to a
|
|
1383
|
+
* single CSS color so the segment markup stays identical.
|
|
1384
|
+
*/
|
|
1385
|
+
type SegmentedTone = "default" | "success" | "warning" | "destructive" | "info" | "tax" | "audit" | "accounting";
|
|
1386
|
+
interface SegmentedProgressProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
1387
|
+
/** Total number of segments. */
|
|
1388
|
+
steps: number;
|
|
1389
|
+
/** How many leading segments are filled. */
|
|
1390
|
+
current: number;
|
|
1391
|
+
tone?: SegmentedTone;
|
|
1392
|
+
/** Segment height in px. Default 6. */
|
|
1393
|
+
thickness?: number;
|
|
1394
|
+
/** Accessible label; falls back to "Step X of Y". */
|
|
1395
|
+
label?: string;
|
|
1396
|
+
}
|
|
1397
|
+
declare const SegmentedProgress: React$1.ForwardRefExoticComponent<SegmentedProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1398
|
+
|
|
1261
1399
|
declare const SelectRoot: React$1.FC<SelectPrimitive.SelectProps>;
|
|
1262
1400
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1263
1401
|
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1492,6 +1630,32 @@ interface StatusIconProps extends Omit<React.SVGAttributes<SVGSVGElement>, "colo
|
|
|
1492
1630
|
}
|
|
1493
1631
|
declare function StatusIcon({ state, progress, color, size, className, ...props }: StatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1494
1632
|
|
|
1633
|
+
/**
|
|
1634
|
+
* StatusPill — semantic status atom for engagement / document / signature
|
|
1635
|
+
* lifecycles. It is a thin mapping over <Badge>: each known `status` picks
|
|
1636
|
+
* the right variant + default label + dot, so call sites read as
|
|
1637
|
+
* `<StatusPill status="needs-revision" />` instead of repeating the
|
|
1638
|
+
* variant/label pairing everywhere.
|
|
1639
|
+
*
|
|
1640
|
+
* Mapping (per the portal spec):
|
|
1641
|
+
* requested → warning "Requested"
|
|
1642
|
+
* in-review → info "In review"
|
|
1643
|
+
* needs-revision → danger "Needs revision"
|
|
1644
|
+
* accepted/signed/
|
|
1645
|
+
* approved/paid → success "Accepted" / "Signed" / …
|
|
1646
|
+
* draft/pending → secondary
|
|
1647
|
+
* overdue → danger
|
|
1648
|
+
*
|
|
1649
|
+
* Pass `children` to override the label while keeping the mapped variant.
|
|
1650
|
+
*/
|
|
1651
|
+
type PillStatus = "requested" | "in-review" | "needs-revision" | "accepted" | "signed" | "approved" | "paid" | "complete" | "draft" | "pending" | "overdue" | "declined";
|
|
1652
|
+
interface StatusPillProps extends Omit<BadgeProps, "variant"> {
|
|
1653
|
+
status: PillStatus;
|
|
1654
|
+
/** Show a leading dot. Default `true` (status atoms read better with one). */
|
|
1655
|
+
dot?: boolean;
|
|
1656
|
+
}
|
|
1657
|
+
declare const StatusPill: React$1.ForwardRefExoticComponent<StatusPillProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1658
|
+
|
|
1495
1659
|
/**
|
|
1496
1660
|
* Stepper — custom progress indicator. No Radix equivalent.
|
|
1497
1661
|
* Active step uses Pro purple; completed steps use the success palette;
|
|
@@ -1532,9 +1696,10 @@ declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.Re
|
|
|
1532
1696
|
|
|
1533
1697
|
/**
|
|
1534
1698
|
* Table — semantic data-table primitives:
|
|
1535
|
-
* -
|
|
1699
|
+
* - sentence-case headers in the body font (12px, medium, `text-fg-3`)
|
|
1700
|
+
* on `bg-surface-2` — quiet column labels, not mono eyebrows
|
|
1536
1701
|
* - 1px `border-rule` under header, `border-rule-soft` between rows
|
|
1537
|
-
* - 13px body cells in `text-fg-2`, hover
|
|
1702
|
+
* - 13px body cells in `text-fg-2`, airy 44px rows, hover gets `bg-bg-2`
|
|
1538
1703
|
*
|
|
1539
1704
|
* Public API: Table / TableHeader / TableBody / TableRow /
|
|
1540
1705
|
* TableHead / TableCell / TableCaption. `wrapperClassName` wraps
|
|
@@ -1664,6 +1829,258 @@ interface VisuallyHiddenProps extends React.ComponentPropsWithoutRef<typeof Visu
|
|
|
1664
1829
|
}
|
|
1665
1830
|
declare const VisuallyHidden: React$1.ForwardRefExoticComponent<VisuallyHiddenProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1666
1831
|
|
|
1832
|
+
/**
|
|
1833
|
+
* AIReceiptPanel — the portal "attach a receipt, auto-fill with AI" panel.
|
|
1834
|
+
* Three states drive the whole surface:
|
|
1835
|
+
*
|
|
1836
|
+
* idle → dashed "Attach receipt" button
|
|
1837
|
+
* reading → pulsing sparkle + "Reading your receipt…"
|
|
1838
|
+
* done → "Auto-filled from receipt" badge, the file chip, and the
|
|
1839
|
+
* extracted vendor / amount / date grid (each confirmed ✓)
|
|
1840
|
+
*
|
|
1841
|
+
* It is **controlled**: the consumer owns `state` and supplies `result`
|
|
1842
|
+
* when done. The simulated extraction in the reference is just one driver;
|
|
1843
|
+
* swap in real OCR/AI and the contract is unchanged — flip `state` to
|
|
1844
|
+
* "reading", then to "done" with a `result`.
|
|
1845
|
+
*/
|
|
1846
|
+
interface AIReceiptResult {
|
|
1847
|
+
vendor: string;
|
|
1848
|
+
amount: string;
|
|
1849
|
+
date: string;
|
|
1850
|
+
file: {
|
|
1851
|
+
name: string;
|
|
1852
|
+
meta?: React.ReactNode;
|
|
1853
|
+
};
|
|
1854
|
+
}
|
|
1855
|
+
interface AIReceiptPanelProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "results"> {
|
|
1856
|
+
state?: "idle" | "reading" | "done";
|
|
1857
|
+
/** Extracted fields, shown in the `done` state. */
|
|
1858
|
+
result?: AIReceiptResult;
|
|
1859
|
+
/** Fired when the idle attach button is pressed. */
|
|
1860
|
+
onAttach?: () => void;
|
|
1861
|
+
/** Fired when the done-state "Remove" link is pressed. */
|
|
1862
|
+
onRemove?: () => void;
|
|
1863
|
+
/** View action for the file chip (e.g. open the receipt). */
|
|
1864
|
+
onViewFile?: () => void;
|
|
1865
|
+
}
|
|
1866
|
+
declare const AIReceiptPanel: React$1.ForwardRefExoticComponent<AIReceiptPanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1867
|
+
|
|
1868
|
+
/**
|
|
1869
|
+
* Practice service tones for the client portal. Each engagement surface
|
|
1870
|
+
* (card, ring, timeline) is "toned per service": a fill color + a track
|
|
1871
|
+
* tint. Rather than fork every primitive's `variant` enum, portal
|
|
1872
|
+
* composites set these two CSS vars (`--tone`, `--tone-bg`) once on their
|
|
1873
|
+
* root and let descendants read them via `[color:var(--tone)]` /
|
|
1874
|
+
* `[background:var(--tone-bg)]`. One place owns the mapping; theming and
|
|
1875
|
+
* dark mode flow through the underlying `--color-service-*` tokens.
|
|
1876
|
+
*/
|
|
1877
|
+
type ServiceTone = "tax" | "audit" | "accounting" | "neutral";
|
|
1878
|
+
/**
|
|
1879
|
+
* CSS-var style object to spread on a service-toned root. Descendants read
|
|
1880
|
+
* `var(--tone)` / `var(--tone-bg)`; the cast is required because
|
|
1881
|
+
* `CSSProperties` doesn't type custom properties.
|
|
1882
|
+
*/
|
|
1883
|
+
declare function serviceToneStyle(tone: ServiceTone): CSSProperties;
|
|
1884
|
+
declare const SERVICE_TONES: ServiceTone[];
|
|
1885
|
+
/** Human label for a tone, for chips and headings. */
|
|
1886
|
+
declare const serviceToneLabel: Record<ServiceTone, string>;
|
|
1887
|
+
|
|
1888
|
+
/**
|
|
1889
|
+
* AttentionItem — one row in the portal "Needs your attention" feed:
|
|
1890
|
+
* a toned icon tile, a title + supporting line, and a trailing action
|
|
1891
|
+
* (custom node or a default chevron). Group these by service at the call
|
|
1892
|
+
* site; the row itself just renders one item.
|
|
1893
|
+
*
|
|
1894
|
+
* Set `tone` to color the icon tile per service (or use a status tone via
|
|
1895
|
+
* `urgency`). The whole row is a `<button>` when `onClick` is supplied.
|
|
1896
|
+
*/
|
|
1897
|
+
type AttentionUrgency = "default" | "warning" | "danger";
|
|
1898
|
+
interface AttentionItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
1899
|
+
icon: React.ReactNode;
|
|
1900
|
+
title: React.ReactNode;
|
|
1901
|
+
description?: React.ReactNode;
|
|
1902
|
+
/** Service tone for the icon tile (used when `urgency` is "default"). */
|
|
1903
|
+
tone?: ServiceTone;
|
|
1904
|
+
/** Status urgency — overrides the service tone for the tile. */
|
|
1905
|
+
urgency?: AttentionUrgency;
|
|
1906
|
+
/** Trailing slot; defaults to a chevron when the row is interactive. */
|
|
1907
|
+
action?: React.ReactNode;
|
|
1908
|
+
onClick?: () => void;
|
|
1909
|
+
}
|
|
1910
|
+
declare const AttentionItem: React$1.ForwardRefExoticComponent<AttentionItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1911
|
+
|
|
1912
|
+
/**
|
|
1913
|
+
* BottomNav — mobile tab bar for the client portal (desktop uses the
|
|
1914
|
+
* sidebar instead). Fixed to the viewport bottom with safe-area padding;
|
|
1915
|
+
* each tab is an icon + short label with an optional count/dot badge.
|
|
1916
|
+
*
|
|
1917
|
+
* Controlled via `value` + `onChange`. Keep it to 3–5 tabs — beyond that,
|
|
1918
|
+
* labels truncate and the row gets cramped on a 390px screen.
|
|
1919
|
+
*/
|
|
1920
|
+
interface BottomNavTab {
|
|
1921
|
+
id: string;
|
|
1922
|
+
label: string;
|
|
1923
|
+
icon: React.ReactNode;
|
|
1924
|
+
/** Numeric badge; `true` renders a dot. */
|
|
1925
|
+
badge?: number | boolean;
|
|
1926
|
+
}
|
|
1927
|
+
interface BottomNavProps extends Omit<React.HTMLAttributes<HTMLElement>, "onChange"> {
|
|
1928
|
+
tabs: BottomNavTab[];
|
|
1929
|
+
value: string;
|
|
1930
|
+
onChange: (id: string) => void;
|
|
1931
|
+
}
|
|
1932
|
+
declare const BottomNav: React$1.ForwardRefExoticComponent<BottomNavProps & React$1.RefAttributes<HTMLElement>>;
|
|
1933
|
+
|
|
1934
|
+
/**
|
|
1935
|
+
* DashGrid — drag-to-reorder widget grid for the firm dashboard. Each
|
|
1936
|
+
* widget gets a 6-dot grab handle; dragging it over another widget moves
|
|
1937
|
+
* it to that slot. The flat order is the source of truth; widgets flow
|
|
1938
|
+
* row-major into a responsive CSS grid.
|
|
1939
|
+
*
|
|
1940
|
+
* Order is uncontrolled by default. Pass `storageKey` to persist it to
|
|
1941
|
+
* `localStorage` — the initial order is read **once** in a lazy
|
|
1942
|
+
* `useState` initializer (SSR-safe: no read on the server), and the grid
|
|
1943
|
+
* carries `suppressHydrationWarning` because a persisted client order will
|
|
1944
|
+
* legitimately differ from the server's default order on first paint.
|
|
1945
|
+
* `onReorder` fires with the new id order on every move.
|
|
1946
|
+
*/
|
|
1947
|
+
interface DashWidget {
|
|
1948
|
+
id: string;
|
|
1949
|
+
content: React.ReactNode;
|
|
1950
|
+
/** Column span on the lg grid (1–3). Default 1. */
|
|
1951
|
+
span?: 1 | 2 | 3;
|
|
1952
|
+
}
|
|
1953
|
+
interface DashGridProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onReorder"> {
|
|
1954
|
+
widgets: DashWidget[];
|
|
1955
|
+
/** Persist order under this `localStorage` key. Omit to disable persistence. */
|
|
1956
|
+
storageKey?: string;
|
|
1957
|
+
onReorder?: (orderedIds: string[]) => void;
|
|
1958
|
+
/** Max columns on large screens. Default 3. */
|
|
1959
|
+
columns?: 2 | 3 | 4;
|
|
1960
|
+
}
|
|
1961
|
+
declare const DashGrid: React$1.ForwardRefExoticComponent<DashGridProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1962
|
+
|
|
1963
|
+
interface EngagementCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
1964
|
+
/** Service name, e.g. "Tax". */
|
|
1965
|
+
service: string;
|
|
1966
|
+
/** Service glyph (an icon node). */
|
|
1967
|
+
serviceIcon?: React.ReactNode;
|
|
1968
|
+
tone?: ServiceTone;
|
|
1969
|
+
title: string;
|
|
1970
|
+
/** Status node (typically a <StatusPill> or plain label). */
|
|
1971
|
+
status?: React.ReactNode;
|
|
1972
|
+
/** Current step index (1-based) and total. */
|
|
1973
|
+
current: number;
|
|
1974
|
+
steps: number;
|
|
1975
|
+
/** Name of the current step, shown in the caption. */
|
|
1976
|
+
stepLabel?: string;
|
|
1977
|
+
/** Footer ETA content, e.g. "Est. completion Mar 14" or "Recurring engagement". */
|
|
1978
|
+
eta?: React.ReactNode;
|
|
1979
|
+
/** Show a ProgressRing instead of segments + percent. */
|
|
1980
|
+
ring?: boolean;
|
|
1981
|
+
onOpen?: () => void;
|
|
1982
|
+
}
|
|
1983
|
+
declare const EngagementCard: React$1.ForwardRefExoticComponent<EngagementCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1984
|
+
|
|
1985
|
+
/**
|
|
1986
|
+
* EngagementTimeline — vertical stepper for an engagement's lifecycle.
|
|
1987
|
+
* Each step is a node + connector rail on the left and a body on the right.
|
|
1988
|
+
*
|
|
1989
|
+
* done → filled success node with a check + "Completed {date}" line
|
|
1990
|
+
* active → toned ring node + "In progress" badge + inline actions
|
|
1991
|
+
* todo → muted node + "Upcoming" badge
|
|
1992
|
+
*
|
|
1993
|
+
* The active node + badge read the service `--tone` set once on the
|
|
1994
|
+
* container (see `serviceToneStyle`). Compose with `<EngagementTimelineStep>`
|
|
1995
|
+
* children, mirroring the `<ActivityList>` / `<ActivityItem>` split.
|
|
1996
|
+
*/
|
|
1997
|
+
type TimelineState = "done" | "active" | "todo";
|
|
1998
|
+
interface EngagementTimelineProps extends React.HTMLAttributes<HTMLOListElement> {
|
|
1999
|
+
/** Service tone for active nodes. */
|
|
2000
|
+
tone?: ServiceTone;
|
|
2001
|
+
}
|
|
2002
|
+
declare const EngagementTimeline: React$1.ForwardRefExoticComponent<EngagementTimelineProps & React$1.RefAttributes<HTMLOListElement>>;
|
|
2003
|
+
interface EngagementTimelineStepProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>, "title"> {
|
|
2004
|
+
state: TimelineState;
|
|
2005
|
+
/** Step name. */
|
|
2006
|
+
name: React.ReactNode;
|
|
2007
|
+
/** 1-based index shown inside todo/active nodes. */
|
|
2008
|
+
index: number;
|
|
2009
|
+
/** Supporting copy under the name. */
|
|
2010
|
+
note?: React.ReactNode;
|
|
2011
|
+
/** Completion date, shown for `done` steps. */
|
|
2012
|
+
date?: React.ReactNode;
|
|
2013
|
+
/** Inline action row, shown for `active` steps. */
|
|
2014
|
+
actions?: React.ReactNode;
|
|
2015
|
+
/** Hide the connector below the node (last step). */
|
|
2016
|
+
last?: boolean;
|
|
2017
|
+
}
|
|
2018
|
+
declare const EngagementTimelineStep: React$1.ForwardRefExoticComponent<EngagementTimelineStepProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
2019
|
+
|
|
2020
|
+
/**
|
|
2021
|
+
* FolderTree — collapsible document tree (Documents panel / mobile sheet).
|
|
2022
|
+
* Rows are chevron + folder + name + optional count. Each row has two
|
|
2023
|
+
* intents and therefore two DOM elements (skill §4): the body is a
|
|
2024
|
+
* `<button>` that selects/opens the folder, and the chevron is a separate
|
|
2025
|
+
* `<button>` that only toggles expansion (so `aria-expanded` is accurate
|
|
2026
|
+
* and the two are independently keyboard-reachable).
|
|
2027
|
+
*
|
|
2028
|
+
* Open state is uncontrolled by default (SSR-safe lazy initializer seeded
|
|
2029
|
+
* from `defaultOpenIds`) or fully controlled via `openIds` + `onOpenChange`.
|
|
2030
|
+
* The active row is tinted with the Pro tone (`bg-pro-bg`).
|
|
2031
|
+
*/
|
|
2032
|
+
interface FolderNode {
|
|
2033
|
+
id: string;
|
|
2034
|
+
name: string;
|
|
2035
|
+
/** Item count shown as a trailing number. */
|
|
2036
|
+
count?: number;
|
|
2037
|
+
children?: FolderNode[];
|
|
2038
|
+
}
|
|
2039
|
+
interface FolderTreeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect"> {
|
|
2040
|
+
nodes: FolderNode[];
|
|
2041
|
+
/** Currently selected folder id. */
|
|
2042
|
+
activeId?: string;
|
|
2043
|
+
onSelect?: (id: string) => void;
|
|
2044
|
+
/** Uncontrolled: folders open on first render. */
|
|
2045
|
+
defaultOpenIds?: string[];
|
|
2046
|
+
/** Controlled open set. */
|
|
2047
|
+
openIds?: string[];
|
|
2048
|
+
onOpenChange?: (openIds: string[]) => void;
|
|
2049
|
+
}
|
|
2050
|
+
declare const FolderTree: React$1.ForwardRefExoticComponent<FolderTreeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2051
|
+
|
|
2052
|
+
/**
|
|
2053
|
+
* NewMenu — the TopBar "+ New" create dropdown. A primary button opens a
|
|
2054
|
+
* menu of create actions, optionally split into labelled groups (e.g.
|
|
2055
|
+
* "Work" vs "People"). Thin composition over the DropdownMenu primitive;
|
|
2056
|
+
* the surface, focus, and portal behavior all come from there.
|
|
2057
|
+
*/
|
|
2058
|
+
interface NewMenuAction {
|
|
2059
|
+
id: string;
|
|
2060
|
+
label: React.ReactNode;
|
|
2061
|
+
/** Supporting line under the label. */
|
|
2062
|
+
description?: React.ReactNode;
|
|
2063
|
+
icon?: React.ReactNode;
|
|
2064
|
+
/** Keyboard hint, right-aligned (display only). */
|
|
2065
|
+
shortcut?: string;
|
|
2066
|
+
onSelect?: () => void;
|
|
2067
|
+
}
|
|
2068
|
+
interface NewMenuGroup {
|
|
2069
|
+
label?: React.ReactNode;
|
|
2070
|
+
actions: NewMenuAction[];
|
|
2071
|
+
}
|
|
2072
|
+
interface NewMenuProps {
|
|
2073
|
+
/** Flat action list. Use `groups` instead for labelled sections. */
|
|
2074
|
+
actions?: NewMenuAction[];
|
|
2075
|
+
groups?: NewMenuGroup[];
|
|
2076
|
+
/** Trigger label. Default "New". */
|
|
2077
|
+
triggerLabel?: React.ReactNode;
|
|
2078
|
+
/** Override the trigger entirely (still opens the menu). */
|
|
2079
|
+
trigger?: React.ReactNode;
|
|
2080
|
+
align?: "start" | "center" | "end";
|
|
2081
|
+
}
|
|
2082
|
+
declare const NewMenu: React$1.ForwardRefExoticComponent<NewMenuProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2083
|
+
|
|
1667
2084
|
type ShellProps = React.HTMLAttributes<HTMLDivElement>;
|
|
1668
2085
|
declare const Shell: React$1.ForwardRefExoticComponent<ShellProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1669
2086
|
type MainProps = React.HTMLAttributes<HTMLElement>;
|
|
@@ -2012,7 +2429,7 @@ interface PageHeaderProps extends Omit<React.HTMLAttributes<HTMLElement>, "title
|
|
|
2012
2429
|
declare const PageHeader: React$1.ForwardRefExoticComponent<PageHeaderProps & React$1.RefAttributes<HTMLElement>>;
|
|
2013
2430
|
type PageHeaderSpecProps = React.HTMLAttributes<HTMLSpanElement>;
|
|
2014
2431
|
/**
|
|
2015
|
-
* PageHeaderSpec — small `.spec`-style span (
|
|
2432
|
+
* PageHeaderSpec — small `.spec`-style span (body font w/ tnum/lnum/ss01).
|
|
2016
2433
|
* Used inside the `meta` slot for numeric facts ("4 due today",
|
|
2017
2434
|
* "EIN ·· 12-3456789").
|
|
2018
2435
|
*/
|
|
@@ -2153,9 +2570,9 @@ interface DataTableProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2153
2570
|
declare const DataTable: React$1.ForwardRefExoticComponent<DataTableProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2154
2571
|
type DataTableToolbarProps = React.HTMLAttributes<HTMLDivElement>;
|
|
2155
2572
|
/**
|
|
2156
|
-
* DataTableToolbar —
|
|
2157
|
-
*
|
|
2158
|
-
*
|
|
2573
|
+
* DataTableToolbar — header strip at the top of the table card. The outer
|
|
2574
|
+
* frame is owned by `<DataTable>`, so this is just a row with a bottom
|
|
2575
|
+
* divider separating it from the table below.
|
|
2159
2576
|
*/
|
|
2160
2577
|
declare const DataTableToolbar: React$1.ForwardRefExoticComponent<DataTableToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2161
2578
|
interface DataTableSearchProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
|
|
@@ -2212,8 +2629,9 @@ interface DataTableHeaderProps extends React.ThHTMLAttributes<HTMLTableCellEleme
|
|
|
2212
2629
|
onSortChange?: (sort: SortDirection | null) => void;
|
|
2213
2630
|
}
|
|
2214
2631
|
/**
|
|
2215
|
-
* DataTableHeader — `<th>` cell.
|
|
2216
|
-
* sort indicator. Sort cycle
|
|
2632
|
+
* DataTableHeader — `<th>` cell. Sentence-case label in the body font
|
|
2633
|
+
* (Plus Jakarta Sans, 14px) with optional sort indicator. Sort cycle
|
|
2634
|
+
* when uncontrolled:
|
|
2217
2635
|
* unsorted → asc → desc → unsorted (3-state).
|
|
2218
2636
|
* `defaultSort` seeds the initial state. Pass `sort` + `onSortChange`
|
|
2219
2637
|
* for fully-controlled usage when an upstream store owns the sort.
|
|
@@ -2228,13 +2646,13 @@ declare const DataTableCell: React$1.ForwardRefExoticComponent<DataTableCellProp
|
|
|
2228
2646
|
*/
|
|
2229
2647
|
declare const DataTableCellName: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
2230
2648
|
/**
|
|
2231
|
-
* DataTableCellMono — currency / IDs / numerics.
|
|
2232
|
-
* tabular numerals
|
|
2649
|
+
* DataTableCellMono — currency / IDs / numerics. Body font (Plus Jakarta
|
|
2650
|
+
* Sans) with tabular numerals so columns of figures stay aligned.
|
|
2233
2651
|
*/
|
|
2234
2652
|
declare const DataTableCellMono: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
2235
2653
|
/**
|
|
2236
|
-
* DataTableCellId — muted
|
|
2237
|
-
*
|
|
2654
|
+
* DataTableCellId — muted ID (EIN, UUID, "5h ago") in the body font
|
|
2655
|
+
* (Plus Jakarta Sans) with tabular numerals.
|
|
2238
2656
|
*/
|
|
2239
2657
|
declare const DataTableCellId: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
2240
2658
|
interface DataTableCellDueProps extends Omit<React.TdHTMLAttributes<HTMLTableCellElement>, "children"> {
|
|
@@ -2879,4 +3297,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
|
|
|
2879
3297
|
|
|
2880
3298
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2881
3299
|
|
|
2882
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, type BrandIconProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, COUNTRY_CODES, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentIcon, DollarSignIcon, 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, type KpiCardProps, type KpiDelta, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PenSignIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, type QuickReplyChip, RadioGroup, RadioGroupItem, 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, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, StarIcon, StarRating, type StarRatingProps, Stat, StatusIcon, type StatusIconProps, type StatusState, type Step, Stepper, type StepperProps, StopIcon, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|
|
3300
|
+
export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, COUNTRY_CODES, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DashGrid, type DashGridProps, type DashWidget, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentIcon, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PenSignIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, RotateCcwIcon, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, StarIcon, StarRating, type StarRatingProps, Stat, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StopIcon, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|