@mesob/ui 0.5.9 → 0.5.11

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;
@@ -953,6 +941,10 @@ interface DateTimePickerProps {
953
941
  clearable?: boolean;
954
942
  withSeconds?: boolean;
955
943
  presets?: DateTimePickerPreset[];
944
+ /** Minimum allowed date-time (inclusive). */
945
+ minDateTime?: Date;
946
+ /** Maximum allowed date-time (inclusive). */
947
+ maxDateTime?: Date;
956
948
  valueFormat?: (date: Date) => string;
957
949
  description?: string;
958
950
  error?: string;
@@ -962,6 +954,11 @@ interface DateTimePickerProps {
962
954
  dropdownType?: 'popover' | 'modal';
963
955
  'aria-label'?: string;
964
956
  className?: string;
957
+ /**
958
+ * When true, date/time changes update the value immediately.
959
+ * When false (default), changes apply only when OK is pressed.
960
+ */
961
+ live?: boolean;
965
962
  }
966
963
  type View = 'days' | 'months' | 'years';
967
964
  type CalendarType = 'GC' | 'EC';
@@ -976,6 +973,152 @@ interface CalendarCell {
976
973
  isSelected: boolean;
977
974
  }
978
975
 
976
+ type ScheduleEventColor = 'blue' | 'pink' | 'purple' | 'orange' | 'green';
977
+ type ScheduleEventData = {
978
+ id: string | number;
979
+ title: string;
980
+ start: string | Date;
981
+ end: string | Date;
982
+ color?: ScheduleEventColor;
983
+ allDay?: boolean;
984
+ };
985
+ type CalendarEventColor = ScheduleEventColor;
986
+ type CalendarEvent = {
987
+ id: string | number;
988
+ title: string;
989
+ start: string;
990
+ end: string;
991
+ color: ScheduleEventColor;
992
+ allDay?: boolean;
993
+ };
994
+ type ScheduleEvent = ScheduleEventData;
995
+ type ScheduleView = 'day' | 'week' | 'month';
996
+ type ScheduleViewLevel = ScheduleView;
997
+ type ScheduleLayout = 'default' | 'responsive';
998
+ type ScheduleMode = 'default' | 'static';
999
+ type ScheduleLabels = {
1000
+ today: string;
1001
+ addEvent: string;
1002
+ dayView: string;
1003
+ weekView: string;
1004
+ monthView: string;
1005
+ };
1006
+ type ScheduleControls = {
1007
+ showHeader: boolean;
1008
+ showCalendarTypeSwitch: boolean;
1009
+ showViewSwitch: boolean;
1010
+ showSearchButton: boolean;
1011
+ showAddEventButton: boolean;
1012
+ };
1013
+ type DayViewProps = {
1014
+ startTime?: string;
1015
+ endTime?: string;
1016
+ intervalMinutes?: number;
1017
+ };
1018
+ type WeekViewProps = {
1019
+ startTime?: string;
1020
+ endTime?: string;
1021
+ intervalMinutes?: number;
1022
+ };
1023
+ type MonthViewProps = {
1024
+ firstDayOfWeek?: number;
1025
+ weekendDays?: number[];
1026
+ };
1027
+ type YearViewProps = {
1028
+ firstDayOfWeek?: number;
1029
+ weekendDays?: number[];
1030
+ };
1031
+ type MobileMonthViewProps = {
1032
+ firstDayOfWeek?: number;
1033
+ weekendDays?: number[];
1034
+ };
1035
+ type ScheduleProps = {
1036
+ events: ScheduleEventData[];
1037
+ date?: string | Date;
1038
+ defaultDate?: string | Date;
1039
+ defaultMonth?: Date;
1040
+ defaultView?: ScheduleViewLevel;
1041
+ view?: ScheduleViewLevel;
1042
+ onViewChange?: (view: ScheduleViewLevel) => void;
1043
+ defaultCalendarType?: CalendarType;
1044
+ calendarType?: CalendarType;
1045
+ onCalendarTypeChange?: (calendarType: CalendarType) => void;
1046
+ onDateChange?: (date: string) => void;
1047
+ labels?: Partial<ScheduleLabels>;
1048
+ controls?: Partial<ScheduleControls>;
1049
+ layout?: ScheduleLayout;
1050
+ mode?: ScheduleMode;
1051
+ locale?: string;
1052
+ radius?: number | string;
1053
+ recurrenceExpansionLimit?: number;
1054
+ onSearchClick?: () => void;
1055
+ onAddEventClick?: () => void;
1056
+ onEventClick?: (event: ScheduleEventData, e?: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void;
1057
+ onDayClick?: (date: string, event: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void;
1058
+ onTimeSlotClick?: (data: {
1059
+ slotStart: string;
1060
+ slotEnd: string;
1061
+ nativeEvent: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>;
1062
+ }) => void;
1063
+ onAllDaySlotClick?: (date: string, event: MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void;
1064
+ withDragSlotSelect?: boolean;
1065
+ withEventResize?: boolean;
1066
+ withEventsDragAndDrop?: boolean;
1067
+ canDragEvent?: (event: ScheduleEventData) => boolean;
1068
+ canResizeEvent?: (event: ScheduleEventData) => boolean;
1069
+ onEventDragStart?: (event: ScheduleEventData) => void;
1070
+ onEventDragEnd?: () => void;
1071
+ onEventDrop?: (data: {
1072
+ eventId: string | number;
1073
+ newStart: string;
1074
+ newEnd: string;
1075
+ event: ScheduleEventData;
1076
+ }) => void;
1077
+ onEventResize?: (data: {
1078
+ eventId: string | number;
1079
+ newStart: string;
1080
+ newEnd: string;
1081
+ event: ScheduleEventData;
1082
+ }) => void;
1083
+ onExternalEventDrop?: (dataTransfer: DataTransfer, dropDateTime: string) => void;
1084
+ onSlotDragEnd?: (rangeStart: string, rangeEnd: string) => void;
1085
+ renderEventBody?: (event: ScheduleEventData) => ReactNode;
1086
+ dayViewProps?: Partial<DayViewProps>;
1087
+ weekViewProps?: Partial<WeekViewProps>;
1088
+ monthViewProps?: Partial<MonthViewProps>;
1089
+ yearViewProps?: Partial<YearViewProps>;
1090
+ mobileMonthViewProps?: Partial<MobileMonthViewProps>;
1091
+ className?: string;
1092
+ };
1093
+
1094
+ 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;
1095
+
1096
+ type SpotlightItem = {
1097
+ id: string;
1098
+ title: string;
1099
+ icon?: React$1.ReactNode;
1100
+ shortcut?: string;
1101
+ onSelect?: () => void;
1102
+ };
1103
+ type SpotlightGroup = {
1104
+ heading: string;
1105
+ items: SpotlightItem[];
1106
+ };
1107
+ type SpotlightSearchProps = {
1108
+ groups?: SpotlightGroup[];
1109
+ placeholder?: string;
1110
+ emptyMessage?: string;
1111
+ className?: string;
1112
+ triggerClassName?: string;
1113
+ onSearch?: (query: string) => void;
1114
+ };
1115
+ declare function SpotlightSearch({ groups, placeholder, emptyMessage, className, triggerClassName, onSearch, }: SpotlightSearchProps): react_jsx_runtime.JSX.Element;
1116
+
1117
+ type ThemeToggleProps = {
1118
+ className?: string;
1119
+ };
1120
+ declare function ThemeToggle({ className }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
1121
+
979
1122
  type DatePickerType = 'default' | 'multiple' | 'range';
980
1123
  type DatePickerPreset = {
981
1124
  /** Single date or [start, end] tuple for range presets. */
@@ -1162,8 +1305,10 @@ interface DatePickerContentProps {
1162
1305
  isDateInRange: (date: Date) => boolean;
1163
1306
  isRangeStart: (date: Date) => boolean;
1164
1307
  isRangeEnd: (date: Date) => boolean;
1308
+ /** When set (e.g. popover input), shows OK on the right to dismiss. */
1309
+ onConfirm?: () => void;
1165
1310
  }
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;
1311
+ 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
1312
 
1168
1313
  type DatePickerInputType = 'default' | 'multiple' | 'range';
1169
1314
  type DatePickerInputFormatter = (opts: {
@@ -1212,6 +1357,11 @@ interface DatePickerInputBaseProps {
1212
1357
  renderDay?: (date: Date) => ReactNode;
1213
1358
  'aria-label'?: string;
1214
1359
  className?: string;
1360
+ /**
1361
+ * When true, selection updates the value immediately.
1362
+ * When false (default), value updates only on OK.
1363
+ */
1364
+ live?: boolean;
1215
1365
  }
1216
1366
  type DatePickerInputProps = (DatePickerInputBaseProps & {
1217
1367
  type?: 'default';
@@ -1259,6 +1409,7 @@ interface DateTimeDropdownContentProps {
1259
1409
  onNext: () => void;
1260
1410
  onHeaderClick: () => void;
1261
1411
  onDayClick: (cell: CalendarCell) => void;
1412
+ isDayDisabled?: (cell: CalendarCell) => boolean;
1262
1413
  onMonthSelect: (i: number) => void;
1263
1414
  onYearSelect: (y: number) => void;
1264
1415
  onCalendarTypeChange: (type: CalendarType) => void;
@@ -1395,6 +1546,10 @@ type TimeInputProps = {
1395
1546
  withSeconds?: boolean;
1396
1547
  /** 12-hour format with AM/PM, or 24-hour format. @default '24h' */
1397
1548
  format?: '12h' | '24h';
1549
+ /** Minimum allowed time as `HH:mm` or `HH:mm:ss` (24h). */
1550
+ min?: string;
1551
+ /** Maximum allowed time as `HH:mm` or `HH:mm:ss` (24h). */
1552
+ max?: string;
1398
1553
  disabled?: boolean;
1399
1554
  /** @default today */
1400
1555
  baseDate?: Date;
@@ -1521,8 +1676,9 @@ interface MonthPickerContentProps {
1521
1676
  isMonthInRange: (monthIndex: number) => boolean;
1522
1677
  isRangeStart: (monthIndex: number) => boolean;
1523
1678
  isRangeEnd: (monthIndex: number) => boolean;
1679
+ onConfirm?: () => void;
1524
1680
  }
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;
1681
+ 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
1682
 
1527
1683
  type MonthPickerInputType = 'default' | 'multiple' | 'range';
1528
1684
  type MonthPickerInputFormatter = (opts: {
@@ -1552,6 +1708,11 @@ interface MonthPickerInputBaseProps {
1552
1708
  maxLevel?: 'year' | 'decade';
1553
1709
  'aria-label'?: string;
1554
1710
  className?: string;
1711
+ /**
1712
+ * When true, selection updates the value immediately.
1713
+ * When false (default), value updates only on OK.
1714
+ */
1715
+ live?: boolean;
1555
1716
  }
1556
1717
  type MonthPickerInputProps = (MonthPickerInputBaseProps & {
1557
1718
  type?: 'default';
@@ -1718,6 +1879,7 @@ type YearPickerContentProps = {
1718
1879
  getYearControlProps?: (date: Date) => Record<string, unknown>;
1719
1880
  yearToDate?: (y: number) => Date;
1720
1881
  size?: 'sm' | 'md' | 'lg' | 'xl';
1882
+ onConfirm?: () => void;
1721
1883
  };
1722
1884
 
1723
1885
  type YearPickerType = 'default' | 'range' | 'multiple';
@@ -1792,6 +1954,11 @@ interface YearPickerInputBaseProps {
1792
1954
  allowDeselect?: boolean;
1793
1955
  'aria-label'?: string;
1794
1956
  className?: string;
1957
+ /**
1958
+ * When true, selection updates the value immediately.
1959
+ * When false (default), value updates only on OK.
1960
+ */
1961
+ live?: boolean;
1795
1962
  }
1796
1963
  type YearPickerInputProps = (YearPickerInputBaseProps & {
1797
1964
  type?: 'default';
@@ -3391,4 +3558,4 @@ declare function UnstyledButton({ className, render, ...props }: UnstyledButtonP
3391
3558
 
3392
3559
  declare function VisuallyHidden({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
3393
3560
 
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 };
3561
+ 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 };