eglador-ui-react 1.0.0-alpha.5 → 1.0.0-alpha.7
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 +44 -1
- package/dist/index.d.ts +44 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -246,6 +246,9 @@ type SharedCalendarProps = {
|
|
|
246
246
|
};
|
|
247
247
|
type CalendarProps = (CalendarSingleProps | CalendarRangeProps | CalendarMultipleProps) & SharedCalendarProps;
|
|
248
248
|
declare function Calendar(props: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
249
|
+
declare namespace Calendar {
|
|
250
|
+
var displayName: string;
|
|
251
|
+
}
|
|
249
252
|
|
|
250
253
|
type ButtonGroupOrientation = "horizontal" | "vertical";
|
|
251
254
|
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -262,6 +265,34 @@ interface ButtonGroupTextProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
262
265
|
}
|
|
263
266
|
declare const ButtonGroupText: React.ForwardRefExoticComponent<ButtonGroupTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
264
267
|
|
|
268
|
+
type CardVariant = "solid" | "soft" | "outline" | "ghost";
|
|
269
|
+
type CardShape = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
270
|
+
type CardShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
271
|
+
interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
272
|
+
variant?: CardVariant;
|
|
273
|
+
shape?: CardShape;
|
|
274
|
+
shadow?: CardShadow;
|
|
275
|
+
}
|
|
276
|
+
declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
|
|
277
|
+
interface CardHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
278
|
+
}
|
|
279
|
+
declare const CardHeader: React.ForwardRefExoticComponent<CardHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
280
|
+
interface CardTitleProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
281
|
+
}
|
|
282
|
+
declare const CardTitle: React.ForwardRefExoticComponent<CardTitleProps & React.RefAttributes<HTMLDivElement>>;
|
|
283
|
+
interface CardDescriptionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
284
|
+
}
|
|
285
|
+
declare const CardDescription: React.ForwardRefExoticComponent<CardDescriptionProps & React.RefAttributes<HTMLDivElement>>;
|
|
286
|
+
interface CardActionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
287
|
+
}
|
|
288
|
+
declare const CardAction: React.ForwardRefExoticComponent<CardActionProps & React.RefAttributes<HTMLDivElement>>;
|
|
289
|
+
interface CardContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
290
|
+
}
|
|
291
|
+
declare const CardContent: React.ForwardRefExoticComponent<CardContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
292
|
+
interface CardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
293
|
+
}
|
|
294
|
+
declare const CardFooter: React.ForwardRefExoticComponent<CardFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
295
|
+
|
|
265
296
|
type CheckboxSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
266
297
|
interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "onChange"> {
|
|
267
298
|
size?: CheckboxSize;
|
|
@@ -506,6 +537,9 @@ type SharedDatePickerProps = {
|
|
|
506
537
|
};
|
|
507
538
|
type DatePickerProps = (DatePickerSingleProps | DatePickerRangeProps) & SharedDatePickerProps;
|
|
508
539
|
declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
540
|
+
declare namespace DatePicker {
|
|
541
|
+
var displayName: string;
|
|
542
|
+
}
|
|
509
543
|
|
|
510
544
|
interface DateTimePickerProps {
|
|
511
545
|
value?: Date | undefined;
|
|
@@ -535,6 +569,9 @@ interface DateTimePickerProps {
|
|
|
535
569
|
dir?: "ltr" | "rtl";
|
|
536
570
|
}
|
|
537
571
|
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;
|
|
572
|
+
declare namespace DateTimePicker {
|
|
573
|
+
var displayName: string;
|
|
574
|
+
}
|
|
538
575
|
|
|
539
576
|
type DrawerSide = "top" | "right" | "bottom" | "left";
|
|
540
577
|
type DrawerSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
@@ -697,6 +734,9 @@ interface ImageCropperProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
|
|
|
697
734
|
cropShape?: "rect" | "circle";
|
|
698
735
|
}
|
|
699
736
|
declare function ImageCropper({ src, aspect, minZoom, maxZoom, defaultZoom, defaultOffset, onChange, cropShape, className, ...rest }: ImageCropperProps): react_jsx_runtime.JSX.Element;
|
|
737
|
+
declare namespace ImageCropper {
|
|
738
|
+
var displayName: string;
|
|
739
|
+
}
|
|
700
740
|
|
|
701
741
|
type InputVariant = "outline" | "soft" | "ghost";
|
|
702
742
|
type InputSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -874,6 +914,9 @@ interface MultiSelectProps {
|
|
|
874
914
|
className?: string;
|
|
875
915
|
}
|
|
876
916
|
declare function MultiSelect({ value: controlled, defaultValue, onValueChange, options, placeholder, size, variant, shape, disabled, searchable, emptyMessage, maxDisplay, className, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
917
|
+
declare namespace MultiSelect {
|
|
918
|
+
var displayName: string;
|
|
919
|
+
}
|
|
877
920
|
|
|
878
921
|
type NativeSelectVariant = "outline" | "soft" | "ghost";
|
|
879
922
|
type NativeSelectSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -1503,4 +1546,4 @@ interface TypographyProps extends Omit<React.HTMLAttributes<HTMLElement>, "color
|
|
|
1503
1546
|
}
|
|
1504
1547
|
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
|
|
1505
1548
|
|
|
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 };
|
|
1549
|
+
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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -246,6 +246,9 @@ type SharedCalendarProps = {
|
|
|
246
246
|
};
|
|
247
247
|
type CalendarProps = (CalendarSingleProps | CalendarRangeProps | CalendarMultipleProps) & SharedCalendarProps;
|
|
248
248
|
declare function Calendar(props: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
249
|
+
declare namespace Calendar {
|
|
250
|
+
var displayName: string;
|
|
251
|
+
}
|
|
249
252
|
|
|
250
253
|
type ButtonGroupOrientation = "horizontal" | "vertical";
|
|
251
254
|
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -262,6 +265,34 @@ interface ButtonGroupTextProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
262
265
|
}
|
|
263
266
|
declare const ButtonGroupText: React.ForwardRefExoticComponent<ButtonGroupTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
264
267
|
|
|
268
|
+
type CardVariant = "solid" | "soft" | "outline" | "ghost";
|
|
269
|
+
type CardShape = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
270
|
+
type CardShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
271
|
+
interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
272
|
+
variant?: CardVariant;
|
|
273
|
+
shape?: CardShape;
|
|
274
|
+
shadow?: CardShadow;
|
|
275
|
+
}
|
|
276
|
+
declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
|
|
277
|
+
interface CardHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
278
|
+
}
|
|
279
|
+
declare const CardHeader: React.ForwardRefExoticComponent<CardHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
280
|
+
interface CardTitleProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
281
|
+
}
|
|
282
|
+
declare const CardTitle: React.ForwardRefExoticComponent<CardTitleProps & React.RefAttributes<HTMLDivElement>>;
|
|
283
|
+
interface CardDescriptionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
284
|
+
}
|
|
285
|
+
declare const CardDescription: React.ForwardRefExoticComponent<CardDescriptionProps & React.RefAttributes<HTMLDivElement>>;
|
|
286
|
+
interface CardActionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
287
|
+
}
|
|
288
|
+
declare const CardAction: React.ForwardRefExoticComponent<CardActionProps & React.RefAttributes<HTMLDivElement>>;
|
|
289
|
+
interface CardContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
290
|
+
}
|
|
291
|
+
declare const CardContent: React.ForwardRefExoticComponent<CardContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
292
|
+
interface CardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
293
|
+
}
|
|
294
|
+
declare const CardFooter: React.ForwardRefExoticComponent<CardFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
295
|
+
|
|
265
296
|
type CheckboxSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
266
297
|
interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "onChange"> {
|
|
267
298
|
size?: CheckboxSize;
|
|
@@ -506,6 +537,9 @@ type SharedDatePickerProps = {
|
|
|
506
537
|
};
|
|
507
538
|
type DatePickerProps = (DatePickerSingleProps | DatePickerRangeProps) & SharedDatePickerProps;
|
|
508
539
|
declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
540
|
+
declare namespace DatePicker {
|
|
541
|
+
var displayName: string;
|
|
542
|
+
}
|
|
509
543
|
|
|
510
544
|
interface DateTimePickerProps {
|
|
511
545
|
value?: Date | undefined;
|
|
@@ -535,6 +569,9 @@ interface DateTimePickerProps {
|
|
|
535
569
|
dir?: "ltr" | "rtl";
|
|
536
570
|
}
|
|
537
571
|
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;
|
|
572
|
+
declare namespace DateTimePicker {
|
|
573
|
+
var displayName: string;
|
|
574
|
+
}
|
|
538
575
|
|
|
539
576
|
type DrawerSide = "top" | "right" | "bottom" | "left";
|
|
540
577
|
type DrawerSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
@@ -697,6 +734,9 @@ interface ImageCropperProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
|
|
|
697
734
|
cropShape?: "rect" | "circle";
|
|
698
735
|
}
|
|
699
736
|
declare function ImageCropper({ src, aspect, minZoom, maxZoom, defaultZoom, defaultOffset, onChange, cropShape, className, ...rest }: ImageCropperProps): react_jsx_runtime.JSX.Element;
|
|
737
|
+
declare namespace ImageCropper {
|
|
738
|
+
var displayName: string;
|
|
739
|
+
}
|
|
700
740
|
|
|
701
741
|
type InputVariant = "outline" | "soft" | "ghost";
|
|
702
742
|
type InputSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -874,6 +914,9 @@ interface MultiSelectProps {
|
|
|
874
914
|
className?: string;
|
|
875
915
|
}
|
|
876
916
|
declare function MultiSelect({ value: controlled, defaultValue, onValueChange, options, placeholder, size, variant, shape, disabled, searchable, emptyMessage, maxDisplay, className, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
917
|
+
declare namespace MultiSelect {
|
|
918
|
+
var displayName: string;
|
|
919
|
+
}
|
|
877
920
|
|
|
878
921
|
type NativeSelectVariant = "outline" | "soft" | "ghost";
|
|
879
922
|
type NativeSelectSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -1503,4 +1546,4 @@ interface TypographyProps extends Omit<React.HTMLAttributes<HTMLElement>, "color
|
|
|
1503
1546
|
}
|
|
1504
1547
|
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
|
|
1505
1548
|
|
|
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 };
|
|
1549
|
+
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, 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 };
|