@assure-one/design-system 0.13.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
@@ -2347,73 +2396,110 @@ type MessageBubbleComponent = React.ForwardRefExoticComponent<MessageBubbleProps
2347
2396
  };
2348
2397
 
2349
2398
  /**
2350
- * ThreadComposer — pinned-to-bottom message-composer shell for any
2351
- * thread surface (discussion rails, portal threads, notification replies,
2352
- * AI draft panels).
2353
- *
2354
- * Wraps an optional accessory strip (quick-reply chips, attachment list),
2355
- * an input slot (textarea / mention-input / rich editor), and a footer
2356
- * row (left-aligned settings, right-aligned send button) into ONE
2357
- * visually unified card. This is the fix for the common "chatbox feels
2358
- * split into two parts" failure mode where chips, input, and actions
2359
- * each render with their own chrome and the user sees three stacked
2360
- * elements instead of one composer.
2361
- *
2362
- * <ThreadComposer>
2363
- * <ThreadComposer.Accessory>
2364
- * <QuickReplyChips … />
2365
- * </ThreadComposer.Accessory>
2366
- * <ThreadComposer.Input>
2367
- * <MentionInput … /> // no chrome-override classes needed
2368
- * </ThreadComposer.Input>
2369
- * <ThreadComposer.Footer
2370
- * start={<Switch size="sm" … /> Show activity}
2371
- * end={<Button size="sm">Send</Button>}
2372
- * />
2373
- * </ThreadComposer>
2374
- *
2375
- * The composer owns the rounded card chrome, hairline border, and the
2376
- * subtle focus-within shadow lift. The `Input` slot bakes-in a chrome
2377
- * reset on its direct children — so a `<MentionInput>` (or any wrapper
2378
- * that paints its own `rounded-xl border bg-input-background shadow`)
2379
- * drops to borderless automatically without the consumer having to
2380
- * neutralise six classes inline.
2381
- *
2382
- * Disabled state: pass `disabled` on the root to grey-out the whole
2383
- * card, block pointer events, and set `aria-disabled` + `data-state`
2384
- * for analytics/CSS targeting. Input children that own their own
2385
- * editing state (Tiptap, contenteditable) should also read
2386
- * `aria-disabled` from the root and refuse edits themselves.
2387
- *
2388
- * Footer slot API: `start`/`end` props (rather than children) — Footer
2389
- * has a fixed two-region horizontal layout, and arbitrary children
2390
- * would invite consumers to over-pack it. Accessory and Input take
2391
- * children because their content is open-ended.
2392
- */
2393
- interface ThreadComposerProps extends React.HTMLAttributes<HTMLDivElement> {
2394
- /** When true, the composer renders disabled: 60% opacity, pointer
2395
- * events blocked, `aria-disabled` set, `data-state="disabled"`.
2396
- * Input children that own editing state should also refuse edits
2397
- * themselves (e.g. pass `editable={!disabled}` to Tiptap). */
2399
+ * MessageComposer — single-component chat input for thread surfaces.
2400
+ *
2401
+ * The polish-correct way to render a message composer in the Assure suite:
2402
+ * one card chrome, an optional quick-reply chip strip on top, an editor
2403
+ * slot in the middle, and a footer row with a built-in Send button.
2404
+ *
2405
+ * Replaces the compound `<ThreadComposer.Accessory|Input|Footer>` pattern,
2406
+ * which exposed too many slots to the consumer AND silently shipped broken
2407
+ * CSS in v0.13.0 — its arbitrary-variant chrome reset
2408
+ * (`[&>*]:!rounded-none …`) didn't compile into `dist/styles.css`, so any
2409
+ * editor child that painted its own card (e.g. a `MentionInput` with
2410
+ * `rounded-xl border bg-input-background`) sat fully visible inside the
2411
+ * ThreadComposer's identical chrome — two stacked cards, the exact
2412
+ * "fragmented chatbox" failure mode this primitive exists to prevent.
2413
+ *
2414
+ * Usage:
2415
+ *
2416
+ * <MessageComposer
2417
+ * chips={[{ id, label, body }, …]}
2418
+ * onChipPick={(c) => editor.insertHTML(c.body)}
2419
+ * onSubmit={submit}
2420
+ * submitting={submitting}
2421
+ * loading={loading}
2422
+ * startSlot={<Switch …>Show activity</Switch>}
2423
+ * >
2424
+ * <MentionInput … /> // ← or any editor: textarea, contenteditable, etc.
2425
+ * </MessageComposer>
2426
+ *
2427
+ * The editor goes as `children`. DS owns CHROME; the consumer owns the
2428
+ * editor implementation (Tiptap+mention in firm app, plain textarea in
2429
+ * client portal). Direct-child chrome — rounded card, border, bg, shadow —
2430
+ * is reset automatically by static rules on `[data-slot="message-composer-editor"] > *`
2431
+ * in the shipped CSS, so consumers don't neutralise anything class-by-class.
2432
+ *
2433
+ * Send is INTERNALISED. The composer owns the Send button (`primary` size
2434
+ * `sm`) and wires it to `onSubmit`. Consumers don't render a separate
2435
+ * Send — that's the "single component" contract this primitive fulfils.
2436
+ *
2437
+ * Disabled / loading: pass `disabled` or `loading` on the root and the
2438
+ * whole card greys to 60% opacity with pointer events blocked,
2439
+ * `aria-disabled` is set, and `data-state="disabled"` is emitted for
2440
+ * analytics / CSS targeting.
2441
+ *
2442
+ * @since 0.14.0
2443
+ */
2444
+ interface QuickReplyChip {
2445
+ id: string;
2446
+ label: string;
2447
+ body: string;
2448
+ }
2449
+ interface MessageComposerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSubmit"> {
2450
+ /** Quick-reply chips above the editor. Auto-hides when empty/undefined. */
2451
+ chips?: QuickReplyChip[];
2452
+ /** Called when a chip is picked. Receives the full chip object. */
2453
+ onChipPick?: (chip: QuickReplyChip) => void;
2454
+ /** Render skeleton chips while templates fetch — keeps the strip from
2455
+ * popping in once data arrives. */
2456
+ chipsLoading?: boolean;
2457
+ /** Send action — wired to the built-in Send button. */
2458
+ onSubmit?: () => void;
2459
+ /** Send button label. Default: `"Send"`. */
2460
+ submitLabel?: string;
2461
+ /** Send button label while `submitting`. Default: `"Sending…"`. */
2462
+ submittingLabel?: string;
2463
+ /** Show `submittingLabel` and disable the Send button. */
2464
+ submitting?: boolean;
2465
+ /** Additional gating on the Send button (e.g. empty editor). */
2466
+ submitDisabled?: boolean;
2467
+ /** Disables the whole composer (60% opacity, blocked pointer events,
2468
+ * `aria-disabled`). Use while a fetch is in flight or the surface is
2469
+ * in a transitioning state. */
2398
2470
  disabled?: boolean;
2471
+ /** Alias for `disabled` — semantic for "still fetching, not yet ready
2472
+ * to edit". The two combine: composer is disabled if EITHER is true. */
2473
+ loading?: boolean;
2474
+ /** Left-of-Send slot in the footer — toggles, format buttons, presence
2475
+ * indicators, multi-action toolbars (channel dropdown + template picker
2476
+ * + attachments + AI sparkle). The communications variant fills this
2477
+ * with its full action toolbar; the rail variant typically leaves it
2478
+ * empty. */
2479
+ startSlot?: ReactNode;
2480
+ /** Optional region rendered ABOVE the chip strip and editor. Use for
2481
+ * recipient fields (email To/CC/BCC), subject lines, AI draft banners,
2482
+ * SMS phone selectors — anything the editor body responds to but isn't
2483
+ * a chip. The communications variant uses this for the recipient stack;
2484
+ * the rail variant leaves it empty.
2485
+ *
2486
+ * Header rows typically end with a hairline divider (`border-b border-rule`)
2487
+ * to separate them from each other and from the editor. The composer
2488
+ * doesn't impose this — pass your own divider styling. */
2489
+ header?: ReactNode;
2490
+ /** Optional region rendered BETWEEN the editor and the footer. Use for
2491
+ * SMS character counters, attachment chips, inline metadata. Different
2492
+ * from `startSlot` (footer-left) because this lives ABOVE the footer
2493
+ * row — it stays visible while the Send button anchors to the footer's
2494
+ * right edge. */
2495
+ belowEditor?: ReactNode;
2496
+ /** The editor — Tiptap mention input, plain textarea, contenteditable,
2497
+ * etc. Pass `showSubmitHint={false}` on any editor that surfaces its own
2498
+ * ⌘↩ hint to avoid the affordance reading duplicated alongside the
2499
+ * composer's Send button. */
2500
+ children: ReactNode;
2399
2501
  }
2400
- declare const ThreadComposer: ThreadComposerComponent;
2401
- type ThreadComposerAccessoryProps = React.HTMLAttributes<HTMLDivElement>;
2402
- declare const ThreadComposerAccessory: React$1.ForwardRefExoticComponent<ThreadComposerAccessoryProps & React$1.RefAttributes<HTMLDivElement>>;
2403
- type ThreadComposerInputProps = React.HTMLAttributes<HTMLDivElement>;
2404
- declare const ThreadComposerInput: React$1.ForwardRefExoticComponent<ThreadComposerInputProps & React$1.RefAttributes<HTMLDivElement>>;
2405
- interface ThreadComposerFooterProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
2406
- /** Left-aligned slot — toggles, presence indicators, format buttons. */
2407
- start?: ReactNode;
2408
- /** Right-aligned slot — primary action button (Send), discard, etc. */
2409
- end?: ReactNode;
2410
- }
2411
- declare const ThreadComposerFooter: React$1.ForwardRefExoticComponent<ThreadComposerFooterProps & React$1.RefAttributes<HTMLDivElement>>;
2412
- type ThreadComposerComponent = React.ForwardRefExoticComponent<ThreadComposerProps & React.RefAttributes<HTMLDivElement>> & {
2413
- Accessory: typeof ThreadComposerAccessory;
2414
- Input: typeof ThreadComposerInput;
2415
- Footer: typeof ThreadComposerFooter;
2416
- };
2502
+ declare const MessageComposer: React$1.ForwardRefExoticComponent<MessageComposerProps & React$1.RefAttributes<HTMLDivElement>>;
2417
2503
 
2418
2504
  /**
2419
2505
  * NotificationPanel — presentational in-app notification list (the bell
@@ -2498,6 +2584,122 @@ interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButt
2498
2584
  }
2499
2585
  declare const NotificationItem: React$1.ForwardRefExoticComponent<NotificationItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2500
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
+
2501
2703
  /**
2502
2704
  * Toolbar — horizontal row of controls used above lists, dashboards, etc.
2503
2705
  * FilterChip is a simpler atom than `MultiFilterPill` — single filter,
@@ -2514,6 +2716,30 @@ interface FilterChipProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElem
2514
2716
  }
2515
2717
  declare const FilterChip: React$1.ForwardRefExoticComponent<FilterChipProps & React$1.RefAttributes<HTMLButtonElement>>;
2516
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
+
2517
2743
  /**
2518
2744
  * Intent-named action wrappers (Phase 4).
2519
2745
  *
@@ -2566,4 +2792,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
2566
2792
 
2567
2793
  declare function cn(...inputs: ClassValue[]): string;
2568
2794
 
2569
- 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, 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, 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, ThreadComposer, ThreadComposerAccessory, type ThreadComposerAccessoryProps, ThreadComposerFooter, type ThreadComposerFooterProps, ThreadComposerInput, type ThreadComposerInputProps, type ThreadComposerProps, 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 };