@assure-one/design-system 0.14.0 → 0.15.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 CHANGED
@@ -300,8 +300,14 @@ interface ConfirmActionButtonProps {
300
300
  destructive?: boolean;
301
301
  /** Forwarded to AlertDialogContent for one-off layout overrides. */
302
302
  contentClassName?: string;
303
+ /** Controlled open state for menu-hoisted or externally triggered dialogs. */
304
+ open?: boolean;
305
+ /** Initial open state for uncontrolled usage. */
306
+ defaultOpen?: boolean;
307
+ /** Called when the dialog requests an open-state change. */
308
+ onOpenChange?: (open: boolean) => void;
303
309
  }
304
- declare function ConfirmActionButton({ trigger, title, description, confirmLabel, cancelLabel, onConfirm, destructive, contentClassName, }: ConfirmActionButtonProps): react_jsx_runtime.JSX.Element;
310
+ declare function ConfirmActionButton({ trigger, title, description, confirmLabel, cancelLabel, onConfirm, destructive, contentClassName, open, defaultOpen, onOpenChange, }: ConfirmActionButtonProps): react_jsx_runtime.JSX.Element;
305
311
 
306
312
  declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
307
313
  declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
@@ -726,6 +732,9 @@ declare function AlertTriangleSolidIcon({ size, ...props }: IconProps): react_js
726
732
  declare function InfoCircleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
727
733
  declare function TrendingUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
728
734
  declare function TrendingDownIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
735
+ declare function PlayIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
736
+ declare function PauseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
737
+ declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
729
738
 
730
739
  /**
731
740
  * Input variants. Mirrors the raw HTML `<input>` styled per the suite tokens
@@ -937,8 +946,10 @@ interface OTPInputProps {
937
946
  id?: string;
938
947
  /** Optional disabled flag (additive). */
939
948
  disabled?: boolean;
949
+ /** Accessible label for the underlying one-time-code input. */
950
+ "aria-label"?: string;
940
951
  }
941
- declare function OTPInput({ name, length, error, autoFocus, className, defaultValue, value, onChange, onComplete, id, disabled, }: OTPInputProps): react_jsx_runtime.JSX.Element;
952
+ declare function OTPInput({ name, length, error, autoFocus, className, defaultValue, value, onChange, onComplete, id, disabled, "aria-label": ariaLabel, }: OTPInputProps): react_jsx_runtime.JSX.Element;
942
953
  declare namespace OTPInput {
943
954
  var displayName: string;
944
955
  }
@@ -1257,6 +1268,7 @@ declare namespace Select {
1257
1268
  declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1258
1269
 
1259
1270
  type Side = "top" | "right" | "bottom" | "left";
1271
+ type SheetWidth = "default" | "sm" | "md" | "lg" | "xl" | "full";
1260
1272
  interface SheetProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Root> {
1261
1273
  /**
1262
1274
  * Default side for SheetContent if it doesn't specify its own.
@@ -1278,6 +1290,17 @@ declare const sheetVariants: (props?: ({
1278
1290
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1279
1291
  /** If false, the built-in close button is hidden. Default: true. */
1280
1292
  showCloseButton?: boolean;
1293
+ /**
1294
+ * Width preset for left/right sheets. Omit for the historical default
1295
+ * (`w-3/4 max-w-sm`). Top/bottom sheets ignore this prop.
1296
+ */
1297
+ width?: SheetWidth;
1298
+ /**
1299
+ * Custom CSS width for left/right sheets, e.g. `"520px"` or
1300
+ * `"min(95vw, 720px)"`. Prefer `width` presets unless a product surface
1301
+ * has a proven one-off contract.
1302
+ */
1303
+ customWidth?: string;
1281
1304
  }
1282
1305
  declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
1283
1306
  declare const SheetHeader: {
@@ -1352,6 +1375,19 @@ interface SliderProps extends React$1.ComponentPropsWithoutRef<typeof SliderPrim
1352
1375
  }
1353
1376
  declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLSpanElement>>;
1354
1377
 
1378
+ declare const spinnerVariants: (props?: ({
1379
+ size?: "xs" | "sm" | "md" | "lg" | null | undefined;
1380
+ tone?: "current" | "success" | "warning" | "destructive" | "accent" | "muted" | null | undefined;
1381
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1382
+ interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
1383
+ /**
1384
+ * Accessible status text. Omit when adjacent visible copy already names the
1385
+ * loading state, such as inside a button labelled "Saving".
1386
+ */
1387
+ label?: string;
1388
+ }
1389
+ declare const Spinner: React$1.ForwardRefExoticComponent<SpinnerProps & React$1.RefAttributes<HTMLSpanElement>>;
1390
+
1355
1391
  /**
1356
1392
  * StarRating — display-only rating atom built on lucide `Star`. Supports
1357
1393
  * fractional ratings (half-star fill via clip path) and a sized cva variant.
@@ -1577,6 +1613,15 @@ declare const Shell: React$1.ForwardRefExoticComponent<ShellProps & React$1.RefA
1577
1613
  type MainProps = React.HTMLAttributes<HTMLElement>;
1578
1614
  declare const Main: React$1.ForwardRefExoticComponent<MainProps & React$1.RefAttributes<HTMLElement>>;
1579
1615
  interface ContentProps extends React.HTMLAttributes<HTMLDivElement> {
1616
+ /**
1617
+ * Override the top padding only. Use this when an app shell has its own
1618
+ * sticky header rhythm and needs a denser first row without reaching for
1619
+ * important-class overrides.
1620
+ *
1621
+ * Accepts any CSS length (e.g. `"12px"`, `"1rem"`). Omit to inherit
1622
+ * the symmetric default.
1623
+ */
1624
+ padTop?: string;
1580
1625
  /**
1581
1626
  * Override the bottom padding only — the rest of the content area keeps
1582
1627
  * `--content-pad` so the header alignment stays intact. Use this on
@@ -1972,7 +2017,7 @@ declare function DataItem({ label, value, span, className }: DataItemProps): rea
1972
2017
  * explicitly for inverted metrics where "up" is bad (e.g. past-due ↑).
1973
2018
  * - `trend` (number[]) draws a filled sparkline across the card bottom,
1974
2019
  * tinted by the delta sentiment (or tone when there's no delta).
1975
- * - `hint` is an optional `text-fg-4` line ("+18 this month", "6 invoices").
2020
+ * - `hint` is an optional `text-fg-3` line ("+18 this month", "6 invoices").
1976
2021
  * - `action` is an optional trailing slot for a button or link.
1977
2022
  *
1978
2023
  * Renders as a `<Card>`. Wrap in a `<Link>` from the consumer side if
@@ -2015,7 +2060,11 @@ interface KpiCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title
2015
2060
  /** When `true`, the value text picks up the tone color. Default `false` (value stays fg). */
2016
2061
  toneValue?: boolean;
2017
2062
  }
2063
+ interface SelectableKpiCardProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "title" | "value">, Pick<KpiCardProps, "label" | "value" | "icon" | "tone" | "delta" | "trend" | "hint" | "action" | "toneValue"> {
2064
+ selected?: boolean;
2065
+ }
2018
2066
  declare const KpiCard: React$1.ForwardRefExoticComponent<KpiCardProps & React$1.RefAttributes<HTMLDivElement>>;
2067
+ declare const SelectableKpiCard: React$1.ForwardRefExoticComponent<SelectableKpiCardProps & React$1.RefAttributes<HTMLButtonElement>>;
2019
2068
 
2020
2069
  interface DataTableProps extends React.HTMLAttributes<HTMLDivElement> {
2021
2070
  /** When true, renders the table card with a flat top edge so it
@@ -2535,6 +2584,122 @@ interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButt
2535
2584
  }
2536
2585
  declare const NotificationItem: React$1.ForwardRefExoticComponent<NotificationItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2537
2586
 
2587
+ /** Running-clock format from milliseconds → `H:MM:SS`. */
2588
+ declare function formatClock(ms: number): string;
2589
+ /** Compact duration from seconds → `Xh Ym` (e.g. `2h 10m`, `45m`, `3h`). */
2590
+ declare function formatDuration(totalSeconds: number): string;
2591
+ /** Parse human input (`3h 20m`, `1:30`, `45m`, bare `90` → minutes) → seconds, or `null`. */
2592
+ declare function parseDuration(input: string): number | null;
2593
+ /** Currency format used by the billing rows; falls back to `$0.00` for bad ISO codes. */
2594
+ declare function formatCurrency(amount: number, currency?: string): string;
2595
+ type TimeLoggerPhase = "idle" | "running" | "paused" | "stopped";
2596
+ interface UseStopwatchReturn {
2597
+ phase: TimeLoggerPhase;
2598
+ elapsedMs: number;
2599
+ isRunning: boolean;
2600
+ /** Begin running, optionally seeded with an offset (e.g. a parsed manual entry). */
2601
+ start: (fromMs?: number) => void;
2602
+ pause: () => void;
2603
+ resume: () => void;
2604
+ /** Freeze and mark complete; elapsed is preserved for saving. */
2605
+ stop: () => void;
2606
+ /** Return to idle at zero. */
2607
+ reset: () => void;
2608
+ }
2609
+ declare function useStopwatch(): UseStopwatchReturn;
2610
+ type TimeLoggerProps = React$1.HTMLAttributes<HTMLDivElement>;
2611
+ declare const TimeLogger: React$1.ForwardRefExoticComponent<TimeLoggerProps & React$1.RefAttributes<HTMLDivElement>>;
2612
+ interface TimeLoggerHeaderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
2613
+ title?: React$1.ReactNode;
2614
+ icon?: React$1.ReactNode;
2615
+ /** Minutes logged today. With `goalMinutes`, renders the `Xh / Yh` figure + seam. */
2616
+ loggedMinutes?: number;
2617
+ /** Daily goal in minutes. Omit to hide the goal figure and the progress seam. */
2618
+ goalMinutes?: number;
2619
+ }
2620
+ declare const TimeLoggerHeader: React$1.ForwardRefExoticComponent<TimeLoggerHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2621
+ interface TimeLoggerContextRowProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
2622
+ client: React$1.ReactNode;
2623
+ engagement?: React$1.ReactNode;
2624
+ /** Leading slot, e.g. an `<Avatar variant="branded" />`. */
2625
+ avatar?: React$1.ReactNode;
2626
+ onClientSelect?: () => void;
2627
+ /** Right-aligned slot — an assignee avatar + menu, or a `<TeamMemberSelect>`. */
2628
+ member?: React$1.ReactNode;
2629
+ }
2630
+ declare const TimeLoggerContextRow: React$1.ForwardRefExoticComponent<TimeLoggerContextRowProps & React$1.RefAttributes<HTMLDivElement>>;
2631
+ interface TimeLoggerTimerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
2632
+ phase: TimeLoggerPhase;
2633
+ elapsedMs: number;
2634
+ /** Manual-entry text, shown only while idle. Controlled. */
2635
+ value?: string;
2636
+ onValueChange?: (value: string) => void;
2637
+ placeholder?: string;
2638
+ onStart?: () => void;
2639
+ onPause?: () => void;
2640
+ onResume?: () => void;
2641
+ onStop?: () => void;
2642
+ }
2643
+ declare const TimeLoggerTimer: React$1.ForwardRefExoticComponent<TimeLoggerTimerProps & React$1.RefAttributes<HTMLDivElement>>;
2644
+ interface TimeLoggerFieldProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "onSelect"> {
2645
+ icon?: React$1.ReactNode;
2646
+ /** Small caption above the value. */
2647
+ label?: React$1.ReactNode;
2648
+ onSelect?: () => void;
2649
+ /** Trailing node; defaults to a chevron when interactive. Pass `null` to suppress. */
2650
+ trailing?: React$1.ReactNode;
2651
+ /** Render the value in the muted placeholder colour. */
2652
+ muted?: boolean;
2653
+ }
2654
+ declare const TimeLoggerField: React$1.ForwardRefExoticComponent<TimeLoggerFieldProps & React$1.RefAttributes<HTMLElement>>;
2655
+ interface TimeLoggerNotesProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
2656
+ value?: string;
2657
+ onValueChange?: (value: string) => void;
2658
+ icon?: React$1.ReactNode;
2659
+ }
2660
+ declare const TimeLoggerNotes: React$1.ForwardRefExoticComponent<TimeLoggerNotesProps & React$1.RefAttributes<HTMLInputElement>>;
2661
+ interface TimeLoggerTier {
2662
+ id: string;
2663
+ name: React$1.ReactNode;
2664
+ /** Hourly rate in the panel currency; shown in the tier menu's right column. */
2665
+ rate: number;
2666
+ }
2667
+ interface TimeLoggerBillableProps extends React$1.HTMLAttributes<HTMLDivElement> {
2668
+ billable: boolean;
2669
+ onBillableChange?: (billable: boolean) => void;
2670
+ /** Defaults to "Billable" / "Non-billable" derived from `billable`. */
2671
+ label?: React$1.ReactNode;
2672
+ /** Pricing tiers shown in the settings pop-view. Omit to hide the gear. */
2673
+ tiers?: TimeLoggerTier[];
2674
+ tierId?: string;
2675
+ onTierChange?: (id: string) => void;
2676
+ /** ISO currency for tier-rate formatting. Default `"USD"`. */
2677
+ currency?: string;
2678
+ /** Computed amount readout (rate × time). Pass a formatted node, or omit. */
2679
+ amount?: React$1.ReactNode;
2680
+ }
2681
+ declare const TimeLoggerBillable: React$1.ForwardRefExoticComponent<TimeLoggerBillableProps & React$1.RefAttributes<HTMLDivElement>>;
2682
+ type TimeLoggerActionsProps = React$1.HTMLAttributes<HTMLDivElement>;
2683
+ declare const TimeLoggerActions: React$1.ForwardRefExoticComponent<TimeLoggerActionsProps & React$1.RefAttributes<HTMLDivElement>>;
2684
+ interface TimeLoggerEntryListProps extends React$1.HTMLAttributes<HTMLDivElement> {
2685
+ /** Day group caption, e.g. "Fri, May 29". */
2686
+ dayLabel?: React$1.ReactNode;
2687
+ /** Right-aligned day subtotal, e.g. "2h 10m". */
2688
+ total?: React$1.ReactNode;
2689
+ }
2690
+ declare const TimeLoggerEntryList: React$1.ForwardRefExoticComponent<TimeLoggerEntryListProps & React$1.RefAttributes<HTMLDivElement>>;
2691
+ interface TimeLoggerEntryProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
2692
+ title: React$1.ReactNode;
2693
+ /** Secondary line — time range, billable amount, etc. */
2694
+ meta?: React$1.ReactNode;
2695
+ duration: React$1.ReactNode;
2696
+ onResume?: () => void;
2697
+ onDelete?: () => void;
2698
+ }
2699
+ declare const TimeLoggerEntry: React$1.ForwardRefExoticComponent<TimeLoggerEntryProps & React$1.RefAttributes<HTMLDivElement>>;
2700
+ type TimeLoggerFooterProps = React$1.HTMLAttributes<HTMLDivElement>;
2701
+ declare const TimeLoggerFooter: React$1.ForwardRefExoticComponent<TimeLoggerFooterProps & React$1.RefAttributes<HTMLDivElement>>;
2702
+
2538
2703
  /**
2539
2704
  * Toolbar — horizontal row of controls used above lists, dashboards, etc.
2540
2705
  * FilterChip is a simpler atom than `MultiFilterPill` — single filter,
@@ -2551,6 +2716,30 @@ interface FilterChipProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElem
2551
2716
  }
2552
2717
  declare const FilterChip: React$1.ForwardRefExoticComponent<FilterChipProps & React$1.RefAttributes<HTMLButtonElement>>;
2553
2718
 
2719
+ type BulkActionBarVariant = "sidebar-anchored" | "page-floating" | "table-inline";
2720
+ interface BulkActionBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2721
+ variant?: BulkActionBarVariant;
2722
+ selectedCount: number;
2723
+ /** Overrides the default "{N} selected" label. */
2724
+ label?: string;
2725
+ /** Action controls supplied by the consumer. */
2726
+ children: React$1.ReactNode;
2727
+ onClear: () => void;
2728
+ clearLabel?: string;
2729
+ clearDisabled?: boolean;
2730
+ /** Optional content rendered beneath the bar, useful for inline warnings. */
2731
+ footer?: React$1.ReactNode;
2732
+ }
2733
+ interface BulkActionBarActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2734
+ asChild?: boolean;
2735
+ destructive?: boolean;
2736
+ }
2737
+ declare const BulkActionBarAction: React$1.ForwardRefExoticComponent<BulkActionBarActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2738
+ declare function BulkActionBarSeparator({ className }: {
2739
+ className?: string;
2740
+ }): react_jsx_runtime.JSX.Element;
2741
+ declare function BulkActionBar({ variant, selectedCount, label, children, onClear, clearLabel, clearDisabled, footer, className, ...props }: BulkActionBarProps): react_jsx_runtime.JSX.Element | null;
2742
+
2554
2743
  /**
2555
2744
  * Intent-named action wrappers (Phase 4).
2556
2745
  *
@@ -2603,4 +2792,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
2603
2792
 
2604
2793
  declare function cn(...inputs: ClassValue[]): string;
2605
2794
 
2606
- 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, 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, 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, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, 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, 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, StarIcon, StarRating, type StarRatingProps, Stat, StatusIcon, type StatusIconProps, type StatusState, type Step, Stepper, type StepperProps, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, filterChipVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useToast, yearToIso };
2795
+ 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 };