@assure-one/design-system 0.14.0 → 0.16.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
@@ -2454,32 +2503,39 @@ declare const MessageComposer: React$1.ForwardRefExoticComponent<MessageComposer
2454
2503
 
2455
2504
  /**
2456
2505
  * NotificationPanel — presentational in-app notification list (the bell
2457
- * dropdown body). Avatar-led: people-driven rows (mentions, messages) show
2458
- * the sender's avatar, system rows show a neutral type icon. Icons are
2459
- * neutral on purpose — colour is spent only on the unread signal.
2506
+ * dropdown body). Identity-led: people-driven rows (mentions, messages) show
2507
+ * the sender's avatar, system rows show a tinted type tile. Colour on the tile
2508
+ * carries the notification type; the unread signal is a purple dot beside the
2509
+ * headline plus a faint purple row tint.
2460
2510
  *
2461
2511
  * This is the visual layer only. The app owns data, realtime (SSE),
2462
2512
  * pagination, and navigation, and composes these pieces:
2463
2513
  *
2464
2514
  * <NotificationPanel>
2465
- * <NotificationPanelHeader unreadCount={3} onMarkAllRead={...} onSettings={...} />
2466
- * <NotificationFilter value={filter} onValueChange={setFilter} actions={<TypeDropdown />} />
2515
+ * <NotificationPanelHeader onMarkAllRead={...} />
2516
+ * <NotificationFilter
2517
+ * value={filter}
2518
+ * onValueChange={setFilter}
2519
+ * counts={{ all: 9, unread: 3 }}
2520
+ * actions={<TypeDropdown />}
2521
+ * />
2467
2522
  * <NotificationList>
2468
2523
  * {items.map((n) => (
2469
2524
  * <NotificationItem
2470
2525
  * key={n.id}
2471
2526
  * title={n.title}
2472
2527
  * body={n.body}
2473
- * typeLabel={n.typeLabel}
2474
2528
  * client={n.client}
2475
2529
  * time={n.time}
2476
2530
  * sender={n.sender} // omit for system rows
2477
2531
  * icon={<DocumentIcon />} // used when there's no sender
2532
+ * iconClassName="bg-success-bg text-success-fg"
2478
2533
  * unread={!n.isRead}
2479
2534
  * onClick={() => open(n)}
2480
2535
  * />
2481
2536
  * ))}
2482
2537
  * </NotificationList>
2538
+ * <NotificationPanelFooter onClick={...} />
2483
2539
  * </NotificationPanel>
2484
2540
  *
2485
2541
  * Empty / loading states are the consumer's call (use `EmptyState` and
@@ -2489,7 +2545,8 @@ type NotificationPanelProps = React.HTMLAttributes<HTMLDivElement>;
2489
2545
  declare const NotificationPanel: React$1.ForwardRefExoticComponent<NotificationPanelProps & React$1.RefAttributes<HTMLDivElement>>;
2490
2546
  interface NotificationPanelHeaderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2491
2547
  title?: React.ReactNode;
2492
- /** Unread count — drives the pill and whether "Mark all read" shows. */
2548
+ /** When > 0, shows a small unread pill next to the title. Counts also live on
2549
+ * the filter tabs, so leave unset to keep the header clean. */
2493
2550
  unreadCount?: number;
2494
2551
  onMarkAllRead?: () => void;
2495
2552
  onSettings?: () => void;
@@ -2499,6 +2556,9 @@ type NotificationFilterValue = "all" | "unread";
2499
2556
  interface NotificationFilterProps extends React.HTMLAttributes<HTMLDivElement> {
2500
2557
  value: NotificationFilterValue;
2501
2558
  onValueChange: (value: NotificationFilterValue) => void;
2559
+ /** Optional per-tab counts, e.g. `{ all: 9, unread: 3 }`. Each present count
2560
+ * renders a small badge inside its tab. Omit to hide the badges. */
2561
+ counts?: Partial<Record<NotificationFilterValue, number>>;
2502
2562
  /** Right-aligned slot, e.g. a type-filter dropdown trigger. */
2503
2563
  actions?: React.ReactNode;
2504
2564
  }
@@ -2506,18 +2566,15 @@ declare const NotificationFilter: React$1.ForwardRefExoticComponent<Notification
2506
2566
  type NotificationListProps = React.HTMLAttributes<HTMLDivElement>;
2507
2567
  declare const NotificationList: React$1.ForwardRefExoticComponent<NotificationListProps & React$1.RefAttributes<HTMLDivElement>>;
2508
2568
  interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "title"> {
2509
- /**
2510
- * Primary headline — one scannable line (feed the human sentence here, e.g.
2511
- * "Sara uploaded W-2.pdf", not a generic type label). Clamps to 2 lines,
2512
- * then ellipsis.
2513
- */
2569
+ /** Primary headline — one scannable line (e.g. "Document uploaded"). Truncates. */
2514
2570
  title: React.ReactNode;
2515
- /** Muted secondary line (a message snippet, etc.). Single line, truncates. */
2571
+ /** Muted secondary line — the detail (e.g. "W-2 batch uploaded"). Truncates. */
2516
2572
  body?: React.ReactNode;
2517
- /** Quiet caption shown on the meta line only when there is no `body`. */
2573
+ /** Quiet caption shown before the client chip on the meta line. */
2518
2574
  typeLabel?: React.ReactNode;
2575
+ /** Client / account name — rendered as an outline chip on the meta line. */
2519
2576
  client?: React.ReactNode;
2520
- /** Preformatted relative time, e.g. "5m". Top-right, baseline with `title`. */
2577
+ /** Preformatted relative time, e.g. "8m ago". Sits on the meta line. */
2521
2578
  time?: React.ReactNode;
2522
2579
  /** People-driven rows: shows the sender avatar instead of the icon tile. */
2523
2580
  sender?: {
@@ -2527,13 +2584,131 @@ interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButt
2527
2584
  /** System rows: icon rendered inside a tile. Ignored when `sender` is set. */
2528
2585
  icon?: React.ReactNode;
2529
2586
  /**
2530
- * Tint the icon tile per type, e.g. "bg-amber-bg text-amber". The consumer
2531
- * owns the type-to-colour map. Defaults to a neutral tile.
2587
+ * Tint the icon tile per type, e.g. "bg-warning-bg text-warning-fg". The
2588
+ * consumer owns the type-to-colour map. Defaults to a neutral tile.
2532
2589
  */
2533
2590
  iconClassName?: string;
2534
2591
  unread?: boolean;
2535
2592
  }
2536
2593
  declare const NotificationItem: React$1.ForwardRefExoticComponent<NotificationItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2594
+ type NotificationPanelFooterProps = React.ButtonHTMLAttributes<HTMLButtonElement>;
2595
+ declare const NotificationPanelFooter: React$1.ForwardRefExoticComponent<NotificationPanelFooterProps & React$1.RefAttributes<HTMLButtonElement>>;
2596
+
2597
+ /** Running-clock format from milliseconds → `H:MM:SS`. */
2598
+ declare function formatClock(ms: number): string;
2599
+ /** Compact duration from seconds → `Xh Ym` (e.g. `2h 10m`, `45m`, `3h`). */
2600
+ declare function formatDuration(totalSeconds: number): string;
2601
+ /** Parse human input (`3h 20m`, `1:30`, `45m`, bare `90` → minutes) → seconds, or `null`. */
2602
+ declare function parseDuration(input: string): number | null;
2603
+ /** Currency format used by the billing rows; falls back to `$0.00` for bad ISO codes. */
2604
+ declare function formatCurrency(amount: number, currency?: string): string;
2605
+ type TimeLoggerPhase = "idle" | "running" | "paused" | "stopped";
2606
+ interface UseStopwatchReturn {
2607
+ phase: TimeLoggerPhase;
2608
+ elapsedMs: number;
2609
+ isRunning: boolean;
2610
+ /** Begin running, optionally seeded with an offset (e.g. a parsed manual entry). */
2611
+ start: (fromMs?: number) => void;
2612
+ pause: () => void;
2613
+ resume: () => void;
2614
+ /** Freeze and mark complete; elapsed is preserved for saving. */
2615
+ stop: () => void;
2616
+ /** Return to idle at zero. */
2617
+ reset: () => void;
2618
+ }
2619
+ declare function useStopwatch(): UseStopwatchReturn;
2620
+ type TimeLoggerProps = React$1.HTMLAttributes<HTMLDivElement>;
2621
+ declare const TimeLogger: React$1.ForwardRefExoticComponent<TimeLoggerProps & React$1.RefAttributes<HTMLDivElement>>;
2622
+ interface TimeLoggerHeaderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
2623
+ title?: React$1.ReactNode;
2624
+ icon?: React$1.ReactNode;
2625
+ /** Minutes logged today. With `goalMinutes`, renders the `Xh / Yh` figure + seam. */
2626
+ loggedMinutes?: number;
2627
+ /** Daily goal in minutes. Omit to hide the goal figure and the progress seam. */
2628
+ goalMinutes?: number;
2629
+ }
2630
+ declare const TimeLoggerHeader: React$1.ForwardRefExoticComponent<TimeLoggerHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2631
+ interface TimeLoggerContextRowProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
2632
+ client: React$1.ReactNode;
2633
+ engagement?: React$1.ReactNode;
2634
+ /** Leading slot, e.g. an `<Avatar variant="branded" />`. */
2635
+ avatar?: React$1.ReactNode;
2636
+ onClientSelect?: () => void;
2637
+ /** Right-aligned slot — an assignee avatar + menu, or a `<TeamMemberSelect>`. */
2638
+ member?: React$1.ReactNode;
2639
+ }
2640
+ declare const TimeLoggerContextRow: React$1.ForwardRefExoticComponent<TimeLoggerContextRowProps & React$1.RefAttributes<HTMLDivElement>>;
2641
+ interface TimeLoggerTimerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
2642
+ phase: TimeLoggerPhase;
2643
+ elapsedMs: number;
2644
+ /** Manual-entry text, shown only while idle. Controlled. */
2645
+ value?: string;
2646
+ onValueChange?: (value: string) => void;
2647
+ placeholder?: string;
2648
+ onStart?: () => void;
2649
+ onPause?: () => void;
2650
+ onResume?: () => void;
2651
+ onStop?: () => void;
2652
+ }
2653
+ declare const TimeLoggerTimer: React$1.ForwardRefExoticComponent<TimeLoggerTimerProps & React$1.RefAttributes<HTMLDivElement>>;
2654
+ interface TimeLoggerFieldProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "onSelect"> {
2655
+ icon?: React$1.ReactNode;
2656
+ /** Small caption above the value. */
2657
+ label?: React$1.ReactNode;
2658
+ onSelect?: () => void;
2659
+ /** Trailing node; defaults to a chevron when interactive. Pass `null` to suppress. */
2660
+ trailing?: React$1.ReactNode;
2661
+ /** Render the value in the muted placeholder colour. */
2662
+ muted?: boolean;
2663
+ }
2664
+ declare const TimeLoggerField: React$1.ForwardRefExoticComponent<TimeLoggerFieldProps & React$1.RefAttributes<HTMLElement>>;
2665
+ interface TimeLoggerNotesProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
2666
+ value?: string;
2667
+ onValueChange?: (value: string) => void;
2668
+ icon?: React$1.ReactNode;
2669
+ }
2670
+ declare const TimeLoggerNotes: React$1.ForwardRefExoticComponent<TimeLoggerNotesProps & React$1.RefAttributes<HTMLInputElement>>;
2671
+ interface TimeLoggerTier {
2672
+ id: string;
2673
+ name: React$1.ReactNode;
2674
+ /** Hourly rate in the panel currency; shown in the tier menu's right column. */
2675
+ rate: number;
2676
+ }
2677
+ interface TimeLoggerBillableProps extends React$1.HTMLAttributes<HTMLDivElement> {
2678
+ billable: boolean;
2679
+ onBillableChange?: (billable: boolean) => void;
2680
+ /** Defaults to "Billable" / "Non-billable" derived from `billable`. */
2681
+ label?: React$1.ReactNode;
2682
+ /** Pricing tiers shown in the settings pop-view. Omit to hide the gear. */
2683
+ tiers?: TimeLoggerTier[];
2684
+ tierId?: string;
2685
+ onTierChange?: (id: string) => void;
2686
+ /** ISO currency for tier-rate formatting. Default `"USD"`. */
2687
+ currency?: string;
2688
+ /** Computed amount readout (rate × time). Pass a formatted node, or omit. */
2689
+ amount?: React$1.ReactNode;
2690
+ }
2691
+ declare const TimeLoggerBillable: React$1.ForwardRefExoticComponent<TimeLoggerBillableProps & React$1.RefAttributes<HTMLDivElement>>;
2692
+ type TimeLoggerActionsProps = React$1.HTMLAttributes<HTMLDivElement>;
2693
+ declare const TimeLoggerActions: React$1.ForwardRefExoticComponent<TimeLoggerActionsProps & React$1.RefAttributes<HTMLDivElement>>;
2694
+ interface TimeLoggerEntryListProps extends React$1.HTMLAttributes<HTMLDivElement> {
2695
+ /** Day group caption, e.g. "Fri, May 29". */
2696
+ dayLabel?: React$1.ReactNode;
2697
+ /** Right-aligned day subtotal, e.g. "2h 10m". */
2698
+ total?: React$1.ReactNode;
2699
+ }
2700
+ declare const TimeLoggerEntryList: React$1.ForwardRefExoticComponent<TimeLoggerEntryListProps & React$1.RefAttributes<HTMLDivElement>>;
2701
+ interface TimeLoggerEntryProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
2702
+ title: React$1.ReactNode;
2703
+ /** Secondary line — time range, billable amount, etc. */
2704
+ meta?: React$1.ReactNode;
2705
+ duration: React$1.ReactNode;
2706
+ onResume?: () => void;
2707
+ onDelete?: () => void;
2708
+ }
2709
+ declare const TimeLoggerEntry: React$1.ForwardRefExoticComponent<TimeLoggerEntryProps & React$1.RefAttributes<HTMLDivElement>>;
2710
+ type TimeLoggerFooterProps = React$1.HTMLAttributes<HTMLDivElement>;
2711
+ declare const TimeLoggerFooter: React$1.ForwardRefExoticComponent<TimeLoggerFooterProps & React$1.RefAttributes<HTMLDivElement>>;
2537
2712
 
2538
2713
  /**
2539
2714
  * Toolbar — horizontal row of controls used above lists, dashboards, etc.
@@ -2551,6 +2726,30 @@ interface FilterChipProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElem
2551
2726
  }
2552
2727
  declare const FilterChip: React$1.ForwardRefExoticComponent<FilterChipProps & React$1.RefAttributes<HTMLButtonElement>>;
2553
2728
 
2729
+ type BulkActionBarVariant = "sidebar-anchored" | "page-floating" | "table-inline";
2730
+ interface BulkActionBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2731
+ variant?: BulkActionBarVariant;
2732
+ selectedCount: number;
2733
+ /** Overrides the default "{N} selected" label. */
2734
+ label?: string;
2735
+ /** Action controls supplied by the consumer. */
2736
+ children: React$1.ReactNode;
2737
+ onClear: () => void;
2738
+ clearLabel?: string;
2739
+ clearDisabled?: boolean;
2740
+ /** Optional content rendered beneath the bar, useful for inline warnings. */
2741
+ footer?: React$1.ReactNode;
2742
+ }
2743
+ interface BulkActionBarActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2744
+ asChild?: boolean;
2745
+ destructive?: boolean;
2746
+ }
2747
+ declare const BulkActionBarAction: React$1.ForwardRefExoticComponent<BulkActionBarActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2748
+ declare function BulkActionBarSeparator({ className }: {
2749
+ className?: string;
2750
+ }): react_jsx_runtime.JSX.Element;
2751
+ declare function BulkActionBar({ variant, selectedCount, label, children, onClear, clearLabel, clearDisabled, footer, className, ...props }: BulkActionBarProps): react_jsx_runtime.JSX.Element | null;
2752
+
2554
2753
  /**
2555
2754
  * Intent-named action wrappers (Phase 4).
2556
2755
  *
@@ -2603,4 +2802,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
2603
2802
 
2604
2803
  declare function cn(...inputs: ClassValue[]): string;
2605
2804
 
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 };
2805
+ 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 };