@assure-one/design-system 0.15.1 → 0.17.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 +59 -26
- package/dist/index.js +189 -73
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/tokens/index.d.ts +17 -4
- package/dist/tokens/index.js +16 -3
- package/dist/tokens/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefA
|
|
|
108
108
|
|
|
109
109
|
/**
|
|
110
110
|
* Blockquote — semantic quote with optional attribution. Uses `font-display`
|
|
111
|
-
* (
|
|
111
|
+
* (Inter) at a comfortable reading scale; smart quotes are wrapped automatically.
|
|
112
112
|
*/
|
|
113
113
|
interface BlockquoteProps extends React.BlockquoteHTMLAttributes<HTMLQuoteElement> {
|
|
114
114
|
author?: string;
|
|
@@ -227,6 +227,8 @@ interface CheckboxProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Che
|
|
|
227
227
|
defaultChecked?: boolean | "indeterminate";
|
|
228
228
|
/** Convenience: render with indeterminate state. Mirrors legacy prop. */
|
|
229
229
|
indeterminate?: boolean;
|
|
230
|
+
/** Box shape. Defaults to "square". */
|
|
231
|
+
shape?: "square" | "circle";
|
|
230
232
|
}
|
|
231
233
|
declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
232
234
|
|
|
@@ -508,7 +510,7 @@ declare const DropdownMenuShortcut: {
|
|
|
508
510
|
};
|
|
509
511
|
|
|
510
512
|
/**
|
|
511
|
-
* EmptyState — display headline (
|
|
513
|
+
* EmptyState — display headline (Inter), fg-3 description, neutral icon halo on bg-2.
|
|
512
514
|
*
|
|
513
515
|
* Public API preserved: `icon`, `title`, `description`, `action`.
|
|
514
516
|
*/
|
|
@@ -847,7 +849,7 @@ declare const LoadingRows: React$1.ForwardRefExoticComponent<LoadingRowsProps &
|
|
|
847
849
|
|
|
848
850
|
/**
|
|
849
851
|
* Logo — Assure suite wordmark. Renders "Assure" in `fg` plus an optional
|
|
850
|
-
* product suffix in `pro-fg` (e.g., "Pro", "Tax"), set in
|
|
852
|
+
* product suffix in `pro-fg` (e.g., "Pro", "Tax"), set in Inter (font-display).
|
|
851
853
|
*
|
|
852
854
|
* The product suffix is configurable so the same component serves every
|
|
853
855
|
* Assure product. The default preserves the original "Assure Pro" output —
|
|
@@ -1177,7 +1179,7 @@ declare namespace SearchSelect {
|
|
|
1177
1179
|
|
|
1178
1180
|
/**
|
|
1179
1181
|
* SectionHeader — title + description block for marketing-style sections.
|
|
1180
|
-
* Uses
|
|
1182
|
+
* Uses Inter (`font-display`) with the spec's `-0.022em` letterspacing.
|
|
1181
1183
|
*/
|
|
1182
1184
|
interface SectionHeaderProps {
|
|
1183
1185
|
title: string;
|
|
@@ -1417,7 +1419,7 @@ declare const StarRating: React$1.ForwardRefExoticComponent<StarRatingProps & Re
|
|
|
1417
1419
|
|
|
1418
1420
|
/**
|
|
1419
1421
|
* Stat — paired numeric display + caption (the StatNum primitive).
|
|
1420
|
-
* Numerals are set in `font-display` (
|
|
1422
|
+
* Numerals are set in `font-display` (Inter) at a fluid clamp size with
|
|
1421
1423
|
* `font-variant-numeric: tabular-nums` for vertical alignment.
|
|
1422
1424
|
*/
|
|
1423
1425
|
interface StatProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -1688,6 +1690,16 @@ interface SidebarProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
|
1688
1690
|
* `collapsible` alone is a no-op.
|
|
1689
1691
|
*/
|
|
1690
1692
|
collapsible?: boolean;
|
|
1693
|
+
/**
|
|
1694
|
+
* Visual treatment.
|
|
1695
|
+
* - `"classic"` (default) — full-height column flush to the left
|
|
1696
|
+
* edge with a right rule. The legacy look; unchanged.
|
|
1697
|
+
* - `"floating"` — a detached, rounded card inset from the viewport
|
|
1698
|
+
* with a soft shadow (modern SaaS pattern). Nav rows get larger
|
|
1699
|
+
* hit areas and a pill active state. Exposed as `data-variant` so
|
|
1700
|
+
* descendant atoms restyle via `group-data-[variant=floating]`.
|
|
1701
|
+
*/
|
|
1702
|
+
variant?: "classic" | "floating";
|
|
1691
1703
|
}
|
|
1692
1704
|
declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<HTMLElement>>;
|
|
1693
1705
|
interface SidebarTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
@@ -1954,7 +1966,7 @@ interface PageHeaderProps extends Omit<React.HTMLAttributes<HTMLElement>, "title
|
|
|
1954
1966
|
declare const PageHeader: React$1.ForwardRefExoticComponent<PageHeaderProps & React$1.RefAttributes<HTMLElement>>;
|
|
1955
1967
|
type PageHeaderSpecProps = React.HTMLAttributes<HTMLSpanElement>;
|
|
1956
1968
|
/**
|
|
1957
|
-
* PageHeaderSpec — small `.spec`-style span (
|
|
1969
|
+
* PageHeaderSpec — small `.spec`-style span (Inter w/ tnum/lnum/ss01).
|
|
1958
1970
|
* Used inside the `meta` slot for numeric facts ("4 due today",
|
|
1959
1971
|
* "EIN ·· 12-3456789").
|
|
1960
1972
|
*/
|
|
@@ -2170,7 +2182,7 @@ declare const DataTableCell: React$1.ForwardRefExoticComponent<DataTableCellProp
|
|
|
2170
2182
|
*/
|
|
2171
2183
|
declare const DataTableCellName: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
2172
2184
|
/**
|
|
2173
|
-
* DataTableCellMono — currency / IDs / numerics.
|
|
2185
|
+
* DataTableCellMono — currency / IDs / numerics. Inter with
|
|
2174
2186
|
* tabular numerals and tight tracking.
|
|
2175
2187
|
*/
|
|
2176
2188
|
declare const DataTableCellMono: React$1.ForwardRefExoticComponent<DataTableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
@@ -2511,32 +2523,39 @@ declare const MessageComposer: React$1.ForwardRefExoticComponent<MessageComposer
|
|
|
2511
2523
|
|
|
2512
2524
|
/**
|
|
2513
2525
|
* NotificationPanel — presentational in-app notification list (the bell
|
|
2514
|
-
* dropdown body).
|
|
2515
|
-
* the sender's avatar, system rows show a
|
|
2516
|
-
*
|
|
2526
|
+
* dropdown body). Identity-led: people-driven rows (mentions, messages) show
|
|
2527
|
+
* the sender's avatar, system rows show a tinted type tile. Colour on the tile
|
|
2528
|
+
* carries the notification type; the unread signal is a purple dot beside the
|
|
2529
|
+
* headline plus a faint purple row tint.
|
|
2517
2530
|
*
|
|
2518
2531
|
* This is the visual layer only. The app owns data, realtime (SSE),
|
|
2519
2532
|
* pagination, and navigation, and composes these pieces:
|
|
2520
2533
|
*
|
|
2521
2534
|
* <NotificationPanel>
|
|
2522
|
-
* <NotificationPanelHeader
|
|
2523
|
-
* <NotificationFilter
|
|
2535
|
+
* <NotificationPanelHeader onMarkAllRead={...} />
|
|
2536
|
+
* <NotificationFilter
|
|
2537
|
+
* value={filter}
|
|
2538
|
+
* onValueChange={setFilter}
|
|
2539
|
+
* counts={{ all: 9, unread: 3 }}
|
|
2540
|
+
* actions={<TypeDropdown />}
|
|
2541
|
+
* />
|
|
2524
2542
|
* <NotificationList>
|
|
2525
2543
|
* {items.map((n) => (
|
|
2526
2544
|
* <NotificationItem
|
|
2527
2545
|
* key={n.id}
|
|
2528
2546
|
* title={n.title}
|
|
2529
2547
|
* body={n.body}
|
|
2530
|
-
* typeLabel={n.typeLabel}
|
|
2531
2548
|
* client={n.client}
|
|
2532
2549
|
* time={n.time}
|
|
2533
2550
|
* sender={n.sender} // omit for system rows
|
|
2534
2551
|
* icon={<DocumentIcon />} // used when there's no sender
|
|
2552
|
+
* iconClassName="bg-success-bg text-success-fg"
|
|
2535
2553
|
* unread={!n.isRead}
|
|
2536
2554
|
* onClick={() => open(n)}
|
|
2537
2555
|
* />
|
|
2538
2556
|
* ))}
|
|
2539
2557
|
* </NotificationList>
|
|
2558
|
+
* <NotificationPanelFooter onClick={...} />
|
|
2540
2559
|
* </NotificationPanel>
|
|
2541
2560
|
*
|
|
2542
2561
|
* Empty / loading states are the consumer's call (use `EmptyState` and
|
|
@@ -2546,7 +2565,8 @@ type NotificationPanelProps = React.HTMLAttributes<HTMLDivElement>;
|
|
|
2546
2565
|
declare const NotificationPanel: React$1.ForwardRefExoticComponent<NotificationPanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2547
2566
|
interface NotificationPanelHeaderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2548
2567
|
title?: React.ReactNode;
|
|
2549
|
-
/**
|
|
2568
|
+
/** When > 0, shows a small unread pill next to the title. Counts also live on
|
|
2569
|
+
* the filter tabs, so leave unset to keep the header clean. */
|
|
2550
2570
|
unreadCount?: number;
|
|
2551
2571
|
onMarkAllRead?: () => void;
|
|
2552
2572
|
onSettings?: () => void;
|
|
@@ -2556,6 +2576,9 @@ type NotificationFilterValue = "all" | "unread";
|
|
|
2556
2576
|
interface NotificationFilterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2557
2577
|
value: NotificationFilterValue;
|
|
2558
2578
|
onValueChange: (value: NotificationFilterValue) => void;
|
|
2579
|
+
/** Optional per-tab counts, e.g. `{ all: 9, unread: 3 }`. Each present count
|
|
2580
|
+
* renders a small badge inside its tab. Omit to hide the badges. */
|
|
2581
|
+
counts?: Partial<Record<NotificationFilterValue, number>>;
|
|
2559
2582
|
/** Right-aligned slot, e.g. a type-filter dropdown trigger. */
|
|
2560
2583
|
actions?: React.ReactNode;
|
|
2561
2584
|
}
|
|
@@ -2563,18 +2586,15 @@ declare const NotificationFilter: React$1.ForwardRefExoticComponent<Notification
|
|
|
2563
2586
|
type NotificationListProps = React.HTMLAttributes<HTMLDivElement>;
|
|
2564
2587
|
declare const NotificationList: React$1.ForwardRefExoticComponent<NotificationListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2565
2588
|
interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "title"> {
|
|
2566
|
-
/**
|
|
2567
|
-
* Primary headline — one scannable line (feed the human sentence here, e.g.
|
|
2568
|
-
* "Sara uploaded W-2.pdf", not a generic type label). Clamps to 2 lines,
|
|
2569
|
-
* then ellipsis.
|
|
2570
|
-
*/
|
|
2589
|
+
/** Primary headline — one scannable line (e.g. "Document uploaded"). Truncates. */
|
|
2571
2590
|
title: React.ReactNode;
|
|
2572
|
-
/** Muted secondary line
|
|
2591
|
+
/** Muted secondary line — the detail (e.g. "W-2 batch uploaded"). Truncates. */
|
|
2573
2592
|
body?: React.ReactNode;
|
|
2574
|
-
/** Quiet caption shown
|
|
2593
|
+
/** Quiet caption shown before the client chip on the meta line. */
|
|
2575
2594
|
typeLabel?: React.ReactNode;
|
|
2595
|
+
/** Client / account name — rendered as an outline chip on the meta line. */
|
|
2576
2596
|
client?: React.ReactNode;
|
|
2577
|
-
/** Preformatted relative time, e.g. "
|
|
2597
|
+
/** Preformatted relative time, e.g. "8m ago". Sits on the meta line. */
|
|
2578
2598
|
time?: React.ReactNode;
|
|
2579
2599
|
/** People-driven rows: shows the sender avatar instead of the icon tile. */
|
|
2580
2600
|
sender?: {
|
|
@@ -2584,13 +2604,15 @@ interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButt
|
|
|
2584
2604
|
/** System rows: icon rendered inside a tile. Ignored when `sender` is set. */
|
|
2585
2605
|
icon?: React.ReactNode;
|
|
2586
2606
|
/**
|
|
2587
|
-
* Tint the icon tile per type, e.g. "bg-
|
|
2588
|
-
* owns the type-to-colour map. Defaults to a neutral tile.
|
|
2607
|
+
* Tint the icon tile per type, e.g. "bg-warning-bg text-warning-fg". The
|
|
2608
|
+
* consumer owns the type-to-colour map. Defaults to a neutral tile.
|
|
2589
2609
|
*/
|
|
2590
2610
|
iconClassName?: string;
|
|
2591
2611
|
unread?: boolean;
|
|
2592
2612
|
}
|
|
2593
2613
|
declare const NotificationItem: React$1.ForwardRefExoticComponent<NotificationItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2614
|
+
type NotificationPanelFooterProps = React.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
2615
|
+
declare const NotificationPanelFooter: React$1.ForwardRefExoticComponent<NotificationPanelFooterProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2594
2616
|
|
|
2595
2617
|
/** Running-clock format from milliseconds → `H:MM:SS`. */
|
|
2596
2618
|
declare function formatClock(ms: number): string;
|
|
@@ -2615,7 +2637,18 @@ interface UseStopwatchReturn {
|
|
|
2615
2637
|
reset: () => void;
|
|
2616
2638
|
}
|
|
2617
2639
|
declare function useStopwatch(): UseStopwatchReturn;
|
|
2618
|
-
|
|
2640
|
+
interface TimeLoggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2641
|
+
/**
|
|
2642
|
+
* Layout direction.
|
|
2643
|
+
* - `"vertical"` (default) — the stacked panel; rows separated by top
|
|
2644
|
+
* rules. For popovers and side panels.
|
|
2645
|
+
* - `"horizontal"` — a single compact bar; segments sit side by side,
|
|
2646
|
+
* separated by left rules. For an app top/bottom bar. Exposed as
|
|
2647
|
+
* `data-orientation` so segment atoms flip their divider via
|
|
2648
|
+
* `group-data-[orientation=horizontal]/timelogger`.
|
|
2649
|
+
*/
|
|
2650
|
+
orientation?: "vertical" | "horizontal";
|
|
2651
|
+
}
|
|
2619
2652
|
declare const TimeLogger: React$1.ForwardRefExoticComponent<TimeLoggerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2620
2653
|
interface TimeLoggerHeaderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2621
2654
|
title?: React$1.ReactNode;
|
|
@@ -2800,4 +2833,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
|
|
|
2800
2833
|
|
|
2801
2834
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2802
2835
|
|
|
2803
|
-
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, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, 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, 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, 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, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|
|
2836
|
+
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, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, 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, 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, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|