@assure-one/design-system 1.1.0 → 1.3.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 +777 -22
- package/dist/index.js +2070 -465
- 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,12 +68,74 @@ 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;
|
|
74
102
|
}
|
|
75
103
|
declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
76
104
|
|
|
105
|
+
/**
|
|
106
|
+
* AttachmentChip — a full attachment / file row.
|
|
107
|
+
*
|
|
108
|
+
* Layout: FileTypeBadge + (name truncate + meta below) + trailing ghost
|
|
109
|
+
* icon actions (view / download). Presentational: handlers and the file
|
|
110
|
+
* URL are passed in, so the chip itself never owns state.
|
|
111
|
+
*
|
|
112
|
+
* Two variants:
|
|
113
|
+
*
|
|
114
|
+
* default — settled row on a page / panel (border + surface, hover bg-2),
|
|
115
|
+
* matches the v2 `.txq-ai-file` transaction-receipt row.
|
|
116
|
+
* onAccent — for outbound chat bubbles painted with the suite accent;
|
|
117
|
+
* translucent-white fill and on-accent text, matches the v2
|
|
118
|
+
* `.v2-cx-row.out .v2-cx-file` message attachment.
|
|
119
|
+
*/
|
|
120
|
+
declare const attachmentChipVariants: (props?: ({
|
|
121
|
+
variant?: "default" | "onAccent" | null | undefined;
|
|
122
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
123
|
+
interface AttachmentChipProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof attachmentChipVariants> {
|
|
124
|
+
/** File name, e.g. `2023-return.pdf`. Truncates when it overflows. */
|
|
125
|
+
name: string;
|
|
126
|
+
/** Format label for the FileTypeBadge. Derived from `name` when omitted. */
|
|
127
|
+
fileType?: string;
|
|
128
|
+
/** Secondary line — size and/or date, e.g. `2.4 MB · uploaded just now`. */
|
|
129
|
+
meta?: string;
|
|
130
|
+
/** View handler — renders the eye action as a button. */
|
|
131
|
+
onView?: () => void;
|
|
132
|
+
/** Download handler — renders the download action as a button. */
|
|
133
|
+
onDownload?: () => void;
|
|
134
|
+
/** File URL — backs the view action as a real anchor when `onView` is absent. */
|
|
135
|
+
href?: string;
|
|
136
|
+
}
|
|
137
|
+
declare const AttachmentChip: React$1.ForwardRefExoticComponent<AttachmentChipProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
138
|
+
|
|
77
139
|
declare const avatarVariants: (props?: ({
|
|
78
140
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
79
141
|
variant?: "initials" | "branded" | null | undefined;
|
|
@@ -97,7 +159,7 @@ declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.Re
|
|
|
97
159
|
* neutral pill.
|
|
98
160
|
*/
|
|
99
161
|
declare const badgeVariants: (props?: ({
|
|
100
|
-
variant?: "info" | "success" | "warning" | "destructive" | "
|
|
162
|
+
variant?: "info" | "success" | "warning" | "destructive" | "secondary" | "outline" | "default" | null | undefined;
|
|
101
163
|
size?: "sm" | "md" | null | undefined;
|
|
102
164
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
103
165
|
interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
@@ -166,8 +228,8 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
|
|
|
166
228
|
* Use `asChild` to render as a different element (e.g. an anchor / next/link).
|
|
167
229
|
*/
|
|
168
230
|
declare const buttonVariants: (props?: ({
|
|
169
|
-
variant?: "link" | "success" | "destructive" | "
|
|
170
|
-
size?: "sm" | "md" | "lg" | "icon" | "icon-
|
|
231
|
+
variant?: "link" | "success" | "destructive" | "accent" | "primary" | "secondary" | "ghost" | "outline" | "dashed" | null | undefined;
|
|
232
|
+
size?: "sm" | "md" | "lg" | "icon-xs" | "icon-sm" | "icon" | null | undefined;
|
|
171
233
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
172
234
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
173
235
|
/** Render as the child element via Radix `Slot` (shadcn pattern). */
|
|
@@ -219,6 +281,43 @@ declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttribu
|
|
|
219
281
|
declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
220
282
|
declare const CardAction: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
221
283
|
|
|
284
|
+
/**
|
|
285
|
+
* CategoryDivider — THE category separator: a tone-tinted category pill, a
|
|
286
|
+
* flex-1 hairline rule, and an optional trailing count chip. Used to group a
|
|
287
|
+
* run of feed items / cards by service line. Per the ONE-brand rule, this tag
|
|
288
|
+
* is the *only* place per-service color is allowed — everything else stays on
|
|
289
|
+
* the single brand. Pure presentational.
|
|
290
|
+
*
|
|
291
|
+
* Tones map to the suite tints:
|
|
292
|
+
* brand → --color-brand-pro · audit → --color-brand-audit ·
|
|
293
|
+
* books → --color-brand-books · tax → --color-brand-tax ·
|
|
294
|
+
* neutral → --color-fg-3
|
|
295
|
+
*/
|
|
296
|
+
declare const categoryTagVariants: (props?: ({
|
|
297
|
+
tone?: "neutral" | "brand" | "audit" | "books" | "tax" | null | undefined;
|
|
298
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
299
|
+
type CategoryTone = NonNullable<VariantProps<typeof categoryTagVariants>["tone"]>;
|
|
300
|
+
interface CategoryTagProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof categoryTagVariants> {
|
|
301
|
+
/** Tag label text. */
|
|
302
|
+
label: string;
|
|
303
|
+
/** Optional leading icon rendered inside the pill. */
|
|
304
|
+
icon?: React.ReactNode;
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* CategoryTag — the standalone tone-tinted category pill, reusable in card
|
|
308
|
+
* headers and feed-item rows. Same atom CategoryDivider renders on its left.
|
|
309
|
+
*/
|
|
310
|
+
declare const CategoryTag: React$1.ForwardRefExoticComponent<CategoryTagProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
311
|
+
interface CategoryDividerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof categoryTagVariants> {
|
|
312
|
+
/** Category label shown in the tone-tinted tag. */
|
|
313
|
+
label: string;
|
|
314
|
+
/** Optional leading icon rendered inside the tag. */
|
|
315
|
+
icon?: React.ReactNode;
|
|
316
|
+
/** Optional item count → trailing neutral count chip. */
|
|
317
|
+
count?: number;
|
|
318
|
+
}
|
|
319
|
+
declare const CategoryDivider: React$1.ForwardRefExoticComponent<CategoryDividerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
320
|
+
|
|
222
321
|
interface CheckboxProps extends Omit<React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>, "checked" | "defaultChecked"> {
|
|
223
322
|
/** Optional inline label rendered to the right of the box */
|
|
224
323
|
label?: string;
|
|
@@ -486,6 +585,43 @@ interface DismissibleChipProps extends Omit<React$1.ButtonHTMLAttributes<HTMLBut
|
|
|
486
585
|
}
|
|
487
586
|
declare const DismissibleChip: React$1.ForwardRefExoticComponent<DismissibleChipProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
488
587
|
|
|
588
|
+
/**
|
|
589
|
+
* DonutChart — segmented SVG arc meter (the "Review control center" donut).
|
|
590
|
+
*
|
|
591
|
+
* No Radix equivalent; this is the canonical donut/arc primitive. Segments
|
|
592
|
+
* are drawn as `stroke-dasharray` arcs on stacked circles rotated −90° so
|
|
593
|
+
* the series starts at 12 o'clock. Hovering a segment (or its legend row)
|
|
594
|
+
* thickens it, dims the rest, and swaps the center readout to that
|
|
595
|
+
* segment's value — matching the reference interaction.
|
|
596
|
+
*
|
|
597
|
+
* Colors default to the tokenized chart ramp (`--color-chart-1..4`,
|
|
598
|
+
* cycled). Pass `color` per segment to override. The center shows the
|
|
599
|
+
* total + label by default, or a custom node via `center`.
|
|
600
|
+
*
|
|
601
|
+
* Only a named-property transition is used (`stroke-width`, `opacity`), so
|
|
602
|
+
* it honors `prefers-reduced-motion` through the global base rule.
|
|
603
|
+
*/
|
|
604
|
+
interface DonutSegment {
|
|
605
|
+
label: string;
|
|
606
|
+
value: number;
|
|
607
|
+
/** Override the ramp color for this segment (any CSS color / var). */
|
|
608
|
+
color?: string;
|
|
609
|
+
}
|
|
610
|
+
interface DonutChartProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
611
|
+
segments: DonutSegment[];
|
|
612
|
+
/** Outer diameter in px. */
|
|
613
|
+
size?: number;
|
|
614
|
+
/** Arc thickness in px. */
|
|
615
|
+
strokeWidth?: number;
|
|
616
|
+
/** Caption under the center number ("In pipeline"). */
|
|
617
|
+
centerLabel?: string;
|
|
618
|
+
/** Replace the whole center readout. */
|
|
619
|
+
center?: React.ReactNode;
|
|
620
|
+
/** Render the labelled legend beside the ring. Default `true`. */
|
|
621
|
+
legend?: boolean;
|
|
622
|
+
}
|
|
623
|
+
declare const DonutChart: React$1.ForwardRefExoticComponent<DonutChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
624
|
+
|
|
489
625
|
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
490
626
|
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
491
627
|
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -528,6 +664,71 @@ interface EmptyStateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
528
664
|
}
|
|
529
665
|
declare const EmptyState: React$1.ForwardRefExoticComponent<EmptyStateProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
530
666
|
|
|
667
|
+
/**
|
|
668
|
+
* FileChip — compact attachment row: a colored file-type tile, the file
|
|
669
|
+
* name, a "size · when" meta line, and an optional trailing action
|
|
670
|
+
* (View / Download). Used in the AI receipt panel, document mini-lists,
|
|
671
|
+
* and message attachments.
|
|
672
|
+
*
|
|
673
|
+
* The tile tone keys off `kind`: documents are danger-tinted (PDF red),
|
|
674
|
+
* sheets success, images info, generic neutral — a quick visual file-type
|
|
675
|
+
* cue without a bespoke icon per extension.
|
|
676
|
+
*/
|
|
677
|
+
type FileKind = "doc" | "sheet" | "image" | "generic";
|
|
678
|
+
interface FileChipProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
679
|
+
name: string;
|
|
680
|
+
/** Right-side meta, e.g. "240 KB · uploaded just now". */
|
|
681
|
+
meta?: React.ReactNode;
|
|
682
|
+
kind?: FileKind;
|
|
683
|
+
/** Custom glyph inside the tile; defaults to a document icon. */
|
|
684
|
+
icon?: React.ReactNode;
|
|
685
|
+
/** Trailing action node (a Button / link). */
|
|
686
|
+
action?: React.ReactNode;
|
|
687
|
+
}
|
|
688
|
+
declare const FileChip: React$1.ForwardRefExoticComponent<FileChipProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
689
|
+
|
|
690
|
+
/**
|
|
691
|
+
* FileTypeBadge — a colored format square for a file type.
|
|
692
|
+
*
|
|
693
|
+
* A static, presentational tile showing a short uppercase format token
|
|
694
|
+
* (PDF / IMG / DOC …) tinted by category. Consolidates the per-surface
|
|
695
|
+
* `FileTypeIcon` re-implementations (`.v2-fileic`, `.txq-ai-file-ico`,
|
|
696
|
+
* invoice/attachment tiles) into one primitive.
|
|
697
|
+
*
|
|
698
|
+
* Color map (auto-derived from the resolved type):
|
|
699
|
+
* PDF → danger (red) · IMG/PNG/JPG → info (blue) · DOC/DOCX → accent (blue)
|
|
700
|
+
* XLS/XLSX/CSV → success (green) · PPT → warning · ZIP → neutral
|
|
701
|
+
* anything else → neutral
|
|
702
|
+
*
|
|
703
|
+
* Pass `format` (or its alias `type`) with a format/extension token, or
|
|
704
|
+
* `fileName` to derive the type from the extension. Override the auto color
|
|
705
|
+
* with `tone`.
|
|
706
|
+
*/
|
|
707
|
+
declare const fileTypeBadgeVariants: (props?: ({
|
|
708
|
+
size?: "sm" | "md" | null | undefined;
|
|
709
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
710
|
+
/** Semantic color tone for the badge square. */
|
|
711
|
+
type FileTypeTone = "danger" | "info" | "accent" | "success" | "warning" | "neutral";
|
|
712
|
+
/**
|
|
713
|
+
* Derive a canonical file-type code from a file name's extension.
|
|
714
|
+
*
|
|
715
|
+
* @param fileName - The file name, e.g. `2023-return.pdf`.
|
|
716
|
+
* @returns The canonical uppercase code (e.g. `PDF`), or `FILE` when the name
|
|
717
|
+
* has no usable extension.
|
|
718
|
+
*/
|
|
719
|
+
declare function fileTypeFromName(fileName: string): string;
|
|
720
|
+
interface FileTypeBadgeProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "children">, VariantProps<typeof fileTypeBadgeVariants> {
|
|
721
|
+
/** Format/extension token, e.g. `PDF`, `docx`. Takes precedence over `fileName`. */
|
|
722
|
+
format?: string;
|
|
723
|
+
/** Alias for `format` — a format/extension token. */
|
|
724
|
+
type?: string;
|
|
725
|
+
/** File name to derive the type from when `format`/`type` are absent. */
|
|
726
|
+
fileName?: string;
|
|
727
|
+
/** Override the auto-derived color. Defaults to `"auto"` (color by type). */
|
|
728
|
+
tone?: FileTypeTone | "auto";
|
|
729
|
+
}
|
|
730
|
+
declare const FileTypeBadge: React$1.ForwardRefExoticComponent<FileTypeBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
731
|
+
|
|
531
732
|
interface FileUploadProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
532
733
|
accept?: string;
|
|
533
734
|
maxSize?: number;
|
|
@@ -587,6 +788,29 @@ declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimi
|
|
|
587
788
|
declare const HoverCardPortal: React$1.FC<HoverCardPrimitive.HoverCardPortalProps>;
|
|
588
789
|
declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
589
790
|
|
|
791
|
+
/**
|
|
792
|
+
* IconTile — the recurring tinted rounded-square icon chip. A tone tint fills
|
|
793
|
+
* the square and colors the icon; `grid place-items-center` keeps the glyph
|
|
794
|
+
* centered. Consolidates v2's `.v2-qico` / `.v2-item-ico` / `.nr-ico` /
|
|
795
|
+
* `.licon` / `.aico` icon-chip pattern into one primitive.
|
|
796
|
+
*
|
|
797
|
+
* tone — `pro` (default), `neutral`, status (`info` | `success` | `warning`
|
|
798
|
+
* | `danger`), and suite tints (`audit` | `books` | `tax`).
|
|
799
|
+
* size — `sm` (~30px) | `md` (~38px) | `lg` (~42px). Icon scales with it.
|
|
800
|
+
* badge — optional ReactNode pinned to the top-right corner (e.g. a count).
|
|
801
|
+
*/
|
|
802
|
+
declare const iconTileVariants: (props?: ({
|
|
803
|
+
tone?: "info" | "success" | "warning" | "danger" | "neutral" | "audit" | "books" | "tax" | "pro" | null | undefined;
|
|
804
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
805
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
806
|
+
interface IconTileProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof iconTileVariants> {
|
|
807
|
+
/** The icon (or any node) rendered centered inside the tile. */
|
|
808
|
+
icon: React.ReactNode;
|
|
809
|
+
/** Optional overlay pinned to the top-right corner, e.g. a count badge. */
|
|
810
|
+
badge?: React.ReactNode;
|
|
811
|
+
}
|
|
812
|
+
declare const IconTile: React$1.ForwardRefExoticComponent<IconTileProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
813
|
+
|
|
590
814
|
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
591
815
|
size?: number;
|
|
592
816
|
}
|
|
@@ -604,6 +828,12 @@ declare function CloseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX
|
|
|
604
828
|
declare function CheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
605
829
|
declare function LayoutDashboardIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
606
830
|
declare function BuildingIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
831
|
+
/** Landmark / "bank" glyph (columns + pediment) — the accounting service mark. */
|
|
832
|
+
declare function LandmarkIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
833
|
+
/** Folder with an up-arrow — the "upload documents" / document-request mark. */
|
|
834
|
+
declare function FolderUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
835
|
+
/** Pen-tool / nibbed signature pen — the e-signature mark. */
|
|
836
|
+
declare function PenToolIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
607
837
|
declare function MapPinIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
608
838
|
declare function FileReturnIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
609
839
|
declare function ClipboardCheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
@@ -749,7 +979,7 @@ declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.
|
|
|
749
979
|
* (rule-strong border, surface bg, accent focus ring).
|
|
750
980
|
*/
|
|
751
981
|
declare const inputVariants: (props?: ({
|
|
752
|
-
variant?: "
|
|
982
|
+
variant?: "ghost" | "default" | null | undefined;
|
|
753
983
|
inputSize?: "sm" | "md" | "lg" | null | undefined;
|
|
754
984
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
755
985
|
type InputVariants = VariantProps<typeof inputVariants>;
|
|
@@ -897,6 +1127,39 @@ interface LogoProps {
|
|
|
897
1127
|
}
|
|
898
1128
|
declare function Logo({ size, href, showText, className, iconClassName, textClassName, productName, inverted, }: LogoProps): react_jsx_runtime.JSX.Element;
|
|
899
1129
|
|
|
1130
|
+
/**
|
|
1131
|
+
* MasterDetailLayout — responsive list + detail two-pane scaffold.
|
|
1132
|
+
*
|
|
1133
|
+
* Backs the duplicated "list on the left, detail on the right" pattern found
|
|
1134
|
+
* across messages, documents, billing, and signatures. Generic over content:
|
|
1135
|
+
* pass any node into the `list` and `detail` slots.
|
|
1136
|
+
*
|
|
1137
|
+
* Desktop (>= md): fixed-width list column + flex-1 detail. Each pane owns
|
|
1138
|
+
* its own scroll (`min-h-0` + `overflow-auto`) so the two scroll
|
|
1139
|
+
* independently and neither pushes the page.
|
|
1140
|
+
* Mobile (< md): the list fills the width; when `detailOpen` is true the
|
|
1141
|
+
* detail slides in over the list from the right. A back affordance is
|
|
1142
|
+
* rendered at the top of the detail pane when `onBack` is supplied.
|
|
1143
|
+
*/
|
|
1144
|
+
interface MasterDetailLayoutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
1145
|
+
/** Left pane — the master list (sessions, files, threads…). */
|
|
1146
|
+
list: React.ReactNode;
|
|
1147
|
+
/** Right pane — the selected record's detail view. */
|
|
1148
|
+
detail: React.ReactNode;
|
|
1149
|
+
/**
|
|
1150
|
+
* Whether the detail pane is shown on mobile. On desktop both panes are
|
|
1151
|
+
* always visible and this prop only governs the small-screen overlay.
|
|
1152
|
+
*/
|
|
1153
|
+
detailOpen?: boolean;
|
|
1154
|
+
/** Mobile back handler — returns from the detail overlay to the list. */
|
|
1155
|
+
onBack?: () => void;
|
|
1156
|
+
/** Accessible label for the mobile back button. */
|
|
1157
|
+
backLabel?: string;
|
|
1158
|
+
/** Width of the list column on desktop. Number is treated as px. */
|
|
1159
|
+
listWidth?: number | string;
|
|
1160
|
+
}
|
|
1161
|
+
declare const MasterDetailLayout: React$1.ForwardRefExoticComponent<MasterDetailLayoutProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1162
|
+
|
|
900
1163
|
interface MultiFilterPillProps {
|
|
901
1164
|
label: string;
|
|
902
1165
|
icon?: React$1.ReactNode;
|
|
@@ -1104,6 +1367,88 @@ interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof Ra
|
|
|
1104
1367
|
}
|
|
1105
1368
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1106
1369
|
|
|
1370
|
+
/**
|
|
1371
|
+
* RankedBars — horizontal ranked-bar list (the "Service line performance"
|
|
1372
|
+
* widget). Each row is a name + value, a proportional bar, an optional
|
|
1373
|
+
* up/down change chip, and an optional sub line.
|
|
1374
|
+
*
|
|
1375
|
+
* Bar widths are a `pct` (0–100) you pass — keep the ranking math at the
|
|
1376
|
+
* call site so the primitive stays a pure renderer. Colors cycle the
|
|
1377
|
+
* tokenized chart ramp; override per row with `color`.
|
|
1378
|
+
*/
|
|
1379
|
+
interface RankedBar {
|
|
1380
|
+
label: string;
|
|
1381
|
+
/** Headline figure shown at the row's trailing edge (already formatted). */
|
|
1382
|
+
value?: React.ReactNode;
|
|
1383
|
+
/** Bar fill width as a percent of the track, 0–100. */
|
|
1384
|
+
pct: number;
|
|
1385
|
+
/** Signed period change; positive renders an up chip, negative a down chip. */
|
|
1386
|
+
change?: number;
|
|
1387
|
+
/** Small caption under the bar (e.g. "12 clients"). */
|
|
1388
|
+
sublabel?: React.ReactNode;
|
|
1389
|
+
/** Override the ramp color for this bar. */
|
|
1390
|
+
color?: string;
|
|
1391
|
+
}
|
|
1392
|
+
interface RankedBarsProps extends React.HTMLAttributes<HTMLUListElement> {
|
|
1393
|
+
items: RankedBar[];
|
|
1394
|
+
}
|
|
1395
|
+
declare const RankedBars: React$1.ForwardRefExoticComponent<RankedBarsProps & React$1.RefAttributes<HTMLUListElement>>;
|
|
1396
|
+
|
|
1397
|
+
type SheetSide = "top" | "right" | "bottom" | "left";
|
|
1398
|
+
type DialogSize = "sm" | "md" | "lg" | "full";
|
|
1399
|
+
interface ResponsiveDialogProps {
|
|
1400
|
+
/** Controlled open state. */
|
|
1401
|
+
open: boolean;
|
|
1402
|
+
/** Open-state change handler (fires on overlay/esc/close as well). */
|
|
1403
|
+
onOpenChange: (open: boolean) => void;
|
|
1404
|
+
/** Accessible title. When omitted, a visually-hidden label is supplied. */
|
|
1405
|
+
title?: React$1.ReactNode;
|
|
1406
|
+
/** Supporting description rendered under the title. */
|
|
1407
|
+
description?: React$1.ReactNode;
|
|
1408
|
+
/** Body content. */
|
|
1409
|
+
children?: React$1.ReactNode;
|
|
1410
|
+
/**
|
|
1411
|
+
* Footer actions. Accepts a node, or a render-prop receiving a `close`
|
|
1412
|
+
* callback (`() => onOpenChange(false)`) for self-dismissing buttons.
|
|
1413
|
+
*/
|
|
1414
|
+
footer?: React$1.ReactNode | ((close: () => void) => React$1.ReactNode);
|
|
1415
|
+
/** Class applied to the rendered Sheet/Dialog content surface. */
|
|
1416
|
+
className?: string;
|
|
1417
|
+
/** Sheet side on mobile. Default `"bottom"`. */
|
|
1418
|
+
side?: SheetSide;
|
|
1419
|
+
/** Desktop Dialog max-width preset. Default `"md"`. */
|
|
1420
|
+
size?: DialogSize;
|
|
1421
|
+
}
|
|
1422
|
+
/**
|
|
1423
|
+
* Renders a bottom Sheet on mobile and a centered Dialog on desktop from one
|
|
1424
|
+
* controlled API. Composes the existing Sheet and Dialog primitives.
|
|
1425
|
+
*/
|
|
1426
|
+
declare function ResponsiveDialog({ open, onOpenChange, title, description, children, footer, className, side, size, }: ResponsiveDialogProps): react_jsx_runtime.JSX.Element;
|
|
1427
|
+
declare namespace ResponsiveDialog {
|
|
1428
|
+
var displayName: string;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
/**
|
|
1432
|
+
* RouteTransition — a tiny, generic page-transition wrapper.
|
|
1433
|
+
*
|
|
1434
|
+
* Fades and slides its children up (~8px → 0, ~250ms, ease-out-quart) on
|
|
1435
|
+
* mount, and replays the animation whenever `routeKey` changes by using it as
|
|
1436
|
+
* the React `key` on the inner element — so a route change remounts the inner
|
|
1437
|
+
* node and re-runs the entrance.
|
|
1438
|
+
*
|
|
1439
|
+
* The motion is driven by tw-animate-css `enter` utilities; the design-system's
|
|
1440
|
+
* global `prefers-reduced-motion: reduce` rule neutralizes the animation, so no
|
|
1441
|
+
* per-component reduced-motion handling is required.
|
|
1442
|
+
*
|
|
1443
|
+
* Pass `usePathname()` (or any stable per-route string) as `routeKey` from the
|
|
1444
|
+
* client layout. Works unchanged in both the firm app and the client portal.
|
|
1445
|
+
*/
|
|
1446
|
+
interface RouteTransitionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1447
|
+
/** Stable per-route string (e.g. `usePathname()`). Used as the inner key. */
|
|
1448
|
+
routeKey: string;
|
|
1449
|
+
}
|
|
1450
|
+
declare const RouteTransition: React$1.ForwardRefExoticComponent<RouteTransitionProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1451
|
+
|
|
1107
1452
|
interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
|
|
1108
1453
|
children: React$1.ReactNode;
|
|
1109
1454
|
}
|
|
@@ -1258,6 +1603,29 @@ interface SectionHeadProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "t
|
|
|
1258
1603
|
}
|
|
1259
1604
|
declare const SectionHead: React$1.ForwardRefExoticComponent<SectionHeadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1260
1605
|
|
|
1606
|
+
/**
|
|
1607
|
+
* SegmentedProgress — discrete step meter rendered as N pill segments, the
|
|
1608
|
+
* first `current` of which are filled. Used on engagement cards ("step 2
|
|
1609
|
+
* of 5") where a continuous bar would over-state precision.
|
|
1610
|
+
*
|
|
1611
|
+
* `tone` colors the filled segments. Status tones map to the semantic
|
|
1612
|
+
* palette; service tones map to the practice ramp — both resolve to a
|
|
1613
|
+
* single CSS color so the segment markup stays identical.
|
|
1614
|
+
*/
|
|
1615
|
+
type SegmentedTone = "default" | "success" | "warning" | "destructive" | "info" | "tax" | "audit" | "accounting";
|
|
1616
|
+
interface SegmentedProgressProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
1617
|
+
/** Total number of segments. */
|
|
1618
|
+
steps: number;
|
|
1619
|
+
/** How many leading segments are filled. */
|
|
1620
|
+
current: number;
|
|
1621
|
+
tone?: SegmentedTone;
|
|
1622
|
+
/** Segment height in px. Default 6. */
|
|
1623
|
+
thickness?: number;
|
|
1624
|
+
/** Accessible label; falls back to "Step X of Y". */
|
|
1625
|
+
label?: string;
|
|
1626
|
+
}
|
|
1627
|
+
declare const SegmentedProgress: React$1.ForwardRefExoticComponent<SegmentedProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1628
|
+
|
|
1261
1629
|
declare const SelectRoot: React$1.FC<SelectPrimitive.SelectProps>;
|
|
1262
1630
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1263
1631
|
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1433,7 +1801,7 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
|
|
|
1433
1801
|
|
|
1434
1802
|
declare const spinnerVariants: (props?: ({
|
|
1435
1803
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
1436
|
-
tone?: "current" | "success" | "warning" | "destructive" | "
|
|
1804
|
+
tone?: "current" | "success" | "warning" | "destructive" | "muted" | "accent" | null | undefined;
|
|
1437
1805
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1438
1806
|
interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
|
|
1439
1807
|
/**
|
|
@@ -1474,6 +1842,33 @@ interface StatProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
1474
1842
|
}
|
|
1475
1843
|
declare const Stat: React$1.ForwardRefExoticComponent<StatProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1476
1844
|
|
|
1845
|
+
/**
|
|
1846
|
+
* StatusDot — standalone attention / unread / presence dot.
|
|
1847
|
+
*
|
|
1848
|
+
* A small filled circle for NON-avatar surfaces: nav rails, bottom nav,
|
|
1849
|
+
* top-bar bells, list rows, unread markers. (Avatar already renders its own
|
|
1850
|
+
* corner presence dot — use that for avatar-attached dots.)
|
|
1851
|
+
*
|
|
1852
|
+
* tone — danger (default) | warning | info | success | pro | neutral
|
|
1853
|
+
* size — sm ~7px (default) | md ~9px
|
|
1854
|
+
* ring — adds a 2px solid surface ring so the dot reads when overlaid on
|
|
1855
|
+
* icons / avatars (box-shadow, so it never shifts layout)
|
|
1856
|
+
* pulse — subtle expanding ping halo; hidden under prefers-reduced-motion
|
|
1857
|
+
*
|
|
1858
|
+
* The dot fills with `currentColor`, so the ping clone inherits the same tone
|
|
1859
|
+
* automatically. `aria-hidden` by default — pass `aria-label` to expose it.
|
|
1860
|
+
*/
|
|
1861
|
+
declare const statusDotVariants: (props?: ({
|
|
1862
|
+
tone?: "info" | "success" | "warning" | "danger" | "neutral" | "pro" | null | undefined;
|
|
1863
|
+
size?: "sm" | "md" | null | undefined;
|
|
1864
|
+
ring?: boolean | null | undefined;
|
|
1865
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1866
|
+
interface StatusDotProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof statusDotVariants> {
|
|
1867
|
+
/** Subtle expanding ping halo. Respects `prefers-reduced-motion`. */
|
|
1868
|
+
pulse?: boolean;
|
|
1869
|
+
}
|
|
1870
|
+
declare const StatusDot: React$1.ForwardRefExoticComponent<StatusDotProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1871
|
+
|
|
1477
1872
|
/**
|
|
1478
1873
|
* StatusIcon — progress-aware state circle for arbitrary pipeline stages.
|
|
1479
1874
|
*
|
|
@@ -1492,6 +1887,32 @@ interface StatusIconProps extends Omit<React.SVGAttributes<SVGSVGElement>, "colo
|
|
|
1492
1887
|
}
|
|
1493
1888
|
declare function StatusIcon({ state, progress, color, size, className, ...props }: StatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1494
1889
|
|
|
1890
|
+
/**
|
|
1891
|
+
* StatusPill — semantic status atom for engagement / document / signature
|
|
1892
|
+
* lifecycles. It is a thin mapping over <Badge>: each known `status` picks
|
|
1893
|
+
* the right variant + default label + dot, so call sites read as
|
|
1894
|
+
* `<StatusPill status="needs-revision" />` instead of repeating the
|
|
1895
|
+
* variant/label pairing everywhere.
|
|
1896
|
+
*
|
|
1897
|
+
* Mapping (per the portal spec):
|
|
1898
|
+
* requested → warning "Requested"
|
|
1899
|
+
* in-review → info "In review"
|
|
1900
|
+
* needs-revision → danger "Needs revision"
|
|
1901
|
+
* accepted/signed/
|
|
1902
|
+
* approved/paid → success "Accepted" / "Signed" / …
|
|
1903
|
+
* draft/pending → secondary
|
|
1904
|
+
* overdue → danger
|
|
1905
|
+
*
|
|
1906
|
+
* Pass `children` to override the label while keeping the mapped variant.
|
|
1907
|
+
*/
|
|
1908
|
+
type PillStatus = "requested" | "in-review" | "needs-revision" | "accepted" | "signed" | "approved" | "paid" | "complete" | "draft" | "pending" | "overdue" | "declined";
|
|
1909
|
+
interface StatusPillProps extends Omit<BadgeProps, "variant"> {
|
|
1910
|
+
status: PillStatus;
|
|
1911
|
+
/** Show a leading dot. Default `true` (status atoms read better with one). */
|
|
1912
|
+
dot?: boolean;
|
|
1913
|
+
}
|
|
1914
|
+
declare const StatusPill: React$1.ForwardRefExoticComponent<StatusPillProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1915
|
+
|
|
1495
1916
|
/**
|
|
1496
1917
|
* Stepper — custom progress indicator. No Radix equivalent.
|
|
1497
1918
|
* Active step uses Pro purple; completed steps use the success palette;
|
|
@@ -1512,6 +1933,32 @@ interface StepperProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
1512
1933
|
}
|
|
1513
1934
|
declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1514
1935
|
|
|
1936
|
+
/**
|
|
1937
|
+
* StickyActionBar — a frosted action bar pinned to the bottom of its scroll
|
|
1938
|
+
* container. Holds a left-aligned `hint` (info / summary text) and right-aligned
|
|
1939
|
+
* action buttons (`children`).
|
|
1940
|
+
*
|
|
1941
|
+
* Frosted surface (`bg-surface/80` + `backdrop-blur`) over a top rule, so page
|
|
1942
|
+
* content scrolls visibly beneath it. Presentational only — the call site owns
|
|
1943
|
+
* the buttons and their disabled/loading state.
|
|
1944
|
+
*
|
|
1945
|
+
* `offsetForMobileNav` lifts the bar to clear the 56px mobile tab bar plus the
|
|
1946
|
+
* iOS safe-area inset, so it never hides behind the bottom navigation.
|
|
1947
|
+
*
|
|
1948
|
+
* Generic by design: it backs the portal signing footer and the transactions
|
|
1949
|
+
* submit bar, and is intended to replace the firm app's hand-rolled
|
|
1950
|
+
* bulk-action bar chrome.
|
|
1951
|
+
*/
|
|
1952
|
+
interface StickyActionBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1953
|
+
/** Action buttons, right-aligned. */
|
|
1954
|
+
children: React.ReactNode;
|
|
1955
|
+
/** Left-aligned info / summary text. */
|
|
1956
|
+
hint?: React.ReactNode;
|
|
1957
|
+
/** Lift the bar above the 56px mobile tab bar + safe-area inset. */
|
|
1958
|
+
offsetForMobileNav?: boolean;
|
|
1959
|
+
}
|
|
1960
|
+
declare const StickyActionBar: React$1.ForwardRefExoticComponent<StickyActionBarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1961
|
+
|
|
1515
1962
|
interface SubmitButtonProps extends Omit<ButtonProps, "type" | "loading"> {
|
|
1516
1963
|
pendingText?: string;
|
|
1517
1964
|
children: React.ReactNode;
|
|
@@ -1522,6 +1969,60 @@ interface SubmitButtonProps extends Omit<ButtonProps, "type" | "loading"> {
|
|
|
1522
1969
|
*/
|
|
1523
1970
|
declare const SubmitButton: React$1.ForwardRefExoticComponent<SubmitButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1524
1971
|
|
|
1972
|
+
/**
|
|
1973
|
+
* SuiteProgress — a discrete, segmented progress meter with a percent readout.
|
|
1974
|
+
*
|
|
1975
|
+
* Renders `total` equal-width segments in a flex row. Segments before `value`
|
|
1976
|
+
* are filled in the suite tone; the rest sit on the `surface-3` track. An
|
|
1977
|
+
* optional numeric percent renders to the right (bold + tabular, with a
|
|
1978
|
+
* smaller "%").
|
|
1979
|
+
*
|
|
1980
|
+
* Distinct from the `SegmentedProgress` step-meter (steps/current, no percent):
|
|
1981
|
+
* SuiteProgress is the percent-bearing bar with suite-brand tones, used for
|
|
1982
|
+
* pipeline and engagement *completion* (e.g. "3 of 5 — 60%"). Pick the step
|
|
1983
|
+
* meter when the count itself is the message; pick this when the percentage is.
|
|
1984
|
+
*
|
|
1985
|
+
* Pure presentational — no client runtime required.
|
|
1986
|
+
*/
|
|
1987
|
+
declare const suiteProgressFillVariants: (props?: ({
|
|
1988
|
+
tone?: "audit" | "books" | "tax" | "pro" | null | undefined;
|
|
1989
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1990
|
+
declare const SIZE_STYLES: {
|
|
1991
|
+
readonly sm: {
|
|
1992
|
+
readonly row: "gap-2";
|
|
1993
|
+
readonly track: "gap-0.5";
|
|
1994
|
+
readonly segment: "h-1";
|
|
1995
|
+
readonly text: "text-xs";
|
|
1996
|
+
};
|
|
1997
|
+
readonly md: {
|
|
1998
|
+
readonly row: "gap-3";
|
|
1999
|
+
readonly track: "gap-1";
|
|
2000
|
+
readonly segment: "h-[5px]";
|
|
2001
|
+
readonly text: "text-sm";
|
|
2002
|
+
};
|
|
2003
|
+
};
|
|
2004
|
+
type SuiteProgressSize = keyof typeof SIZE_STYLES;
|
|
2005
|
+
type SuiteProgressTone = NonNullable<VariantProps<typeof suiteProgressFillVariants>["tone"]>;
|
|
2006
|
+
interface SuiteProgressProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "role"> {
|
|
2007
|
+
/** Number of completed segments. */
|
|
2008
|
+
value: number;
|
|
2009
|
+
/** Total segment count. */
|
|
2010
|
+
total: number;
|
|
2011
|
+
/** Show the numeric percent to the right. Defaults to true. */
|
|
2012
|
+
showPercent?: boolean;
|
|
2013
|
+
/** Override the displayed percent (0–100). Falls back to value/total. */
|
|
2014
|
+
percent?: number;
|
|
2015
|
+
/** Suite tone for filled segments. Defaults to "pro". */
|
|
2016
|
+
tone?: SuiteProgressTone;
|
|
2017
|
+
/** Bar height + text scale. Defaults to "md". */
|
|
2018
|
+
size?: SuiteProgressSize;
|
|
2019
|
+
/** Optional leading label, rendered before the segments. */
|
|
2020
|
+
label?: string;
|
|
2021
|
+
/** Extra classes applied to every segment. */
|
|
2022
|
+
segmentClassName?: string;
|
|
2023
|
+
}
|
|
2024
|
+
declare const SuiteProgress: React$1.ForwardRefExoticComponent<SuiteProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2025
|
+
|
|
1525
2026
|
declare const switchVariants: (props?: ({
|
|
1526
2027
|
size?: "sm" | "md" | null | undefined;
|
|
1527
2028
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1532,9 +2033,10 @@ declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.Re
|
|
|
1532
2033
|
|
|
1533
2034
|
/**
|
|
1534
2035
|
* Table — semantic data-table primitives:
|
|
1535
|
-
* -
|
|
2036
|
+
* - sentence-case headers in the body font (12px, medium, `text-fg-3`)
|
|
2037
|
+
* on `bg-surface-2` — quiet column labels, not mono eyebrows
|
|
1536
2038
|
* - 1px `border-rule` under header, `border-rule-soft` between rows
|
|
1537
|
-
* - 13px body cells in `text-fg-2`, hover
|
|
2039
|
+
* - 13px body cells in `text-fg-2`, airy 44px rows, hover gets `bg-bg-2`
|
|
1538
2040
|
*
|
|
1539
2041
|
* Public API: Table / TableHeader / TableBody / TableRow /
|
|
1540
2042
|
* TableHead / TableCell / TableCaption. `wrapperClassName` wraps
|
|
@@ -1589,7 +2091,7 @@ declare namespace TeamMemberSelect {
|
|
|
1589
2091
|
}
|
|
1590
2092
|
|
|
1591
2093
|
declare const textareaVariants: (props?: ({
|
|
1592
|
-
variant?: "
|
|
2094
|
+
variant?: "ghost" | "default" | null | undefined;
|
|
1593
2095
|
inputSize?: "sm" | "md" | "lg" | null | undefined;
|
|
1594
2096
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1595
2097
|
type TextareaVariants = VariantProps<typeof textareaVariants>;
|
|
@@ -1625,7 +2127,7 @@ interface ToastProviderProps {
|
|
|
1625
2127
|
declare function ToastProvider({ children }: ToastProviderProps): react_jsx_runtime.JSX.Element;
|
|
1626
2128
|
|
|
1627
2129
|
declare const itemVariants: (props?: ({
|
|
1628
|
-
variant?: "
|
|
2130
|
+
variant?: "outline" | "default" | null | undefined;
|
|
1629
2131
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1630
2132
|
type ToggleGroupRootProps = React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof itemVariants>;
|
|
1631
2133
|
declare const ToggleGroup: React$1.ForwardRefExoticComponent<ToggleGroupRootProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1664,6 +2166,258 @@ interface VisuallyHiddenProps extends React.ComponentPropsWithoutRef<typeof Visu
|
|
|
1664
2166
|
}
|
|
1665
2167
|
declare const VisuallyHidden: React$1.ForwardRefExoticComponent<VisuallyHiddenProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1666
2168
|
|
|
2169
|
+
/**
|
|
2170
|
+
* AIReceiptPanel — the portal "attach a receipt, auto-fill with AI" panel.
|
|
2171
|
+
* Three states drive the whole surface:
|
|
2172
|
+
*
|
|
2173
|
+
* idle → dashed "Attach receipt" button
|
|
2174
|
+
* reading → pulsing sparkle + "Reading your receipt…"
|
|
2175
|
+
* done → "Auto-filled from receipt" badge, the file chip, and the
|
|
2176
|
+
* extracted vendor / amount / date grid (each confirmed ✓)
|
|
2177
|
+
*
|
|
2178
|
+
* It is **controlled**: the consumer owns `state` and supplies `result`
|
|
2179
|
+
* when done. The simulated extraction in the reference is just one driver;
|
|
2180
|
+
* swap in real OCR/AI and the contract is unchanged — flip `state` to
|
|
2181
|
+
* "reading", then to "done" with a `result`.
|
|
2182
|
+
*/
|
|
2183
|
+
interface AIReceiptResult {
|
|
2184
|
+
vendor: string;
|
|
2185
|
+
amount: string;
|
|
2186
|
+
date: string;
|
|
2187
|
+
file: {
|
|
2188
|
+
name: string;
|
|
2189
|
+
meta?: React.ReactNode;
|
|
2190
|
+
};
|
|
2191
|
+
}
|
|
2192
|
+
interface AIReceiptPanelProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "results"> {
|
|
2193
|
+
state?: "idle" | "reading" | "done";
|
|
2194
|
+
/** Extracted fields, shown in the `done` state. */
|
|
2195
|
+
result?: AIReceiptResult;
|
|
2196
|
+
/** Fired when the idle attach button is pressed. */
|
|
2197
|
+
onAttach?: () => void;
|
|
2198
|
+
/** Fired when the done-state "Remove" link is pressed. */
|
|
2199
|
+
onRemove?: () => void;
|
|
2200
|
+
/** View action for the file chip (e.g. open the receipt). */
|
|
2201
|
+
onViewFile?: () => void;
|
|
2202
|
+
}
|
|
2203
|
+
declare const AIReceiptPanel: React$1.ForwardRefExoticComponent<AIReceiptPanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2204
|
+
|
|
2205
|
+
/**
|
|
2206
|
+
* Practice service tones for the client portal. Each engagement surface
|
|
2207
|
+
* (card, ring, timeline) is "toned per service": a fill color + a track
|
|
2208
|
+
* tint. Rather than fork every primitive's `variant` enum, portal
|
|
2209
|
+
* composites set these two CSS vars (`--tone`, `--tone-bg`) once on their
|
|
2210
|
+
* root and let descendants read them via `[color:var(--tone)]` /
|
|
2211
|
+
* `[background:var(--tone-bg)]`. One place owns the mapping; theming and
|
|
2212
|
+
* dark mode flow through the underlying `--color-service-*` tokens.
|
|
2213
|
+
*/
|
|
2214
|
+
type ServiceTone = "tax" | "audit" | "accounting" | "neutral";
|
|
2215
|
+
/**
|
|
2216
|
+
* CSS-var style object to spread on a service-toned root. Descendants read
|
|
2217
|
+
* `var(--tone)` / `var(--tone-bg)`; the cast is required because
|
|
2218
|
+
* `CSSProperties` doesn't type custom properties.
|
|
2219
|
+
*/
|
|
2220
|
+
declare function serviceToneStyle(tone: ServiceTone): CSSProperties;
|
|
2221
|
+
declare const SERVICE_TONES: ServiceTone[];
|
|
2222
|
+
/** Human label for a tone, for chips and headings. */
|
|
2223
|
+
declare const serviceToneLabel: Record<ServiceTone, string>;
|
|
2224
|
+
|
|
2225
|
+
/**
|
|
2226
|
+
* AttentionItem — one row in the portal "Needs your attention" feed:
|
|
2227
|
+
* a toned icon tile, a title + supporting line, and a trailing action
|
|
2228
|
+
* (custom node or a default chevron). Group these by service at the call
|
|
2229
|
+
* site; the row itself just renders one item.
|
|
2230
|
+
*
|
|
2231
|
+
* Set `tone` to color the icon tile per service (or use a status tone via
|
|
2232
|
+
* `urgency`). The whole row is a `<button>` when `onClick` is supplied.
|
|
2233
|
+
*/
|
|
2234
|
+
type AttentionUrgency = "default" | "warning" | "danger";
|
|
2235
|
+
interface AttentionItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2236
|
+
icon: React.ReactNode;
|
|
2237
|
+
title: React.ReactNode;
|
|
2238
|
+
description?: React.ReactNode;
|
|
2239
|
+
/** Service tone for the icon tile (used when `urgency` is "default"). */
|
|
2240
|
+
tone?: ServiceTone;
|
|
2241
|
+
/** Status urgency — overrides the service tone for the tile. */
|
|
2242
|
+
urgency?: AttentionUrgency;
|
|
2243
|
+
/** Trailing slot; defaults to a chevron when the row is interactive. */
|
|
2244
|
+
action?: React.ReactNode;
|
|
2245
|
+
onClick?: () => void;
|
|
2246
|
+
}
|
|
2247
|
+
declare const AttentionItem: React$1.ForwardRefExoticComponent<AttentionItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2248
|
+
|
|
2249
|
+
/**
|
|
2250
|
+
* BottomNav — mobile tab bar for the client portal (desktop uses the
|
|
2251
|
+
* sidebar instead). Fixed to the viewport bottom with safe-area padding;
|
|
2252
|
+
* each tab is an icon + short label with an optional count/dot badge.
|
|
2253
|
+
*
|
|
2254
|
+
* Controlled via `value` + `onChange`. Keep it to 3–5 tabs — beyond that,
|
|
2255
|
+
* labels truncate and the row gets cramped on a 390px screen.
|
|
2256
|
+
*/
|
|
2257
|
+
interface BottomNavTab {
|
|
2258
|
+
id: string;
|
|
2259
|
+
label: string;
|
|
2260
|
+
icon: React.ReactNode;
|
|
2261
|
+
/** Numeric badge; `true` renders a dot. */
|
|
2262
|
+
badge?: number | boolean;
|
|
2263
|
+
}
|
|
2264
|
+
interface BottomNavProps extends Omit<React.HTMLAttributes<HTMLElement>, "onChange"> {
|
|
2265
|
+
tabs: BottomNavTab[];
|
|
2266
|
+
value: string;
|
|
2267
|
+
onChange: (id: string) => void;
|
|
2268
|
+
}
|
|
2269
|
+
declare const BottomNav: React$1.ForwardRefExoticComponent<BottomNavProps & React$1.RefAttributes<HTMLElement>>;
|
|
2270
|
+
|
|
2271
|
+
/**
|
|
2272
|
+
* DashGrid — drag-to-reorder widget grid for the firm dashboard. Each
|
|
2273
|
+
* widget gets a 6-dot grab handle; dragging it over another widget moves
|
|
2274
|
+
* it to that slot. The flat order is the source of truth; widgets flow
|
|
2275
|
+
* row-major into a responsive CSS grid.
|
|
2276
|
+
*
|
|
2277
|
+
* Order is uncontrolled by default. Pass `storageKey` to persist it to
|
|
2278
|
+
* `localStorage` — the initial order is read **once** in a lazy
|
|
2279
|
+
* `useState` initializer (SSR-safe: no read on the server), and the grid
|
|
2280
|
+
* carries `suppressHydrationWarning` because a persisted client order will
|
|
2281
|
+
* legitimately differ from the server's default order on first paint.
|
|
2282
|
+
* `onReorder` fires with the new id order on every move.
|
|
2283
|
+
*/
|
|
2284
|
+
interface DashWidget {
|
|
2285
|
+
id: string;
|
|
2286
|
+
content: React.ReactNode;
|
|
2287
|
+
/** Column span on the lg grid (1–3). Default 1. */
|
|
2288
|
+
span?: 1 | 2 | 3;
|
|
2289
|
+
}
|
|
2290
|
+
interface DashGridProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onReorder"> {
|
|
2291
|
+
widgets: DashWidget[];
|
|
2292
|
+
/** Persist order under this `localStorage` key. Omit to disable persistence. */
|
|
2293
|
+
storageKey?: string;
|
|
2294
|
+
onReorder?: (orderedIds: string[]) => void;
|
|
2295
|
+
/** Max columns on large screens. Default 3. */
|
|
2296
|
+
columns?: 2 | 3 | 4;
|
|
2297
|
+
}
|
|
2298
|
+
declare const DashGrid: React$1.ForwardRefExoticComponent<DashGridProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2299
|
+
|
|
2300
|
+
interface EngagementCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2301
|
+
/** Service name, e.g. "Tax". */
|
|
2302
|
+
service: string;
|
|
2303
|
+
/** Service glyph (an icon node). */
|
|
2304
|
+
serviceIcon?: React.ReactNode;
|
|
2305
|
+
tone?: ServiceTone;
|
|
2306
|
+
title: string;
|
|
2307
|
+
/** Status node (typically a <StatusPill> or plain label). */
|
|
2308
|
+
status?: React.ReactNode;
|
|
2309
|
+
/** Current step index (1-based) and total. */
|
|
2310
|
+
current: number;
|
|
2311
|
+
steps: number;
|
|
2312
|
+
/** Name of the current step, shown in the caption. */
|
|
2313
|
+
stepLabel?: string;
|
|
2314
|
+
/** Footer ETA content, e.g. "Est. completion Mar 14" or "Recurring engagement". */
|
|
2315
|
+
eta?: React.ReactNode;
|
|
2316
|
+
/** Show a ProgressRing instead of segments + percent. */
|
|
2317
|
+
ring?: boolean;
|
|
2318
|
+
onOpen?: () => void;
|
|
2319
|
+
}
|
|
2320
|
+
declare const EngagementCard: React$1.ForwardRefExoticComponent<EngagementCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2321
|
+
|
|
2322
|
+
/**
|
|
2323
|
+
* EngagementTimeline — vertical stepper for an engagement's lifecycle.
|
|
2324
|
+
* Each step is a node + connector rail on the left and a body on the right.
|
|
2325
|
+
*
|
|
2326
|
+
* done → filled success node with a check + "Completed {date}" line
|
|
2327
|
+
* active → toned ring node + "In progress" badge + inline actions
|
|
2328
|
+
* todo → muted node + "Upcoming" badge
|
|
2329
|
+
*
|
|
2330
|
+
* The active node + badge read the service `--tone` set once on the
|
|
2331
|
+
* container (see `serviceToneStyle`). Compose with `<EngagementTimelineStep>`
|
|
2332
|
+
* children, mirroring the `<ActivityList>` / `<ActivityItem>` split.
|
|
2333
|
+
*/
|
|
2334
|
+
type TimelineState = "done" | "active" | "todo";
|
|
2335
|
+
interface EngagementTimelineProps extends React.HTMLAttributes<HTMLOListElement> {
|
|
2336
|
+
/** Service tone for active nodes. */
|
|
2337
|
+
tone?: ServiceTone;
|
|
2338
|
+
}
|
|
2339
|
+
declare const EngagementTimeline: React$1.ForwardRefExoticComponent<EngagementTimelineProps & React$1.RefAttributes<HTMLOListElement>>;
|
|
2340
|
+
interface EngagementTimelineStepProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>, "title"> {
|
|
2341
|
+
state: TimelineState;
|
|
2342
|
+
/** Step name. */
|
|
2343
|
+
name: React.ReactNode;
|
|
2344
|
+
/** 1-based index shown inside todo/active nodes. */
|
|
2345
|
+
index: number;
|
|
2346
|
+
/** Supporting copy under the name. */
|
|
2347
|
+
note?: React.ReactNode;
|
|
2348
|
+
/** Completion date, shown for `done` steps. */
|
|
2349
|
+
date?: React.ReactNode;
|
|
2350
|
+
/** Inline action row, shown for `active` steps. */
|
|
2351
|
+
actions?: React.ReactNode;
|
|
2352
|
+
/** Hide the connector below the node (last step). */
|
|
2353
|
+
last?: boolean;
|
|
2354
|
+
}
|
|
2355
|
+
declare const EngagementTimelineStep: React$1.ForwardRefExoticComponent<EngagementTimelineStepProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
2356
|
+
|
|
2357
|
+
/**
|
|
2358
|
+
* FolderTree — collapsible document tree (Documents panel / mobile sheet).
|
|
2359
|
+
* Rows are chevron + folder + name + optional count. Each row has two
|
|
2360
|
+
* intents and therefore two DOM elements (skill §4): the body is a
|
|
2361
|
+
* `<button>` that selects/opens the folder, and the chevron is a separate
|
|
2362
|
+
* `<button>` that only toggles expansion (so `aria-expanded` is accurate
|
|
2363
|
+
* and the two are independently keyboard-reachable).
|
|
2364
|
+
*
|
|
2365
|
+
* Open state is uncontrolled by default (SSR-safe lazy initializer seeded
|
|
2366
|
+
* from `defaultOpenIds`) or fully controlled via `openIds` + `onOpenChange`.
|
|
2367
|
+
* The active row is tinted with the Pro tone (`bg-pro-bg`).
|
|
2368
|
+
*/
|
|
2369
|
+
interface FolderNode {
|
|
2370
|
+
id: string;
|
|
2371
|
+
name: string;
|
|
2372
|
+
/** Item count shown as a trailing number. */
|
|
2373
|
+
count?: number;
|
|
2374
|
+
children?: FolderNode[];
|
|
2375
|
+
}
|
|
2376
|
+
interface FolderTreeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect"> {
|
|
2377
|
+
nodes: FolderNode[];
|
|
2378
|
+
/** Currently selected folder id. */
|
|
2379
|
+
activeId?: string;
|
|
2380
|
+
onSelect?: (id: string) => void;
|
|
2381
|
+
/** Uncontrolled: folders open on first render. */
|
|
2382
|
+
defaultOpenIds?: string[];
|
|
2383
|
+
/** Controlled open set. */
|
|
2384
|
+
openIds?: string[];
|
|
2385
|
+
onOpenChange?: (openIds: string[]) => void;
|
|
2386
|
+
}
|
|
2387
|
+
declare const FolderTree: React$1.ForwardRefExoticComponent<FolderTreeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2388
|
+
|
|
2389
|
+
/**
|
|
2390
|
+
* NewMenu — the TopBar "+ New" create dropdown. A primary button opens a
|
|
2391
|
+
* menu of create actions, optionally split into labelled groups (e.g.
|
|
2392
|
+
* "Work" vs "People"). Thin composition over the DropdownMenu primitive;
|
|
2393
|
+
* the surface, focus, and portal behavior all come from there.
|
|
2394
|
+
*/
|
|
2395
|
+
interface NewMenuAction {
|
|
2396
|
+
id: string;
|
|
2397
|
+
label: React.ReactNode;
|
|
2398
|
+
/** Supporting line under the label. */
|
|
2399
|
+
description?: React.ReactNode;
|
|
2400
|
+
icon?: React.ReactNode;
|
|
2401
|
+
/** Keyboard hint, right-aligned (display only). */
|
|
2402
|
+
shortcut?: string;
|
|
2403
|
+
onSelect?: () => void;
|
|
2404
|
+
}
|
|
2405
|
+
interface NewMenuGroup {
|
|
2406
|
+
label?: React.ReactNode;
|
|
2407
|
+
actions: NewMenuAction[];
|
|
2408
|
+
}
|
|
2409
|
+
interface NewMenuProps {
|
|
2410
|
+
/** Flat action list. Use `groups` instead for labelled sections. */
|
|
2411
|
+
actions?: NewMenuAction[];
|
|
2412
|
+
groups?: NewMenuGroup[];
|
|
2413
|
+
/** Trigger label. Default "New". */
|
|
2414
|
+
triggerLabel?: React.ReactNode;
|
|
2415
|
+
/** Override the trigger entirely (still opens the menu). */
|
|
2416
|
+
trigger?: React.ReactNode;
|
|
2417
|
+
align?: "start" | "center" | "end";
|
|
2418
|
+
}
|
|
2419
|
+
declare const NewMenu: React$1.ForwardRefExoticComponent<NewMenuProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2420
|
+
|
|
1667
2421
|
type ShellProps = React.HTMLAttributes<HTMLDivElement>;
|
|
1668
2422
|
declare const Shell: React$1.ForwardRefExoticComponent<ShellProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1669
2423
|
type MainProps = React.HTMLAttributes<HTMLElement>;
|
|
@@ -1818,7 +2572,7 @@ declare const SidebarLinkLabel: React$1.ForwardRefExoticComponent<SidebarLinkLab
|
|
|
1818
2572
|
type SidebarLinkActionProps = React$1.HTMLAttributes<HTMLSpanElement>;
|
|
1819
2573
|
declare const SidebarLinkAction: React$1.ForwardRefExoticComponent<SidebarLinkActionProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1820
2574
|
declare const sidebarLinkBadgeVariants: (props?: ({
|
|
1821
|
-
tone?: "warning" | "
|
|
2575
|
+
tone?: "warning" | "danger" | "neutral" | "default" | null | undefined;
|
|
1822
2576
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1823
2577
|
type SidebarLinkBadgeVariants = VariantProps<typeof sidebarLinkBadgeVariants>;
|
|
1824
2578
|
interface SidebarLinkBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, SidebarLinkBadgeVariants {
|
|
@@ -2012,7 +2766,7 @@ interface PageHeaderProps extends Omit<React.HTMLAttributes<HTMLElement>, "title
|
|
|
2012
2766
|
declare const PageHeader: React$1.ForwardRefExoticComponent<PageHeaderProps & React$1.RefAttributes<HTMLElement>>;
|
|
2013
2767
|
type PageHeaderSpecProps = React.HTMLAttributes<HTMLSpanElement>;
|
|
2014
2768
|
/**
|
|
2015
|
-
* PageHeaderSpec — small `.spec`-style span (
|
|
2769
|
+
* PageHeaderSpec — small `.spec`-style span (body font w/ tnum/lnum/ss01).
|
|
2016
2770
|
* Used inside the `meta` slot for numeric facts ("4 due today",
|
|
2017
2771
|
* "EIN ·· 12-3456789").
|
|
2018
2772
|
*/
|
|
@@ -2153,9 +2907,9 @@ interface DataTableProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2153
2907
|
declare const DataTable: React$1.ForwardRefExoticComponent<DataTableProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2154
2908
|
type DataTableToolbarProps = React.HTMLAttributes<HTMLDivElement>;
|
|
2155
2909
|
/**
|
|
2156
|
-
* DataTableToolbar —
|
|
2157
|
-
*
|
|
2158
|
-
*
|
|
2910
|
+
* DataTableToolbar — header strip at the top of the table card. The outer
|
|
2911
|
+
* frame is owned by `<DataTable>`, so this is just a row with a bottom
|
|
2912
|
+
* divider separating it from the table below.
|
|
2159
2913
|
*/
|
|
2160
2914
|
declare const DataTableToolbar: React$1.ForwardRefExoticComponent<DataTableToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2161
2915
|
interface DataTableSearchProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
|
|
@@ -2212,8 +2966,9 @@ interface DataTableHeaderProps extends React.ThHTMLAttributes<HTMLTableCellEleme
|
|
|
2212
2966
|
onSortChange?: (sort: SortDirection | null) => void;
|
|
2213
2967
|
}
|
|
2214
2968
|
/**
|
|
2215
|
-
* DataTableHeader — `<th>` cell.
|
|
2216
|
-
* sort indicator. Sort cycle
|
|
2969
|
+
* DataTableHeader — `<th>` cell. Sentence-case label in the body font
|
|
2970
|
+
* (Plus Jakarta Sans, 14px) with optional sort indicator. Sort cycle
|
|
2971
|
+
* when uncontrolled:
|
|
2217
2972
|
* unsorted → asc → desc → unsorted (3-state).
|
|
2218
2973
|
* `defaultSort` seeds the initial state. Pass `sort` + `onSortChange`
|
|
2219
2974
|
* for fully-controlled usage when an upstream store owns the sort.
|
|
@@ -2228,13 +2983,13 @@ declare const DataTableCell: React$1.ForwardRefExoticComponent<DataTableCellProp
|
|
|
2228
2983
|
*/
|
|
2229
2984
|
declare const DataTableCellName: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
2230
2985
|
/**
|
|
2231
|
-
* DataTableCellMono — currency / IDs / numerics.
|
|
2232
|
-
* tabular numerals
|
|
2986
|
+
* DataTableCellMono — currency / IDs / numerics. Body font (Plus Jakarta
|
|
2987
|
+
* Sans) with tabular numerals so columns of figures stay aligned.
|
|
2233
2988
|
*/
|
|
2234
2989
|
declare const DataTableCellMono: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
2235
2990
|
/**
|
|
2236
|
-
* DataTableCellId — muted
|
|
2237
|
-
*
|
|
2991
|
+
* DataTableCellId — muted ID (EIN, UUID, "5h ago") in the body font
|
|
2992
|
+
* (Plus Jakarta Sans) with tabular numerals.
|
|
2238
2993
|
*/
|
|
2239
2994
|
declare const DataTableCellId: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
2240
2995
|
interface DataTableCellDueProps extends Omit<React.TdHTMLAttributes<HTMLTableCellElement>, "children"> {
|
|
@@ -2879,4 +3634,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
|
|
|
2879
3634
|
|
|
2880
3635
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2881
3636
|
|
|
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 };
|
|
3637
|
+
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, AttachmentChip, type AttachmentChipProps, 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, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, 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, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, 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, LandmarkIcon, 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, MasterDetailLayout, type MasterDetailLayoutProps, 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, PenToolIcon, 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, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, 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, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StopIcon, StrikethroughIcon, SubmitButton, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, 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, attachmentChipVariants, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|