@aircall/ds 0.10.0 → 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
@@ -1,11 +1,11 @@
1
1
  import { Accordion as Accordion$1 } from "@base-ui/react/accordion";
2
2
  import { ClassValue } from "clsx";
3
- import * as react_jsx_runtime15 from "react/jsx-runtime";
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";
7
6
  import { Button as Button$1 } from "@base-ui/react/button";
8
7
  import { VariantProps } from "class-variance-authority";
8
+ import { AlertDialog as AlertDialog$1 } from "@base-ui/react/alert-dialog";
9
9
  import { Avatar as Avatar$1 } from "@base-ui/react/avatar";
10
10
  import { useRender } from "@base-ui/react/use-render";
11
11
  import { Separator as Separator$1 } from "@base-ui/react/separator";
@@ -18,7 +18,7 @@ import * as _base_ui_react0 from "@base-ui/react";
18
18
  import { Combobox as Combobox$1 } from "@base-ui/react";
19
19
  import { Command as Command$1 } from "cmdk";
20
20
  import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
21
- import { ColumnDef, TableOptions } from "@tanstack/react-table";
21
+ import { ColumnDef, OnChangeFn, Row, RowSelectionState, SortingState } from "@tanstack/react-table";
22
22
  import { Drawer as DrawerPrimitive } from "@base-ui/react/drawer";
23
23
  import { Radio } from "@base-ui/react/radio";
24
24
  import { RadioGroup as RadioGroup$1 } from "@base-ui/react/radio-group";
@@ -36,35 +36,35 @@ import { Switch as Switch$1 } from "@base-ui/react/switch";
36
36
  import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
37
37
  import { Toggle as Toggle$1 } from "@base-ui/react/toggle";
38
38
  import { ToggleGroup as ToggleGroup$1 } from "@base-ui/react/toggle-group";
39
- import * as class_variance_authority_types6 from "class-variance-authority/types";
39
+ import * as class_variance_authority_types4 from "class-variance-authority/types";
40
40
  import { CountryCode } from "@aircall/numbers";
41
41
 
42
42
  //#region src/components/accordion.d.ts
43
43
  declare function Accordion({
44
44
  className,
45
45
  ...props
46
- }: Accordion$1.Root.Props): react_jsx_runtime15.JSX.Element;
46
+ }: Accordion$1.Root.Props): react_jsx_runtime0.JSX.Element;
47
47
  declare function AccordionItem({
48
48
  className,
49
49
  ...props
50
- }: Accordion$1.Item.Props): react_jsx_runtime15.JSX.Element;
50
+ }: Accordion$1.Item.Props): react_jsx_runtime0.JSX.Element;
51
51
  declare function AccordionTrigger({
52
52
  className,
53
53
  children,
54
54
  ...props
55
- }: Accordion$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
55
+ }: Accordion$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
56
56
  declare function AccordionContent({
57
57
  className,
58
58
  children,
59
59
  ...props
60
- }: Accordion$1.Panel.Props): react_jsx_runtime15.JSX.Element;
60
+ }: Accordion$1.Panel.Props): react_jsx_runtime0.JSX.Element;
61
61
  //#endregion
62
62
  //#region src/components/button.d.ts
63
63
  declare const buttonVariants: (props?: ({
64
- variant?: "default" | "link" | "secondary" | "destructive" | "ghost" | "outline" | null | undefined;
65
- size?: "default" | "lg" | "sm" | "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;
66
66
  block?: boolean | null | undefined;
67
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
67
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
68
68
  declare const Button: React$2.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
69
69
  interface ButtonProps extends Button$1.Props, VariantProps<typeof buttonVariants> {
70
70
  children?: React$2.ReactNode;
@@ -73,80 +73,120 @@ declare namespace Button {
73
73
  type Props = ButtonProps;
74
74
  }
75
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>>;
115
+ //#endregion
76
116
  //#region src/components/alert-dialog.d.ts
77
117
  declare function AlertDialog({
78
118
  ...props
79
- }: AlertDialog$1.Root.Props): react_jsx_runtime15.JSX.Element;
119
+ }: AlertDialog$1.Root.Props): react_jsx_runtime0.JSX.Element;
80
120
  declare function AlertDialogTrigger({
81
121
  ...props
82
- }: AlertDialog$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
122
+ }: AlertDialog$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
83
123
  declare function AlertDialogPortal({
84
124
  ...props
85
- }: AlertDialog$1.Portal.Props): react_jsx_runtime15.JSX.Element;
125
+ }: AlertDialog$1.Portal.Props): react_jsx_runtime0.JSX.Element;
86
126
  declare function AlertDialogOverlay({
87
127
  className,
88
128
  ...props
89
- }: AlertDialog$1.Backdrop.Props): react_jsx_runtime15.JSX.Element;
129
+ }: AlertDialog$1.Backdrop.Props): react_jsx_runtime0.JSX.Element;
90
130
  declare function AlertDialogContent({
91
131
  className,
92
132
  size,
93
133
  ...props
94
134
  }: AlertDialog$1.Popup.Props & {
95
135
  size?: "default" | "sm";
96
- }): react_jsx_runtime15.JSX.Element;
136
+ }): react_jsx_runtime0.JSX.Element;
97
137
  declare function AlertDialogHeader({
98
138
  className,
99
139
  ...props
100
- }: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
140
+ }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
101
141
  declare function AlertDialogFooter({
102
142
  className,
103
143
  ...props
104
- }: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
144
+ }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
105
145
  declare function AlertDialogMedia({
106
146
  className,
107
147
  ...props
108
- }: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
148
+ }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
109
149
  declare function AlertDialogTitle({
110
150
  className,
111
151
  ...props
112
- }: React$2.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime15.JSX.Element;
152
+ }: React$2.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime0.JSX.Element;
113
153
  declare function AlertDialogDescription({
114
154
  className,
115
155
  ...props
116
- }: React$2.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime15.JSX.Element;
156
+ }: React$2.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime0.JSX.Element;
117
157
  declare function AlertDialogAction({
118
158
  className,
119
159
  ...props
120
- }: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
160
+ }: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
121
161
  declare function AlertDialogCancel({
122
162
  className,
123
163
  variant,
124
164
  size,
125
165
  ...props
126
- }: AlertDialog$1.Close.Props & Pick<React$2.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime15.JSX.Element;
166
+ }: AlertDialog$1.Close.Props & Pick<React$2.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime0.JSX.Element;
127
167
  //#endregion
128
168
  //#region src/components/alert.d.ts
129
169
  declare const alertVariants: (props?: ({
130
- variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
131
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
170
+ variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
171
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
132
172
  type AlertProps = React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>;
133
173
  declare function Alert({
134
174
  className,
135
175
  variant,
136
176
  ...props
137
- }: AlertProps): react_jsx_runtime15.JSX.Element;
177
+ }: AlertProps): react_jsx_runtime0.JSX.Element;
138
178
  declare function AlertTitle({
139
179
  className,
140
180
  ...props
141
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
181
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
142
182
  declare function AlertDescription({
143
183
  className,
144
184
  ...props
145
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
185
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
146
186
  declare function AlertAction({
147
187
  className,
148
188
  ...props
149
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
189
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
150
190
  //#endregion
151
191
  //#region src/components/avatar.d.ts
152
192
  declare const Avatar: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AvatarRootProps & {
@@ -155,42 +195,42 @@ declare const Avatar: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.Ava
155
195
  declare function AvatarImage({
156
196
  className,
157
197
  ...props
158
- }: Avatar$1.Image.Props): react_jsx_runtime15.JSX.Element;
198
+ }: Avatar$1.Image.Props): react_jsx_runtime0.JSX.Element;
159
199
  declare function AvatarFallback({
160
200
  className,
161
201
  ...props
162
- }: Avatar$1.Fallback.Props): react_jsx_runtime15.JSX.Element;
202
+ }: Avatar$1.Fallback.Props): react_jsx_runtime0.JSX.Element;
163
203
  declare function AvatarBadge({
164
204
  className,
165
205
  ...props
166
- }: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
206
+ }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
167
207
  declare function AvatarGroup({
168
208
  className,
169
209
  ...props
170
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
210
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
171
211
  declare function AvatarGroupCount({
172
212
  className,
173
213
  ...props
174
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
214
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
175
215
  //#endregion
176
216
  //#region src/components/counter-badge.d.ts
177
217
  declare const counterBadgeVariants: (props?: ({
178
218
  variant?: "default" | "secondary" | "ghost" | null | undefined;
179
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
219
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
180
220
  declare const CounterBadge: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
181
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;
182
222
  } & {
183
223
  render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
184
224
  } & VariantProps<(props?: ({
185
225
  variant?: "default" | "secondary" | "ghost" | null | undefined;
186
- } & 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>>;
187
227
  //#endregion
188
228
  //#region src/components/badge.d.ts
189
229
  declare const badgeVariants: (props?: ({
190
230
  size?: "default" | "lg" | null | undefined;
191
231
  color?: "charcoal" | "red" | "green" | "blue" | "purple" | "yellow" | "pink" | null | undefined;
192
232
  tone?: "dark" | "medium-dark" | "medium-light" | "light" | null | undefined;
193
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
233
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
194
234
  type BadgeVariants = VariantProps<typeof badgeVariants>;
195
235
  type BadgeColor = NonNullable<BadgeVariants['color']>;
196
236
  type BadgeTone = NonNullable<BadgeVariants['tone']>;
@@ -222,7 +262,7 @@ declare namespace BadgeGroup {
222
262
  }
223
263
  declare const badgeGroupCountVariants: (props?: ({
224
264
  size?: "default" | "lg" | null | undefined;
225
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
265
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
226
266
  declare const BadgeGroupCount: React$2.ForwardRefExoticComponent<Omit<BadgeGroupCount.Props, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
227
267
  declare namespace BadgeGroupCount {
228
268
  type Props = Omit<React$2.ComponentProps<typeof CounterBadge>, 'variant'> & VariantProps<typeof badgeGroupCountVariants>;
@@ -230,16 +270,16 @@ declare namespace BadgeGroupCount {
230
270
  //#endregion
231
271
  //#region src/components/banner.d.ts
232
272
  declare const bannerVariants: (props?: ({
233
- variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
273
+ variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
234
274
  borderDirection?: "bottom" | "top" | null | undefined;
235
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
275
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
236
276
  type BannerProps = React$2.ComponentProps<'div'> & VariantProps<typeof bannerVariants>;
237
277
  declare function Banner({
238
278
  className,
239
279
  variant,
240
280
  borderDirection,
241
281
  ...props
242
- }: BannerProps): react_jsx_runtime15.JSX.Element;
282
+ }: BannerProps): react_jsx_runtime0.JSX.Element;
243
283
  //#endregion
244
284
  //#region src/components/notification-queue.d.ts
245
285
  type NotificationPriority = 'error' | 'warning' | 'success' | 'info' | 'promotional';
@@ -247,7 +287,7 @@ declare function NotificationQueueProvider({
247
287
  children
248
288
  }: {
249
289
  children: React$2.ReactNode;
250
- }): react_jsx_runtime15.JSX.Element;
290
+ }): react_jsx_runtime0.JSX.Element;
251
291
  interface NotificationRenderProps {
252
292
  /** Dismisses this notification from the queue. */
253
293
  dismiss: () => void;
@@ -301,24 +341,24 @@ interface NotificationSlotProps {
301
341
  declare function NotificationSlot({
302
342
  slot,
303
343
  className
304
- }: NotificationSlotProps): react_jsx_runtime15.JSX.Element | null;
344
+ }: NotificationSlotProps): react_jsx_runtime0.JSX.Element | null;
305
345
  //#endregion
306
346
  //#region src/components/separator.d.ts
307
347
  declare function Separator({
308
348
  className,
309
349
  orientation,
310
350
  ...props
311
- }: Separator$1.Props): react_jsx_runtime15.JSX.Element;
351
+ }: Separator$1.Props): react_jsx_runtime0.JSX.Element;
312
352
  //#endregion
313
353
  //#region src/components/button-group.d.ts
314
354
  declare const buttonGroupVariants: (props?: ({
315
355
  orientation?: "horizontal" | "vertical" | null | undefined;
316
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
356
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
317
357
  declare function ButtonGroup({
318
358
  className,
319
359
  orientation,
320
360
  ...props
321
- }: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime15.JSX.Element;
361
+ }: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime0.JSX.Element;
322
362
  declare function ButtonGroupText({
323
363
  className,
324
364
  render,
@@ -328,7 +368,7 @@ declare function ButtonGroupSeparator({
328
368
  className,
329
369
  orientation,
330
370
  ...props
331
- }: React.ComponentProps<typeof Separator>): react_jsx_runtime15.JSX.Element;
371
+ }: React.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
332
372
  //#endregion
333
373
  //#region src/components/calendar.d.ts
334
374
  declare function Calendar({
@@ -343,7 +383,7 @@ declare function Calendar({
343
383
  ...props
344
384
  }: React$2.ComponentProps<typeof DayPicker> & {
345
385
  buttonVariant?: React$2.ComponentProps<typeof Button>['variant'];
346
- }): react_jsx_runtime15.JSX.Element;
386
+ }): react_jsx_runtime0.JSX.Element;
347
387
  declare function CalendarDayButton({
348
388
  className: dayClassName,
349
389
  day,
@@ -352,37 +392,40 @@ declare function CalendarDayButton({
352
392
  ...props
353
393
  }: React$2.ComponentProps<typeof DayButton> & {
354
394
  locale?: Partial<Locale>;
355
- }): react_jsx_runtime15.JSX.Element;
395
+ }): react_jsx_runtime0.JSX.Element;
356
396
  //#endregion
357
397
  //#region src/components/card.d.ts
358
398
  declare function Card({
359
399
  className,
400
+ size,
360
401
  ...props
361
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
402
+ }: React$2.ComponentProps<'div'> & {
403
+ size?: 'default' | 'sm';
404
+ }): react_jsx_runtime0.JSX.Element;
362
405
  declare function CardHeader({
363
406
  className,
364
407
  ...props
365
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
408
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
366
409
  declare function CardTitle({
367
410
  className,
368
411
  ...props
369
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
412
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
370
413
  declare function CardDescription({
371
414
  className,
372
415
  ...props
373
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
416
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
374
417
  declare function CardAction({
375
418
  className,
376
419
  ...props
377
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
420
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
378
421
  declare function CardContent({
379
422
  className,
380
423
  ...props
381
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
424
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
382
425
  declare function CardFooter({
383
426
  className,
384
427
  ...props
385
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
428
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
386
429
  //#endregion
387
430
  //#region src/components/carousel.d.ts
388
431
  type CarouselApi = UseEmblaCarouselType[1];
@@ -403,27 +446,27 @@ declare function Carousel({
403
446
  className,
404
447
  children,
405
448
  ...props
406
- }: React$2.ComponentProps<'div'> & CarouselProps): react_jsx_runtime15.JSX.Element;
449
+ }: React$2.ComponentProps<'div'> & CarouselProps): react_jsx_runtime0.JSX.Element;
407
450
  declare function CarouselContent({
408
451
  className,
409
452
  ...props
410
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
453
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
411
454
  declare function CarouselItem({
412
455
  className,
413
456
  ...props
414
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
457
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
415
458
  declare function CarouselPrevious({
416
459
  className,
417
460
  variant,
418
461
  size,
419
462
  ...props
420
- }: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
463
+ }: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
421
464
  declare function CarouselNext({
422
465
  className,
423
466
  variant,
424
467
  size,
425
468
  ...props
426
- }: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
469
+ }: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
427
470
  //#endregion
428
471
  //#region src/components/checkbox.d.ts
429
472
  declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.CheckboxRootProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
@@ -501,17 +544,17 @@ declare namespace FilterClearAllButton {
501
544
  //#region src/components/collapsible.d.ts
502
545
  declare function Collapsible({
503
546
  ...props
504
- }: Collapsible$1.Root.Props): react_jsx_runtime15.JSX.Element;
547
+ }: Collapsible$1.Root.Props): react_jsx_runtime0.JSX.Element;
505
548
  declare function CollapsibleTrigger({
506
549
  ...props
507
- }: Collapsible$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
550
+ }: Collapsible$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
508
551
  declare function CollapsibleContent({
509
552
  ...props
510
- }: Collapsible$1.Panel.Props): react_jsx_runtime15.JSX.Element;
553
+ }: Collapsible$1.Panel.Props): react_jsx_runtime0.JSX.Element;
511
554
  //#endregion
512
555
  //#region src/components/combobox.d.ts
513
556
  declare const Combobox: typeof Combobox$1.Root;
514
- declare function ComboboxValue(componentProps: ComboboxValue.Props): react_jsx_runtime15.JSX.Element;
557
+ declare function ComboboxValue(componentProps: ComboboxValue.Props): react_jsx_runtime0.JSX.Element;
515
558
  declare namespace ComboboxValue {
516
559
  type Props = Combobox$1.Value.Props;
517
560
  }
@@ -551,7 +594,7 @@ declare const ComboboxLabel: React$2.ForwardRefExoticComponent<Omit<_base_ui_rea
551
594
  declare namespace ComboboxLabel {
552
595
  type Props = Combobox$1.GroupLabel.Props;
553
596
  }
554
- declare function ComboboxCollection(componentProps: ComboboxCollection.Props): react_jsx_runtime15.JSX.Element;
597
+ declare function ComboboxCollection(componentProps: ComboboxCollection.Props): react_jsx_runtime0.JSX.Element;
555
598
  declare namespace ComboboxCollection {
556
599
  type Props = Combobox$1.Collection.Props;
557
600
  }
@@ -580,20 +623,20 @@ declare function useComboboxAnchor(): React$2.MutableRefObject<HTMLDivElement |
580
623
  //#region src/components/dialog.d.ts
581
624
  declare function Dialog({
582
625
  ...props
583
- }: Dialog$1.Root.Props): react_jsx_runtime15.JSX.Element;
626
+ }: Dialog$1.Root.Props): react_jsx_runtime0.JSX.Element;
584
627
  declare function DialogTrigger({
585
628
  ...props
586
- }: Dialog$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
629
+ }: Dialog$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
587
630
  declare function DialogPortal({
588
631
  ...props
589
- }: Dialog$1.Portal.Props): react_jsx_runtime15.JSX.Element;
632
+ }: Dialog$1.Portal.Props): react_jsx_runtime0.JSX.Element;
590
633
  declare function DialogClose({
591
634
  ...props
592
- }: Dialog$1.Close.Props): react_jsx_runtime15.JSX.Element;
635
+ }: Dialog$1.Close.Props): react_jsx_runtime0.JSX.Element;
593
636
  declare function DialogOverlay({
594
637
  className,
595
638
  ...props
596
- }: Dialog$1.Backdrop.Props): react_jsx_runtime15.JSX.Element;
639
+ }: Dialog$1.Backdrop.Props): react_jsx_runtime0.JSX.Element;
597
640
  declare function DialogContent({
598
641
  className,
599
642
  children,
@@ -601,11 +644,11 @@ declare function DialogContent({
601
644
  ...props
602
645
  }: Dialog$1.Popup.Props & {
603
646
  showCloseButton?: boolean;
604
- }): react_jsx_runtime15.JSX.Element;
647
+ }): react_jsx_runtime0.JSX.Element;
605
648
  declare function DialogHeader({
606
649
  className,
607
650
  ...props
608
- }: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
651
+ }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
609
652
  declare function DialogFooter({
610
653
  className,
611
654
  showCloseButton,
@@ -613,21 +656,21 @@ declare function DialogFooter({
613
656
  ...props
614
657
  }: React$2.ComponentProps<"div"> & {
615
658
  showCloseButton?: boolean;
616
- }): react_jsx_runtime15.JSX.Element;
659
+ }): react_jsx_runtime0.JSX.Element;
617
660
  declare function DialogTitle({
618
661
  className,
619
662
  ...props
620
- }: Dialog$1.Title.Props): react_jsx_runtime15.JSX.Element;
663
+ }: Dialog$1.Title.Props): react_jsx_runtime0.JSX.Element;
621
664
  declare function DialogDescription({
622
665
  className,
623
666
  ...props
624
- }: Dialog$1.Description.Props): react_jsx_runtime15.JSX.Element;
667
+ }: Dialog$1.Description.Props): react_jsx_runtime0.JSX.Element;
625
668
  //#endregion
626
669
  //#region src/components/command.d.ts
627
670
  declare function Command({
628
671
  className,
629
672
  ...props
630
- }: React$2.ComponentProps<typeof Command$1>): react_jsx_runtime15.JSX.Element;
673
+ }: React$2.ComponentProps<typeof Command$1>): react_jsx_runtime0.JSX.Element;
631
674
  declare function CommandDialog({
632
675
  title,
633
676
  description,
@@ -636,34 +679,34 @@ declare function CommandDialog({
636
679
  }: React$2.ComponentProps<typeof Dialog> & {
637
680
  title?: string;
638
681
  description?: string;
639
- }): react_jsx_runtime15.JSX.Element;
682
+ }): react_jsx_runtime0.JSX.Element;
640
683
  declare function CommandInput({
641
684
  className,
642
685
  ...props
643
- }: React$2.ComponentProps<typeof Command$1.Input>): react_jsx_runtime15.JSX.Element;
686
+ }: React$2.ComponentProps<typeof Command$1.Input>): react_jsx_runtime0.JSX.Element;
644
687
  declare function CommandList({
645
688
  className,
646
689
  ...props
647
- }: React$2.ComponentProps<typeof Command$1.List>): react_jsx_runtime15.JSX.Element;
690
+ }: React$2.ComponentProps<typeof Command$1.List>): react_jsx_runtime0.JSX.Element;
648
691
  declare function CommandEmpty({
649
692
  ...props
650
- }: React$2.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime15.JSX.Element;
693
+ }: React$2.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime0.JSX.Element;
651
694
  declare function CommandGroup({
652
695
  className,
653
696
  ...props
654
- }: React$2.ComponentProps<typeof Command$1.Group>): react_jsx_runtime15.JSX.Element;
697
+ }: React$2.ComponentProps<typeof Command$1.Group>): react_jsx_runtime0.JSX.Element;
655
698
  declare function CommandSeparator({
656
699
  className,
657
700
  ...props
658
- }: React$2.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime15.JSX.Element;
701
+ }: React$2.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime0.JSX.Element;
659
702
  declare function CommandItem({
660
703
  className,
661
704
  ...props
662
- }: React$2.ComponentProps<typeof Command$1.Item>): react_jsx_runtime15.JSX.Element;
705
+ }: React$2.ComponentProps<typeof Command$1.Item>): react_jsx_runtime0.JSX.Element;
663
706
  declare function CommandShortcut({
664
707
  className,
665
708
  ...props
666
- }: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
709
+ }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
667
710
  //#endregion
668
711
  //#region src/components/country-flag.d.ts
669
712
  type FlagSize = 'sm' | 'md' | 'lg' | 'xl';
@@ -675,22 +718,95 @@ interface CountryFlagProps {
675
718
  declare const CountryFlag: React$1.FC<CountryFlagProps>;
676
719
  //#endregion
677
720
  //#region src/components/data-table.d.ts
678
- interface DataTableProps<TData, TValue> {
679
- /** Column definitions for the table */
680
- columns: ColumnDef<TData, TValue>[];
681
- /** 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. */
682
731
  data: TData[];
683
- /** Additional @tanstack/react-table options (sorting, filtering, pagination, etc.) */
684
- tableOptions?: Omit<TableOptions<TData>, 'data' | 'columns' | 'getCoreRowModel'>;
685
- /** Message shown when there are no rows */
686
- 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;
687
789
  }
688
- declare function DataTable<TData, TValue>({
790
+ declare function DataTable<TData>({
689
791
  columns,
690
792
  data,
691
- tableOptions,
692
- noResultsMessage
693
- }: DataTableProps<TData, TValue>): react_jsx_runtime15.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;
694
810
  //#endregion
695
811
  //#region src/components/drawer.d.ts
696
812
  type DrawerPosition = 'right' | 'left' | 'top' | 'bottom';
@@ -860,13 +976,13 @@ declare function DrawerMenuRadioItem({
860
976
  //#region src/components/dropdown-menu.d.ts
861
977
  declare function DropdownMenu({
862
978
  ...props
863
- }: Menu.Root.Props): react_jsx_runtime15.JSX.Element;
979
+ }: Menu.Root.Props): react_jsx_runtime0.JSX.Element;
864
980
  declare function DropdownMenuPortal({
865
981
  ...props
866
- }: Menu.Portal.Props): react_jsx_runtime15.JSX.Element;
982
+ }: Menu.Portal.Props): react_jsx_runtime0.JSX.Element;
867
983
  declare function DropdownMenuTrigger({
868
984
  ...props
869
- }: Menu.Trigger.Props): react_jsx_runtime15.JSX.Element;
985
+ }: Menu.Trigger.Props): react_jsx_runtime0.JSX.Element;
870
986
  declare function DropdownMenuContent({
871
987
  align,
872
988
  alignOffset,
@@ -877,17 +993,17 @@ declare function DropdownMenuContent({
877
993
  ...props
878
994
  }: Menu.Popup.Props & Pick<Menu.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'> & {
879
995
  container?: Menu.Portal.Props['container'];
880
- }): react_jsx_runtime15.JSX.Element;
996
+ }): react_jsx_runtime0.JSX.Element;
881
997
  declare function DropdownMenuGroup({
882
998
  ...props
883
- }: Menu.Group.Props): react_jsx_runtime15.JSX.Element;
999
+ }: Menu.Group.Props): react_jsx_runtime0.JSX.Element;
884
1000
  declare function DropdownMenuLabel({
885
1001
  className,
886
1002
  inset,
887
1003
  ...props
888
1004
  }: Menu.GroupLabel.Props & {
889
1005
  inset?: boolean;
890
- }): react_jsx_runtime15.JSX.Element;
1006
+ }): react_jsx_runtime0.JSX.Element;
891
1007
  declare function DropdownMenuItem({
892
1008
  className,
893
1009
  inset,
@@ -896,10 +1012,10 @@ declare function DropdownMenuItem({
896
1012
  }: Menu.Item.Props & {
897
1013
  inset?: boolean;
898
1014
  variant?: 'default' | 'destructive';
899
- }): react_jsx_runtime15.JSX.Element;
1015
+ }): react_jsx_runtime0.JSX.Element;
900
1016
  declare function DropdownMenuSub({
901
1017
  ...props
902
- }: Menu.SubmenuRoot.Props): react_jsx_runtime15.JSX.Element;
1018
+ }: Menu.SubmenuRoot.Props): react_jsx_runtime0.JSX.Element;
903
1019
  declare function DropdownMenuSubTrigger({
904
1020
  className,
905
1021
  inset,
@@ -907,7 +1023,7 @@ declare function DropdownMenuSubTrigger({
907
1023
  ...props
908
1024
  }: Menu.SubmenuTrigger.Props & {
909
1025
  inset?: boolean;
910
- }): react_jsx_runtime15.JSX.Element;
1026
+ }): react_jsx_runtime0.JSX.Element;
911
1027
  declare function DropdownMenuSubContent({
912
1028
  align,
913
1029
  alignOffset,
@@ -915,7 +1031,7 @@ declare function DropdownMenuSubContent({
915
1031
  sideOffset,
916
1032
  className,
917
1033
  ...props
918
- }: React$2.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime15.JSX.Element;
1034
+ }: React$2.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime0.JSX.Element;
919
1035
  declare function DropdownMenuCheckboxItem({
920
1036
  className,
921
1037
  children,
@@ -924,10 +1040,10 @@ declare function DropdownMenuCheckboxItem({
924
1040
  ...props
925
1041
  }: Menu.CheckboxItem.Props & {
926
1042
  inset?: boolean;
927
- }): react_jsx_runtime15.JSX.Element;
1043
+ }): react_jsx_runtime0.JSX.Element;
928
1044
  declare function DropdownMenuRadioGroup({
929
1045
  ...props
930
- }: Menu.RadioGroup.Props): react_jsx_runtime15.JSX.Element;
1046
+ }: Menu.RadioGroup.Props): react_jsx_runtime0.JSX.Element;
931
1047
  declare function DropdownMenuRadioItem({
932
1048
  className,
933
1049
  children,
@@ -935,50 +1051,50 @@ declare function DropdownMenuRadioItem({
935
1051
  ...props
936
1052
  }: Menu.RadioItem.Props & {
937
1053
  inset?: boolean;
938
- }): react_jsx_runtime15.JSX.Element;
1054
+ }): react_jsx_runtime0.JSX.Element;
939
1055
  declare function DropdownMenuSeparator({
940
1056
  className,
941
1057
  ...props
942
- }: Menu.Separator.Props): react_jsx_runtime15.JSX.Element;
1058
+ }: Menu.Separator.Props): react_jsx_runtime0.JSX.Element;
943
1059
  declare function DropdownMenuShortcut({
944
1060
  className,
945
1061
  ...props
946
- }: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
1062
+ }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
947
1063
  declare function DropdownMenuAddon({
948
1064
  className,
949
1065
  ...props
950
- }: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
1066
+ }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
951
1067
  type DropdownMenuContentProps = React$2.ComponentProps<typeof DropdownMenuContent>;
952
1068
  //#endregion
953
1069
  //#region src/components/empty.d.ts
954
1070
  declare function Empty({
955
1071
  className,
956
1072
  ...props
957
- }: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1073
+ }: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
958
1074
  declare function EmptyHeader({
959
1075
  className,
960
1076
  ...props
961
- }: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1077
+ }: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
962
1078
  declare const emptyMediaVariants: (props?: ({
963
1079
  variant?: "default" | "icon" | null | undefined;
964
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1080
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
965
1081
  declare function EmptyMedia({
966
1082
  className,
967
1083
  variant,
968
1084
  ...props
969
- }: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime15.JSX.Element;
1085
+ }: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime0.JSX.Element;
970
1086
  declare function EmptyTitle({
971
1087
  className,
972
1088
  ...props
973
- }: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1089
+ }: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
974
1090
  declare function EmptyDescription({
975
1091
  className,
976
1092
  ...props
977
- }: React.ComponentProps<'p'>): react_jsx_runtime15.JSX.Element;
1093
+ }: React.ComponentProps<'p'>): react_jsx_runtime0.JSX.Element;
978
1094
  declare function EmptyContent({
979
1095
  className,
980
1096
  ...props
981
- }: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1097
+ }: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
982
1098
  //#endregion
983
1099
  //#region src/components/dropzone.d.ts
984
1100
  /** Error codes — same set as react-dropzone, so consumers can share translation logic. */
@@ -1032,16 +1148,16 @@ declare const DropzoneContent: React$2.ForwardRefExoticComponent<Omit<DropzoneCo
1032
1148
  declare function DropzoneIcon({
1033
1149
  variant,
1034
1150
  ...props
1035
- }: React$2.ComponentProps<typeof EmptyMedia>): react_jsx_runtime15.JSX.Element;
1151
+ }: React$2.ComponentProps<typeof EmptyMedia>): react_jsx_runtime0.JSX.Element;
1036
1152
  declare function DropzoneTitle({
1037
1153
  className,
1038
1154
  ...props
1039
- }: React$2.ComponentProps<typeof EmptyTitle>): react_jsx_runtime15.JSX.Element;
1040
- declare function DropzoneDescription(props: React$2.ComponentProps<typeof EmptyDescription>): react_jsx_runtime15.JSX.Element;
1155
+ }: React$2.ComponentProps<typeof EmptyTitle>): react_jsx_runtime0.JSX.Element;
1156
+ declare function DropzoneDescription(props: React$2.ComponentProps<typeof EmptyDescription>): react_jsx_runtime0.JSX.Element;
1041
1157
  declare function DropzoneActions({
1042
1158
  className,
1043
1159
  ...props
1044
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1160
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1045
1161
  /**
1046
1162
  * Opens the file picker on click. Default-renders a DS `<Button>`; pass
1047
1163
  * `render` (Base UI convention) to substitute another element.
@@ -1052,7 +1168,7 @@ type DropzoneTriggerProps = useRender.ComponentProps<'button'>;
1052
1168
  //#region src/components/popover.d.ts
1053
1169
  declare function Popover({
1054
1170
  ...props
1055
- }: Popover$1.Root.Props): react_jsx_runtime15.JSX.Element;
1171
+ }: Popover$1.Root.Props): react_jsx_runtime0.JSX.Element;
1056
1172
  declare const PopoverTrigger: React$2.ForwardRefExoticComponent<Omit<Popover$1.Trigger.Props<unknown>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1057
1173
  declare function PopoverContent({
1058
1174
  className,
@@ -1061,19 +1177,19 @@ declare function PopoverContent({
1061
1177
  side,
1062
1178
  sideOffset,
1063
1179
  ...props
1064
- }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime15.JSX.Element;
1180
+ }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime0.JSX.Element;
1065
1181
  declare function PopoverHeader({
1066
1182
  className,
1067
1183
  ...props
1068
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1184
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1069
1185
  declare function PopoverTitle({
1070
1186
  className,
1071
1187
  ...props
1072
- }: Popover$1.Title.Props): react_jsx_runtime15.JSX.Element;
1188
+ }: Popover$1.Title.Props): react_jsx_runtime0.JSX.Element;
1073
1189
  declare function PopoverDescription({
1074
1190
  className,
1075
1191
  ...props
1076
- }: Popover$1.Description.Props): react_jsx_runtime15.JSX.Element;
1192
+ }: Popover$1.Description.Props): react_jsx_runtime0.JSX.Element;
1077
1193
  //#endregion
1078
1194
  //#region src/components/emoji-picker.d.ts
1079
1195
  declare const EmojiPickerCategories: {
@@ -1098,7 +1214,7 @@ type EmojiPickerProps = {
1098
1214
  declare function EmojiPicker({
1099
1215
  onEmojiSelect,
1100
1216
  children
1101
- }: EmojiPickerProps): react_jsx_runtime15.JSX.Element;
1217
+ }: EmojiPickerProps): react_jsx_runtime0.JSX.Element;
1102
1218
  declare const EmojiPickerTrigger: React$2.ForwardRefExoticComponent<Omit<Popover$1.Trigger.Props<unknown>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1103
1219
  type EmojiPickerContentProps = Omit<React$2.ComponentProps<typeof PopoverContent>, 'children'> & {
1104
1220
  searchPlaceholder?: string;
@@ -1114,71 +1230,71 @@ declare function EmojiPickerContent({
1114
1230
  width,
1115
1231
  suggestedEmojisMode,
1116
1232
  ...props
1117
- }: EmojiPickerContentProps): react_jsx_runtime15.JSX.Element;
1233
+ }: EmojiPickerContentProps): react_jsx_runtime0.JSX.Element;
1118
1234
  //#endregion
1119
1235
  //#region src/components/fab.d.ts
1120
1236
  declare const fabVariants: (props?: ({
1121
1237
  variant?: "default" | "outline" | null | undefined;
1122
1238
  size?: "lg" | "icon-lg" | null | undefined;
1123
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1239
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1124
1240
  declare const FAB: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.ButtonProps & VariantProps<(props?: ({
1125
1241
  variant?: "default" | "outline" | null | undefined;
1126
1242
  size?: "lg" | "icon-lg" | null | undefined;
1127
- } & 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>>;
1128
1244
  //#endregion
1129
1245
  //#region src/components/label.d.ts
1130
1246
  declare function Label({
1131
1247
  className,
1132
1248
  ...props
1133
- }: React$2.ComponentProps<"label">): react_jsx_runtime15.JSX.Element;
1249
+ }: React$2.ComponentProps<"label">): react_jsx_runtime0.JSX.Element;
1134
1250
  //#endregion
1135
1251
  //#region src/components/field.d.ts
1136
1252
  declare function FieldSet({
1137
1253
  className,
1138
1254
  ...props
1139
- }: React.ComponentProps<"fieldset">): react_jsx_runtime15.JSX.Element;
1255
+ }: React.ComponentProps<"fieldset">): react_jsx_runtime0.JSX.Element;
1140
1256
  declare function FieldLegend({
1141
1257
  className,
1142
1258
  variant,
1143
1259
  ...props
1144
1260
  }: React.ComponentProps<"legend"> & {
1145
1261
  variant?: "legend" | "label";
1146
- }): react_jsx_runtime15.JSX.Element;
1262
+ }): react_jsx_runtime0.JSX.Element;
1147
1263
  declare function FieldGroup({
1148
1264
  className,
1149
1265
  ...props
1150
- }: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
1266
+ }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
1151
1267
  declare const fieldVariants: (props?: ({
1152
1268
  orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
1153
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1269
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1154
1270
  declare function Field({
1155
1271
  className,
1156
1272
  orientation,
1157
1273
  ...props
1158
- }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime15.JSX.Element;
1274
+ }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime0.JSX.Element;
1159
1275
  declare function FieldContent({
1160
1276
  className,
1161
1277
  ...props
1162
- }: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
1278
+ }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
1163
1279
  declare function FieldLabel({
1164
1280
  className,
1165
1281
  ...props
1166
- }: React.ComponentProps<typeof Label>): react_jsx_runtime15.JSX.Element;
1282
+ }: React.ComponentProps<typeof Label>): react_jsx_runtime0.JSX.Element;
1167
1283
  declare function FieldTitle({
1168
1284
  className,
1169
1285
  ...props
1170
- }: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
1286
+ }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
1171
1287
  declare function FieldDescription({
1172
1288
  className,
1173
1289
  ...props
1174
- }: React.ComponentProps<"p">): react_jsx_runtime15.JSX.Element;
1290
+ }: React.ComponentProps<"p">): react_jsx_runtime0.JSX.Element;
1175
1291
  declare function FieldSeparator({
1176
1292
  children,
1177
1293
  className,
1178
1294
  ...props
1179
1295
  }: React.ComponentProps<"div"> & {
1180
1296
  children?: React.ReactNode;
1181
- }): react_jsx_runtime15.JSX.Element;
1297
+ }): react_jsx_runtime0.JSX.Element;
1182
1298
  declare function FieldError({
1183
1299
  className,
1184
1300
  children,
@@ -1188,7 +1304,7 @@ declare function FieldError({
1188
1304
  errors?: Array<{
1189
1305
  message?: string;
1190
1306
  } | undefined>;
1191
- }): react_jsx_runtime15.JSX.Element | null;
1307
+ }): react_jsx_runtime0.JSX.Element | null;
1192
1308
  //#endregion
1193
1309
  //#region src/components/gauge.d.ts
1194
1310
  interface GaugeProps extends Omit<React$2.ComponentProps<'div'>, 'children'> {
@@ -1202,30 +1318,30 @@ declare function Gauge({
1202
1318
  className,
1203
1319
  value,
1204
1320
  ...props
1205
- }: GaugeProps): react_jsx_runtime15.JSX.Element;
1321
+ }: GaugeProps): react_jsx_runtime0.JSX.Element;
1206
1322
  //#endregion
1207
1323
  //#region src/components/input-group.d.ts
1208
1324
  declare const InputGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1209
1325
  declare const inputGroupAddonVariants: (props?: ({
1210
1326
  align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
1211
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1327
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1212
1328
  declare function InputGroupAddon({
1213
1329
  className,
1214
1330
  align,
1215
1331
  ...props
1216
- }: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime15.JSX.Element;
1332
+ }: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime0.JSX.Element;
1217
1333
  declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<ButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
1218
1334
  declare function InputGroupText({
1219
1335
  className,
1220
1336
  ...props
1221
- }: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
1337
+ }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
1222
1338
  declare const InputGroupInput: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
1223
1339
  block?: boolean | null | undefined;
1224
- } & 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>>;
1225
1341
  declare function InputGroupTextarea({
1226
1342
  className,
1227
1343
  ...props
1228
- }: React$2.ComponentProps<'textarea'>): react_jsx_runtime15.JSX.Element;
1344
+ }: React$2.ComponentProps<'textarea'>): react_jsx_runtime0.JSX.Element;
1229
1345
  //#endregion
1230
1346
  //#region src/components/input-otp.d.ts
1231
1347
  declare function InputOTP({
@@ -1234,26 +1350,26 @@ declare function InputOTP({
1234
1350
  ...props
1235
1351
  }: React$2.ComponentProps<typeof OTPInput> & {
1236
1352
  containerClassName?: string;
1237
- }): react_jsx_runtime15.JSX.Element;
1353
+ }): react_jsx_runtime0.JSX.Element;
1238
1354
  declare function InputOTPGroup({
1239
1355
  className,
1240
1356
  ...props
1241
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1357
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1242
1358
  declare function InputOTPSlot({
1243
1359
  index,
1244
1360
  className,
1245
1361
  ...props
1246
1362
  }: React$2.ComponentProps<'div'> & {
1247
1363
  index: number;
1248
- }): react_jsx_runtime15.JSX.Element;
1364
+ }): react_jsx_runtime0.JSX.Element;
1249
1365
  declare function InputOTPSeparator({
1250
1366
  ...props
1251
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1367
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1252
1368
  //#endregion
1253
1369
  //#region src/components/input.d.ts
1254
1370
  declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
1255
1371
  block?: boolean | null | undefined;
1256
- } & 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>>;
1257
1373
  //#endregion
1258
1374
  //#region src/components/item.d.ts
1259
1375
  interface ItemGroupProps extends React$2.ComponentProps<'div'> {
@@ -1263,18 +1379,18 @@ declare const ItemGroup: React$2.ForwardRefExoticComponent<Omit<ItemGroupProps,
1263
1379
  declare function ItemSeparator({
1264
1380
  className,
1265
1381
  ...props
1266
- }: React$2.ComponentProps<typeof Separator>): react_jsx_runtime15.JSX.Element;
1382
+ }: React$2.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
1267
1383
  declare const Item: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1268
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;
1269
1385
  } & {
1270
1386
  render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
1271
1387
  } & VariantProps<(props?: ({
1272
- variant?: "default" | "muted" | "outline" | null | undefined;
1273
- size?: "default" | "xs" | "sm" | null | undefined;
1274
- } & 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>>;
1275
1391
  declare const ItemMedia: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLDivElement> & React$2.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
1276
- variant?: "default" | "image" | "icon" | null | undefined;
1277
- } & 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>>;
1278
1394
  declare const ItemContent: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1279
1395
  declare const ItemTitle: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
1280
1396
  declare const ItemDescription: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React$2.RefAttributes<HTMLParagraphElement>>;
@@ -1290,7 +1406,7 @@ declare const List: ({
1290
1406
  children,
1291
1407
  className,
1292
1408
  ...props
1293
- }: ListProps) => react_jsx_runtime15.JSX.Element;
1409
+ }: ListProps) => react_jsx_runtime0.JSX.Element;
1294
1410
  interface ListRowProps extends React$2.HTMLAttributes<HTMLDivElement> {
1295
1411
  children: React$2.ReactNode;
1296
1412
  }
@@ -1306,20 +1422,20 @@ declare const ListCol: ({
1306
1422
  children,
1307
1423
  className,
1308
1424
  ...props
1309
- }: ListColProps) => react_jsx_runtime15.JSX.Element;
1425
+ }: ListColProps) => react_jsx_runtime0.JSX.Element;
1310
1426
  //#endregion
1311
1427
  //#region src/components/pagination.d.ts
1312
1428
  declare function Pagination({
1313
1429
  className,
1314
1430
  ...props
1315
- }: React$2.ComponentProps<'nav'>): react_jsx_runtime15.JSX.Element;
1431
+ }: React$2.ComponentProps<'nav'>): react_jsx_runtime0.JSX.Element;
1316
1432
  declare function PaginationContent({
1317
1433
  className,
1318
1434
  ...props
1319
- }: React$2.ComponentProps<'ul'>): react_jsx_runtime15.JSX.Element;
1435
+ }: React$2.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
1320
1436
  declare function PaginationItem({
1321
1437
  ...props
1322
- }: React$2.ComponentProps<'li'>): react_jsx_runtime15.JSX.Element;
1438
+ }: React$2.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
1323
1439
  type PaginationLinkProps = {
1324
1440
  isActive?: boolean;
1325
1441
  } & Pick<React$2.ComponentProps<typeof Button>, 'size'> & React$2.ComponentProps<'a'>;
@@ -1328,25 +1444,25 @@ declare function PaginationLink({
1328
1444
  isActive,
1329
1445
  size,
1330
1446
  ...props
1331
- }: PaginationLinkProps): react_jsx_runtime15.JSX.Element;
1447
+ }: PaginationLinkProps): react_jsx_runtime0.JSX.Element;
1332
1448
  declare function PaginationPrevious({
1333
1449
  className,
1334
1450
  text,
1335
1451
  ...props
1336
1452
  }: React$2.ComponentProps<typeof PaginationLink> & {
1337
1453
  text?: string;
1338
- }): react_jsx_runtime15.JSX.Element;
1454
+ }): react_jsx_runtime0.JSX.Element;
1339
1455
  declare function PaginationNext({
1340
1456
  className,
1341
1457
  text,
1342
1458
  ...props
1343
1459
  }: React$2.ComponentProps<typeof PaginationLink> & {
1344
1460
  text?: string;
1345
- }): react_jsx_runtime15.JSX.Element;
1461
+ }): react_jsx_runtime0.JSX.Element;
1346
1462
  declare function PaginationEllipsis({
1347
1463
  className,
1348
1464
  ...props
1349
- }: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
1465
+ }: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
1350
1466
  //#endregion
1351
1467
  //#region src/components/progress.d.ts
1352
1468
  declare function Progress({
@@ -1354,33 +1470,33 @@ declare function Progress({
1354
1470
  children,
1355
1471
  value,
1356
1472
  ...props
1357
- }: Progress$1.Root.Props): react_jsx_runtime15.JSX.Element;
1473
+ }: Progress$1.Root.Props): react_jsx_runtime0.JSX.Element;
1358
1474
  declare function ProgressTrack({
1359
1475
  className,
1360
1476
  ...props
1361
- }: Progress$1.Track.Props): react_jsx_runtime15.JSX.Element;
1477
+ }: Progress$1.Track.Props): react_jsx_runtime0.JSX.Element;
1362
1478
  declare function ProgressIndicator({
1363
1479
  className,
1364
1480
  ...props
1365
- }: Progress$1.Indicator.Props): react_jsx_runtime15.JSX.Element;
1481
+ }: Progress$1.Indicator.Props): react_jsx_runtime0.JSX.Element;
1366
1482
  declare function ProgressLabel({
1367
1483
  className,
1368
1484
  ...props
1369
- }: Progress$1.Label.Props): react_jsx_runtime15.JSX.Element;
1485
+ }: Progress$1.Label.Props): react_jsx_runtime0.JSX.Element;
1370
1486
  declare function ProgressValue({
1371
1487
  className,
1372
1488
  ...props
1373
- }: Progress$1.Value.Props): react_jsx_runtime15.JSX.Element;
1489
+ }: Progress$1.Value.Props): react_jsx_runtime0.JSX.Element;
1374
1490
  //#endregion
1375
1491
  //#region src/components/radio-group.d.ts
1376
1492
  declare function RadioGroup({
1377
1493
  className,
1378
1494
  ...props
1379
- }: RadioGroup$1.Props): react_jsx_runtime15.JSX.Element;
1495
+ }: RadioGroup$1.Props): react_jsx_runtime0.JSX.Element;
1380
1496
  declare function RadioGroupItem({
1381
1497
  className,
1382
1498
  ...props
1383
- }: Radio.Root.Props): react_jsx_runtime15.JSX.Element;
1499
+ }: Radio.Root.Props): react_jsx_runtime0.JSX.Element;
1384
1500
  //#endregion
1385
1501
  //#region src/components/scroll-area.d.ts
1386
1502
  declare function ScrollArea({
@@ -1402,22 +1518,22 @@ declare function ScrollBar({
1402
1518
  //#region src/components/select.d.ts
1403
1519
  declare const selectTriggerVariants: (props?: ({
1404
1520
  size?: "default" | "sm" | null | undefined;
1405
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1521
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1406
1522
  declare const Select: typeof Select$1.Root;
1407
1523
  declare function SelectGroup({
1408
1524
  className,
1409
1525
  ...props
1410
- }: Select$1.Group.Props): react_jsx_runtime15.JSX.Element;
1526
+ }: Select$1.Group.Props): react_jsx_runtime0.JSX.Element;
1411
1527
  declare function SelectValue({
1412
1528
  className,
1413
1529
  ...props
1414
- }: Select$1.Value.Props): react_jsx_runtime15.JSX.Element;
1530
+ }: Select$1.Value.Props): react_jsx_runtime0.JSX.Element;
1415
1531
  declare function SelectTrigger({
1416
1532
  className,
1417
1533
  size,
1418
1534
  children,
1419
1535
  ...props
1420
- }: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>): react_jsx_runtime15.JSX.Element;
1536
+ }: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>): react_jsx_runtime0.JSX.Element;
1421
1537
  declare function SelectContent({
1422
1538
  className,
1423
1539
  children,
@@ -1427,39 +1543,39 @@ declare function SelectContent({
1427
1543
  alignOffset,
1428
1544
  alignItemWithTrigger,
1429
1545
  ...props
1430
- }: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset' | 'alignItemWithTrigger'>): react_jsx_runtime15.JSX.Element;
1546
+ }: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset' | 'alignItemWithTrigger'>): react_jsx_runtime0.JSX.Element;
1431
1547
  declare function SelectLabel({
1432
1548
  className,
1433
1549
  ...props
1434
- }: Select$1.GroupLabel.Props): react_jsx_runtime15.JSX.Element;
1550
+ }: Select$1.GroupLabel.Props): react_jsx_runtime0.JSX.Element;
1435
1551
  declare function SelectItem({
1436
1552
  className,
1437
1553
  children,
1438
1554
  ...props
1439
- }: Select$1.Item.Props): react_jsx_runtime15.JSX.Element;
1555
+ }: Select$1.Item.Props): react_jsx_runtime0.JSX.Element;
1440
1556
  declare function SelectSeparator({
1441
1557
  className,
1442
1558
  ...props
1443
- }: Select$1.Separator.Props): react_jsx_runtime15.JSX.Element;
1559
+ }: Select$1.Separator.Props): react_jsx_runtime0.JSX.Element;
1444
1560
  declare function SelectScrollUpButton({
1445
1561
  className,
1446
1562
  ...props
1447
- }: React$2.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime15.JSX.Element;
1563
+ }: React$2.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime0.JSX.Element;
1448
1564
  declare function SelectScrollDownButton({
1449
1565
  className,
1450
1566
  ...props
1451
- }: React$2.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime15.JSX.Element;
1567
+ }: React$2.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime0.JSX.Element;
1452
1568
  //#endregion
1453
1569
  //#region src/components/sheet.d.ts
1454
1570
  declare function Sheet({
1455
1571
  ...props
1456
- }: Dialog$1.Root.Props): react_jsx_runtime15.JSX.Element;
1572
+ }: Dialog$1.Root.Props): react_jsx_runtime0.JSX.Element;
1457
1573
  declare function SheetTrigger({
1458
1574
  ...props
1459
- }: Dialog$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
1575
+ }: Dialog$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
1460
1576
  declare function SheetClose({
1461
1577
  ...props
1462
- }: Dialog$1.Close.Props): react_jsx_runtime15.JSX.Element;
1578
+ }: Dialog$1.Close.Props): react_jsx_runtime0.JSX.Element;
1463
1579
  declare function SheetContent({
1464
1580
  className,
1465
1581
  children,
@@ -1470,35 +1586,35 @@ declare function SheetContent({
1470
1586
  }: Dialog$1.Popup.Props & {
1471
1587
  side?: "top" | "right" | "bottom" | "left";
1472
1588
  showCloseButton?: boolean;
1473
- } & Pick<Dialog$1.Portal.Props, "container">): react_jsx_runtime15.JSX.Element;
1589
+ } & Pick<Dialog$1.Portal.Props, "container">): react_jsx_runtime0.JSX.Element;
1474
1590
  declare function SheetHeader({
1475
1591
  className,
1476
1592
  ...props
1477
- }: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
1593
+ }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
1478
1594
  declare function SheetFooter({
1479
1595
  className,
1480
1596
  ...props
1481
- }: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
1597
+ }: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
1482
1598
  declare function SheetTitle({
1483
1599
  className,
1484
1600
  ...props
1485
- }: Dialog$1.Title.Props): react_jsx_runtime15.JSX.Element;
1601
+ }: Dialog$1.Title.Props): react_jsx_runtime0.JSX.Element;
1486
1602
  declare function SheetDescription({
1487
1603
  className,
1488
1604
  ...props
1489
- }: Dialog$1.Description.Props): react_jsx_runtime15.JSX.Element;
1605
+ }: Dialog$1.Description.Props): react_jsx_runtime0.JSX.Element;
1490
1606
  //#endregion
1491
1607
  //#region src/components/tooltip.d.ts
1492
1608
  declare function TooltipProvider({
1493
1609
  delay,
1494
1610
  ...props
1495
- }: Tooltip$1.Provider.Props): react_jsx_runtime15.JSX.Element;
1611
+ }: Tooltip$1.Provider.Props): react_jsx_runtime0.JSX.Element;
1496
1612
  declare function Tooltip({
1497
1613
  ...props
1498
- }: Tooltip$1.Root.Props): react_jsx_runtime15.JSX.Element;
1614
+ }: Tooltip$1.Root.Props): react_jsx_runtime0.JSX.Element;
1499
1615
  declare function TooltipTrigger({
1500
1616
  ...props
1501
- }: Tooltip$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
1617
+ }: Tooltip$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
1502
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>>;
1503
1619
  //#endregion
1504
1620
  //#region src/components/sidebar.d.ts
@@ -1524,7 +1640,7 @@ declare function SidebarProvider({
1524
1640
  defaultOpen?: boolean;
1525
1641
  open?: boolean;
1526
1642
  onOpenChange?: (open: boolean) => void;
1527
- }): react_jsx_runtime15.JSX.Element;
1643
+ }): react_jsx_runtime0.JSX.Element;
1528
1644
  declare function Sidebar({
1529
1645
  side,
1530
1646
  variant,
@@ -1537,44 +1653,44 @@ declare function Sidebar({
1537
1653
  side?: 'left' | 'right';
1538
1654
  variant?: 'sidebar' | 'floating' | 'inset';
1539
1655
  collapsible?: 'offcanvas' | 'icon' | 'none';
1540
- }): react_jsx_runtime15.JSX.Element;
1656
+ }): react_jsx_runtime0.JSX.Element;
1541
1657
  declare function SidebarTrigger({
1542
1658
  className,
1543
1659
  onClick,
1544
1660
  ...props
1545
- }: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
1661
+ }: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
1546
1662
  declare function SidebarRail({
1547
1663
  className,
1548
1664
  ...props
1549
- }: React$2.ComponentProps<'button'>): react_jsx_runtime15.JSX.Element;
1665
+ }: React$2.ComponentProps<'button'>): react_jsx_runtime0.JSX.Element;
1550
1666
  declare function SidebarInset({
1551
1667
  className,
1552
1668
  ...props
1553
- }: React$2.ComponentProps<'main'>): react_jsx_runtime15.JSX.Element;
1669
+ }: React$2.ComponentProps<'main'>): react_jsx_runtime0.JSX.Element;
1554
1670
  declare function SidebarInput({
1555
1671
  className,
1556
1672
  ...props
1557
- }: React$2.ComponentProps<typeof Input>): react_jsx_runtime15.JSX.Element;
1673
+ }: React$2.ComponentProps<typeof Input>): react_jsx_runtime0.JSX.Element;
1558
1674
  declare function SidebarHeader({
1559
1675
  className,
1560
1676
  ...props
1561
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1677
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1562
1678
  declare function SidebarFooter({
1563
1679
  className,
1564
1680
  ...props
1565
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1681
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1566
1682
  declare function SidebarSeparator({
1567
1683
  className,
1568
1684
  ...props
1569
- }: React$2.ComponentProps<typeof Separator>): react_jsx_runtime15.JSX.Element;
1685
+ }: React$2.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
1570
1686
  declare function SidebarContent({
1571
1687
  className,
1572
1688
  ...props
1573
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1689
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1574
1690
  declare function SidebarGroup({
1575
1691
  className,
1576
1692
  ...props
1577
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1693
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1578
1694
  declare function SidebarGroupLabel({
1579
1695
  className,
1580
1696
  render,
@@ -1588,15 +1704,15 @@ declare function SidebarGroupAction({
1588
1704
  declare function SidebarGroupContent({
1589
1705
  className,
1590
1706
  ...props
1591
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1707
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1592
1708
  declare function SidebarMenu({
1593
1709
  className,
1594
1710
  ...props
1595
- }: React$2.ComponentProps<'ul'>): react_jsx_runtime15.JSX.Element;
1711
+ }: React$2.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
1596
1712
  declare function SidebarMenuItem({
1597
1713
  className,
1598
1714
  ...props
1599
- }: React$2.ComponentProps<'li'>): react_jsx_runtime15.JSX.Element;
1715
+ }: React$2.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
1600
1716
  declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
1601
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;
1602
1718
  } & {
@@ -1606,8 +1722,8 @@ declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<Omit<Rea
1606
1722
  tooltip?: string | React$2.ComponentProps<typeof TooltipContent>;
1607
1723
  } & VariantProps<(props?: ({
1608
1724
  variant?: "default" | "outline" | null | undefined;
1609
- size?: "default" | "lg" | "sm" | null | undefined;
1610
- } & 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>>;
1611
1727
  declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
1612
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;
1613
1729
  } & {
@@ -1618,7 +1734,7 @@ declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<Omit<Rea
1618
1734
  declare function SidebarMenuBadge({
1619
1735
  className,
1620
1736
  ...props
1621
- }: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1737
+ }: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1622
1738
  declare function SidebarMenuSkeleton({
1623
1739
  className,
1624
1740
  showIcon,
@@ -1627,15 +1743,15 @@ declare function SidebarMenuSkeleton({
1627
1743
  }: Omit<React$2.ComponentProps<'div'>, 'width'> & {
1628
1744
  showIcon?: boolean; /** Override the randomized skeleton width (e.g. for deterministic stories). */
1629
1745
  width?: string;
1630
- }): react_jsx_runtime15.JSX.Element;
1746
+ }): react_jsx_runtime0.JSX.Element;
1631
1747
  declare function SidebarMenuSub({
1632
1748
  className,
1633
1749
  ...props
1634
- }: React$2.ComponentProps<'ul'>): react_jsx_runtime15.JSX.Element;
1750
+ }: React$2.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
1635
1751
  declare function SidebarMenuSubItem({
1636
1752
  className,
1637
1753
  ...props
1638
- }: React$2.ComponentProps<'li'>): react_jsx_runtime15.JSX.Element;
1754
+ }: React$2.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
1639
1755
  declare function SidebarMenuSubButton({
1640
1756
  render,
1641
1757
  size,
@@ -1651,7 +1767,7 @@ declare function SidebarMenuSubButton({
1651
1767
  declare function Skeleton({
1652
1768
  className,
1653
1769
  ...props
1654
- }: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
1770
+ }: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
1655
1771
  //#endregion
1656
1772
  //#region src/components/slider.d.ts
1657
1773
  declare function Slider({
@@ -1662,64 +1778,116 @@ declare function Slider({
1662
1778
  max,
1663
1779
  orientation,
1664
1780
  ...props
1665
- }: Slider$1.Root.Props): react_jsx_runtime15.JSX.Element;
1781
+ }: Slider$1.Root.Props): react_jsx_runtime0.JSX.Element;
1666
1782
  //#endregion
1667
1783
  //#region src/components/sonner.d.ts
1668
1784
  declare const Toaster: ({
1669
1785
  ...props
1670
- }: ToasterProps) => react_jsx_runtime15.JSX.Element;
1786
+ }: ToasterProps) => react_jsx_runtime0.JSX.Element;
1671
1787
  //#endregion
1672
1788
  //#region src/components/spinner.d.ts
1673
1789
  declare const spinnerVariants: (props?: ({
1674
- size?: "default" | "lg" | "sm" | "xl" | null | undefined;
1675
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1790
+ size?: "default" | "sm" | "lg" | "xl" | null | undefined;
1791
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1676
1792
  interface SpinnerProps extends React$2.ComponentProps<'svg'>, VariantProps<typeof spinnerVariants> {}
1677
1793
  declare function Spinner({
1678
1794
  className,
1679
1795
  size,
1680
1796
  ...props
1681
- }: SpinnerProps): react_jsx_runtime15.JSX.Element;
1797
+ }: SpinnerProps): react_jsx_runtime0.JSX.Element;
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
+ }
1682
1848
  //#endregion
1683
1849
  //#region src/components/switch.d.ts
1684
1850
  declare function Switch({
1685
1851
  className,
1686
1852
  ...props
1687
- }: Switch$1.Root.Props): react_jsx_runtime15.JSX.Element;
1853
+ }: Switch$1.Root.Props): react_jsx_runtime0.JSX.Element;
1688
1854
  //#endregion
1689
1855
  //#region src/components/table.d.ts
1690
- 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>>;
1691
1860
  declare const TableHeader: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$2.RefAttributes<HTMLTableSectionElement>>;
1692
1861
  declare const TableBody: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$2.RefAttributes<HTMLTableSectionElement>>;
1693
1862
  declare const TableFooter: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$2.RefAttributes<HTMLTableSectionElement>>;
1694
1863
  declare const TableRow: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & React$2.RefAttributes<HTMLTableRowElement>>;
1695
1864
  declare const TableHead: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref"> & React$2.RefAttributes<HTMLTableCellElement>>;
1696
1865
  declare const TableCell: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "ref"> & React$2.RefAttributes<HTMLTableCellElement>>;
1697
- declare const TableCaption: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React$2.RefAttributes<HTMLTableCaptionElement>>;
1698
1866
  //#endregion
1699
1867
  //#region src/components/tabs.d.ts
1700
1868
  declare function Tabs({
1701
1869
  className,
1702
1870
  orientation,
1703
1871
  ...props
1704
- }: Tabs$1.Root.Props): react_jsx_runtime15.JSX.Element;
1872
+ }: Tabs$1.Root.Props): react_jsx_runtime0.JSX.Element;
1705
1873
  declare function TabsList({
1706
1874
  className,
1707
1875
  ...props
1708
- }: Tabs$1.List.Props): react_jsx_runtime15.JSX.Element;
1876
+ }: Tabs$1.List.Props): react_jsx_runtime0.JSX.Element;
1709
1877
  declare function TabsTrigger({
1710
1878
  className,
1711
1879
  ...props
1712
- }: Tabs$1.Tab.Props): react_jsx_runtime15.JSX.Element;
1880
+ }: Tabs$1.Tab.Props): react_jsx_runtime0.JSX.Element;
1713
1881
  declare function TabsContent({
1714
1882
  className,
1715
1883
  ...props
1716
- }: Tabs$1.Panel.Props): react_jsx_runtime15.JSX.Element;
1884
+ }: Tabs$1.Panel.Props): react_jsx_runtime0.JSX.Element;
1717
1885
  //#endregion
1718
1886
  //#region src/components/textarea.d.ts
1719
1887
  declare function Textarea({
1720
1888
  className,
1721
1889
  ...props
1722
- }: React$2.ComponentProps<'textarea'>): react_jsx_runtime15.JSX.Element;
1890
+ }: React$2.ComponentProps<'textarea'>): react_jsx_runtime0.JSX.Element;
1723
1891
  //#endregion
1724
1892
  //#region src/components/theme-provider.d.ts
1725
1893
  type ThemeProviderProps = ThemeProviderProps$1;
@@ -1731,14 +1899,14 @@ declare function ThemeProvider({
1731
1899
  //#region src/components/toggle.d.ts
1732
1900
  declare const toggleVariants: (props?: ({
1733
1901
  variant?: "default" | "outline" | null | undefined;
1734
- size?: "default" | "lg" | "sm" | null | undefined;
1735
- } & class_variance_authority_types6.ClassProp) | undefined) => string;
1902
+ size?: "default" | "sm" | "lg" | null | undefined;
1903
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
1736
1904
  declare function Toggle({
1737
1905
  className,
1738
1906
  variant,
1739
1907
  size,
1740
1908
  ...props
1741
- }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime15.JSX.Element;
1909
+ }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime0.JSX.Element;
1742
1910
  //#endregion
1743
1911
  //#region src/components/toggle-group.d.ts
1744
1912
  declare function ToggleGroup({
@@ -1757,14 +1925,14 @@ declare function ToggleGroup({
1757
1925
  * Stretch the group to fill its container.
1758
1926
  */
1759
1927
  block?: boolean;
1760
- }): react_jsx_runtime15.JSX.Element;
1928
+ }): react_jsx_runtime0.JSX.Element;
1761
1929
  declare function ToggleGroupItem({
1762
1930
  className,
1763
1931
  children,
1764
1932
  variant,
1765
1933
  size,
1766
1934
  ...props
1767
- }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime15.JSX.Element;
1935
+ }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime0.JSX.Element;
1768
1936
  //#endregion
1769
1937
  //#region src/hooks/use-audio-gauge.d.ts
1770
1938
  interface UseAudioGaugeOptions {
@@ -1824,4 +1992,4 @@ declare function useAudioGauge(options?: UseAudioGaugeOptions): UseAudioGaugeRes
1824
1992
  //#region src/lib/utils.d.ts
1825
1993
  declare function cn(...inputs: ClassValue[]): string;
1826
1994
  //#endregion
1827
- 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, 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 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, 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, 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 };