eglador-ui-react 1.0.0-alpha.4 → 1.0.0-alpha.5
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.mts +284 -88
- package/dist/index.d.ts +284 -88
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -196,32 +196,55 @@ interface ButtonVariantOptions {
|
|
|
196
196
|
declare function buttonVariants({ variant, size, shape, }?: ButtonVariantOptions): string;
|
|
197
197
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
198
198
|
|
|
199
|
-
type CalendarMode = "single" | "range";
|
|
199
|
+
type CalendarMode = "single" | "range" | "multiple";
|
|
200
|
+
type CalendarSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
201
|
+
type CalendarCaptionLayout = "label" | "dropdown" | "dropdown-months" | "dropdown-years";
|
|
202
|
+
type CalendarWeekdayFormat = "narrow" | "short" | "long";
|
|
200
203
|
interface CalendarRange {
|
|
201
204
|
from?: Date;
|
|
202
205
|
to?: Date;
|
|
203
206
|
}
|
|
204
|
-
|
|
207
|
+
type CalendarSingleProps = {
|
|
205
208
|
mode?: "single";
|
|
206
209
|
value?: Date | undefined;
|
|
207
210
|
defaultValue?: Date;
|
|
208
211
|
onValueChange?: (value: Date | undefined) => void;
|
|
209
|
-
}
|
|
210
|
-
|
|
212
|
+
};
|
|
213
|
+
type CalendarRangeProps = {
|
|
211
214
|
mode: "range";
|
|
212
215
|
value?: CalendarRange;
|
|
213
216
|
defaultValue?: CalendarRange;
|
|
214
217
|
onValueChange?: (value: CalendarRange) => void;
|
|
215
|
-
}
|
|
216
|
-
type
|
|
218
|
+
};
|
|
219
|
+
type CalendarMultipleProps = {
|
|
220
|
+
mode: "multiple";
|
|
221
|
+
value?: Date[];
|
|
222
|
+
defaultValue?: Date[];
|
|
223
|
+
onValueChange?: (value: Date[]) => void;
|
|
224
|
+
max?: number;
|
|
225
|
+
};
|
|
226
|
+
type SharedCalendarProps = {
|
|
217
227
|
month?: Date;
|
|
218
228
|
defaultMonth?: Date;
|
|
219
229
|
onMonthChange?: (month: Date) => void;
|
|
220
230
|
minDate?: Date;
|
|
221
231
|
maxDate?: Date;
|
|
222
232
|
disabledDates?: (date: Date) => boolean;
|
|
233
|
+
size?: CalendarSize;
|
|
234
|
+
captionLayout?: CalendarCaptionLayout;
|
|
235
|
+
numberOfMonths?: number;
|
|
236
|
+
showWeekNumber?: boolean;
|
|
237
|
+
showOutsideDays?: boolean;
|
|
238
|
+
fixedWeeks?: boolean;
|
|
239
|
+
firstDayOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
240
|
+
locale?: string;
|
|
241
|
+
weekdayFormat?: CalendarWeekdayFormat;
|
|
242
|
+
yearRange?: [number, number];
|
|
243
|
+
footer?: React.ReactNode;
|
|
223
244
|
className?: string;
|
|
245
|
+
dir?: "ltr" | "rtl";
|
|
224
246
|
};
|
|
247
|
+
type CalendarProps = (CalendarSingleProps | CalendarRangeProps | CalendarMultipleProps) & SharedCalendarProps;
|
|
225
248
|
declare function Calendar(props: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
226
249
|
|
|
227
250
|
type ButtonGroupOrientation = "horizontal" | "vertical";
|
|
@@ -287,10 +310,55 @@ interface CollapsibleContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
287
310
|
}
|
|
288
311
|
declare const CollapsibleContent: React.ForwardRefExoticComponent<CollapsibleContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
289
312
|
|
|
313
|
+
type DialogSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
314
|
+
type DialogShape = "square" | "rounded";
|
|
315
|
+
type DialogShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
316
|
+
interface DialogProps {
|
|
317
|
+
open?: boolean;
|
|
318
|
+
defaultOpen?: boolean;
|
|
319
|
+
onOpenChange?: (open: boolean) => void;
|
|
320
|
+
size?: DialogSize;
|
|
321
|
+
shape?: DialogShape;
|
|
322
|
+
shadow?: DialogShadow;
|
|
323
|
+
modal?: boolean;
|
|
324
|
+
children: React.ReactNode;
|
|
325
|
+
}
|
|
326
|
+
declare function Dialog({ open: controlled, defaultOpen, onOpenChange, size, shape, shadow, modal, children, }: DialogProps): react_jsx_runtime.JSX.Element;
|
|
327
|
+
interface DialogTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
328
|
+
asChild?: boolean;
|
|
329
|
+
}
|
|
330
|
+
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
331
|
+
interface DialogOverlayProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
332
|
+
}
|
|
333
|
+
declare const DialogOverlay: React.ForwardRefExoticComponent<DialogOverlayProps & React.RefAttributes<HTMLDivElement>>;
|
|
334
|
+
interface DialogContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
335
|
+
showClose?: boolean;
|
|
336
|
+
closeOnOverlay?: boolean;
|
|
337
|
+
}
|
|
338
|
+
declare const DialogContent: React.ForwardRefExoticComponent<DialogContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
339
|
+
interface DialogHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
340
|
+
}
|
|
341
|
+
declare const DialogHeader: React.ForwardRefExoticComponent<DialogHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
342
|
+
interface DialogFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
343
|
+
}
|
|
344
|
+
declare const DialogFooter: React.ForwardRefExoticComponent<DialogFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
345
|
+
interface DialogTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
|
346
|
+
}
|
|
347
|
+
declare const DialogTitle: React.ForwardRefExoticComponent<DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
348
|
+
interface DialogDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
|
|
349
|
+
}
|
|
350
|
+
declare const DialogDescription: React.ForwardRefExoticComponent<DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
351
|
+
interface DialogCloseProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
352
|
+
asChild?: boolean;
|
|
353
|
+
}
|
|
354
|
+
declare const DialogClose: React.ForwardRefExoticComponent<DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
355
|
+
|
|
290
356
|
interface CommandProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
291
357
|
defaultFilter?: string;
|
|
292
358
|
filter?: string;
|
|
293
359
|
onFilterChange?: (filter: string) => void;
|
|
360
|
+
shouldFilter?: boolean;
|
|
361
|
+
loop?: boolean;
|
|
294
362
|
}
|
|
295
363
|
declare const Command: React.ForwardRefExoticComponent<CommandProps & React.RefAttributes<HTMLDivElement>>;
|
|
296
364
|
interface CommandInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
|
|
@@ -308,6 +376,7 @@ interface CommandGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
308
376
|
declare const CommandGroup: React.ForwardRefExoticComponent<CommandGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
309
377
|
interface CommandItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect"> {
|
|
310
378
|
value: string;
|
|
379
|
+
keywords?: string[];
|
|
311
380
|
disabled?: boolean;
|
|
312
381
|
onSelect?: (value: string) => void;
|
|
313
382
|
}
|
|
@@ -318,14 +387,27 @@ declare const CommandSeparator: React.ForwardRefExoticComponent<CommandSeparator
|
|
|
318
387
|
interface CommandShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
319
388
|
}
|
|
320
389
|
declare const CommandShortcut: React.ForwardRefExoticComponent<CommandShortcutProps & React.RefAttributes<HTMLSpanElement>>;
|
|
390
|
+
interface CommandDialogProps extends DialogProps {
|
|
391
|
+
title?: React.ReactNode;
|
|
392
|
+
description?: React.ReactNode;
|
|
393
|
+
commandProps?: Omit<CommandProps, "children">;
|
|
394
|
+
size?: DialogSize;
|
|
395
|
+
shape?: DialogShape;
|
|
396
|
+
shadow?: DialogShadow;
|
|
397
|
+
}
|
|
398
|
+
declare function CommandDialog({ title, description, commandProps, children, size, shape, shadow, ...dialogProps }: CommandDialogProps & {
|
|
399
|
+
children: React.ReactNode;
|
|
400
|
+
}): react_jsx_runtime.JSX.Element;
|
|
401
|
+
declare namespace CommandDialog {
|
|
402
|
+
var displayName: string;
|
|
403
|
+
}
|
|
321
404
|
|
|
322
405
|
interface ContextMenuProps {
|
|
323
406
|
open?: boolean;
|
|
324
|
-
defaultOpen?: boolean;
|
|
325
407
|
onOpenChange?: (open: boolean) => void;
|
|
326
408
|
children: React.ReactNode;
|
|
327
409
|
}
|
|
328
|
-
declare function ContextMenu({ open: controlled,
|
|
410
|
+
declare function ContextMenu({ open: controlled, onOpenChange, children, }: ContextMenuProps): react_jsx_runtime.JSX.Element;
|
|
329
411
|
interface ContextMenuTriggerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
330
412
|
asChild?: boolean;
|
|
331
413
|
disabled?: boolean;
|
|
@@ -334,9 +416,11 @@ declare const ContextMenuTrigger: React.ForwardRefExoticComponent<ContextMenuTri
|
|
|
334
416
|
interface ContextMenuContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
335
417
|
}
|
|
336
418
|
declare const ContextMenuContent: React.ForwardRefExoticComponent<ContextMenuContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
419
|
+
type ContextMenuItemVariant = "default" | "destructive";
|
|
337
420
|
interface ContextMenuItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect"> {
|
|
338
421
|
disabled?: boolean;
|
|
339
422
|
inset?: boolean;
|
|
423
|
+
variant?: ContextMenuItemVariant;
|
|
340
424
|
onSelect?: (e: Event) => void;
|
|
341
425
|
}
|
|
342
426
|
declare const ContextMenuItem: React.ForwardRefExoticComponent<ContextMenuItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -356,6 +440,9 @@ interface ContextMenuRadioItemProps extends Omit<ContextMenuItemProps, "inset">
|
|
|
356
440
|
value: string;
|
|
357
441
|
}
|
|
358
442
|
declare const ContextMenuRadioItem: React.ForwardRefExoticComponent<ContextMenuRadioItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
443
|
+
interface ContextMenuGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
444
|
+
}
|
|
445
|
+
declare const ContextMenuGroup: React.ForwardRefExoticComponent<ContextMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
359
446
|
interface ContextMenuLabelProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
360
447
|
inset?: boolean;
|
|
361
448
|
}
|
|
@@ -366,19 +453,59 @@ declare const ContextMenuSeparator: React.ForwardRefExoticComponent<ContextMenuS
|
|
|
366
453
|
interface ContextMenuShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
367
454
|
}
|
|
368
455
|
declare const ContextMenuShortcut: React.ForwardRefExoticComponent<ContextMenuShortcutProps & React.RefAttributes<HTMLSpanElement>>;
|
|
456
|
+
type ContextMenuSubSide = "right" | "left";
|
|
457
|
+
interface ContextMenuSubProps {
|
|
458
|
+
open?: boolean;
|
|
459
|
+
defaultOpen?: boolean;
|
|
460
|
+
onOpenChange?: (open: boolean) => void;
|
|
461
|
+
children: React.ReactNode;
|
|
462
|
+
}
|
|
463
|
+
declare function ContextMenuSub({ open: controlled, defaultOpen, onOpenChange, children, }: ContextMenuSubProps): react_jsx_runtime.JSX.Element;
|
|
464
|
+
interface ContextMenuSubTriggerProps extends Omit<ContextMenuItemProps, "onSelect"> {
|
|
465
|
+
}
|
|
466
|
+
declare const ContextMenuSubTrigger: React.ForwardRefExoticComponent<ContextMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>>;
|
|
467
|
+
interface ContextMenuSubContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
468
|
+
side?: ContextMenuSubSide;
|
|
469
|
+
sideOffset?: number;
|
|
470
|
+
}
|
|
471
|
+
declare const ContextMenuSubContent: React.ForwardRefExoticComponent<ContextMenuSubContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
369
472
|
|
|
370
|
-
|
|
473
|
+
type DatePickerSingleProps = {
|
|
474
|
+
mode?: "single";
|
|
371
475
|
value?: Date | undefined;
|
|
372
476
|
defaultValue?: Date;
|
|
373
477
|
onValueChange?: (value: Date | undefined) => void;
|
|
478
|
+
format?: (d: Date | undefined) => string;
|
|
479
|
+
};
|
|
480
|
+
type DatePickerRangeProps = {
|
|
481
|
+
mode: "range";
|
|
482
|
+
value?: CalendarRange;
|
|
483
|
+
defaultValue?: CalendarRange;
|
|
484
|
+
onValueChange?: (value: CalendarRange) => void;
|
|
485
|
+
format?: (r: CalendarRange | undefined) => string;
|
|
486
|
+
};
|
|
487
|
+
type SharedDatePickerProps = {
|
|
374
488
|
placeholder?: string;
|
|
375
489
|
disabled?: boolean;
|
|
376
|
-
|
|
490
|
+
clearable?: boolean;
|
|
377
491
|
className?: string;
|
|
378
492
|
minDate?: Date;
|
|
379
493
|
maxDate?: Date;
|
|
380
|
-
|
|
381
|
-
|
|
494
|
+
disabledDates?: (d: Date) => boolean;
|
|
495
|
+
size?: CalendarSize;
|
|
496
|
+
captionLayout?: CalendarCaptionLayout;
|
|
497
|
+
numberOfMonths?: number;
|
|
498
|
+
firstDayOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
499
|
+
locale?: string;
|
|
500
|
+
weekdayFormat?: CalendarWeekdayFormat;
|
|
501
|
+
yearRange?: [number, number];
|
|
502
|
+
showWeekNumber?: boolean;
|
|
503
|
+
showOutsideDays?: boolean;
|
|
504
|
+
fixedWeeks?: boolean;
|
|
505
|
+
dir?: "ltr" | "rtl";
|
|
506
|
+
};
|
|
507
|
+
type DatePickerProps = (DatePickerSingleProps | DatePickerRangeProps) & SharedDatePickerProps;
|
|
508
|
+
declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
382
509
|
|
|
383
510
|
interface DateTimePickerProps {
|
|
384
511
|
value?: Date | undefined;
|
|
@@ -386,57 +513,28 @@ interface DateTimePickerProps {
|
|
|
386
513
|
onValueChange?: (value: Date | undefined) => void;
|
|
387
514
|
placeholder?: string;
|
|
388
515
|
disabled?: boolean;
|
|
516
|
+
clearable?: boolean;
|
|
389
517
|
format?: (d: Date | undefined) => string;
|
|
390
518
|
className?: string;
|
|
391
519
|
step?: number;
|
|
392
520
|
showSeconds?: boolean;
|
|
521
|
+
hour12?: boolean;
|
|
393
522
|
minDate?: Date;
|
|
394
523
|
maxDate?: Date;
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
children: React.ReactNode;
|
|
410
|
-
}
|
|
411
|
-
declare function Dialog({ open: controlled, defaultOpen, onOpenChange, size, shape, shadow, modal, children, }: DialogProps): react_jsx_runtime.JSX.Element;
|
|
412
|
-
interface DialogTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
413
|
-
asChild?: boolean;
|
|
414
|
-
}
|
|
415
|
-
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
416
|
-
interface DialogOverlayProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
417
|
-
}
|
|
418
|
-
declare const DialogOverlay: React.ForwardRefExoticComponent<DialogOverlayProps & React.RefAttributes<HTMLDivElement>>;
|
|
419
|
-
interface DialogContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
420
|
-
showClose?: boolean;
|
|
421
|
-
closeOnOverlay?: boolean;
|
|
422
|
-
}
|
|
423
|
-
declare const DialogContent: React.ForwardRefExoticComponent<DialogContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
424
|
-
interface DialogHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
425
|
-
}
|
|
426
|
-
declare const DialogHeader: React.ForwardRefExoticComponent<DialogHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
427
|
-
interface DialogFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
428
|
-
}
|
|
429
|
-
declare const DialogFooter: React.ForwardRefExoticComponent<DialogFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
430
|
-
interface DialogTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
|
431
|
-
}
|
|
432
|
-
declare const DialogTitle: React.ForwardRefExoticComponent<DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
433
|
-
interface DialogDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
|
|
434
|
-
}
|
|
435
|
-
declare const DialogDescription: React.ForwardRefExoticComponent<DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
436
|
-
interface DialogCloseProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
437
|
-
asChild?: boolean;
|
|
438
|
-
}
|
|
439
|
-
declare const DialogClose: React.ForwardRefExoticComponent<DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
524
|
+
disabledDates?: (d: Date) => boolean;
|
|
525
|
+
size?: CalendarSize;
|
|
526
|
+
captionLayout?: CalendarCaptionLayout;
|
|
527
|
+
numberOfMonths?: number;
|
|
528
|
+
firstDayOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
529
|
+
locale?: string;
|
|
530
|
+
weekdayFormat?: CalendarWeekdayFormat;
|
|
531
|
+
yearRange?: [number, number];
|
|
532
|
+
showWeekNumber?: boolean;
|
|
533
|
+
showOutsideDays?: boolean;
|
|
534
|
+
fixedWeeks?: boolean;
|
|
535
|
+
dir?: "ltr" | "rtl";
|
|
536
|
+
}
|
|
537
|
+
declare function DateTimePicker({ value: controlled, defaultValue, onValueChange, placeholder, disabled, clearable, format, className, step, showSeconds, hour12, minDate, maxDate, disabledDates, size, captionLayout, numberOfMonths, firstDayOfWeek, locale, weekdayFormat, yearRange, showWeekNumber, showOutsideDays, fixedWeeks, dir, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
440
538
|
|
|
441
539
|
type DrawerSide = "top" | "right" | "bottom" | "left";
|
|
442
540
|
type DrawerSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
@@ -536,16 +634,26 @@ interface DropdownShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
536
634
|
}
|
|
537
635
|
declare const DropdownShortcut: React.ForwardRefExoticComponent<DropdownShortcutProps & React.RefAttributes<HTMLSpanElement>>;
|
|
538
636
|
|
|
539
|
-
|
|
540
|
-
interface EmptyProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
541
|
-
icon?: React.ReactNode;
|
|
542
|
-
title?: React.ReactNode;
|
|
543
|
-
description?: React.ReactNode;
|
|
544
|
-
size?: EmptySize;
|
|
545
|
-
action?: React.ReactNode;
|
|
546
|
-
children?: React.ReactNode;
|
|
637
|
+
interface EmptyProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
547
638
|
}
|
|
548
639
|
declare const Empty: React.ForwardRefExoticComponent<EmptyProps & React.RefAttributes<HTMLDivElement>>;
|
|
640
|
+
interface EmptyHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
641
|
+
}
|
|
642
|
+
declare const EmptyHeader: React.ForwardRefExoticComponent<EmptyHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
643
|
+
type EmptyMediaVariant = "default" | "icon";
|
|
644
|
+
interface EmptyMediaProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
645
|
+
variant?: EmptyMediaVariant;
|
|
646
|
+
}
|
|
647
|
+
declare const EmptyMedia: React.ForwardRefExoticComponent<EmptyMediaProps & React.RefAttributes<HTMLDivElement>>;
|
|
648
|
+
interface EmptyTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
|
649
|
+
}
|
|
650
|
+
declare const EmptyTitle: React.ForwardRefExoticComponent<EmptyTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
651
|
+
interface EmptyDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
|
|
652
|
+
}
|
|
653
|
+
declare const EmptyDescription: React.ForwardRefExoticComponent<EmptyDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
654
|
+
interface EmptyContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
655
|
+
}
|
|
656
|
+
declare const EmptyContent: React.ForwardRefExoticComponent<EmptyContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
549
657
|
|
|
550
658
|
interface HoverCardProps {
|
|
551
659
|
open?: boolean;
|
|
@@ -635,7 +743,7 @@ interface InputGroupTextProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
635
743
|
}
|
|
636
744
|
declare const InputGroupText: React.ForwardRefExoticComponent<InputGroupTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
637
745
|
|
|
638
|
-
type InputOTPSize = "sm" | "md" | "lg" | "xl";
|
|
746
|
+
type InputOTPSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
639
747
|
interface InputOTPProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
640
748
|
value?: string;
|
|
641
749
|
defaultValue?: string;
|
|
@@ -743,7 +851,7 @@ interface MenubarShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
743
851
|
declare const MenubarShortcut: React.ForwardRefExoticComponent<MenubarShortcutProps & React.RefAttributes<HTMLSpanElement>>;
|
|
744
852
|
|
|
745
853
|
type MultiSelectSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
746
|
-
type MultiSelectVariant = "outline" | "soft";
|
|
854
|
+
type MultiSelectVariant = "outline" | "soft" | "ghost";
|
|
747
855
|
type MultiSelectShape = "square" | "rounded" | "pill";
|
|
748
856
|
interface MultiSelectOption {
|
|
749
857
|
value: string;
|
|
@@ -1007,7 +1115,7 @@ declare const ResizableHandle: React.ForwardRefExoticComponent<ResizableHandlePr
|
|
|
1007
1115
|
|
|
1008
1116
|
type ScrollAreaOrientation = "vertical" | "horizontal" | "both";
|
|
1009
1117
|
type ScrollAreaScrollbarVisibility = "auto" | "always" | "hover";
|
|
1010
|
-
type ScrollAreaSize = "xs" | "sm" | "md" | "lg";
|
|
1118
|
+
type ScrollAreaSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1011
1119
|
interface ScrollAreaProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1012
1120
|
orientation?: ScrollAreaOrientation;
|
|
1013
1121
|
scrollbarVisibility?: ScrollAreaScrollbarVisibility;
|
|
@@ -1072,51 +1180,120 @@ declare const Separator: React.ForwardRefExoticComponent<SeparatorProps & React.
|
|
|
1072
1180
|
|
|
1073
1181
|
type SidebarSide = "left" | "right";
|
|
1074
1182
|
type SidebarVariant = "sidebar" | "floating" | "inset";
|
|
1183
|
+
type SidebarCollapsible = "offcanvas" | "icon" | "none";
|
|
1184
|
+
type SidebarState = "expanded" | "collapsed";
|
|
1185
|
+
interface SidebarContextValue {
|
|
1186
|
+
state: SidebarState;
|
|
1187
|
+
open: boolean;
|
|
1188
|
+
setOpen: (open: boolean) => void;
|
|
1189
|
+
openMobile: boolean;
|
|
1190
|
+
setOpenMobile: (open: boolean) => void;
|
|
1191
|
+
isMobile: boolean;
|
|
1192
|
+
toggleSidebar: () => void;
|
|
1193
|
+
activeId: string | undefined;
|
|
1194
|
+
setActiveId: (id: string | undefined) => void;
|
|
1195
|
+
}
|
|
1196
|
+
declare function useSidebar(): SidebarContextValue;
|
|
1075
1197
|
interface SidebarProviderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1076
|
-
open?: boolean;
|
|
1077
1198
|
defaultOpen?: boolean;
|
|
1199
|
+
open?: boolean;
|
|
1078
1200
|
onOpenChange?: (open: boolean) => void;
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1201
|
+
defaultActiveId?: string;
|
|
1202
|
+
activeId?: string;
|
|
1203
|
+
onActiveIdChange?: (id: string | undefined) => void;
|
|
1204
|
+
/** When set, the open state is persisted to localStorage under this key. */
|
|
1205
|
+
persistKey?: string;
|
|
1206
|
+
}
|
|
1207
|
+
declare const SidebarProvider: React.ForwardRefExoticComponent<SidebarProviderProps & React.RefAttributes<HTMLDivElement>>;
|
|
1208
|
+
interface SidebarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1082
1209
|
side?: SidebarSide;
|
|
1083
1210
|
variant?: SidebarVariant;
|
|
1211
|
+
collapsible?: SidebarCollapsible;
|
|
1084
1212
|
}
|
|
1085
|
-
declare const
|
|
1086
|
-
interface
|
|
1213
|
+
declare const Sidebar: React.ForwardRefExoticComponent<SidebarProps & React.RefAttributes<HTMLDivElement>>;
|
|
1214
|
+
interface SidebarTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1215
|
+
}
|
|
1216
|
+
declare const SidebarTrigger: React.ForwardRefExoticComponent<SidebarTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
1217
|
+
interface SidebarRailProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1218
|
+
}
|
|
1219
|
+
declare const SidebarRail: React.ForwardRefExoticComponent<SidebarRailProps & React.RefAttributes<HTMLButtonElement>>;
|
|
1220
|
+
interface SidebarInsetProps extends React.HTMLAttributes<HTMLElement> {
|
|
1087
1221
|
}
|
|
1088
|
-
declare const
|
|
1222
|
+
declare const SidebarInset: React.ForwardRefExoticComponent<SidebarInsetProps & React.RefAttributes<HTMLElement>>;
|
|
1089
1223
|
interface SidebarHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1090
1224
|
}
|
|
1091
1225
|
declare const SidebarHeader: React.ForwardRefExoticComponent<SidebarHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
1226
|
+
interface SidebarFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1227
|
+
}
|
|
1228
|
+
declare const SidebarFooter: React.ForwardRefExoticComponent<SidebarFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
1092
1229
|
interface SidebarContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1093
1230
|
}
|
|
1094
1231
|
declare const SidebarContent: React.ForwardRefExoticComponent<SidebarContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
1095
|
-
interface
|
|
1232
|
+
interface SidebarSeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1096
1233
|
}
|
|
1097
|
-
declare const
|
|
1234
|
+
declare const SidebarSeparator: React.ForwardRefExoticComponent<SidebarSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
1098
1235
|
interface SidebarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1099
|
-
label?: React.ReactNode;
|
|
1100
1236
|
}
|
|
1101
1237
|
declare const SidebarGroup: React.ForwardRefExoticComponent<SidebarGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
1238
|
+
interface SidebarGroupLabelProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1239
|
+
asChild?: boolean;
|
|
1240
|
+
}
|
|
1241
|
+
declare const SidebarGroupLabel: React.ForwardRefExoticComponent<SidebarGroupLabelProps & React.RefAttributes<HTMLDivElement>>;
|
|
1242
|
+
interface SidebarGroupActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1243
|
+
asChild?: boolean;
|
|
1244
|
+
}
|
|
1245
|
+
declare const SidebarGroupAction: React.ForwardRefExoticComponent<SidebarGroupActionProps & React.RefAttributes<HTMLButtonElement>>;
|
|
1246
|
+
interface SidebarGroupContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1247
|
+
}
|
|
1248
|
+
declare const SidebarGroupContent: React.ForwardRefExoticComponent<SidebarGroupContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
1102
1249
|
interface SidebarMenuProps extends React.HTMLAttributes<HTMLUListElement> {
|
|
1103
1250
|
}
|
|
1104
1251
|
declare const SidebarMenu: React.ForwardRefExoticComponent<SidebarMenuProps & React.RefAttributes<HTMLUListElement>>;
|
|
1105
1252
|
interface SidebarMenuItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
|
|
1106
1253
|
}
|
|
1107
1254
|
declare const SidebarMenuItem: React.ForwardRefExoticComponent<SidebarMenuItemProps & React.RefAttributes<HTMLLIElement>>;
|
|
1255
|
+
type SidebarMenuButtonSize = "sm" | "md" | "lg";
|
|
1108
1256
|
interface SidebarMenuButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1109
1257
|
asChild?: boolean;
|
|
1110
|
-
|
|
1111
|
-
|
|
1258
|
+
isActive?: boolean;
|
|
1259
|
+
size?: SidebarMenuButtonSize;
|
|
1260
|
+
/** When set, the button auto-marks itself active if the Provider's `activeId` matches. */
|
|
1261
|
+
value?: string;
|
|
1262
|
+
/**
|
|
1263
|
+
* Label shown as a tooltip when the sidebar is collapsed to icon mode.
|
|
1264
|
+
* Pass `false` to suppress the tooltip even in icon mode.
|
|
1265
|
+
*/
|
|
1266
|
+
tooltip?: React.ReactNode | false;
|
|
1112
1267
|
}
|
|
1113
1268
|
declare const SidebarMenuButton: React.ForwardRefExoticComponent<SidebarMenuButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
1114
|
-
interface
|
|
1269
|
+
interface SidebarMenuActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1270
|
+
asChild?: boolean;
|
|
1271
|
+
showOnHover?: boolean;
|
|
1115
1272
|
}
|
|
1116
|
-
declare const
|
|
1117
|
-
interface
|
|
1273
|
+
declare const SidebarMenuAction: React.ForwardRefExoticComponent<SidebarMenuActionProps & React.RefAttributes<HTMLButtonElement>>;
|
|
1274
|
+
interface SidebarMenuBadgeProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1118
1275
|
}
|
|
1119
|
-
declare const
|
|
1276
|
+
declare const SidebarMenuBadge: React.ForwardRefExoticComponent<SidebarMenuBadgeProps & React.RefAttributes<HTMLDivElement>>;
|
|
1277
|
+
interface SidebarMenuSkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1278
|
+
showIcon?: boolean;
|
|
1279
|
+
}
|
|
1280
|
+
declare const SidebarMenuSkeleton: React.ForwardRefExoticComponent<SidebarMenuSkeletonProps & React.RefAttributes<HTMLDivElement>>;
|
|
1281
|
+
interface SidebarMenuSubProps extends React.HTMLAttributes<HTMLUListElement> {
|
|
1282
|
+
}
|
|
1283
|
+
declare const SidebarMenuSub: React.ForwardRefExoticComponent<SidebarMenuSubProps & React.RefAttributes<HTMLUListElement>>;
|
|
1284
|
+
interface SidebarMenuSubItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
|
|
1285
|
+
}
|
|
1286
|
+
declare const SidebarMenuSubItem: React.ForwardRefExoticComponent<SidebarMenuSubItemProps & React.RefAttributes<HTMLLIElement>>;
|
|
1287
|
+
interface SidebarMenuSubButtonProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1288
|
+
asChild?: boolean;
|
|
1289
|
+
isActive?: boolean;
|
|
1290
|
+
size?: "sm" | "md";
|
|
1291
|
+
value?: string;
|
|
1292
|
+
}
|
|
1293
|
+
declare const SidebarMenuSubButton: React.ForwardRefExoticComponent<SidebarMenuSubButtonProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
1294
|
+
interface SidebarInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
1295
|
+
}
|
|
1296
|
+
declare const SidebarInput: React.ForwardRefExoticComponent<SidebarInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
1120
1297
|
|
|
1121
1298
|
type SkeletonVariant = "text" | "circular" | "rectangular" | "rounded";
|
|
1122
1299
|
type SkeletonAnimation = "pulse" | "wave" | "none";
|
|
@@ -1134,13 +1311,23 @@ declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.Re
|
|
|
1134
1311
|
declare function ensureSkeletonStyles(): void;
|
|
1135
1312
|
|
|
1136
1313
|
type SpeedDialDirection = "up" | "down" | "left" | "right";
|
|
1137
|
-
type SpeedDialSize = "sm" | "md" | "lg";
|
|
1314
|
+
type SpeedDialSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1315
|
+
type SpeedDialShape = "circle" | "rounded" | "square";
|
|
1316
|
+
type SpeedDialShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
1317
|
+
type SpeedDialPosition = "inline" | "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
1138
1318
|
interface SpeedDialProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1139
1319
|
open?: boolean;
|
|
1140
1320
|
defaultOpen?: boolean;
|
|
1141
1321
|
onOpenChange?: (open: boolean) => void;
|
|
1142
1322
|
direction?: SpeedDialDirection;
|
|
1143
1323
|
size?: SpeedDialSize;
|
|
1324
|
+
shape?: SpeedDialShape;
|
|
1325
|
+
shadow?: SpeedDialShadow;
|
|
1326
|
+
position?: SpeedDialPosition;
|
|
1327
|
+
disabled?: boolean;
|
|
1328
|
+
backdrop?: boolean;
|
|
1329
|
+
closeOnOutsideClick?: boolean;
|
|
1330
|
+
closeOnEscape?: boolean;
|
|
1144
1331
|
}
|
|
1145
1332
|
declare const SpeedDial: React.ForwardRefExoticComponent<SpeedDialProps & React.RefAttributes<HTMLDivElement>>;
|
|
1146
1333
|
interface SpeedDialTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
@@ -1245,6 +1432,10 @@ interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
1245
1432
|
}
|
|
1246
1433
|
declare const TabsContent: React.ForwardRefExoticComponent<TabsContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
1247
1434
|
|
|
1435
|
+
type TooltipSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1436
|
+
type TooltipVariant = "solid" | "soft" | "outline";
|
|
1437
|
+
type TooltipShape = "square" | "rounded";
|
|
1438
|
+
type TooltipShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
1248
1439
|
interface TooltipProps {
|
|
1249
1440
|
open?: boolean;
|
|
1250
1441
|
defaultOpen?: boolean;
|
|
@@ -1255,9 +1446,14 @@ interface TooltipProps {
|
|
|
1255
1446
|
alignOffset?: number;
|
|
1256
1447
|
delayDuration?: number;
|
|
1257
1448
|
closeDelay?: number;
|
|
1449
|
+
size?: TooltipSize;
|
|
1450
|
+
variant?: TooltipVariant;
|
|
1451
|
+
shape?: TooltipShape;
|
|
1452
|
+
shadow?: TooltipShadow;
|
|
1453
|
+
disabled?: boolean;
|
|
1258
1454
|
children: React.ReactNode;
|
|
1259
1455
|
}
|
|
1260
|
-
declare function Tooltip({ open: controlled, defaultOpen, onOpenChange, side, align, sideOffset, alignOffset, delayDuration, closeDelay, children, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
1456
|
+
declare function Tooltip({ open: controlled, defaultOpen, onOpenChange, side, align, sideOffset, alignOffset, delayDuration, closeDelay, size, variant, shape, shadow, disabled, children, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
1261
1457
|
interface TooltipTriggerProps extends React.HTMLAttributes<HTMLElement> {
|
|
1262
1458
|
asChild?: boolean;
|
|
1263
1459
|
}
|
|
@@ -1267,7 +1463,7 @@ interface TooltipContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
1267
1463
|
}
|
|
1268
1464
|
declare const TooltipContent: React.ForwardRefExoticComponent<TooltipContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
1269
1465
|
|
|
1270
|
-
type TreeViewSize = "xs" | "sm" | "md" | "lg";
|
|
1466
|
+
type TreeViewSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1271
1467
|
interface TreeViewProps extends React.HTMLAttributes<HTMLUListElement> {
|
|
1272
1468
|
defaultExpanded?: string[];
|
|
1273
1469
|
expanded?: string[];
|
|
@@ -1307,4 +1503,4 @@ interface TypographyProps extends Omit<React.HTMLAttributes<HTMLElement>, "color
|
|
|
1307
1503
|
}
|
|
1308
1504
|
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
|
|
1309
1505
|
|
|
1310
|
-
export { Accordion, AccordionContent, type AccordionContentProps, type AccordionIconPosition, type AccordionIndicator, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionShape, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionVariant, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, type AlertDialogProps, type AlertDialogShadow, type AlertDialogShape, type AlertDialogSize, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertShape, type AlertSize, AlertTitle, type AlertTitleProps, type AlertVariant, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, Badge, type BadgeProps, type BadgeShape, type BadgeSize, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSize, Button, ButtonGroup, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupTextSize, type ButtonProps, type ButtonShape, type ButtonSize, type ButtonVariant, type ButtonVariantOptions, Calendar, type CalendarMode, type CalendarProps, type CalendarRange, Checkbox, CheckboxGroup, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuTrigger, type ContextMenuTriggerProps, type CropResult, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, type DialogProps, type DialogShadow, type DialogShape, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, type DrawerShadow, type DrawerShape, type DrawerSide, type DrawerSize, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownItem, type DropdownItemProps, DropdownLabel, type DropdownLabelProps, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorProps, DropdownShortcut, type DropdownShortcutProps, DropdownTrigger, type DropdownTriggerProps, Empty, type EmptyProps, type EmptySize, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, ImageCropper, type ImageCropperProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariant, InputGroupInput, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, type InputShape, type InputSize, type InputVariant, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdShape, type KbdSize, type KbdVariant, Label, type LabelProps, type LabelSize, Link, type LinkProps, type LinkSize, type LinkUnderline, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarItem, type MenubarItemProps, MenubarLabel, type MenubarLabelProps, MenubarMenu, type MenubarMenuProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarTrigger, type MenubarTriggerProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectShape, type MultiSelectSize, type MultiSelectVariant, NativeSelect, type NativeSelectProps, type NativeSelectShape, type NativeSelectSize, type NativeSelectVariant, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Notification, NotificationActions, type NotificationActionsProps, NotificationContainer, type NotificationContainerProps, NotificationDescription, type NotificationDescriptionProps, NotificationIcon, type NotificationIconProps, type NotificationItem, type NotificationPosition, type NotificationProps, type NotificationShadow, type NotificationShape, type NotificationSize, NotificationTitle, type NotificationTitleProps, type NotificationVariant, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationFirst, type PaginationFirstProps, PaginationItem, type PaginationItemProps, PaginationLast, type PaginationLastProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRangeItem, type PaginationShape, type PaginationSize, type PaginationVariant, Popover, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, type ProgressShape, type ProgressSize, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupOrientation, type RadioGroupProps, type RadioProps, type RadioSize, type RenderNotificationProps, Resizable, type ResizableDirection, ResizableHandle, type ResizableHandleProps, ResizablePanel, type ResizablePanelProps, type ResizableProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, type ScrollAreaScrollbarVisibility, type ScrollAreaSize, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, type SelectShape, type SelectSize, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SelectVariant, Separator, type SeparatorOrientation, type SeparatorProps, type SeparatorVariant, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, type SidebarSide, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, SpeedDial, SpeedDialAction, type SpeedDialActionProps, SpeedDialActions, type SpeedDialActionsProps, type SpeedDialDirection, type SpeedDialProps, type SpeedDialSize, SpeedDialTrigger, type SpeedDialTriggerProps, Spinner, type SpinnerProps, type SpinnerSize, Step, type StepProps, type StepStatus, Stepper, type StepperOrientation, type StepperProps, type StepperSize, type StepperVariant, Switch, type SwitchProps, type SwitchSize, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableLayout, type TableProps, TableRow, type TableSize, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsOrientation, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Textarea, type TextareaProps, type TextareaResize, type TextareaShape, type TextareaSize, type TextareaVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, TreeItem, type TreeItemProps, TreeView, type TreeViewProps, type TreeViewSize, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UsePaginationRangeOptions, buttonVariants, ensureProgressStyles, ensureSkeletonStyles, renderNotification, useNotification, usePaginationRange };
|
|
1506
|
+
export { Accordion, AccordionContent, type AccordionContentProps, type AccordionIconPosition, type AccordionIndicator, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionShape, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionVariant, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, type AlertDialogProps, type AlertDialogShadow, type AlertDialogShape, type AlertDialogSize, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertShape, type AlertSize, AlertTitle, type AlertTitleProps, type AlertVariant, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, Badge, type BadgeProps, type BadgeShape, type BadgeSize, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSize, Button, ButtonGroup, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupTextSize, type ButtonProps, type ButtonShape, type ButtonSize, type ButtonVariant, type ButtonVariantOptions, Calendar, type CalendarCaptionLayout, type CalendarMode, type CalendarProps, type CalendarRange, type CalendarSize, type CalendarWeekdayFormat, Checkbox, CheckboxGroup, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, type ContextMenuSubProps, type ContextMenuSubSide, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type CropResult, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, type DialogProps, type DialogShadow, type DialogShape, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, type DrawerShadow, type DrawerShape, type DrawerSide, type DrawerSize, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownItem, type DropdownItemProps, DropdownLabel, type DropdownLabelProps, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorProps, DropdownShortcut, type DropdownShortcutProps, DropdownTrigger, type DropdownTriggerProps, Empty, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyHeader, type EmptyHeaderProps, EmptyMedia, type EmptyMediaProps, type EmptyMediaVariant, type EmptyProps, EmptyTitle, type EmptyTitleProps, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, ImageCropper, type ImageCropperProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariant, InputGroupInput, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, type InputShape, type InputSize, type InputVariant, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdShape, type KbdSize, type KbdVariant, Label, type LabelProps, type LabelSize, Link, type LinkProps, type LinkSize, type LinkUnderline, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarItem, type MenubarItemProps, MenubarLabel, type MenubarLabelProps, MenubarMenu, type MenubarMenuProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarTrigger, type MenubarTriggerProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectShape, type MultiSelectSize, type MultiSelectVariant, NativeSelect, type NativeSelectProps, type NativeSelectShape, type NativeSelectSize, type NativeSelectVariant, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Notification, NotificationActions, type NotificationActionsProps, NotificationContainer, type NotificationContainerProps, NotificationDescription, type NotificationDescriptionProps, NotificationIcon, type NotificationIconProps, type NotificationItem, type NotificationPosition, type NotificationProps, type NotificationShadow, type NotificationShape, type NotificationSize, NotificationTitle, type NotificationTitleProps, type NotificationVariant, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationFirst, type PaginationFirstProps, PaginationItem, type PaginationItemProps, PaginationLast, type PaginationLastProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRangeItem, type PaginationShape, type PaginationSize, type PaginationVariant, Popover, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, type ProgressShape, type ProgressSize, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupOrientation, type RadioGroupProps, type RadioProps, type RadioSize, type RenderNotificationProps, Resizable, type ResizableDirection, ResizableHandle, type ResizableHandleProps, ResizablePanel, type ResizablePanelProps, type ResizableProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, type ScrollAreaScrollbarVisibility, type ScrollAreaSize, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, type SelectShape, type SelectSize, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SelectVariant, Separator, type SeparatorOrientation, type SeparatorProps, type SeparatorVariant, Sidebar, type SidebarCollapsible, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, type SidebarMenuButtonSize, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarSide, type SidebarState, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, SpeedDial, SpeedDialAction, type SpeedDialActionProps, SpeedDialActions, type SpeedDialActionsProps, type SpeedDialDirection, type SpeedDialPosition, type SpeedDialProps, type SpeedDialShadow, type SpeedDialShape, type SpeedDialSize, SpeedDialTrigger, type SpeedDialTriggerProps, Spinner, type SpinnerProps, type SpinnerSize, Step, type StepProps, type StepStatus, Stepper, type StepperOrientation, type StepperProps, type StepperSize, type StepperVariant, Switch, type SwitchProps, type SwitchSize, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableLayout, type TableProps, TableRow, type TableSize, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsOrientation, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Textarea, type TextareaProps, type TextareaResize, type TextareaShape, type TextareaSize, type TextareaVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, type TooltipShadow, type TooltipShape, type TooltipSize, TooltipTrigger, type TooltipTriggerProps, type TooltipVariant, TreeItem, type TreeItemProps, TreeView, type TreeViewProps, type TreeViewSize, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UsePaginationRangeOptions, buttonVariants, ensureProgressStyles, ensureSkeletonStyles, renderNotification, useNotification, usePaginationRange, useSidebar };
|