@aircall/ds 0.9.1 → 0.11.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
@@ -3,24 +3,25 @@ import { ClassValue } from "clsx";
3
3
  import * as react_jsx_runtime0 from "react/jsx-runtime";
4
4
  import * as React$2 from "react";
5
5
  import React$1 from "react";
6
- import { AlertDialog as AlertDialog$1 } from "@base-ui/react/alert-dialog";
6
+ import { Button as Button$1 } from "@base-ui/react/button";
7
7
  import { VariantProps } from "class-variance-authority";
8
+ import { AlertDialog as AlertDialog$1 } from "@base-ui/react/alert-dialog";
8
9
  import { Avatar as Avatar$1 } from "@base-ui/react/avatar";
9
10
  import { useRender } from "@base-ui/react/use-render";
10
11
  import { Separator as Separator$1 } from "@base-ui/react/separator";
11
12
  import { DayButton, DayPicker, Locale } from "react-day-picker";
12
13
  import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
13
14
  import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
15
+ import { ScrollArea as ScrollAreaPrimitive } from "@base-ui/react/scroll-area";
14
16
  import { Collapsible as Collapsible$1 } from "@base-ui/react/collapsible";
15
- import * as _base_ui_react4 from "@base-ui/react";
17
+ import * as _base_ui_react0 from "@base-ui/react";
16
18
  import { Combobox as Combobox$1 } from "@base-ui/react";
17
19
  import { Command as Command$1 } from "cmdk";
18
20
  import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
19
- import { ColumnDef, TableOptions } from "@tanstack/react-table";
21
+ import { ColumnDef, OnChangeFn, Row, RowSelectionState, SortingState } from "@tanstack/react-table";
20
22
  import { Drawer as DrawerPrimitive } from "@base-ui/react/drawer";
21
23
  import { Radio } from "@base-ui/react/radio";
22
24
  import { RadioGroup as RadioGroup$1 } from "@base-ui/react/radio-group";
23
- import { ScrollArea as ScrollAreaPrimitive } from "@base-ui/react/scroll-area";
24
25
  import { Menu } from "@base-ui/react/menu";
25
26
  import { Categories, SuggestionMode } from "emoji-picker-react";
26
27
  import { Popover as Popover$1 } from "@base-ui/react/popover";
@@ -35,7 +36,7 @@ import { Switch as Switch$1 } from "@base-ui/react/switch";
35
36
  import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
36
37
  import { Toggle as Toggle$1 } from "@base-ui/react/toggle";
37
38
  import { ToggleGroup as ToggleGroup$1 } from "@base-ui/react/toggle-group";
38
- import * as class_variance_authority_types6 from "class-variance-authority/types";
39
+ import * as class_variance_authority_types4 from "class-variance-authority/types";
39
40
  import { CountryCode } from "@aircall/numbers";
40
41
 
41
42
  //#region src/components/accordion.d.ts
@@ -60,15 +61,57 @@ declare function AccordionContent({
60
61
  //#endregion
61
62
  //#region src/components/button.d.ts
62
63
  declare const buttonVariants: (props?: ({
63
- variant?: "default" | "link" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
64
- size?: "sm" | "default" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
65
- block?: boolean | null | undefined;
66
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
67
- declare const Button: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.ButtonProps & VariantProps<(props?: ({
68
- variant?: "default" | "link" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
69
- size?: "sm" | "default" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
64
+ variant?: "link" | "default" | "outline" | "secondary" | "ghost" | "destructive" | null | undefined;
65
+ size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
70
66
  block?: boolean | null | undefined;
71
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
67
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
68
+ declare const Button: React$2.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
69
+ interface ButtonProps extends Button$1.Props, VariantProps<typeof buttonVariants> {
70
+ children?: React$2.ReactNode;
71
+ }
72
+ declare namespace Button {
73
+ type Props = ButtonProps;
74
+ }
75
+ //#endregion
76
+ //#region src/components/action-bar.d.ts
77
+ /** Fixed height of the ActionBar (px). Single source of truth — the bar uses it
78
+ * for its own height and consumers (e.g. DataTable) reserve space with it. */
79
+ declare const ActionBarHeight = 48;
80
+ interface ActionBarContextValue {
81
+ /** Number of selected items. */
82
+ count: number;
83
+ /** Clears the current selection. */
84
+ onClear?: () => void;
85
+ }
86
+ /**
87
+ * Lets a parent (e.g. `DataTable`) supply the selected `count` and an `onClear`
88
+ * handler so an `<ActionBar>` rendered inside it doesn't have to be passed them.
89
+ * Explicit `count`/`onClear` props on `ActionBar` always take precedence, so the
90
+ * component still works standalone. Mirrors React Spectrum's `ActionBarContext`.
91
+ */
92
+ declare const ActionBarContext: React$2.Context<ActionBarContextValue | null>;
93
+ /**
94
+ * A button for use inside an `ActionBar`. Always `ghost`; pick `default` (text)
95
+ * or `icon` (icon-only) — other Button variants/sizes are intentionally not
96
+ * exposed so action bars stay visually consistent.
97
+ */
98
+ interface ActionBarButtonProps extends Omit<React$2.ComponentProps<typeof Button>, 'variant' | 'size'> {
99
+ size?: 'default' | 'icon';
100
+ }
101
+ declare const ActionBarButton: React$2.ForwardRefExoticComponent<Omit<ActionBarButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
102
+ interface ActionBarProps extends Omit<React$2.HTMLAttributes<HTMLDivElement>, 'children'> {
103
+ /** Number of items currently selected. Falls back to `ActionBarContext` when omitted. */
104
+ count?: number;
105
+ /** Called when the clear button is clicked. Falls back to context; the button hides when neither is set. */
106
+ onClear?: () => void;
107
+ /** Action buttons rendered on the right of the bar — use `ActionBarButton`. */
108
+ children?: React$2.ReactNode;
109
+ /** Custom label renderer. Defaults to `${count} items selected.`. */
110
+ label?: (count: number) => React$2.ReactNode;
111
+ /** Accessible label for the clear button. */
112
+ clearLabel?: string;
113
+ }
114
+ declare const ActionBar: React$2.ForwardRefExoticComponent<ActionBarProps & React$2.RefAttributes<HTMLDivElement>>;
72
115
  //#endregion
73
116
  //#region src/components/alert-dialog.d.ts
74
117
  declare function AlertDialog({
@@ -125,7 +168,7 @@ declare function AlertDialogCancel({
125
168
  //#region src/components/alert.d.ts
126
169
  declare const alertVariants: (props?: ({
127
170
  variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
128
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
171
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
129
172
  type AlertProps = React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>;
130
173
  declare function Alert({
131
174
  className,
@@ -146,7 +189,7 @@ declare function AlertAction({
146
189
  }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
147
190
  //#endregion
148
191
  //#region src/components/avatar.d.ts
149
- declare const Avatar: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.AvatarRootProps & {
192
+ declare const Avatar: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AvatarRootProps & {
150
193
  size?: "xs" | "sm" | "default" | "lg" | "xl";
151
194
  }, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
152
195
  declare function AvatarImage({
@@ -160,55 +203,76 @@ declare function AvatarFallback({
160
203
  declare function AvatarBadge({
161
204
  className,
162
205
  ...props
163
- }: React$2.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
206
+ }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
164
207
  declare function AvatarGroup({
165
208
  className,
166
209
  ...props
167
- }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
210
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
168
211
  declare function AvatarGroupCount({
169
212
  className,
170
213
  ...props
171
- }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
214
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
172
215
  //#endregion
173
216
  //#region src/components/counter-badge.d.ts
174
217
  declare const counterBadgeVariants: (props?: ({
175
218
  variant?: "default" | "secondary" | "ghost" | null | undefined;
176
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
219
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
177
220
  declare const CounterBadge: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
178
221
  ref?: ((instance: HTMLSpanElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLSpanElement> | null | undefined;
179
222
  } & {
180
- render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
223
+ render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
181
224
  } & VariantProps<(props?: ({
182
225
  variant?: "default" | "secondary" | "ghost" | null | undefined;
183
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
226
+ } & class_variance_authority_types4.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
184
227
  //#endregion
185
228
  //#region src/components/badge.d.ts
186
229
  declare const badgeVariants: (props?: ({
187
- variant?: "default" | "secondary" | "outline" | null | undefined;
188
- size?: "sm" | "lg" | null | undefined;
189
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
190
- declare const Badge: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
191
- ref?: ((instance: HTMLSpanElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLSpanElement> | null | undefined;
192
- } & {
193
- render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
194
- } & VariantProps<(props?: ({
195
- variant?: "default" | "secondary" | "outline" | null | undefined;
196
- size?: "sm" | "lg" | null | undefined;
197
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
198
- declare function BadgeGroup({
199
- className,
200
- ...props
201
- }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
202
- declare function BadgeGroupCount({
203
- className,
204
- ...props
205
- }: Omit<React$2.ComponentProps<typeof CounterBadge>, 'variant'>): react_jsx_runtime0.JSX.Element;
230
+ size?: "default" | "lg" | null | undefined;
231
+ color?: "charcoal" | "red" | "green" | "blue" | "purple" | "yellow" | "pink" | null | undefined;
232
+ tone?: "dark" | "medium-dark" | "medium-light" | "light" | null | undefined;
233
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
234
+ type BadgeVariants = VariantProps<typeof badgeVariants>;
235
+ type BadgeColor = NonNullable<BadgeVariants['color']>;
236
+ type BadgeTone = NonNullable<BadgeVariants['tone']>;
237
+ /**
238
+ * A standalone label badge. Read-only by default; render it as an anchor or
239
+ * button via `render` to make it hoverable / navigable. Never removable — for a
240
+ * removable token inside an input/combobox, use `Chip`.
241
+ *
242
+ * Pick a constrained DS `color` + `tone` (no freeform hex) — defaults to
243
+ * `charcoal` / `light` — or pass a stored hex via `legacyColor`. Icons are
244
+ * composed as children (auto-sized per `size`).
245
+ */
246
+ declare const Badge: React$2.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
247
+ interface BadgeProps extends Omit<useRender.ComponentProps<'span'>, 'color'>, VariantProps<typeof badgeVariants> {
248
+ /**
249
+ * A legacy hard-coded tag hex (e.g. `#0761B5`) from the old palette. When
250
+ * provided it is resolved to the matching `color` + `tone` and overrides
251
+ * them — render existing tags without migrating their stored colors.
252
+ * Unknown values fall back to `charcoal` / `dark`.
253
+ */
254
+ legacyColor?: string;
255
+ }
256
+ declare namespace Badge {
257
+ type Props = BadgeProps;
258
+ }
259
+ declare const BadgeGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
260
+ declare namespace BadgeGroup {
261
+ type Props = React$2.ComponentProps<'div'>;
262
+ }
263
+ declare const badgeGroupCountVariants: (props?: ({
264
+ size?: "default" | "lg" | null | undefined;
265
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
266
+ declare const BadgeGroupCount: React$2.ForwardRefExoticComponent<Omit<BadgeGroupCount.Props, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
267
+ declare namespace BadgeGroupCount {
268
+ type Props = Omit<React$2.ComponentProps<typeof CounterBadge>, 'variant'> & VariantProps<typeof badgeGroupCountVariants>;
269
+ }
206
270
  //#endregion
207
271
  //#region src/components/banner.d.ts
208
272
  declare const bannerVariants: (props?: ({
209
273
  variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
210
- borderDirection?: "top" | "bottom" | null | undefined;
211
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
274
+ borderDirection?: "bottom" | "top" | null | undefined;
275
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
212
276
  type BannerProps = React$2.ComponentProps<'div'> & VariantProps<typeof bannerVariants>;
213
277
  declare function Banner({
214
278
  className,
@@ -289,7 +353,7 @@ declare function Separator({
289
353
  //#region src/components/button-group.d.ts
290
354
  declare const buttonGroupVariants: (props?: ({
291
355
  orientation?: "horizontal" | "vertical" | null | undefined;
292
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
356
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
293
357
  declare function ButtonGroup({
294
358
  className,
295
359
  orientation,
@@ -333,8 +397,11 @@ declare function CalendarDayButton({
333
397
  //#region src/components/card.d.ts
334
398
  declare function Card({
335
399
  className,
400
+ size,
336
401
  ...props
337
- }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
402
+ }: React$2.ComponentProps<'div'> & {
403
+ size?: 'default' | 'sm';
404
+ }): react_jsx_runtime0.JSX.Element;
338
405
  declare function CardHeader({
339
406
  className,
340
407
  ...props
@@ -402,7 +469,77 @@ declare function CarouselNext({
402
469
  }: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
403
470
  //#endregion
404
471
  //#region src/components/checkbox.d.ts
405
- declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.CheckboxRootProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
472
+ declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.CheckboxRootProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
473
+ //#endregion
474
+ //#region src/components/chip.d.ts
475
+ /**
476
+ * The trailing remove affordance for a `Chip` — a ghost icon button that
477
+ * inherits the chip's text color and brightens on hover. Exported so the
478
+ * combobox can reuse the exact treatment for its Base-UI-bound chips.
479
+ */
480
+ declare const ChipRemove: React$2.ForwardRefExoticComponent<Omit<ChipRemoveProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
481
+ interface ChipRemoveProps extends Button.Props {
482
+ children?: React$2.ReactNode;
483
+ }
484
+ declare namespace ChipRemove {
485
+ type Props = ChipRemoveProps;
486
+ }
487
+ /**
488
+ * A selected-value token for inputs / comboboxes. Composes `Badge` at the
489
+ * fixed 24px size with a forced trailing remove (X) button. The chip body is
490
+ * non-interactive — only the X reacts to hover. For combobox-bound chips that
491
+ * must drive Base UI's selection state, see `ComboboxChip`.
492
+ */
493
+ declare const Chip: React$2.ForwardRefExoticComponent<Omit<ChipProps, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
494
+ interface ChipProps extends Omit<Badge.Props, 'size' | 'render'> {
495
+ color?: BadgeColor;
496
+ tone?: BadgeTone;
497
+ /** AI glow — a colored border + softly pulsing drop-shadow. */
498
+ glow?: boolean;
499
+ }
500
+ declare namespace Chip {
501
+ type Props = ChipProps;
502
+ }
503
+ //#endregion
504
+ //#region src/components/filter.d.ts
505
+ /**
506
+ * A removable active-filter token for a filter bar / toolbar — a dark charcoal
507
+ * `Chip` with a trailing remove (X). Shows each applied filter above a
508
+ * searchable data view (table / list); clicking the X clears that filter
509
+ * (`onRemove`). Long values truncate with an ellipsis, capped at the Badge
510
+ * `max-w-36` (144px). Compose inside a `FilterGroup` with a trailing
511
+ * `FilterClearAllButton` (see the FilterBar story).
512
+ */
513
+ declare const Filter: React$2.ForwardRefExoticComponent<FilterProps & React$2.RefAttributes<HTMLSpanElement>>;
514
+ interface FilterProps extends Pick<Chip.Props, 'className' | 'children'> {
515
+ /** Called when the trailing X is activated to clear this filter. */
516
+ onRemove: () => void;
517
+ /** Accessible label for the remove button. Defaults to "Remove filter". */
518
+ removeLabel?: string;
519
+ }
520
+ declare namespace Filter {
521
+ type Props = FilterProps;
522
+ }
523
+ /**
524
+ * Layout container for a row of `Filter` chips (and a trailing
525
+ * `FilterClearAllButton`). Always a single, non-wrapping row inside a
526
+ * horizontal `ScrollArea` (inset scroll + edge fade) — it does not wrap onto
527
+ * multiple lines.
528
+ */
529
+ declare const FilterGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
530
+ declare namespace FilterGroup {
531
+ type Props = React$2.ComponentProps<'div'>;
532
+ }
533
+ /**
534
+ * The trailing "Clear all filters" action for a `FilterGroup` — a ghost,
535
+ * small `Button` with the styling pinned. Provide `onClick`; the label
536
+ * defaults to "Clear all filters" (pass translated `children` to override).
537
+ */
538
+ declare const FilterClearAllButton: React$2.ForwardRefExoticComponent<Omit<FilterClearAllButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
539
+ interface FilterClearAllButtonProps extends Omit<Button.Props, 'variant' | 'size'> {}
540
+ declare namespace FilterClearAllButton {
541
+ type Props = FilterClearAllButtonProps;
542
+ }
406
543
  //#endregion
407
544
  //#region src/components/collapsible.d.ts
408
545
  declare function Collapsible({
@@ -417,64 +554,70 @@ declare function CollapsibleContent({
417
554
  //#endregion
418
555
  //#region src/components/combobox.d.ts
419
556
  declare const Combobox: typeof Combobox$1.Root;
420
- declare function ComboboxValue({
421
- ...props
422
- }: Combobox$1.Value.Props): react_jsx_runtime0.JSX.Element;
423
- declare const ComboboxTrigger: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.AutocompleteTriggerProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
424
- declare const ComboboxInput: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.AutocompleteInputProps, "ref"> & {
557
+ declare function ComboboxValue(componentProps: ComboboxValue.Props): react_jsx_runtime0.JSX.Element;
558
+ declare namespace ComboboxValue {
559
+ type Props = Combobox$1.Value.Props;
560
+ }
561
+ declare const ComboboxTrigger: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteTriggerProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
562
+ declare namespace ComboboxTrigger {
563
+ type Props = Combobox$1.Trigger.Props;
564
+ }
565
+ declare namespace ComboboxClear {
566
+ type Props = Combobox$1.Clear.Props;
567
+ }
568
+ declare const ComboboxInput: React$2.ForwardRefExoticComponent<ComboboxInputProps & React$2.RefAttributes<HTMLDivElement>>;
569
+ interface ComboboxInputProps extends Omit<Combobox$1.Input.Props, 'ref'> {
425
570
  showTrigger?: boolean;
426
571
  showClear?: boolean;
427
- } & React$2.RefAttributes<HTMLDivElement>>;
428
- declare function ComboboxContent({
429
- className,
430
- side,
431
- sideOffset,
432
- align,
433
- alignOffset,
434
- anchor,
435
- ...props
436
- }: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime0.JSX.Element;
437
- declare function ComboboxList({
438
- className,
439
- ...props
440
- }: Combobox$1.List.Props): react_jsx_runtime0.JSX.Element;
441
- declare function ComboboxItem({
442
- className,
443
- children,
444
- ...props
445
- }: Combobox$1.Item.Props): react_jsx_runtime0.JSX.Element;
446
- declare function ComboboxGroup({
447
- className,
448
- ...props
449
- }: Combobox$1.Group.Props): react_jsx_runtime0.JSX.Element;
450
- declare function ComboboxLabel({
451
- className,
452
- ...props
453
- }: Combobox$1.GroupLabel.Props): react_jsx_runtime0.JSX.Element;
454
- declare function ComboboxCollection({
455
- ...props
456
- }: Combobox$1.Collection.Props): react_jsx_runtime0.JSX.Element;
457
- declare function ComboboxEmpty({
458
- className,
459
- ...props
460
- }: Combobox$1.Empty.Props): react_jsx_runtime0.JSX.Element;
461
- declare function ComboboxSeparator({
462
- className,
463
- ...props
464
- }: Combobox$1.Separator.Props): react_jsx_runtime0.JSX.Element;
465
- declare const ComboboxChips: React$2.ForwardRefExoticComponent<Omit<Omit<Omit<_base_ui_react4.ComboboxChipsProps, "ref"> & React$2.RefAttributes<HTMLDivElement>, "ref"> & _base_ui_react4.ComboboxChipsProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
466
- declare function ComboboxChip({
467
- className,
468
- children,
469
- showRemove,
470
- ...props
471
- }: Combobox$1.Chip.Props & {
572
+ }
573
+ declare namespace ComboboxInput {
574
+ type Props = ComboboxInputProps;
575
+ }
576
+ declare const ComboboxContent: React$2.ForwardRefExoticComponent<Omit<ComboboxContentProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
577
+ interface ComboboxContentProps extends Combobox$1.Popup.Props, Pick<Combobox$1.Positioner.Props, 'side' | 'align' | 'sideOffset' | 'alignOffset' | 'anchor'> {}
578
+ declare namespace ComboboxContent {
579
+ type Props = ComboboxContentProps;
580
+ }
581
+ declare const ComboboxList: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteListProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
582
+ declare namespace ComboboxList {
583
+ type Props = Combobox$1.List.Props;
584
+ }
585
+ declare const ComboboxItem: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteItemProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
586
+ declare namespace ComboboxItem {
587
+ type Props = Combobox$1.Item.Props;
588
+ }
589
+ declare const ComboboxGroup: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
590
+ declare namespace ComboboxGroup {
591
+ type Props = Combobox$1.Group.Props;
592
+ }
593
+ declare const ComboboxLabel: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupLabelProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
594
+ declare namespace ComboboxLabel {
595
+ type Props = Combobox$1.GroupLabel.Props;
596
+ }
597
+ declare function ComboboxCollection(componentProps: ComboboxCollection.Props): react_jsx_runtime0.JSX.Element;
598
+ declare namespace ComboboxCollection {
599
+ type Props = Combobox$1.Collection.Props;
600
+ }
601
+ declare const ComboboxEmpty: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteEmptyProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
602
+ declare namespace ComboboxEmpty {
603
+ type Props = Combobox$1.Empty.Props;
604
+ }
605
+ declare const ComboboxSeparator: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.SeparatorProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
606
+ declare namespace ComboboxSeparator {
607
+ type Props = Combobox$1.Separator.Props;
608
+ }
609
+ declare const ComboboxChips: React$2.ForwardRefExoticComponent<Omit<ComboboxChips.Props, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
610
+ declare namespace ComboboxChips {
611
+ type Props = React$2.ComponentPropsWithoutRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props;
612
+ }
613
+ declare const ComboboxChip: React$2.ForwardRefExoticComponent<Omit<ComboboxChipProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
614
+ interface ComboboxChipProps extends Combobox$1.Chip.Props, Pick<Chip.Props, 'color' | 'tone' | 'legacyColor'> {
472
615
  showRemove?: boolean;
473
- }): react_jsx_runtime0.JSX.Element;
474
- declare function ComboboxChipsInput({
475
- className,
476
- ...props
477
- }: Combobox$1.Input.Props): react_jsx_runtime0.JSX.Element;
616
+ }
617
+ declare namespace ComboboxChip {
618
+ type Props = ComboboxChipProps;
619
+ }
620
+ declare const ComboboxChipsInput: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteInputProps, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
478
621
  declare function useComboboxAnchor(): React$2.MutableRefObject<HTMLDivElement | null>;
479
622
  //#endregion
480
623
  //#region src/components/dialog.d.ts
@@ -575,22 +718,95 @@ interface CountryFlagProps {
575
718
  declare const CountryFlag: React$1.FC<CountryFlagProps>;
576
719
  //#endregion
577
720
  //#region src/components/data-table.d.ts
578
- interface DataTableProps<TData, TValue> {
579
- /** Column definitions for the table */
580
- columns: ColumnDef<TData, TValue>[];
581
- /** Data array to render */
721
+ /** Async states a `DataTable` can be in (mirrors React Spectrum's `loadingState`). */
722
+ type DataTableLoadingState = 'idle' | 'loading' | 'sorting' | 'filtering' | 'loadingMore';
723
+ interface DataTableProps<TData> {
724
+ /**
725
+ * Column definitions for the table. Define a column's `footer` to render a
726
+ * summary row — the table auto-shows a `<tfoot>` when any column has one, with
727
+ * footer cells aligned under their columns.
728
+ */
729
+ columns: ColumnDef<TData, unknown>[];
730
+ /** Data array to render. With server-side sorting/pagination, this is the already-prepared page. */
582
731
  data: TData[];
583
- /** Additional @tanstack/react-table options (sorting, filtering, pagination, etc.) */
584
- tableOptions?: Omit<TableOptions<TData>, 'data' | 'columns' | 'getCoreRowModel'>;
585
- /** Message shown when there are no rows */
586
- noResultsMessage?: string;
732
+ /** Stable row id resolver. Required for selection to persist across data changes. */
733
+ getRowId?: (row: TData, index: number) => string;
734
+ /**
735
+ * The table's async state (mirrors React Spectrum's single `loadingState`):
736
+ * - `'loading'` — initial load with no data yet; the body shows skeleton rows.
737
+ * - `'sorting'` / `'filtering'` — re-querying an already-loaded table; the
738
+ * current rows stay in place under a dimmed overlay with a spinner.
739
+ * - `'loadingMore'` — fetching the next page for infinite scroll; a spinner
740
+ * row renders at the bottom.
741
+ * Omit (or `'idle'`) when not loading.
742
+ */
743
+ loadingState?: DataTableLoadingState;
744
+ /** Number of skeleton rows when `loadingState` is `'loading'`. */
745
+ skeletonCount?: number;
746
+ /**
747
+ * Rendered when there are no rows and not loading. Provide an `<Empty>`
748
+ * component (icon, copy, actions) — render different content based on context
749
+ * (no data vs. no search results). Nothing is shown when omitted.
750
+ */
751
+ emptyState?: React$2.ReactNode;
752
+ /** Controlled sorting state. Pass alongside `onSortingChange` to enable sortable headers. */
753
+ sorting?: SortingState;
754
+ /** Called when the user toggles a sortable header. */
755
+ onSortingChange?: OnChangeFn<SortingState>;
756
+ /**
757
+ * Enables interactive column resizing. Each resizable header gets a drag
758
+ * handle on its right edge; column widths come from each column's `size`
759
+ * (and are bounded by `minSize`/`maxSize`). Set `enableResizing: false` on a
760
+ * column def to pin it (e.g. an actions column).
761
+ */
762
+ enableColumnResizing?: boolean;
763
+ /** Enables row selection. When truthy, a checkbox column is auto-prepended. */
764
+ enableRowSelection?: boolean | ((row: Row<TData>) => boolean);
765
+ /** Controlled selection state. */
766
+ rowSelection?: RowSelectionState;
767
+ /** Called when selection changes. */
768
+ onRowSelectionChange?: OnChangeFn<RowSelectionState>;
769
+ /** Bar rendered floating at the bottom while there is at least one selected row. */
770
+ actionBar?: React$2.ReactNode;
771
+ /** Called when the user scrolls near the bottom; use to fetch the next page. */
772
+ onFetchMore?: () => void;
773
+ /** Whether more pages are available. */
774
+ hasMore?: boolean;
775
+ /**
776
+ * Called when a data row is activated by click. With row selection enabled,
777
+ * this fires only while nothing is selected — once there is a selection, a row
778
+ * click toggles that row instead (the "click anywhere to select" pattern, as in
779
+ * React Spectrum). Clicks on the selection checkbox never fire this.
780
+ */
781
+ onRowClick?: (row: TData) => void;
782
+ /**
783
+ * Fills the parent's height and scrolls the table body internally, keeping
784
+ * the header pinned (sticky). The parent must provide a bounded height — e.g.
785
+ * a flex column (`flex flex-col` + `min-h-0`). Common for full-page lists.
786
+ */
787
+ fillHeight?: boolean;
788
+ className?: string;
587
789
  }
588
- declare function DataTable<TData, TValue>({
790
+ declare function DataTable<TData>({
589
791
  columns,
590
792
  data,
591
- tableOptions,
592
- noResultsMessage
593
- }: DataTableProps<TData, TValue>): react_jsx_runtime0.JSX.Element;
793
+ getRowId,
794
+ loadingState,
795
+ skeletonCount,
796
+ emptyState,
797
+ sorting,
798
+ onSortingChange,
799
+ enableRowSelection,
800
+ rowSelection,
801
+ onRowSelectionChange,
802
+ actionBar,
803
+ onFetchMore,
804
+ hasMore,
805
+ enableColumnResizing,
806
+ fillHeight,
807
+ onRowClick,
808
+ className
809
+ }: DataTableProps<TData>): react_jsx_runtime0.JSX.Element;
594
810
  //#endregion
595
811
  //#region src/components/drawer.d.ts
596
812
  type DrawerPosition = 'right' | 'left' | 'top' | 'bottom';
@@ -861,7 +1077,7 @@ declare function EmptyHeader({
861
1077
  }: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
862
1078
  declare const emptyMediaVariants: (props?: ({
863
1079
  variant?: "default" | "icon" | null | undefined;
864
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1080
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
865
1081
  declare function EmptyMedia({
866
1082
  className,
867
1083
  variant,
@@ -946,7 +1162,7 @@ declare function DropzoneActions({
946
1162
  * Opens the file picker on click. Default-renders a DS `<Button>`; pass
947
1163
  * `render` (Base UI convention) to substitute another element.
948
1164
  */
949
- declare const DropzoneTrigger: React$2.ForwardRefExoticComponent<Omit<useRender.ComponentProps<"button", {}, _base_ui_react4.HTMLProps>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1165
+ declare const DropzoneTrigger: React$2.ForwardRefExoticComponent<Omit<useRender.ComponentProps<"button", {}, _base_ui_react0.HTMLProps>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
950
1166
  type DropzoneTriggerProps = useRender.ComponentProps<'button'>;
951
1167
  //#endregion
952
1168
  //#region src/components/popover.d.ts
@@ -1020,11 +1236,11 @@ declare function EmojiPickerContent({
1020
1236
  declare const fabVariants: (props?: ({
1021
1237
  variant?: "default" | "outline" | null | undefined;
1022
1238
  size?: "lg" | "icon-lg" | null | undefined;
1023
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1024
- declare const FAB: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.ButtonProps & VariantProps<(props?: ({
1239
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1240
+ declare const FAB: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.ButtonProps & VariantProps<(props?: ({
1025
1241
  variant?: "default" | "outline" | null | undefined;
1026
1242
  size?: "lg" | "icon-lg" | null | undefined;
1027
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1243
+ } & class_variance_authority_types4.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1028
1244
  //#endregion
1029
1245
  //#region src/components/label.d.ts
1030
1246
  declare function Label({
@@ -1050,7 +1266,7 @@ declare function FieldGroup({
1050
1266
  }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
1051
1267
  declare const fieldVariants: (props?: ({
1052
1268
  orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
1053
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1269
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1054
1270
  declare function Field({
1055
1271
  className,
1056
1272
  orientation,
@@ -1108,24 +1324,20 @@ declare function Gauge({
1108
1324
  declare const InputGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1109
1325
  declare const inputGroupAddonVariants: (props?: ({
1110
1326
  align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
1111
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1327
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1112
1328
  declare function InputGroupAddon({
1113
1329
  className,
1114
1330
  align,
1115
1331
  ...props
1116
1332
  }: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime0.JSX.Element;
1117
- declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<_base_ui_react4.ButtonProps & VariantProps<(props?: ({
1118
- variant?: "default" | "link" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
1119
- size?: "sm" | "default" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
1120
- block?: boolean | null | undefined;
1121
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1333
+ declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<ButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1122
1334
  declare function InputGroupText({
1123
1335
  className,
1124
1336
  ...props
1125
1337
  }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
1126
1338
  declare const InputGroupInput: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
1127
1339
  block?: boolean | null | undefined;
1128
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
1340
+ } & class_variance_authority_types4.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
1129
1341
  declare function InputGroupTextarea({
1130
1342
  className,
1131
1343
  ...props
@@ -1157,10 +1369,10 @@ declare function InputOTPSeparator({
1157
1369
  //#region src/components/input.d.ts
1158
1370
  declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
1159
1371
  block?: boolean | null | undefined;
1160
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
1372
+ } & class_variance_authority_types4.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
1161
1373
  //#endregion
1162
1374
  //#region src/components/item.d.ts
1163
- interface ItemGroupProps extends React$2.ComponentProps<"div"> {
1375
+ interface ItemGroupProps extends React$2.ComponentProps<'div'> {
1164
1376
  stackedItems?: boolean;
1165
1377
  }
1166
1378
  declare const ItemGroup: React$2.ForwardRefExoticComponent<Omit<ItemGroupProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
@@ -1171,14 +1383,14 @@ declare function ItemSeparator({
1171
1383
  declare const Item: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1172
1384
  ref?: ((instance: HTMLDivElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLDivElement> | null | undefined;
1173
1385
  } & {
1174
- render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
1386
+ render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
1175
1387
  } & VariantProps<(props?: ({
1176
- variant?: "default" | "muted" | "outline" | null | undefined;
1177
- size?: "xs" | "sm" | "default" | null | undefined;
1178
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1388
+ variant?: "default" | "outline" | "muted" | null | undefined;
1389
+ size?: "default" | "sm" | "xs" | null | undefined;
1390
+ } & class_variance_authority_types4.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1179
1391
  declare const ItemMedia: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLDivElement> & React$2.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
1180
- variant?: "default" | "image" | "icon" | null | undefined;
1181
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1392
+ variant?: "image" | "default" | "icon" | null | undefined;
1393
+ } & class_variance_authority_types4.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1182
1394
  declare const ItemContent: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1183
1395
  declare const ItemTitle: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1184
1396
  declare const ItemDescription: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React$2.RefAttributes<HTMLParagraphElement>>;
@@ -1305,8 +1517,8 @@ declare function ScrollBar({
1305
1517
  //#endregion
1306
1518
  //#region src/components/select.d.ts
1307
1519
  declare const selectTriggerVariants: (props?: ({
1308
- size?: "sm" | "default" | null | undefined;
1309
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1520
+ size?: "default" | "sm" | null | undefined;
1521
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1310
1522
  declare const Select: typeof Select$1.Root;
1311
1523
  declare function SelectGroup({
1312
1524
  className,
@@ -1403,7 +1615,7 @@ declare function Tooltip({
1403
1615
  declare function TooltipTrigger({
1404
1616
  ...props
1405
1617
  }: Tooltip$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
1406
- declare const TooltipContent: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.TooltipPopupProps & Pick<_base_ui_react4.TooltipPositionerProps, "align" | "alignOffset" | "side" | "sideOffset">, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1618
+ declare const TooltipContent: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.TooltipPopupProps & Pick<_base_ui_react0.TooltipPositionerProps, "side" | "align" | "sideOffset" | "alignOffset">, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1407
1619
  //#endregion
1408
1620
  //#region src/components/sidebar.d.ts
1409
1621
  type SidebarContextProps = {
@@ -1504,18 +1716,18 @@ declare function SidebarMenuItem({
1504
1716
  declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
1505
1717
  ref?: ((instance: HTMLButtonElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLButtonElement> | null | undefined;
1506
1718
  } & {
1507
- render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
1719
+ render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
1508
1720
  } & React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
1509
1721
  isActive?: boolean;
1510
1722
  tooltip?: string | React$2.ComponentProps<typeof TooltipContent>;
1511
1723
  } & VariantProps<(props?: ({
1512
1724
  variant?: "default" | "outline" | null | undefined;
1513
- size?: "sm" | "default" | "lg" | null | undefined;
1514
- } & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1725
+ size?: "default" | "sm" | "lg" | null | undefined;
1726
+ } & class_variance_authority_types4.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1515
1727
  declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
1516
1728
  ref?: ((instance: HTMLButtonElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLButtonElement> | null | undefined;
1517
1729
  } & {
1518
- render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
1730
+ render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
1519
1731
  } & React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
1520
1732
  showOnHover?: boolean;
1521
1733
  }, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
@@ -1555,7 +1767,7 @@ declare function SidebarMenuSubButton({
1555
1767
  declare function Skeleton({
1556
1768
  className,
1557
1769
  ...props
1558
- }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
1770
+ }: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1559
1771
  //#endregion
1560
1772
  //#region src/components/slider.d.ts
1561
1773
  declare function Slider({
@@ -1575,8 +1787,8 @@ declare const Toaster: ({
1575
1787
  //#endregion
1576
1788
  //#region src/components/spinner.d.ts
1577
1789
  declare const spinnerVariants: (props?: ({
1578
- size?: "sm" | "default" | "lg" | "xl" | null | undefined;
1579
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1790
+ size?: "default" | "sm" | "lg" | "xl" | null | undefined;
1791
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1580
1792
  interface SpinnerProps extends React$2.ComponentProps<'svg'>, VariantProps<typeof spinnerVariants> {}
1581
1793
  declare function Spinner({
1582
1794
  className,
@@ -1584,6 +1796,56 @@ declare function Spinner({
1584
1796
  ...props
1585
1797
  }: SpinnerProps): react_jsx_runtime0.JSX.Element;
1586
1798
  //#endregion
1799
+ //#region src/components/stepper.d.ts
1800
+ type StepDefinition = {
1801
+ id: string;
1802
+ title?: string;
1803
+ description?: string;
1804
+ };
1805
+ interface StepperContextValue {
1806
+ activeId: string;
1807
+ goTo: (id: string) => void;
1808
+ getIndex: (id: string) => number;
1809
+ steps: StepDefinition[];
1810
+ }
1811
+ declare function useStepper(): StepperContextValue;
1812
+ declare const Stepper: React$2.ForwardRefExoticComponent<Omit<StepperProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1813
+ interface StepperProps extends React$2.ComponentProps<'div'> {
1814
+ steps: StepDefinition[];
1815
+ defaultValue?: string;
1816
+ value?: string;
1817
+ onValueChange?: (value: string) => void;
1818
+ }
1819
+ declare namespace Stepper {
1820
+ type Props = StepperProps;
1821
+ }
1822
+ declare const StepperProgress: React$2.ForwardRefExoticComponent<Omit<StepperProgressProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1823
+ interface StepperProgressProps extends React$2.ComponentProps<'div'> {
1824
+ steps?: string[];
1825
+ }
1826
+ declare namespace StepperProgress {
1827
+ type Props = StepperProgressProps;
1828
+ }
1829
+ declare const StepperCounter: React$2.ForwardRefExoticComponent<Omit<StepperCounterProps, "ref"> & React$2.RefAttributes<HTMLParagraphElement>>;
1830
+ interface StepperCounterProps extends React$2.ComponentProps<'p'> {
1831
+ steps?: string[];
1832
+ }
1833
+ declare namespace StepperCounter {
1834
+ type Props = StepperCounterProps;
1835
+ }
1836
+ declare const StepperPanel: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1837
+ declare namespace StepperPanel {
1838
+ type Props = React$2.ComponentProps<'div'>;
1839
+ }
1840
+ declare const StepperContent: React$2.ForwardRefExoticComponent<Omit<StepperContentProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1841
+ interface StepperContentProps extends React$2.ComponentProps<'div'> {
1842
+ value: string;
1843
+ forceMount?: boolean;
1844
+ }
1845
+ declare namespace StepperContent {
1846
+ type Props = StepperContentProps;
1847
+ }
1848
+ //#endregion
1587
1849
  //#region src/components/switch.d.ts
1588
1850
  declare function Switch({
1589
1851
  className,
@@ -1591,14 +1853,16 @@ declare function Switch({
1591
1853
  }: Switch$1.Root.Props): react_jsx_runtime0.JSX.Element;
1592
1854
  //#endregion
1593
1855
  //#region src/components/table.d.ts
1594
- declare const Table: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & React$2.RefAttributes<HTMLTableElement>>;
1856
+ declare const Table: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLTableElement> & React$2.TableHTMLAttributes<HTMLTableElement> & {
1857
+ containerClassName?: string;
1858
+ containerStyle?: React$2.CSSProperties;
1859
+ }, "ref"> & React$2.RefAttributes<HTMLTableElement>>;
1595
1860
  declare const TableHeader: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$2.RefAttributes<HTMLTableSectionElement>>;
1596
1861
  declare const TableBody: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$2.RefAttributes<HTMLTableSectionElement>>;
1597
1862
  declare const TableFooter: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$2.RefAttributes<HTMLTableSectionElement>>;
1598
1863
  declare const TableRow: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & React$2.RefAttributes<HTMLTableRowElement>>;
1599
1864
  declare const TableHead: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref"> & React$2.RefAttributes<HTMLTableCellElement>>;
1600
1865
  declare const TableCell: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "ref"> & React$2.RefAttributes<HTMLTableCellElement>>;
1601
- declare const TableCaption: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React$2.RefAttributes<HTMLTableCaptionElement>>;
1602
1866
  //#endregion
1603
1867
  //#region src/components/tabs.d.ts
1604
1868
  declare function Tabs({
@@ -1635,8 +1899,8 @@ declare function ThemeProvider({
1635
1899
  //#region src/components/toggle.d.ts
1636
1900
  declare const toggleVariants: (props?: ({
1637
1901
  variant?: "default" | "outline" | null | undefined;
1638
- size?: "sm" | "default" | "lg" | null | undefined;
1639
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1902
+ size?: "default" | "sm" | "lg" | null | undefined;
1903
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1640
1904
  declare function Toggle({
1641
1905
  className,
1642
1906
  variant,
@@ -1728,4 +1992,4 @@ declare function useAudioGauge(options?: UseAudioGaugeOptions): UseAudioGaugeRes
1728
1992
  //#region src/lib/utils.d.ts
1729
1993
  declare function cn(...inputs: ClassValue[]): string;
1730
1994
  //#endregion
1731
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertAction as BannerAction, AlertDescription, AlertDescription as BannerDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTitle as BannerTitle, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BadgeGroup, BadgeGroupCount, Banner, type BannerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CounterBadge, CountryFlag, CountryFlagProps, DataTable, type DataTableProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerBackdrop, DrawerBar, DrawerClose, DrawerContent, DrawerCreateHandle, DrawerDescription, DrawerFooter, DrawerHeader, DrawerMenu, DrawerMenuCheckboxItem, DrawerMenuGroup, DrawerMenuGroupLabel, DrawerMenuItem, DrawerMenuRadioGroup, DrawerMenuRadioItem, DrawerMenuSeparator, DrawerMenuTrigger, DrawerPanel, DrawerPopup, DrawerPortal, DrawerPrimitive, DrawerSwipeArea, DrawerTitle, DrawerTrigger, DrawerViewport, DropdownMenu, DropdownMenuAddon, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Dropzone, DropzoneActions, DropzoneContent, type DropzoneContentProps, DropzoneDescription, DropzoneErrorCode, DropzoneIcon, type DropzoneProps, DropzoneTitle, DropzoneTrigger, type DropzoneTriggerProps, EmojiPicker, EmojiPickerCategories, EmojiPickerCategory, EmojiPickerContent, EmojiPickerContentProps, EmojiPickerProps, EmojiPickerTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, FAB, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileError, FileRejection, Gauge, type GaugeProps, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Label, List, ListCol, ListRow, NotificationHandle, NotificationOptions, NotificationPriority, NotificationQueueControls, NotificationQueueProvider, NotificationRenderProps, NotificationSlot, NotificationSlotProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, ScrollArea, ScrollAreaPrimitive, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UseAudioGaugeOptions, UseAudioGaugeResult, alertVariants, badgeVariants, bannerVariants, buttonGroupVariants, buttonVariants, cn, counterBadgeVariants, fabVariants, selectTriggerVariants, spinnerVariants, toast, toggleVariants, useAudioGauge, useComboboxAnchor, useNotification, useNotificationQueue, useSidebar, useTheme };
1995
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionBar, ActionBarButton, type ActionBarButtonProps, ActionBarContext, type ActionBarContextValue, ActionBarHeight, type ActionBarProps, Alert, AlertAction, AlertAction as BannerAction, AlertDescription, AlertDescription as BannerDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTitle as BannerTitle, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BadgeGroup, BadgeGroupCount, Banner, type BannerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Chip, ChipRemove, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChipProps, ComboboxChips, ComboboxChipsInput, ComboboxClear, ComboboxCollection, ComboboxContent, ComboboxContentProps, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxInputProps, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CounterBadge, CountryFlag, CountryFlagProps, DataTable, type DataTableLoadingState, type DataTableProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerBackdrop, DrawerBar, DrawerClose, DrawerContent, DrawerCreateHandle, DrawerDescription, DrawerFooter, DrawerHeader, DrawerMenu, DrawerMenuCheckboxItem, DrawerMenuGroup, DrawerMenuGroupLabel, DrawerMenuItem, DrawerMenuRadioGroup, DrawerMenuRadioItem, DrawerMenuSeparator, DrawerMenuTrigger, DrawerPanel, DrawerPopup, DrawerPortal, DrawerPrimitive, DrawerSwipeArea, DrawerTitle, DrawerTrigger, DrawerViewport, DropdownMenu, DropdownMenuAddon, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Dropzone, DropzoneActions, DropzoneContent, type DropzoneContentProps, DropzoneDescription, DropzoneErrorCode, DropzoneIcon, type DropzoneProps, DropzoneTitle, DropzoneTrigger, type DropzoneTriggerProps, EmojiPicker, EmojiPickerCategories, EmojiPickerCategory, EmojiPickerContent, EmojiPickerContentProps, EmojiPickerProps, EmojiPickerTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, FAB, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileError, FileRejection, Filter, FilterClearAllButton, FilterGroup, Gauge, type GaugeProps, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Label, List, ListCol, ListRow, NotificationHandle, NotificationOptions, NotificationPriority, NotificationQueueControls, NotificationQueueProvider, NotificationRenderProps, NotificationSlot, NotificationSlotProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, ScrollArea, ScrollAreaPrimitive, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, type StepDefinition, Stepper, StepperContent, type StepperContentProps, StepperCounter, type StepperCounterProps, StepperPanel, StepperProgress, type StepperProgressProps, type StepperProps, Switch, Table, TableBody, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UseAudioGaugeOptions, UseAudioGaugeResult, alertVariants, bannerVariants, buttonGroupVariants, buttonVariants, cn, counterBadgeVariants, fabVariants, selectTriggerVariants, spinnerVariants, toast, toggleVariants, useAudioGauge, useComboboxAnchor, useNotification, useNotificationQueue, useSidebar, useStepper, useTheme };