@mesob/ui 0.3.4 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -105,7 +105,6 @@ type AppHeaderActionsProps = {
105
105
  fullName?: string | null;
106
106
  email?: string | null;
107
107
  phone?: string | null;
108
- handle?: string | null;
109
108
  image?: string | null;
110
109
  };
111
110
  onLogout?: () => void | Promise<void>;
@@ -630,6 +629,52 @@ type EntityViewToggleStateProps = {
630
629
  };
631
630
  declare function EntityViewToggleState({ value, onValueChange, views, className, }: EntityViewToggleStateProps): react_jsx_runtime.JSX.Element;
632
631
 
632
+ type FileUploadPreviewItem = {
633
+ id?: string;
634
+ name: string;
635
+ type: string;
636
+ size?: number;
637
+ url?: string;
638
+ textPreview?: string;
639
+ };
640
+ type FileUploadProps = Omit<React$1.ComponentProps<'input'>, 'type' | 'value' | 'defaultValue' | 'onChange'> & {
641
+ files?: File[];
642
+ defaultFiles?: File[];
643
+ onFilesChange?: (files: File[]) => void;
644
+ previewItems?: FileUploadPreviewItem[];
645
+ maxFiles?: number;
646
+ title?: React$1.ReactNode;
647
+ description?: React$1.ReactNode;
648
+ hint?: React$1.ReactNode;
649
+ emptyState?: React$1.ReactNode;
650
+ showList?: boolean;
651
+ };
652
+ declare function FileUpload({ className, files: filesProp, defaultFiles, onFilesChange, previewItems, multiple, maxFiles, accept, disabled, title, description, hint, emptyState, showList, ...props }: FileUploadProps): react_jsx_runtime.JSX.Element;
653
+
654
+ type ImageCropDialogProps = {
655
+ open: boolean;
656
+ file: File | null;
657
+ onOpenChange: (open: boolean) => void;
658
+ onConfirm: (file: File) => void;
659
+ aspect?: number;
660
+ outputScale?: number;
661
+ title?: React$1.ReactNode;
662
+ description?: React$1.ReactNode;
663
+ };
664
+ declare function ImageCropDialog({ open, file, onOpenChange, onConfirm, aspect, outputScale, title, }: ImageCropDialogProps): react_jsx_runtime.JSX.Element;
665
+
666
+ type ImageUploadProps = Omit<React$1.ComponentProps<'input'>, 'type' | 'value' | 'defaultValue' | 'onChange' | 'multiple'> & {
667
+ file?: File | null;
668
+ defaultFile?: File | null;
669
+ imageUrl?: string | null;
670
+ onFileChange?: (file: File | null) => void;
671
+ cropAspect?: number;
672
+ enableCrop?: boolean;
673
+ title?: React$1.ReactNode;
674
+ description?: React$1.ReactNode;
675
+ };
676
+ declare function ImageUpload({ className, file: fileProp, defaultFile, imageUrl, onFileChange, cropAspect, enableCrop, title, description, accept, disabled, ...props }: ImageUploadProps): react_jsx_runtime.JSX.Element;
677
+
633
678
  type PageBodyProps = {
634
679
  className?: string;
635
680
  children: ReactNode;
@@ -676,14 +721,17 @@ type SectionProps = {
676
721
  children: ReactNode;
677
722
  /** Shown in header before expand/collapse button, only when section is open */
678
723
  actions?: ReactNode;
724
+ /** Footer area, typically for actions like Save/Cancel */
725
+ footer?: ReactNode;
679
726
  defaultOpen?: boolean;
680
727
  lazy?: boolean;
681
728
  onOpenChange?: (open: boolean) => void;
682
729
  className?: string;
683
730
  headerClassName?: string;
684
731
  contentClassName?: string;
732
+ footerClassName?: string;
685
733
  };
686
- declare function Section({ title, children, actions, defaultOpen, lazy, onOpenChange, className, headerClassName, contentClassName, }: SectionProps): react_jsx_runtime.JSX.Element;
734
+ declare function Section({ title, children, actions, footer, defaultOpen, lazy, onOpenChange, className, headerClassName, contentClassName, footerClassName, }: SectionProps): react_jsx_runtime.JSX.Element;
687
735
 
688
736
  type ShellProps = {
689
737
  sidebar: React$1.ReactNode;
@@ -1145,7 +1193,9 @@ declare function CollapsibleContent({ className, ...props }: React.ComponentProp
1145
1193
 
1146
1194
  declare function Input({ className, type, ...props }: React$1.ComponentProps<'input'>): react_jsx_runtime.JSX.Element;
1147
1195
 
1148
- declare function Label({ className, ...props }: React$1.ComponentProps<'label'>): react_jsx_runtime.JSX.Element;
1196
+ declare function Label({ className, render, ...props }: React$1.ComponentProps<'label'> & {
1197
+ render?: useRender.RenderProp;
1198
+ }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1149
1199
 
1150
1200
  declare function FieldSet({ className, ...props }: React.ComponentProps<'fieldset'>): react_jsx_runtime.JSX.Element;
1151
1201
  declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<'legend'> & {
@@ -1415,6 +1465,78 @@ type DataTableViewOptionsProps<TData> = {
1415
1465
  };
1416
1466
  declare function DataTableViewOptions<TData>({ table, }: DataTableViewOptionsProps<TData>): react_jsx_runtime.JSX.Element;
1417
1467
 
1468
+ type DateTimePickerPreset = {
1469
+ value: Date;
1470
+ label: string;
1471
+ };
1472
+ interface DateTimePickerProps {
1473
+ label?: string;
1474
+ placeholder?: string;
1475
+ value?: Date | null;
1476
+ defaultValue?: Date | null;
1477
+ onChange?: (value: Date | null) => void;
1478
+ disabled?: boolean;
1479
+ clearable?: boolean;
1480
+ withSeconds?: boolean;
1481
+ presets?: DateTimePickerPreset[];
1482
+ valueFormat?: (date: Date) => string;
1483
+ description?: string;
1484
+ error?: string;
1485
+ required?: boolean;
1486
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1487
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1488
+ dropdownType?: 'popover' | 'modal';
1489
+ 'aria-label'?: string;
1490
+ className?: string;
1491
+ }
1492
+ type View = 'days' | 'months' | 'years';
1493
+ type CalendarType = 'GC' | 'EC';
1494
+ interface CalendarCell {
1495
+ gcDate: Date;
1496
+ day: number;
1497
+ month: number;
1498
+ year: number;
1499
+ current: boolean;
1500
+ weekend: boolean;
1501
+ isToday: boolean;
1502
+ isSelected: boolean;
1503
+ }
1504
+
1505
+ interface DateTimeDropdownContentProps {
1506
+ presets?: DateTimePickerPreset[];
1507
+ onPresetClick?: (preset: DateTimePickerPreset) => void;
1508
+ view: View;
1509
+ calendarType: CalendarType;
1510
+ value: Date | null;
1511
+ headerLabel: string;
1512
+ cells: CalendarCell[];
1513
+ years: number[];
1514
+ decadeStart: number;
1515
+ ecViewYear: number;
1516
+ gcViewYear: number;
1517
+ onPrev: () => void;
1518
+ onNext: () => void;
1519
+ onHeaderClick: () => void;
1520
+ onDayClick: (cell: CalendarCell) => void;
1521
+ onMonthSelect: (i: number) => void;
1522
+ onYearSelect: (y: number) => void;
1523
+ onCalendarTypeChange: (type: CalendarType) => void;
1524
+ timeH: string;
1525
+ timeM: string;
1526
+ timeS: string;
1527
+ timeFocus: 'h' | 'm' | 's' | null;
1528
+ withSeconds: boolean;
1529
+ onTimeFocus: (f: 'h' | 'm' | 's') => void;
1530
+ onTimeBlur: (field: 'h' | 'm' | 's') => void;
1531
+ onTimeHChange: (v: string) => void;
1532
+ onTimeMChange: (v: string) => void;
1533
+ onTimeSChange: (v: string) => void;
1534
+ onConfirm: () => void;
1535
+ hasPresets: boolean;
1536
+ }
1537
+
1538
+ declare const DateTimePicker: React$1.ForwardRefExoticComponent<DateTimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1539
+
1418
1540
  declare function Drawer({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
1419
1541
  declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
1420
1542
  declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
@@ -1456,6 +1578,48 @@ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }
1456
1578
  }): react_jsx_runtime.JSX.Element;
1457
1579
  declare function DropdownMenuSubContent({ className, align, alignOffset, side, sideOffset, ...props }: React$1.ComponentProps<typeof Menu.Popup> & Pick<React$1.ComponentProps<typeof Menu.Positioner>, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime.JSX.Element;
1458
1580
 
1581
+ type DropdownButtonVariant = 'default' | 'outline' | 'secondary' | 'ghost' | 'light' | 'danger';
1582
+ type DropdownButtonItemAction = {
1583
+ type?: 'item';
1584
+ key?: React$1.Key;
1585
+ label: React$1.ReactNode;
1586
+ icon?: React$1.ReactNode;
1587
+ shortcut?: React$1.ReactNode;
1588
+ disabled?: boolean;
1589
+ inset?: boolean;
1590
+ variant?: 'default' | 'destructive';
1591
+ onSelect?: () => void;
1592
+ items?: DropdownButtonItem[];
1593
+ };
1594
+ type DropdownButtonItemLabel = {
1595
+ type: 'label';
1596
+ key?: React$1.Key;
1597
+ label: React$1.ReactNode;
1598
+ inset?: boolean;
1599
+ };
1600
+ type DropdownButtonItemSeparator = {
1601
+ type: 'separator';
1602
+ key?: React$1.Key;
1603
+ };
1604
+ type DropdownButtonItem = DropdownButtonItemAction | DropdownButtonItemLabel | DropdownButtonItemSeparator;
1605
+ type DropdownButtonProps = Omit<React$1.ComponentProps<typeof Button>, 'children' | 'rightSection' | 'variant' | 'size' | 'color' | 'radius'> & {
1606
+ children: React$1.ReactNode;
1607
+ items: DropdownButtonItem[];
1608
+ split?: boolean;
1609
+ variant?: DropdownButtonVariant;
1610
+ size?: ComponentSize;
1611
+ color?: ComponentColor;
1612
+ radius?: ComponentRadius;
1613
+ triggerIcon?: React$1.ReactNode;
1614
+ triggerLabel?: string;
1615
+ mainButtonClassName?: string;
1616
+ triggerClassName?: string;
1617
+ contentClassName?: string;
1618
+ positionerProps?: Omit<React$1.ComponentProps<typeof DropdownMenuPositioner>, 'children'>;
1619
+ contentProps?: Omit<React$1.ComponentProps<typeof DropdownMenuContent>, 'children' | 'className'>;
1620
+ };
1621
+ declare function DropdownButton({ children, items, split, variant, size, color, radius, triggerIcon, triggerLabel, mainButtonClassName, triggerClassName, contentClassName, positionerProps, contentProps, className, ...buttonProps }: DropdownButtonProps): react_jsx_runtime.JSX.Element;
1622
+
1459
1623
  declare function Empty({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
1460
1624
  declare function EmptyHeader({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
1461
1625
  declare const emptyMediaVariants: (props?: ({
@@ -1474,11 +1638,41 @@ type FileButtonProps = Omit<React$1.ComponentProps<typeof Button>, 'onChange' |
1474
1638
  };
1475
1639
  declare function FileButton({ onChange, accept, multiple, capture, children, disabled, className, ...props }: FileButtonProps): react_jsx_runtime.JSX.Element;
1476
1640
 
1477
- type FileInputProps = Omit<React$1.ComponentProps<'input'>, 'type'> & {
1641
+ type FilePreviewItem = {
1642
+ id?: string;
1643
+ name: string;
1644
+ type: string;
1645
+ size?: number;
1646
+ url?: string;
1647
+ textPreview?: string;
1648
+ };
1649
+
1650
+ type FileDropInputProps = Omit<React$1.ComponentProps<'input'>, 'type'> & Omit<InputWrapperProps, 'children'> & {
1651
+ onFilesChange?: (files: File[]) => void;
1652
+ files?: File[];
1653
+ defaultFiles?: File[];
1654
+ previewItems?: FilePreviewItem[];
1655
+ cropAspect?: number;
1656
+ editImageOnSelect?: boolean;
1657
+ imageOutputScale?: number;
1658
+ dropLabel?: React$1.ReactNode;
1659
+ dropDescription?: React$1.ReactNode;
1660
+ };
1661
+ declare function FileDropInput({ className, onFilesChange, files: filesProp, defaultFiles, previewItems, multiple, cropAspect, editImageOnSelect, imageOutputScale, dropLabel, dropDescription, label, description, error, required, withAsterisk, inputWrapperOrder, labelProps, descriptionProps, errorProps, inputContainer, disabled, ...props }: FileDropInputProps): react_jsx_runtime.JSX.Element;
1662
+
1663
+ type FileInputProps = Omit<React$1.ComponentProps<'input'>, 'type'> & Omit<InputWrapperProps, 'children'> & {
1478
1664
  onFilesChange?: (files: File[]) => void;
1479
1665
  clearable?: boolean;
1666
+ files?: File[];
1667
+ defaultFiles?: File[];
1668
+ previewItems?: FilePreviewItem[];
1669
+ leftSection?: React$1.ReactNode;
1670
+ placeholder?: React$1.ReactNode;
1671
+ cropAspect?: number;
1672
+ editImageOnSelect?: boolean;
1673
+ imageOutputScale?: number;
1480
1674
  };
1481
- declare function FileInput({ className, onFilesChange, clearable, multiple, ...props }: FileInputProps): react_jsx_runtime.JSX.Element;
1675
+ declare function FileInput({ className, onFilesChange, clearable, multiple, files: filesProp, defaultFiles, previewItems, leftSection, placeholder, cropAspect, editImageOnSelect, imageOutputScale, label, description, error, required, withAsterisk, inputWrapperOrder, labelProps, descriptionProps, errorProps, inputContainer, disabled, ...props }: FileInputProps): react_jsx_runtime.JSX.Element;
1482
1676
 
1483
1677
  type FlexProps = React$1.ComponentProps<'div'> & {
1484
1678
  gap?: ComponentSize | number;
@@ -2193,7 +2387,7 @@ declare function TimelineDot({ className, variant, ...props }: React$1.Component
2193
2387
  variant?: 'default' | 'primary' | 'secondary';
2194
2388
  }): react_jsx_runtime.JSX.Element;
2195
2389
  declare function TimelineContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
2196
- declare function TimelineTitle({ className, ...props }: React$1.ComponentProps<'h3'>): react_jsx_runtime.JSX.Element;
2390
+ declare function TimelineTitle({ className, children, ...props }: React$1.ComponentProps<'h3'>): react_jsx_runtime.JSX.Element;
2197
2391
  declare function TimelineDescription({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
2198
2392
  declare function TimelineTime({ className, ...props }: React$1.ComponentProps<'time'>): react_jsx_runtime.JSX.Element;
2199
2393
 
@@ -2273,4 +2467,4 @@ declare function UnstyledButton({ className, render, ...props }: UnstyledButtonP
2273
2467
 
2274
2468
  declare function VisuallyHidden({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
2275
2469
 
2276
- export { Accordion, AccordionContent, AccordionItem, type AccordionProps, AccordionTrigger, ActionIcon, type ActionIconProps, Affix, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, Anchor, type AnchorProps, AngleSlider, type AngleSliderProps, type AnimatedTabItem, AnimatedTabs, AppBreadcrumbs, AppHeaderActions, AppSidebar, AspectRatio, Avatar, AvatarFallback, AvatarImage, type AvatarProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeProps, Blockquote, Breadcrumb, BreadcrumbContext, type BreadcrumbContextValue, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemData, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbProvider, BreadcrumbSeparator, Burger, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonLoaderProps, type ButtonProps, Calendar, CalendarDayButton, DisplayTableCaption as Caption, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Center, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Chip, CloseButton, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorFormat, ColorInput, ColorPicker, type ColorPickerProps, ColorSwatch, type ColorSwatchProps, Combobox, type ComboboxOption, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuPositioner, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CurrencyOption, DataTable, DataTableAction, DataTableColumnHeader, DataTablePagination, DataTableViewOptions, DeleteConfirmButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisplayTable, type DisplayTableData, type DisplayTableVariant, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuPositioner, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyCardLoading, type EmptyCardLoadingProps, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EntityBulkActions, EntityDetailHeader, EntityDrawer, EntityDrawerTrigger, EntityEmptyState, EntityFilter, EntityFilterState, EntityFormActions, EntityHeader, EntityLoadingState, EntityPageLoading, type EntityPageLoadingProps, type EntityParams, EntitySearch, EntitySearchState, EntitySection, type EntitySectionState, type EntitySectionView, EntitySelector, type EntitySelectorColumn, type EntitySelectorConfig, EntitySelectorModal, type EntitySelectorModalSize, type EntitySelectorProps, EntitySort, EntitySortState, EntityViewToggle, EntityViewToggleState, ErrorPageView, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileButton, FileInput, Flex, type FlexProps, FloatingIndicator, type FloatingIndicatorProps, FocusTrap, FocusTrapInitialFocus, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridCol, Group, type GroupProps, Highlight, HoverCard, HoverCardContent, HoverCardTrigger, Image, Indicator, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, type InputWrapperProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JsonInput, Kbd, KbdGroup, Label, List, ListItem, Loader, type LoaderProps, type LoaderType, LoadingOverlay, type LoadingOverlayProps, LocaleInputRichText, type LocaleInputRichTextProps, LocaleInputText, type LocaleInputTextProps, LocaleInputTextarea, type LocaleInputTextareaProps, LocaleRichText, type LocaleRichTextProps, LocaleText, Mark, type MarkProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarPositioner, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MesobLogo, MoneyInput, type MoneyInputProps, MultiSelect, type MultiSelectOption, NativeSelect, NativeSelectBase, type NativeSelectBaseProps, type NativeSelectOption, type NativeSelectProps, type NavItem, NavLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoDataAvailable, type NoDataAvailableProps, NumberFormatter, NumberInput, type NumberInputProps, Overlay, PageBody, PageContainer, PageGoBack, PageSection, PageSubTitle, PageTitle, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Paper, type PaperProps, PasswordInput, type PasswordInputBaseProps, PasswordInputWithWrapper, type PasswordInputWithWrapperProps, Pill, type PillProps, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, PoweredBy, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, RichTextDisplay, RichTextEditor, RichTextEditorContent, RichTextEditorControl, RichTextEditorControlsGroup, RichTextEditorToolbar, RichTextInput, RingProgress, ScrollArea, ScrollBar, DisplayTableScrollContainer as ScrollContainer, Section, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SemiCircleProgress, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Shell, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, Slider, Space, type SpaceProps, Spinner, type SpinnerProps, Spoiler, SpotlightSearch, Stack, type StackProps, Step, Stepper, Switch, type SwitchProps, type TabItem, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagsInput, DisplayTableTbody as Tbody, DisplayTableTd as Td, Text, TextInput, type TextInputProps, type TextProps, Textarea, type TextareaBaseProps, TextareaInput, type TextareaInputProps, DisplayTableTfoot as Tfoot, DisplayTableTh as Th, DisplayTableThead as Thead, ThemeIcon, type ThemeIconProps, ThemeToggle, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, Title, type TitleProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, DisplayTableTr as Tr, Transition, type TransitionName, type TransitionProps, Tree, type TreeNodeData, type TreeProps, UnstyledButton, type UnstyledButtonProps, type UseEntitySectionStateConfig, type ViewOption, VisuallyHidden, actionIconVariants, anchorVariants, badgeVariants, blockquoteVariants, burgerVariants, buttonVariants, chipVariants, codeVariants, containerVariants, gridColVariants, gridVariants, indicatorVariants, listVariants, navLinkVariants, navigationMenuTriggerStyle, pillVariants, simpleGridVariants, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };
2470
+ export { Accordion, AccordionContent, AccordionItem, type AccordionProps, AccordionTrigger, ActionIcon, type ActionIconProps, Affix, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, Anchor, type AnchorProps, AngleSlider, type AngleSliderProps, type AnimatedTabItem, AnimatedTabs, AppBreadcrumbs, AppHeaderActions, AppSidebar, AspectRatio, Avatar, AvatarFallback, AvatarImage, type AvatarProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeProps, Blockquote, Breadcrumb, BreadcrumbContext, type BreadcrumbContextValue, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemData, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbProvider, BreadcrumbSeparator, Burger, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonLoaderProps, type ButtonProps, Calendar, CalendarDayButton, DisplayTableCaption as Caption, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Center, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Chip, CloseButton, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorFormat, ColorInput, ColorPicker, type ColorPickerProps, ColorSwatch, type ColorSwatchProps, Combobox, type ComboboxOption, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuPositioner, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CurrencyOption, DataTable, DataTableAction, DataTableColumnHeader, DataTablePagination, DataTableViewOptions, type DateTimeDropdownContentProps, DateTimePicker, type DateTimePickerPreset, type DateTimePickerProps, DeleteConfirmButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisplayTable, type DisplayTableData, type DisplayTableVariant, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonItem, type DropdownButtonItemAction, type DropdownButtonItemLabel, type DropdownButtonItemSeparator, type DropdownButtonProps, type DropdownButtonVariant, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuPositioner, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyCardLoading, type EmptyCardLoadingProps, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EntityBulkActions, EntityDetailHeader, EntityDrawer, EntityDrawerTrigger, EntityEmptyState, EntityFilter, EntityFilterState, EntityFormActions, EntityHeader, EntityLoadingState, EntityPageLoading, type EntityPageLoadingProps, type EntityParams, EntitySearch, EntitySearchState, EntitySection, type EntitySectionState, type EntitySectionView, EntitySelector, type EntitySelectorColumn, type EntitySelectorConfig, EntitySelectorModal, type EntitySelectorModalSize, type EntitySelectorProps, EntitySort, EntitySortState, EntityViewToggle, EntityViewToggleState, ErrorPageView, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileButton, FileDropInput, type FileDropInputProps, FileInput, type FileInputProps, FileUpload, type FileUploadPreviewItem, type FileUploadProps, Flex, type FlexProps, FloatingIndicator, type FloatingIndicatorProps, FocusTrap, FocusTrapInitialFocus, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridCol, Group, type GroupProps, Highlight, HoverCard, HoverCardContent, HoverCardTrigger, Image, ImageCropDialog, type ImageCropDialogProps, ImageUpload, type ImageUploadProps, Indicator, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, type InputWrapperProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JsonInput, Kbd, KbdGroup, Label, List, ListItem, Loader, type LoaderProps, type LoaderType, LoadingOverlay, type LoadingOverlayProps, LocaleInputRichText, type LocaleInputRichTextProps, LocaleInputText, type LocaleInputTextProps, LocaleInputTextarea, type LocaleInputTextareaProps, LocaleRichText, type LocaleRichTextProps, LocaleText, Mark, type MarkProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarPositioner, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MesobLogo, MoneyInput, type MoneyInputProps, MultiSelect, type MultiSelectOption, NativeSelect, NativeSelectBase, type NativeSelectBaseProps, type NativeSelectOption, type NativeSelectProps, type NavItem, NavLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoDataAvailable, type NoDataAvailableProps, NumberFormatter, NumberInput, type NumberInputProps, Overlay, PageBody, PageContainer, PageGoBack, PageSection, PageSubTitle, PageTitle, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Paper, type PaperProps, PasswordInput, type PasswordInputBaseProps, PasswordInputWithWrapper, type PasswordInputWithWrapperProps, Pill, type PillProps, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, PoweredBy, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, RichTextDisplay, RichTextEditor, RichTextEditorContent, RichTextEditorControl, RichTextEditorControlsGroup, RichTextEditorToolbar, RichTextInput, RingProgress, ScrollArea, ScrollBar, DisplayTableScrollContainer as ScrollContainer, Section, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SemiCircleProgress, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Shell, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, Slider, Space, type SpaceProps, Spinner, type SpinnerProps, Spoiler, SpotlightSearch, Stack, type StackProps, Step, Stepper, Switch, type SwitchProps, type TabItem, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagsInput, DisplayTableTbody as Tbody, DisplayTableTd as Td, Text, TextInput, type TextInputProps, type TextProps, Textarea, type TextareaBaseProps, TextareaInput, type TextareaInputProps, DisplayTableTfoot as Tfoot, DisplayTableTh as Th, DisplayTableThead as Thead, ThemeIcon, type ThemeIconProps, ThemeToggle, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, Title, type TitleProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, DisplayTableTr as Tr, Transition, type TransitionName, type TransitionProps, Tree, type TreeNodeData, type TreeProps, UnstyledButton, type UnstyledButtonProps, type UseEntitySectionStateConfig, type ViewOption, VisuallyHidden, actionIconVariants, anchorVariants, badgeVariants, blockquoteVariants, burgerVariants, buttonVariants, chipVariants, codeVariants, containerVariants, gridColVariants, gridVariants, indicatorVariants, listVariants, navLinkVariants, navigationMenuTriggerStyle, pillVariants, simpleGridVariants, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };