@mesob/ui 0.5.9 → 0.5.10

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.
@@ -1,7 +1,7 @@
1
1
  export { D as DisableDevtool, a as DisableDevtoolOptions, G as GoogleAnalytics } from './google-analytics-B82Q7rm2.js';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
3
  import * as React$1 from 'react';
4
- import { ReactNode, ReactElement, ComponentType, RefObject, Ref, ComponentProps } from 'react';
4
+ import { ReactNode, ReactElement, ComponentType, MouseEvent, RefObject, Ref, ComponentProps } from 'react';
5
5
  export { u as useEntityPagination, a as useEntityParams } from './use-entity-params-nqD69tdX.js';
6
6
  import * as react_hook_form from 'react-hook-form';
7
7
  import { Control, FieldValues, UseFormRegister, ControllerRenderProps, FieldError as FieldError$1, FieldPath, ControllerProps } from 'react-hook-form';
@@ -622,21 +622,35 @@ type EntitySortStateProps = {
622
622
  };
623
623
  declare function EntitySortState({ sort, order, onSortChange, onOrderChange, options, className, }: EntitySortStateProps): react_jsx_runtime.JSX.Element;
624
624
 
625
- type ViewOption$1 = 'table' | 'card' | 'list';
625
+ /** Built-in view ids with default Tabler icons */
626
+ type EntityViewPreset = 'table' | 'card' | 'list';
627
+ type EntityViewItem = {
628
+ value: string;
629
+ icon: ReactNode;
630
+ /** Passed to `aria-label` (default: `` `${value} view` ``) */
631
+ label?: string;
632
+ };
633
+ declare function buildEntityViewItems(items: EntityViewItem[] | undefined, views: EntityViewPreset[] | undefined): EntityViewItem[];
626
634
  type EntityViewToggleProps = {
627
- views?: ViewOption$1[];
628
635
  className?: string;
636
+ /** URL query key (default `view`) */
637
+ param?: string;
638
+ /** Custom tabs; wins over `views` */
639
+ items?: EntityViewItem[];
640
+ /** Preset ids + icons when `items` omitted */
641
+ views?: EntityViewPreset[];
629
642
  };
630
- declare function EntityViewToggle({ views, className, }: EntityViewToggleProps): react_jsx_runtime.JSX.Element;
643
+ declare function EntityViewToggle({ className, param, items, views, }: EntityViewToggleProps): react_jsx_runtime.JSX.Element;
631
644
 
632
- type ViewOption = 'table' | 'card' | 'list';
645
+ type ViewOption = EntityViewPreset;
633
646
  type EntityViewToggleStateProps = {
634
- value: ViewOption;
635
- onValueChange: (v: ViewOption) => void;
636
- views?: ViewOption[];
647
+ value: string;
648
+ onValueChange: (v: string) => void;
649
+ items?: EntityViewItem[];
650
+ views?: EntityViewPreset[];
637
651
  className?: string;
638
652
  };
639
- declare function EntityViewToggleState({ value, onValueChange, views, className, }: EntityViewToggleStateProps): react_jsx_runtime.JSX.Element;
653
+ declare function EntityViewToggleState({ value, onValueChange, views, items, className, }: EntityViewToggleStateProps): react_jsx_runtime.JSX.Element;
640
654
 
641
655
  type FileUploadPreviewItem = {
642
656
  id?: string;
@@ -913,32 +927,6 @@ type RichTextInputProps = {
913
927
  };
914
928
  declare function RichTextInput(props: RichTextInputProps): react_jsx_runtime.JSX.Element;
915
929
 
916
- type SpotlightItem = {
917
- id: string;
918
- title: string;
919
- icon?: React$1.ReactNode;
920
- shortcut?: string;
921
- onSelect?: () => void;
922
- };
923
- type SpotlightGroup = {
924
- heading: string;
925
- items: SpotlightItem[];
926
- };
927
- type SpotlightSearchProps = {
928
- groups?: SpotlightGroup[];
929
- placeholder?: string;
930
- emptyMessage?: string;
931
- className?: string;
932
- triggerClassName?: string;
933
- onSearch?: (query: string) => void;
934
- };
935
- declare function SpotlightSearch({ groups, placeholder, emptyMessage, className, triggerClassName, onSearch, }: SpotlightSearchProps): react_jsx_runtime.JSX.Element;
936
-
937
- type ThemeToggleProps = {
938
- className?: string;
939
- };
940
- declare function ThemeToggle({ className }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
941
-
942
930
  type DateTimePickerPreset = {
943
931
  value: Date;
944
932
  label: string;
@@ -962,6 +950,11 @@ interface DateTimePickerProps {
962
950
  dropdownType?: 'popover' | 'modal';
963
951
  'aria-label'?: string;
964
952
  className?: string;
953
+ /**
954
+ * When true, date/time changes update the value immediately.
955
+ * When false (default), changes apply only when OK is pressed.
956
+ */
957
+ live?: boolean;
965
958
  }
966
959
  type View = 'days' | 'months' | 'years';
967
960
  type CalendarType = 'GC' | 'EC';
@@ -976,6 +969,152 @@ interface CalendarCell {
976
969
  isSelected: boolean;
977
970
  }
978
971
 
972
+ type ScheduleEventColor = 'blue' | 'pink' | 'purple' | 'orange' | 'green';
973
+ type ScheduleEventData = {
974
+ id: string | number;
975
+ title: string;
976
+ start: string | Date;
977
+ end: string | Date;
978
+ color?: ScheduleEventColor;
979
+ allDay?: boolean;
980
+ };
981
+ type CalendarEventColor = ScheduleEventColor;
982
+ type CalendarEvent = {
983
+ id: string | number;
984
+ title: string;
985
+ start: string;
986
+ end: string;
987
+ color: ScheduleEventColor;
988
+ allDay?: boolean;
989
+ };
990
+ type ScheduleEvent = ScheduleEventData;
991
+ type ScheduleView = 'day' | 'week' | 'month';
992
+ type ScheduleViewLevel = ScheduleView;
993
+ type ScheduleLayout = 'default' | 'responsive';
994
+ type ScheduleMode = 'default' | 'static';
995
+ type ScheduleLabels = {
996
+ today: string;
997
+ addEvent: string;
998
+ dayView: string;
999
+ weekView: string;
1000
+ monthView: string;
1001
+ };
1002
+ type ScheduleControls = {
1003
+ showHeader: boolean;
1004
+ showCalendarTypeSwitch: boolean;
1005
+ showViewSwitch: boolean;
1006
+ showSearchButton: boolean;
1007
+ showAddEventButton: boolean;
1008
+ };
1009
+ type DayViewProps = {
1010
+ startTime?: string;
1011
+ endTime?: string;
1012
+ intervalMinutes?: number;
1013
+ };
1014
+ type WeekViewProps = {
1015
+ startTime?: string;
1016
+ endTime?: string;
1017
+ intervalMinutes?: number;
1018
+ };
1019
+ type MonthViewProps = {
1020
+ firstDayOfWeek?: number;
1021
+ weekendDays?: number[];
1022
+ };
1023
+ type YearViewProps = {
1024
+ firstDayOfWeek?: number;
1025
+ weekendDays?: number[];
1026
+ };
1027
+ type MobileMonthViewProps = {
1028
+ firstDayOfWeek?: number;
1029
+ weekendDays?: number[];
1030
+ };
1031
+ type ScheduleProps = {
1032
+ events: ScheduleEventData[];
1033
+ date?: string | Date;
1034
+ defaultDate?: string | Date;
1035
+ defaultMonth?: Date;
1036
+ defaultView?: ScheduleViewLevel;
1037
+ view?: ScheduleViewLevel;
1038
+ onViewChange?: (view: ScheduleViewLevel) => void;
1039
+ defaultCalendarType?: CalendarType;
1040
+ calendarType?: CalendarType;
1041
+ onCalendarTypeChange?: (calendarType: CalendarType) => void;
1042
+ onDateChange?: (date: string) => void;
1043
+ labels?: Partial<ScheduleLabels>;
1044
+ controls?: Partial<ScheduleControls>;
1045
+ layout?: ScheduleLayout;
1046
+ mode?: ScheduleMode;
1047
+ locale?: string;
1048
+ radius?: number | string;
1049
+ recurrenceExpansionLimit?: number;
1050
+ onSearchClick?: () => void;
1051
+ onAddEventClick?: () => void;
1052
+ onEventClick?: (event: ScheduleEventData, e?: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void;
1053
+ onDayClick?: (date: string, event: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void;
1054
+ onTimeSlotClick?: (data: {
1055
+ slotStart: string;
1056
+ slotEnd: string;
1057
+ nativeEvent: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>;
1058
+ }) => void;
1059
+ onAllDaySlotClick?: (date: string, event: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void;
1060
+ withDragSlotSelect?: boolean;
1061
+ withEventResize?: boolean;
1062
+ withEventsDragAndDrop?: boolean;
1063
+ canDragEvent?: (event: ScheduleEventData) => boolean;
1064
+ canResizeEvent?: (event: ScheduleEventData) => boolean;
1065
+ onEventDragStart?: (event: ScheduleEventData) => void;
1066
+ onEventDragEnd?: () => void;
1067
+ onEventDrop?: (data: {
1068
+ eventId: string | number;
1069
+ newStart: string;
1070
+ newEnd: string;
1071
+ event: ScheduleEventData;
1072
+ }) => void;
1073
+ onEventResize?: (data: {
1074
+ eventId: string | number;
1075
+ newStart: string;
1076
+ newEnd: string;
1077
+ event: ScheduleEventData;
1078
+ }) => void;
1079
+ onExternalEventDrop?: (dataTransfer: DataTransfer, dropDateTime: string) => void;
1080
+ onSlotDragEnd?: (rangeStart: string, rangeEnd: string) => void;
1081
+ renderEventBody?: (event: ScheduleEventData) => ReactNode;
1082
+ dayViewProps?: Partial<DayViewProps>;
1083
+ weekViewProps?: Partial<WeekViewProps>;
1084
+ monthViewProps?: Partial<MonthViewProps>;
1085
+ yearViewProps?: Partial<YearViewProps>;
1086
+ mobileMonthViewProps?: Partial<MobileMonthViewProps>;
1087
+ className?: string;
1088
+ };
1089
+
1090
+ declare function Schedule({ events, date, defaultDate, defaultMonth, defaultView, view: controlledView, onViewChange, defaultCalendarType, calendarType: controlledCalendarType, onCalendarTypeChange, onDateChange, onSearchClick, onAddEventClick, onEventClick, labels: labelsProp, controls: controlsProp, className, }: ScheduleProps): react_jsx_runtime.JSX.Element;
1091
+
1092
+ type SpotlightItem = {
1093
+ id: string;
1094
+ title: string;
1095
+ icon?: React$1.ReactNode;
1096
+ shortcut?: string;
1097
+ onSelect?: () => void;
1098
+ };
1099
+ type SpotlightGroup = {
1100
+ heading: string;
1101
+ items: SpotlightItem[];
1102
+ };
1103
+ type SpotlightSearchProps = {
1104
+ groups?: SpotlightGroup[];
1105
+ placeholder?: string;
1106
+ emptyMessage?: string;
1107
+ className?: string;
1108
+ triggerClassName?: string;
1109
+ onSearch?: (query: string) => void;
1110
+ };
1111
+ declare function SpotlightSearch({ groups, placeholder, emptyMessage, className, triggerClassName, onSearch, }: SpotlightSearchProps): react_jsx_runtime.JSX.Element;
1112
+
1113
+ type ThemeToggleProps = {
1114
+ className?: string;
1115
+ };
1116
+ declare function ThemeToggle({ className }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
1117
+
979
1118
  type DatePickerType = 'default' | 'multiple' | 'range';
980
1119
  type DatePickerPreset = {
981
1120
  /** Single date or [start, end] tuple for range presets. */
@@ -1162,8 +1301,10 @@ interface DatePickerContentProps {
1162
1301
  isDateInRange: (date: Date) => boolean;
1163
1302
  isRangeStart: (date: Date) => boolean;
1164
1303
  isRangeEnd: (date: Date) => boolean;
1304
+ /** When set (e.g. popover input), shows OK on the right to dismiss. */
1305
+ onConfirm?: () => void;
1165
1306
  }
1166
- declare function DatePickerContent({ view, calendarType, cells, years, decadeStart, ecViewYear, gcViewYear, primaryDate, hasRange, hideOutsideDates, hideWeekdays, firstDayOfWeek, withWeekNumbers, weekendDays, prevDisabled, nextDisabled, isDayDisabled, renderDay, getDayProps, static: isStatic, headerLabel, presets, onPresetClick, onPrev, onNext, onHeaderClick, onDayClick, onDayHover, onGridMouseLeave, onMonthSelect, onYearSelect, onCalendarTypeChange, isDateSelected, isDateInRange, isRangeStart, isRangeEnd, }: DatePickerContentProps): react_jsx_runtime.JSX.Element;
1307
+ declare function DatePickerContent({ view, calendarType, cells, years, decadeStart, ecViewYear, gcViewYear, primaryDate, hasRange, hideOutsideDates, hideWeekdays, firstDayOfWeek, withWeekNumbers, weekendDays, prevDisabled, nextDisabled, isDayDisabled, renderDay, getDayProps, static: isStatic, headerLabel, presets, onPresetClick, onPrev, onNext, onHeaderClick, onDayClick, onDayHover, onGridMouseLeave, onMonthSelect, onYearSelect, onCalendarTypeChange, isDateSelected, isDateInRange, isRangeStart, isRangeEnd, onConfirm, }: DatePickerContentProps): react_jsx_runtime.JSX.Element;
1167
1308
 
1168
1309
  type DatePickerInputType = 'default' | 'multiple' | 'range';
1169
1310
  type DatePickerInputFormatter = (opts: {
@@ -1212,6 +1353,11 @@ interface DatePickerInputBaseProps {
1212
1353
  renderDay?: (date: Date) => ReactNode;
1213
1354
  'aria-label'?: string;
1214
1355
  className?: string;
1356
+ /**
1357
+ * When true, selection updates the value immediately.
1358
+ * When false (default), value updates only on OK.
1359
+ */
1360
+ live?: boolean;
1215
1361
  }
1216
1362
  type DatePickerInputProps = (DatePickerInputBaseProps & {
1217
1363
  type?: 'default';
@@ -1521,8 +1667,9 @@ interface MonthPickerContentProps {
1521
1667
  isMonthInRange: (monthIndex: number) => boolean;
1522
1668
  isRangeStart: (monthIndex: number) => boolean;
1523
1669
  isRangeEnd: (monthIndex: number) => boolean;
1670
+ onConfirm?: () => void;
1524
1671
  }
1525
- declare function MonthPickerContent({ view, calendarType, years, decadeStart, ecViewYear: _ecViewYear, gcViewYear: _gcViewYear, primaryDate, hasRange, headerLabel, onPrev, onNext, onHeaderClick, onMonthClick, onMonthHover, onGridMouseLeave, onYearSelect, onCalendarTypeChange, isMonthSelected, isMonthInRange, isRangeStart, isRangeEnd, }: MonthPickerContentProps): react_jsx_runtime.JSX.Element;
1672
+ declare function MonthPickerContent({ view, calendarType, years, decadeStart, ecViewYear: _ecViewYear, gcViewYear: _gcViewYear, primaryDate, hasRange, headerLabel, onPrev, onNext, onHeaderClick, onMonthClick, onMonthHover, onGridMouseLeave, onYearSelect, onCalendarTypeChange, isMonthSelected, isMonthInRange, isRangeStart, isRangeEnd, onConfirm, }: MonthPickerContentProps): react_jsx_runtime.JSX.Element;
1526
1673
 
1527
1674
  type MonthPickerInputType = 'default' | 'multiple' | 'range';
1528
1675
  type MonthPickerInputFormatter = (opts: {
@@ -1552,6 +1699,11 @@ interface MonthPickerInputBaseProps {
1552
1699
  maxLevel?: 'year' | 'decade';
1553
1700
  'aria-label'?: string;
1554
1701
  className?: string;
1702
+ /**
1703
+ * When true, selection updates the value immediately.
1704
+ * When false (default), value updates only on OK.
1705
+ */
1706
+ live?: boolean;
1555
1707
  }
1556
1708
  type MonthPickerInputProps = (MonthPickerInputBaseProps & {
1557
1709
  type?: 'default';
@@ -1718,6 +1870,7 @@ type YearPickerContentProps = {
1718
1870
  getYearControlProps?: (date: Date) => Record<string, unknown>;
1719
1871
  yearToDate?: (y: number) => Date;
1720
1872
  size?: 'sm' | 'md' | 'lg' | 'xl';
1873
+ onConfirm?: () => void;
1721
1874
  };
1722
1875
 
1723
1876
  type YearPickerType = 'default' | 'range' | 'multiple';
@@ -1792,6 +1945,11 @@ interface YearPickerInputBaseProps {
1792
1945
  allowDeselect?: boolean;
1793
1946
  'aria-label'?: string;
1794
1947
  className?: string;
1948
+ /**
1949
+ * When true, selection updates the value immediately.
1950
+ * When false (default), value updates only on OK.
1951
+ */
1952
+ live?: boolean;
1795
1953
  }
1796
1954
  type YearPickerInputProps = (YearPickerInputBaseProps & {
1797
1955
  type?: 'default';
@@ -3391,4 +3549,4 @@ declare function UnstyledButton({ className, render, ...props }: UnstyledButtonP
3391
3549
 
3392
3550
  declare function VisuallyHidden({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
3393
3551
 
3394
- 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, type CardSize, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Center, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Chip, Clarity, 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, DateCalendar, type DateCalendarProps, DateInput, type DateInputProps, DateInputShell, type DateInputShellProps, type DateParserFn, type DateParserResult, DatePicker, DatePickerContent, type DatePickerContentProps, type DatePickerGetDayPropsResult, DatePickerInput, type DatePickerInputFormatter, type DatePickerInputProps, type DatePickerInputType, type DatePickerPreset, type DatePickerProps, type DatePickerType, type DateTimeDropdownContentProps, DateTimePicker, type DateTimePickerPreset, type DateTimePickerProps, DateTimeTriggerButton, type DateTimeTriggerButtonProps, 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, type GetYearControlProps, 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, MiniCalendar, type MiniCalendarDayButtonProps, type MiniCalendarProps, Modal, ModalBody, type ModalBodyProps, ModalClose, type ModalCloseProps, ModalContent, type ModalContentProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalProps, ModalRoot, type ModalRootProps, ModalSubtitle, type ModalSubtitleProps, ModalTitle, type ModalTitleProps, ModalTrigger, type ModalTriggerProps, MoneyInput, type MoneyInputProps, MonthPicker, MonthPickerContent, type MonthPickerContentProps, MonthPickerInput, type MonthPickerInputFormatter, type MonthPickerInputProps, type MonthPickerInputType, type MonthPickerProps, type MonthPickerType, type MonthPickerView, MultiSelect, type MultiSelectOption, NProgress, type NProgressOptions, type NProgressProps, type NProgressState, 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, STATUS_MENU_SEPARATOR, 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, type StatusConfirmConfig, StatusDropdownButton, type StatusDropdownButtonProps, type StatusOption, type StatusTransitionRow, 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, TextDateInput, type TextDateInputProps, TextInput, type TextInputProps, type TextProps, Textarea, type TextareaBaseProps, TextareaInput, type TextareaInputProps, DisplayTableTfoot as Tfoot, DisplayTableTh as Th, DisplayTableThead as Thead, ThemeIcon, type ThemeIconProps, ThemeToggle, TimeGrid, type TimeGridProps, type TimeGridSimpleGridProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerContentProps, type TimePickerPreset, type TimePickerProps, TimeValue, type TimeValueProps, 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, type YearFormat, YearPicker, type YearPickerContentProps, YearPickerInput, type YearPickerInputFormatter, type YearPickerInputProps, type YearPickerInputType, type YearPickerProps, type YearPickerSize, type YearPickerType, type YearPickerView, actionIconVariants, addDays, anchorVariants, badgeVariants, blockquoteVariants, burgerVariants, buttonVariants, chipVariants, codeVariants, completeNProgress, configureNProgress, containerVariants, dateToIsoDate, formatDateWithPattern, getTimeRange, gridColVariants, gridVariants, incrementNProgress, indicatorVariants, isSameDay, isoDateToDate, listVariants, navLinkVariants, navigationMenuTriggerStyle, parseAnchorDate, parseDateWithPattern, parseLooseDateString, pillVariants, resetNProgress, setNProgress, setNProgressStep, simpleGridVariants, startNProgress, stripTime, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };
3552
+ 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, type CalendarEvent, type CalendarEventColor, DisplayTableCaption as Caption, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, type CardSize, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Center, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Chip, Clarity, 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, DateCalendar, type DateCalendarProps, DateInput, type DateInputProps, DateInputShell, type DateInputShellProps, type DateParserFn, type DateParserResult, DatePicker, DatePickerContent, type DatePickerContentProps, type DatePickerGetDayPropsResult, DatePickerInput, type DatePickerInputFormatter, type DatePickerInputProps, type DatePickerInputType, type DatePickerPreset, type DatePickerProps, type DatePickerType, type DateTimeDropdownContentProps, DateTimePicker, type DateTimePickerPreset, type DateTimePickerProps, DateTimeTriggerButton, type DateTimeTriggerButtonProps, 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, type EntityViewItem, type EntityViewPreset, 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, type GetYearControlProps, 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, MiniCalendar, type MiniCalendarDayButtonProps, type MiniCalendarProps, Modal, ModalBody, type ModalBodyProps, ModalClose, type ModalCloseProps, ModalContent, type ModalContentProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalProps, ModalRoot, type ModalRootProps, ModalSubtitle, type ModalSubtitleProps, ModalTitle, type ModalTitleProps, ModalTrigger, type ModalTriggerProps, MoneyInput, type MoneyInputProps, MonthPicker, MonthPickerContent, type MonthPickerContentProps, MonthPickerInput, type MonthPickerInputFormatter, type MonthPickerInputProps, type MonthPickerInputType, type MonthPickerProps, type MonthPickerType, type MonthPickerView, MultiSelect, type MultiSelectOption, NProgress, type NProgressOptions, type NProgressProps, type NProgressState, 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, STATUS_MENU_SEPARATOR, Schedule, type ScheduleControls, type ScheduleEvent, type ScheduleEventColor, type ScheduleEventData, type ScheduleLabels, type ScheduleLayout, type ScheduleMode, type ScheduleProps, type ScheduleView, type ScheduleViewLevel, 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, type StatusConfirmConfig, StatusDropdownButton, type StatusDropdownButtonProps, type StatusOption, type StatusTransitionRow, 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, TextDateInput, type TextDateInputProps, TextInput, type TextInputProps, type TextProps, Textarea, type TextareaBaseProps, TextareaInput, type TextareaInputProps, DisplayTableTfoot as Tfoot, DisplayTableTh as Th, DisplayTableThead as Thead, ThemeIcon, type ThemeIconProps, ThemeToggle, TimeGrid, type TimeGridProps, type TimeGridSimpleGridProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerContentProps, type TimePickerPreset, type TimePickerProps, TimeValue, type TimeValueProps, 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, type YearFormat, YearPicker, type YearPickerContentProps, YearPickerInput, type YearPickerInputFormatter, type YearPickerInputProps, type YearPickerInputType, type YearPickerProps, type YearPickerSize, type YearPickerType, type YearPickerView, actionIconVariants, addDays, anchorVariants, badgeVariants, blockquoteVariants, buildEntityViewItems, burgerVariants, buttonVariants, chipVariants, codeVariants, completeNProgress, configureNProgress, containerVariants, dateToIsoDate, formatDateWithPattern, getTimeRange, gridColVariants, gridVariants, incrementNProgress, indicatorVariants, isSameDay, isoDateToDate, listVariants, navLinkVariants, navigationMenuTriggerStyle, parseAnchorDate, parseDateWithPattern, parseLooseDateString, pillVariants, resetNProgress, setNProgress, setNProgressStep, simpleGridVariants, startNProgress, stripTime, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };