eglador-ui-react 1.0.0-alpha.13 → 1.0.0-alpha.15
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 +60 -1
- package/dist/index.d.ts +60 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -341,6 +341,38 @@ interface CollapsibleContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
341
341
|
}
|
|
342
342
|
declare const CollapsibleContent: React.ForwardRefExoticComponent<CollapsibleContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
343
343
|
|
|
344
|
+
type ComboboxSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
345
|
+
type ComboboxVariant = "outline" | "soft" | "ghost";
|
|
346
|
+
type ComboboxShape = "square" | "rounded" | "pill";
|
|
347
|
+
interface ComboboxOption {
|
|
348
|
+
value: string;
|
|
349
|
+
label: string;
|
|
350
|
+
disabled?: boolean;
|
|
351
|
+
}
|
|
352
|
+
interface ComboboxProps {
|
|
353
|
+
value?: string;
|
|
354
|
+
defaultValue?: string;
|
|
355
|
+
onValueChange?: (value: string | undefined) => void;
|
|
356
|
+
options: ComboboxOption[];
|
|
357
|
+
placeholder?: string;
|
|
358
|
+
searchPlaceholder?: string;
|
|
359
|
+
size?: ComboboxSize;
|
|
360
|
+
variant?: ComboboxVariant;
|
|
361
|
+
shape?: ComboboxShape;
|
|
362
|
+
disabled?: boolean;
|
|
363
|
+
clearable?: boolean;
|
|
364
|
+
searchable?: boolean;
|
|
365
|
+
emptyMessage?: string;
|
|
366
|
+
name?: string;
|
|
367
|
+
className?: string;
|
|
368
|
+
"aria-label"?: string;
|
|
369
|
+
"aria-labelledby"?: string;
|
|
370
|
+
}
|
|
371
|
+
declare function Combobox({ value: controlled, defaultValue, onValueChange, options, placeholder, searchPlaceholder, size, variant, shape, disabled, clearable, searchable, emptyMessage, name, className, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
372
|
+
declare namespace Combobox {
|
|
373
|
+
var displayName: string;
|
|
374
|
+
}
|
|
375
|
+
|
|
344
376
|
type DialogSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
345
377
|
type DialogShape = "square" | "rounded";
|
|
346
378
|
type DialogShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -1439,6 +1471,33 @@ declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.Re
|
|
|
1439
1471
|
|
|
1440
1472
|
declare function ensureSkeletonStyles(): void;
|
|
1441
1473
|
|
|
1474
|
+
type SliderSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1475
|
+
type SliderOrientation = "horizontal" | "vertical";
|
|
1476
|
+
interface SliderMarkObject {
|
|
1477
|
+
value: number;
|
|
1478
|
+
label?: React.ReactNode;
|
|
1479
|
+
}
|
|
1480
|
+
type SliderMark = number | SliderMarkObject;
|
|
1481
|
+
interface SliderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
1482
|
+
value?: number[];
|
|
1483
|
+
defaultValue?: number[];
|
|
1484
|
+
onValueChange?: (value: number[]) => void;
|
|
1485
|
+
onValueCommit?: (value: number[]) => void;
|
|
1486
|
+
min?: number;
|
|
1487
|
+
max?: number;
|
|
1488
|
+
step?: number;
|
|
1489
|
+
size?: SliderSize;
|
|
1490
|
+
orientation?: SliderOrientation;
|
|
1491
|
+
disabled?: boolean;
|
|
1492
|
+
marks?: SliderMark[];
|
|
1493
|
+
showMarkLabels?: boolean;
|
|
1494
|
+
name?: string;
|
|
1495
|
+
"aria-label"?: string;
|
|
1496
|
+
"aria-labelledby"?: string;
|
|
1497
|
+
minStepsBetweenThumbs?: number;
|
|
1498
|
+
}
|
|
1499
|
+
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLDivElement>>;
|
|
1500
|
+
|
|
1442
1501
|
type SpeedDialDirection = "up" | "down" | "left" | "right";
|
|
1443
1502
|
type SpeedDialSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1444
1503
|
type SpeedDialShape = "circle" | "rounded" | "square";
|
|
@@ -1678,4 +1737,4 @@ interface TypographyProps extends Omit<React.HTMLAttributes<HTMLElement>, "color
|
|
|
1678
1737
|
}
|
|
1679
1738
|
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
|
|
1680
1739
|
|
|
1681
|
-
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, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, type CardShadow, type CardShape, CardTitle, type CardTitleProps, type CardVariant, 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, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, FormFieldGroup, type FormFieldGroupProps, type FormFieldProps, FormFieldSet, type FormFieldSetProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormLegend, type FormLegendProps, FormMessage, type FormMessageProps, type FormMessageStatus, type FormProps, 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, InputTag, type InputTagProps, type InputTagRenderTagHelpers, type InputTagShape, type InputTagSize, type InputTagVariant, 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, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupMultipleProps, type ToggleGroupOrientation, type ToggleGroupProps, type ToggleGroupSingleProps, type ToggleProps, type ToggleShape, type ToggleSize, type ToggleVariant, 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, useFormField, useNotification, usePaginationRange, useSidebar };
|
|
1740
|
+
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, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, type CardShadow, type CardShape, CardTitle, type CardTitleProps, type CardVariant, Checkbox, CheckboxGroup, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxShape, type ComboboxSize, type ComboboxVariant, 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, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, FormFieldGroup, type FormFieldGroupProps, type FormFieldProps, FormFieldSet, type FormFieldSetProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormLegend, type FormLegendProps, FormMessage, type FormMessageProps, type FormMessageStatus, type FormProps, 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, InputTag, type InputTagProps, type InputTagRenderTagHelpers, type InputTagShape, type InputTagSize, type InputTagVariant, 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, Slider, type SliderMark, type SliderMarkObject, type SliderOrientation, type SliderProps, type SliderSize, 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, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupMultipleProps, type ToggleGroupOrientation, type ToggleGroupProps, type ToggleGroupSingleProps, type ToggleProps, type ToggleShape, type ToggleSize, type ToggleVariant, 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, useFormField, useNotification, usePaginationRange, useSidebar };
|
package/dist/index.d.ts
CHANGED
|
@@ -341,6 +341,38 @@ interface CollapsibleContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
341
341
|
}
|
|
342
342
|
declare const CollapsibleContent: React.ForwardRefExoticComponent<CollapsibleContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
343
343
|
|
|
344
|
+
type ComboboxSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
345
|
+
type ComboboxVariant = "outline" | "soft" | "ghost";
|
|
346
|
+
type ComboboxShape = "square" | "rounded" | "pill";
|
|
347
|
+
interface ComboboxOption {
|
|
348
|
+
value: string;
|
|
349
|
+
label: string;
|
|
350
|
+
disabled?: boolean;
|
|
351
|
+
}
|
|
352
|
+
interface ComboboxProps {
|
|
353
|
+
value?: string;
|
|
354
|
+
defaultValue?: string;
|
|
355
|
+
onValueChange?: (value: string | undefined) => void;
|
|
356
|
+
options: ComboboxOption[];
|
|
357
|
+
placeholder?: string;
|
|
358
|
+
searchPlaceholder?: string;
|
|
359
|
+
size?: ComboboxSize;
|
|
360
|
+
variant?: ComboboxVariant;
|
|
361
|
+
shape?: ComboboxShape;
|
|
362
|
+
disabled?: boolean;
|
|
363
|
+
clearable?: boolean;
|
|
364
|
+
searchable?: boolean;
|
|
365
|
+
emptyMessage?: string;
|
|
366
|
+
name?: string;
|
|
367
|
+
className?: string;
|
|
368
|
+
"aria-label"?: string;
|
|
369
|
+
"aria-labelledby"?: string;
|
|
370
|
+
}
|
|
371
|
+
declare function Combobox({ value: controlled, defaultValue, onValueChange, options, placeholder, searchPlaceholder, size, variant, shape, disabled, clearable, searchable, emptyMessage, name, className, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
372
|
+
declare namespace Combobox {
|
|
373
|
+
var displayName: string;
|
|
374
|
+
}
|
|
375
|
+
|
|
344
376
|
type DialogSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
345
377
|
type DialogShape = "square" | "rounded";
|
|
346
378
|
type DialogShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -1439,6 +1471,33 @@ declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.Re
|
|
|
1439
1471
|
|
|
1440
1472
|
declare function ensureSkeletonStyles(): void;
|
|
1441
1473
|
|
|
1474
|
+
type SliderSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1475
|
+
type SliderOrientation = "horizontal" | "vertical";
|
|
1476
|
+
interface SliderMarkObject {
|
|
1477
|
+
value: number;
|
|
1478
|
+
label?: React.ReactNode;
|
|
1479
|
+
}
|
|
1480
|
+
type SliderMark = number | SliderMarkObject;
|
|
1481
|
+
interface SliderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
1482
|
+
value?: number[];
|
|
1483
|
+
defaultValue?: number[];
|
|
1484
|
+
onValueChange?: (value: number[]) => void;
|
|
1485
|
+
onValueCommit?: (value: number[]) => void;
|
|
1486
|
+
min?: number;
|
|
1487
|
+
max?: number;
|
|
1488
|
+
step?: number;
|
|
1489
|
+
size?: SliderSize;
|
|
1490
|
+
orientation?: SliderOrientation;
|
|
1491
|
+
disabled?: boolean;
|
|
1492
|
+
marks?: SliderMark[];
|
|
1493
|
+
showMarkLabels?: boolean;
|
|
1494
|
+
name?: string;
|
|
1495
|
+
"aria-label"?: string;
|
|
1496
|
+
"aria-labelledby"?: string;
|
|
1497
|
+
minStepsBetweenThumbs?: number;
|
|
1498
|
+
}
|
|
1499
|
+
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLDivElement>>;
|
|
1500
|
+
|
|
1442
1501
|
type SpeedDialDirection = "up" | "down" | "left" | "right";
|
|
1443
1502
|
type SpeedDialSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
1444
1503
|
type SpeedDialShape = "circle" | "rounded" | "square";
|
|
@@ -1678,4 +1737,4 @@ interface TypographyProps extends Omit<React.HTMLAttributes<HTMLElement>, "color
|
|
|
1678
1737
|
}
|
|
1679
1738
|
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
|
|
1680
1739
|
|
|
1681
|
-
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, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, type CardShadow, type CardShape, CardTitle, type CardTitleProps, type CardVariant, 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, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, FormFieldGroup, type FormFieldGroupProps, type FormFieldProps, FormFieldSet, type FormFieldSetProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormLegend, type FormLegendProps, FormMessage, type FormMessageProps, type FormMessageStatus, type FormProps, 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, InputTag, type InputTagProps, type InputTagRenderTagHelpers, type InputTagShape, type InputTagSize, type InputTagVariant, 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, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupMultipleProps, type ToggleGroupOrientation, type ToggleGroupProps, type ToggleGroupSingleProps, type ToggleProps, type ToggleShape, type ToggleSize, type ToggleVariant, 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, useFormField, useNotification, usePaginationRange, useSidebar };
|
|
1740
|
+
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, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, type CardShadow, type CardShape, CardTitle, type CardTitleProps, type CardVariant, Checkbox, CheckboxGroup, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxShape, type ComboboxSize, type ComboboxVariant, 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, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, FormFieldGroup, type FormFieldGroupProps, type FormFieldProps, FormFieldSet, type FormFieldSetProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormLegend, type FormLegendProps, FormMessage, type FormMessageProps, type FormMessageStatus, type FormProps, 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, InputTag, type InputTagProps, type InputTagRenderTagHelpers, type InputTagShape, type InputTagSize, type InputTagVariant, 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, Slider, type SliderMark, type SliderMarkObject, type SliderOrientation, type SliderProps, type SliderSize, 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, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupMultipleProps, type ToggleGroupOrientation, type ToggleGroupProps, type ToggleGroupSingleProps, type ToggleProps, type ToggleShape, type ToggleSize, type ToggleVariant, 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, useFormField, useNotification, usePaginationRange, useSidebar };
|