@assure-one/design-system 0.14.0 → 0.15.1
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 +202 -5
- package/dist/index.js +1011 -130
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
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
|
}
|
|
@@ -1150,8 +1161,16 @@ interface SearchSelectProps {
|
|
|
1150
1161
|
*/
|
|
1151
1162
|
onCreateNew?: () => void;
|
|
1152
1163
|
createNewLabel?: string;
|
|
1164
|
+
/**
|
|
1165
|
+
* How the collapsed single-value display renders the picked option's
|
|
1166
|
+
* `description`. "inline" (default) appends it as muted "· text" after the
|
|
1167
|
+
* label — the existing behaviour. "pill" renders it as a discrete rounded
|
|
1168
|
+
* badge after the label, so dense metadata (e.g. "1040 · 2025", "todo")
|
|
1169
|
+
* reads as a tag instead of running into the label. Single-mode only.
|
|
1170
|
+
*/
|
|
1171
|
+
descriptionVariant?: "inline" | "pill";
|
|
1153
1172
|
}
|
|
1154
|
-
declare function SearchSelect({ options, selected: selectedProp, onSelect: onSelectProp, onRemove: onRemoveProp, value, onValueChange, onCreate, placeholder, className, disabled, groupFilter, pinnedGroups, closeOnSelect: closeOnSelectProp, showGroupCounts, onCreateNew, createNewLabel, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
|
|
1173
|
+
declare function SearchSelect({ options, selected: selectedProp, onSelect: onSelectProp, onRemove: onRemoveProp, value, onValueChange, onCreate, placeholder, className, disabled, groupFilter, pinnedGroups, closeOnSelect: closeOnSelectProp, showGroupCounts, onCreateNew, createNewLabel, descriptionVariant, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
|
|
1155
1174
|
declare namespace SearchSelect {
|
|
1156
1175
|
var displayName: string;
|
|
1157
1176
|
}
|
|
@@ -1257,6 +1276,7 @@ declare namespace Select {
|
|
|
1257
1276
|
declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1258
1277
|
|
|
1259
1278
|
type Side = "top" | "right" | "bottom" | "left";
|
|
1279
|
+
type SheetWidth = "default" | "sm" | "md" | "lg" | "xl" | "full";
|
|
1260
1280
|
interface SheetProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Root> {
|
|
1261
1281
|
/**
|
|
1262
1282
|
* Default side for SheetContent if it doesn't specify its own.
|
|
@@ -1278,6 +1298,17 @@ declare const sheetVariants: (props?: ({
|
|
|
1278
1298
|
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
1279
1299
|
/** If false, the built-in close button is hidden. Default: true. */
|
|
1280
1300
|
showCloseButton?: boolean;
|
|
1301
|
+
/**
|
|
1302
|
+
* Width preset for left/right sheets. Omit for the historical default
|
|
1303
|
+
* (`w-3/4 max-w-sm`). Top/bottom sheets ignore this prop.
|
|
1304
|
+
*/
|
|
1305
|
+
width?: SheetWidth;
|
|
1306
|
+
/**
|
|
1307
|
+
* Custom CSS width for left/right sheets, e.g. `"520px"` or
|
|
1308
|
+
* `"min(95vw, 720px)"`. Prefer `width` presets unless a product surface
|
|
1309
|
+
* has a proven one-off contract.
|
|
1310
|
+
*/
|
|
1311
|
+
customWidth?: string;
|
|
1281
1312
|
}
|
|
1282
1313
|
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1283
1314
|
declare const SheetHeader: {
|
|
@@ -1352,6 +1383,19 @@ interface SliderProps extends React$1.ComponentPropsWithoutRef<typeof SliderPrim
|
|
|
1352
1383
|
}
|
|
1353
1384
|
declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1354
1385
|
|
|
1386
|
+
declare const spinnerVariants: (props?: ({
|
|
1387
|
+
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
1388
|
+
tone?: "current" | "success" | "warning" | "destructive" | "accent" | "muted" | null | undefined;
|
|
1389
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1390
|
+
interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
|
|
1391
|
+
/**
|
|
1392
|
+
* Accessible status text. Omit when adjacent visible copy already names the
|
|
1393
|
+
* loading state, such as inside a button labelled "Saving".
|
|
1394
|
+
*/
|
|
1395
|
+
label?: string;
|
|
1396
|
+
}
|
|
1397
|
+
declare const Spinner: React$1.ForwardRefExoticComponent<SpinnerProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1398
|
+
|
|
1355
1399
|
/**
|
|
1356
1400
|
* StarRating — display-only rating atom built on lucide `Star`. Supports
|
|
1357
1401
|
* fractional ratings (half-star fill via clip path) and a sized cva variant.
|
|
@@ -1577,6 +1621,15 @@ declare const Shell: React$1.ForwardRefExoticComponent<ShellProps & React$1.RefA
|
|
|
1577
1621
|
type MainProps = React.HTMLAttributes<HTMLElement>;
|
|
1578
1622
|
declare const Main: React$1.ForwardRefExoticComponent<MainProps & React$1.RefAttributes<HTMLElement>>;
|
|
1579
1623
|
interface ContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1624
|
+
/**
|
|
1625
|
+
* Override the top padding only. Use this when an app shell has its own
|
|
1626
|
+
* sticky header rhythm and needs a denser first row without reaching for
|
|
1627
|
+
* important-class overrides.
|
|
1628
|
+
*
|
|
1629
|
+
* Accepts any CSS length (e.g. `"12px"`, `"1rem"`). Omit to inherit
|
|
1630
|
+
* the symmetric default.
|
|
1631
|
+
*/
|
|
1632
|
+
padTop?: string;
|
|
1580
1633
|
/**
|
|
1581
1634
|
* Override the bottom padding only — the rest of the content area keeps
|
|
1582
1635
|
* `--content-pad` so the header alignment stays intact. Use this on
|
|
@@ -1972,7 +2025,7 @@ declare function DataItem({ label, value, span, className }: DataItemProps): rea
|
|
|
1972
2025
|
* explicitly for inverted metrics where "up" is bad (e.g. past-due ↑).
|
|
1973
2026
|
* - `trend` (number[]) draws a filled sparkline across the card bottom,
|
|
1974
2027
|
* tinted by the delta sentiment (or tone when there's no delta).
|
|
1975
|
-
* - `hint` is an optional `text-fg-
|
|
2028
|
+
* - `hint` is an optional `text-fg-3` line ("+18 this month", "6 invoices").
|
|
1976
2029
|
* - `action` is an optional trailing slot for a button or link.
|
|
1977
2030
|
*
|
|
1978
2031
|
* Renders as a `<Card>`. Wrap in a `<Link>` from the consumer side if
|
|
@@ -2015,7 +2068,11 @@ interface KpiCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title
|
|
|
2015
2068
|
/** When `true`, the value text picks up the tone color. Default `false` (value stays fg). */
|
|
2016
2069
|
toneValue?: boolean;
|
|
2017
2070
|
}
|
|
2071
|
+
interface SelectableKpiCardProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "title" | "value">, Pick<KpiCardProps, "label" | "value" | "icon" | "tone" | "delta" | "trend" | "hint" | "action" | "toneValue"> {
|
|
2072
|
+
selected?: boolean;
|
|
2073
|
+
}
|
|
2018
2074
|
declare const KpiCard: React$1.ForwardRefExoticComponent<KpiCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2075
|
+
declare const SelectableKpiCard: React$1.ForwardRefExoticComponent<SelectableKpiCardProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2019
2076
|
|
|
2020
2077
|
interface DataTableProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2021
2078
|
/** When true, renders the table card with a flat top edge so it
|
|
@@ -2535,6 +2592,122 @@ interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButt
|
|
|
2535
2592
|
}
|
|
2536
2593
|
declare const NotificationItem: React$1.ForwardRefExoticComponent<NotificationItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2537
2594
|
|
|
2595
|
+
/** Running-clock format from milliseconds → `H:MM:SS`. */
|
|
2596
|
+
declare function formatClock(ms: number): string;
|
|
2597
|
+
/** Compact duration from seconds → `Xh Ym` (e.g. `2h 10m`, `45m`, `3h`). */
|
|
2598
|
+
declare function formatDuration(totalSeconds: number): string;
|
|
2599
|
+
/** Parse human input (`3h 20m`, `1:30`, `45m`, bare `90` → minutes) → seconds, or `null`. */
|
|
2600
|
+
declare function parseDuration(input: string): number | null;
|
|
2601
|
+
/** Currency format used by the billing rows; falls back to `$0.00` for bad ISO codes. */
|
|
2602
|
+
declare function formatCurrency(amount: number, currency?: string): string;
|
|
2603
|
+
type TimeLoggerPhase = "idle" | "running" | "paused" | "stopped";
|
|
2604
|
+
interface UseStopwatchReturn {
|
|
2605
|
+
phase: TimeLoggerPhase;
|
|
2606
|
+
elapsedMs: number;
|
|
2607
|
+
isRunning: boolean;
|
|
2608
|
+
/** Begin running, optionally seeded with an offset (e.g. a parsed manual entry). */
|
|
2609
|
+
start: (fromMs?: number) => void;
|
|
2610
|
+
pause: () => void;
|
|
2611
|
+
resume: () => void;
|
|
2612
|
+
/** Freeze and mark complete; elapsed is preserved for saving. */
|
|
2613
|
+
stop: () => void;
|
|
2614
|
+
/** Return to idle at zero. */
|
|
2615
|
+
reset: () => void;
|
|
2616
|
+
}
|
|
2617
|
+
declare function useStopwatch(): UseStopwatchReturn;
|
|
2618
|
+
type TimeLoggerProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
2619
|
+
declare const TimeLogger: React$1.ForwardRefExoticComponent<TimeLoggerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2620
|
+
interface TimeLoggerHeaderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2621
|
+
title?: React$1.ReactNode;
|
|
2622
|
+
icon?: React$1.ReactNode;
|
|
2623
|
+
/** Minutes logged today. With `goalMinutes`, renders the `Xh / Yh` figure + seam. */
|
|
2624
|
+
loggedMinutes?: number;
|
|
2625
|
+
/** Daily goal in minutes. Omit to hide the goal figure and the progress seam. */
|
|
2626
|
+
goalMinutes?: number;
|
|
2627
|
+
}
|
|
2628
|
+
declare const TimeLoggerHeader: React$1.ForwardRefExoticComponent<TimeLoggerHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2629
|
+
interface TimeLoggerContextRowProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2630
|
+
client: React$1.ReactNode;
|
|
2631
|
+
engagement?: React$1.ReactNode;
|
|
2632
|
+
/** Leading slot, e.g. an `<Avatar variant="branded" />`. */
|
|
2633
|
+
avatar?: React$1.ReactNode;
|
|
2634
|
+
onClientSelect?: () => void;
|
|
2635
|
+
/** Right-aligned slot — an assignee avatar + menu, or a `<TeamMemberSelect>`. */
|
|
2636
|
+
member?: React$1.ReactNode;
|
|
2637
|
+
}
|
|
2638
|
+
declare const TimeLoggerContextRow: React$1.ForwardRefExoticComponent<TimeLoggerContextRowProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2639
|
+
interface TimeLoggerTimerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
2640
|
+
phase: TimeLoggerPhase;
|
|
2641
|
+
elapsedMs: number;
|
|
2642
|
+
/** Manual-entry text, shown only while idle. Controlled. */
|
|
2643
|
+
value?: string;
|
|
2644
|
+
onValueChange?: (value: string) => void;
|
|
2645
|
+
placeholder?: string;
|
|
2646
|
+
onStart?: () => void;
|
|
2647
|
+
onPause?: () => void;
|
|
2648
|
+
onResume?: () => void;
|
|
2649
|
+
onStop?: () => void;
|
|
2650
|
+
}
|
|
2651
|
+
declare const TimeLoggerTimer: React$1.ForwardRefExoticComponent<TimeLoggerTimerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2652
|
+
interface TimeLoggerFieldProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "onSelect"> {
|
|
2653
|
+
icon?: React$1.ReactNode;
|
|
2654
|
+
/** Small caption above the value. */
|
|
2655
|
+
label?: React$1.ReactNode;
|
|
2656
|
+
onSelect?: () => void;
|
|
2657
|
+
/** Trailing node; defaults to a chevron when interactive. Pass `null` to suppress. */
|
|
2658
|
+
trailing?: React$1.ReactNode;
|
|
2659
|
+
/** Render the value in the muted placeholder colour. */
|
|
2660
|
+
muted?: boolean;
|
|
2661
|
+
}
|
|
2662
|
+
declare const TimeLoggerField: React$1.ForwardRefExoticComponent<TimeLoggerFieldProps & React$1.RefAttributes<HTMLElement>>;
|
|
2663
|
+
interface TimeLoggerNotesProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
|
|
2664
|
+
value?: string;
|
|
2665
|
+
onValueChange?: (value: string) => void;
|
|
2666
|
+
icon?: React$1.ReactNode;
|
|
2667
|
+
}
|
|
2668
|
+
declare const TimeLoggerNotes: React$1.ForwardRefExoticComponent<TimeLoggerNotesProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2669
|
+
interface TimeLoggerTier {
|
|
2670
|
+
id: string;
|
|
2671
|
+
name: React$1.ReactNode;
|
|
2672
|
+
/** Hourly rate in the panel currency; shown in the tier menu's right column. */
|
|
2673
|
+
rate: number;
|
|
2674
|
+
}
|
|
2675
|
+
interface TimeLoggerBillableProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2676
|
+
billable: boolean;
|
|
2677
|
+
onBillableChange?: (billable: boolean) => void;
|
|
2678
|
+
/** Defaults to "Billable" / "Non-billable" derived from `billable`. */
|
|
2679
|
+
label?: React$1.ReactNode;
|
|
2680
|
+
/** Pricing tiers shown in the settings pop-view. Omit to hide the gear. */
|
|
2681
|
+
tiers?: TimeLoggerTier[];
|
|
2682
|
+
tierId?: string;
|
|
2683
|
+
onTierChange?: (id: string) => void;
|
|
2684
|
+
/** ISO currency for tier-rate formatting. Default `"USD"`. */
|
|
2685
|
+
currency?: string;
|
|
2686
|
+
/** Computed amount readout (rate × time). Pass a formatted node, or omit. */
|
|
2687
|
+
amount?: React$1.ReactNode;
|
|
2688
|
+
}
|
|
2689
|
+
declare const TimeLoggerBillable: React$1.ForwardRefExoticComponent<TimeLoggerBillableProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2690
|
+
type TimeLoggerActionsProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
2691
|
+
declare const TimeLoggerActions: React$1.ForwardRefExoticComponent<TimeLoggerActionsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2692
|
+
interface TimeLoggerEntryListProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2693
|
+
/** Day group caption, e.g. "Fri, May 29". */
|
|
2694
|
+
dayLabel?: React$1.ReactNode;
|
|
2695
|
+
/** Right-aligned day subtotal, e.g. "2h 10m". */
|
|
2696
|
+
total?: React$1.ReactNode;
|
|
2697
|
+
}
|
|
2698
|
+
declare const TimeLoggerEntryList: React$1.ForwardRefExoticComponent<TimeLoggerEntryListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2699
|
+
interface TimeLoggerEntryProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2700
|
+
title: React$1.ReactNode;
|
|
2701
|
+
/** Secondary line — time range, billable amount, etc. */
|
|
2702
|
+
meta?: React$1.ReactNode;
|
|
2703
|
+
duration: React$1.ReactNode;
|
|
2704
|
+
onResume?: () => void;
|
|
2705
|
+
onDelete?: () => void;
|
|
2706
|
+
}
|
|
2707
|
+
declare const TimeLoggerEntry: React$1.ForwardRefExoticComponent<TimeLoggerEntryProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2708
|
+
type TimeLoggerFooterProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
2709
|
+
declare const TimeLoggerFooter: React$1.ForwardRefExoticComponent<TimeLoggerFooterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2710
|
+
|
|
2538
2711
|
/**
|
|
2539
2712
|
* Toolbar — horizontal row of controls used above lists, dashboards, etc.
|
|
2540
2713
|
* FilterChip is a simpler atom than `MultiFilterPill` — single filter,
|
|
@@ -2551,6 +2724,30 @@ interface FilterChipProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElem
|
|
|
2551
2724
|
}
|
|
2552
2725
|
declare const FilterChip: React$1.ForwardRefExoticComponent<FilterChipProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2553
2726
|
|
|
2727
|
+
type BulkActionBarVariant = "sidebar-anchored" | "page-floating" | "table-inline";
|
|
2728
|
+
interface BulkActionBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2729
|
+
variant?: BulkActionBarVariant;
|
|
2730
|
+
selectedCount: number;
|
|
2731
|
+
/** Overrides the default "{N} selected" label. */
|
|
2732
|
+
label?: string;
|
|
2733
|
+
/** Action controls supplied by the consumer. */
|
|
2734
|
+
children: React$1.ReactNode;
|
|
2735
|
+
onClear: () => void;
|
|
2736
|
+
clearLabel?: string;
|
|
2737
|
+
clearDisabled?: boolean;
|
|
2738
|
+
/** Optional content rendered beneath the bar, useful for inline warnings. */
|
|
2739
|
+
footer?: React$1.ReactNode;
|
|
2740
|
+
}
|
|
2741
|
+
interface BulkActionBarActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2742
|
+
asChild?: boolean;
|
|
2743
|
+
destructive?: boolean;
|
|
2744
|
+
}
|
|
2745
|
+
declare const BulkActionBarAction: React$1.ForwardRefExoticComponent<BulkActionBarActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2746
|
+
declare function BulkActionBarSeparator({ className }: {
|
|
2747
|
+
className?: string;
|
|
2748
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2749
|
+
declare function BulkActionBar({ variant, selectedCount, label, children, onClear, clearLabel, clearDisabled, footer, className, ...props }: BulkActionBarProps): react_jsx_runtime.JSX.Element | null;
|
|
2750
|
+
|
|
2554
2751
|
/**
|
|
2555
2752
|
* Intent-named action wrappers (Phase 4).
|
|
2556
2753
|
*
|
|
@@ -2603,4 +2800,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
|
|
|
2603
2800
|
|
|
2604
2801
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2605
2802
|
|
|
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 };
|
|
2803
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, type BrandIconProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentIcon, DollarSignIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, type QuickReplyChip, RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, StarIcon, StarRating, type StarRatingProps, Stat, StatusIcon, type StatusIconProps, type StatusState, type Step, Stepper, type StepperProps, StopIcon, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, filterChipVariants, formatClock, formatCurrency, formatDuration, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|