@mesob/ui 0.5.8 → 0.5.9

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.
@@ -4,7 +4,7 @@ import * as React$1 from 'react';
4
4
  import { ReactNode, ReactElement, ComponentType, 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
- import { Control, UseFormRegister, ControllerRenderProps, FieldError as FieldError$1, FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
7
+ import { Control, FieldValues, UseFormRegister, ControllerRenderProps, FieldError as FieldError$1, FieldPath, ControllerProps } from 'react-hook-form';
8
8
  import { Locale } from './lib/locale.js';
9
9
  import * as class_variance_authority_types from 'class-variance-authority/types';
10
10
  import { VariantProps } from 'class-variance-authority';
@@ -755,7 +755,7 @@ type LocaleInputRichTextProps = {
755
755
  label?: string;
756
756
  required?: boolean;
757
757
  field: string;
758
- control: Control<any>;
758
+ control: Control<FieldValues>;
759
759
  errors?: Record<string, unknown>;
760
760
  className?: string;
761
761
  enabledControllers?: string[];
@@ -768,7 +768,7 @@ type LocaleInputTextProps = {
768
768
  label?: string;
769
769
  required?: boolean;
770
770
  field: string;
771
- register: UseFormRegister<any>;
771
+ register: UseFormRegister<FieldValues>;
772
772
  errors?: Record<string, unknown>;
773
773
  placeholder?: string;
774
774
  className?: string;
@@ -780,7 +780,7 @@ type LocaleInputTextareaProps = {
780
780
  label?: string;
781
781
  required?: boolean;
782
782
  field: string;
783
- register: UseFormRegister<any>;
783
+ register: UseFormRegister<FieldValues>;
784
784
  errors?: Record<string, unknown>;
785
785
  placeholder?: string;
786
786
  className?: string;
@@ -1308,10 +1308,19 @@ interface DateInputShellProps {
1308
1308
  onClear: () => void;
1309
1309
  /** Extra class on the dropdown (popover/dialog content). */
1310
1310
  dropdownClassName?: string;
1311
+ /** Right section inside trigger (e.g. clock icon to open dropdown) */
1312
+ rightSection?: ReactNode;
1313
+ /** Popover positioning: side, align. Passed to PopoverContent. */
1314
+ popoverProps?: {
1315
+ side?: 'top' | 'bottom' | 'left' | 'right';
1316
+ align?: 'start' | 'center' | 'end';
1317
+ /** Dropdown width: 'target' = match trigger width, or CSS value */
1318
+ width?: 'target' | string;
1319
+ };
1311
1320
  children: ReactNode;
1312
1321
  buttonRef?: Ref<HTMLButtonElement>;
1313
1322
  }
1314
- declare function DateInputShell({ label, placeholder, description, error, required, withAsterisk, disabled, clearable, size, radius, dropdownType, variant, leftSection, leftSectionPointerEvents, 'aria-label': ariaLabel, className, displayValue, hasValue, open, onOpenChange, contentSide, triggerRef, onClear, dropdownClassName, children, buttonRef, }: DateInputShellProps): react_jsx_runtime.JSX.Element;
1323
+ declare function DateInputShell({ label, placeholder, description, error, required, withAsterisk, disabled, clearable, size, radius, dropdownType, variant, leftSection, leftSectionPointerEvents, 'aria-label': ariaLabel, className, displayValue, hasValue, open, onOpenChange, contentSide, triggerRef, onClear, dropdownClassName, popoverProps, rightSection, children, buttonRef, }: DateInputShellProps): react_jsx_runtime.JSX.Element;
1315
1324
 
1316
1325
  /** Plain text field for date entry (used inside DateTimePicker time flows). For popover + calendar, use `DateInput` from `@mesob/ui/components`. */
1317
1326
  type TextDateInputProps = {
@@ -1328,41 +1337,92 @@ type TextDateInputProps = {
1328
1337
  };
1329
1338
  declare function TextDateInput({ value, onChange, format, parse, placeholder, disabled, className, 'aria-label': ariaLabel, }: TextDateInputProps): react_jsx_runtime.JSX.Element;
1330
1339
 
1340
+ type TimeGridSimpleGridProps = {
1341
+ /** Number of columns, or responsive: { base: 1, sm: 2, md: 3 } */
1342
+ cols?: number | {
1343
+ base?: number;
1344
+ sm?: number;
1345
+ md?: number;
1346
+ lg?: number;
1347
+ };
1348
+ spacing?: 'xs' | 'sm' | 'md' | 'lg';
1349
+ };
1331
1350
  type TimeGridProps = {
1332
- value: Date | null;
1333
- onChange: (date: Date | null) => void;
1334
- /** @default 30 */
1351
+ /** Array of time values in 24h format (HH:mm or HH:mm:ss). Use getTimeRange to generate. Omit to use stepMinutes/minHour/maxHour. */
1352
+ data?: string[];
1353
+ /** Selected value (time string) */
1354
+ value?: string | null;
1355
+ /** Called when selection changes */
1356
+ onChange?: (value: string | null) => void;
1357
+ /** Default value for uncontrolled */
1358
+ defaultValue?: string | null;
1359
+ /** 12h or 24h display format. @default '24h' */
1360
+ format?: '12h' | '24h';
1361
+ /** Include seconds in display. @default false */
1362
+ withSeconds?: boolean;
1363
+ /** Custom AM/PM labels when format is 12h */
1364
+ amPmLabels?: {
1365
+ am: string;
1366
+ pm: string;
1367
+ };
1368
+ /** Min time (24h). Slots before this are disabled. */
1369
+ minTime?: string;
1370
+ /** Max time (24h). Slots after this are disabled. */
1371
+ maxTime?: string;
1372
+ /** Disabled time slots */
1373
+ disableTime?: string[];
1374
+ /** Allow deselecting by clicking selected slot. @default false */
1375
+ allowDeselect?: boolean;
1376
+ /** Disable all slots. @default false */
1377
+ disabled?: boolean;
1378
+ /** Button size */
1379
+ size?: 'xs' | 'sm' | 'md' | 'lg';
1380
+ /** Button radius */
1381
+ radius?: 'xs' | 'sm' | 'md' | 'lg';
1382
+ /** Grid layout */
1383
+ simpleGridProps?: TimeGridSimpleGridProps;
1384
+ /** Legacy: build data from step/min/max when data not provided */
1335
1385
  stepMinutes?: number;
1336
- /** @default 0 */
1337
1386
  minHour?: number;
1338
- /** @default 24 */
1339
1387
  maxHour?: number;
1340
- /** Base date for building time slots (only date part used). @default today */
1341
- baseDate?: Date;
1342
1388
  className?: string;
1343
1389
  };
1344
- declare function TimeGrid({ value, onChange, stepMinutes, minHour, maxHour, baseDate, className, }: TimeGridProps): react_jsx_runtime.JSX.Element;
1390
+ declare function TimeGrid({ data: dataProp, value: controlledValue, onChange, defaultValue, format, withSeconds, amPmLabels, minTime, maxTime, disableTime, allowDeselect, disabled, size, radius, simpleGridProps, stepMinutes, minHour, maxHour, className, }: TimeGridProps): react_jsx_runtime.JSX.Element;
1345
1391
 
1346
1392
  type TimeInputProps = {
1347
1393
  value: Date | null;
1348
1394
  onChange?: (date: Date | null) => void;
1349
1395
  withSeconds?: boolean;
1396
+ /** 12-hour format with AM/PM, or 24-hour format. @default '24h' */
1397
+ format?: '12h' | '24h';
1350
1398
  disabled?: boolean;
1351
1399
  /** @default today */
1352
1400
  baseDate?: Date;
1401
+ /** Left section (e.g. clock icon) */
1402
+ leftSection?: React.ReactNode;
1403
+ /** Right section (e.g. button to show browser picker) */
1404
+ rightSection?: React.ReactNode;
1405
+ label?: string;
1353
1406
  className?: string;
1354
1407
  'aria-label'?: string;
1355
1408
  };
1356
- declare function TimeInput({ value, onChange, withSeconds, disabled, baseDate, className, 'aria-label': ariaLabel, }: TimeInputProps): react_jsx_runtime.JSX.Element;
1409
+ declare const TimeInput: React$1.ForwardRefExoticComponent<TimeInputProps & React$1.RefAttributes<HTMLInputElement>>;
1357
1410
 
1358
1411
  type TimeValueProps = {
1359
- value: Date;
1360
- /** @default HH:mm */
1361
- format?: (date: Date) => string;
1412
+ /** Time as Date or string (HH:mm or HH:mm:ss) */
1413
+ value: Date | string;
1414
+ /** 12h or 24h format. @default '24h' */
1415
+ format?: '12h' | '24h';
1416
+ /** Include seconds in output. @default false */
1362
1417
  withSeconds?: boolean;
1418
+ /** Custom AM/PM labels when format is 12h */
1419
+ amPmLabels?: {
1420
+ am: string;
1421
+ pm: string;
1422
+ };
1363
1423
  className?: string;
1364
1424
  };
1365
- declare function TimeValue({ value, format, withSeconds, className, }: TimeValueProps): react_jsx_runtime.JSX.Element;
1425
+ declare function TimeValue({ value, format, withSeconds, amPmLabels, className, }: TimeValueProps): react_jsx_runtime.JSX.Element;
1366
1426
 
1367
1427
  interface DateTimeTriggerButtonProps {
1368
1428
  displayValue: string | null;
@@ -1377,6 +1437,8 @@ interface DateTimeTriggerButtonProps {
1377
1437
  leftSection?: ReactNode;
1378
1438
  leftSectionPointerEvents?: 'none' | 'auto';
1379
1439
  'aria-label'?: string;
1440
+ /** Right section (e.g. clock icon) */
1441
+ rightSection?: React.ReactNode;
1380
1442
  }
1381
1443
  declare const DateTimeTriggerButton: React$1.ForwardRefExoticComponent<DateTimeTriggerButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1382
1444
 
@@ -1511,11 +1573,68 @@ type MonthPickerInputProps = (MonthPickerInputBaseProps & {
1511
1573
 
1512
1574
  declare const MonthPickerInput: React$1.ForwardRefExoticComponent<MonthPickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
1513
1575
 
1576
+ type GetTimeRangeOptions = {
1577
+ /** Start time (alias: from) */
1578
+ startTime?: string;
1579
+ /** End time (alias: to) */
1580
+ endTime?: string;
1581
+ /** Interval between slots (alias: step) */
1582
+ interval?: string;
1583
+ /** Alias for startTime */
1584
+ from?: string;
1585
+ /** Alias for endTime */
1586
+ to?: string;
1587
+ /** Alias for interval */
1588
+ step?: string;
1589
+ /** Output format. @default 'HH:mm' when interval has no seconds, else 'HH:mm:ss' */
1590
+ withSeconds?: boolean;
1591
+ };
1592
+ /**
1593
+ * Generate a range of time values. Accepts start, end and interval in "HH:mm" or "HH:mm:ss" format.
1594
+ * @example
1595
+ * getTimeRange({ startTime: '10:00', endTime: '21:00', interval: '01:00' })
1596
+ * // ['10:00', '11:00', '12:00', ...]
1597
+ * getTimeRange({ from: '09:00', to: '14:00', step: '01:00' })
1598
+ * // ['09:00', '10:00', '11:00', '12:00', '13:00', '14:00']
1599
+ */
1600
+ declare function getTimeRange(options: GetTimeRangeOptions): string[];
1601
+
1602
+ type TimePickerPreset = string | {
1603
+ label: string;
1604
+ values: string[];
1605
+ };
1514
1606
  type TimePickerProps = {
1515
1607
  value?: Date | null;
1516
1608
  defaultValue?: Date | null;
1517
1609
  onChange?: (value: Date | null) => void;
1518
1610
  withSeconds?: boolean;
1611
+ /** 12-hour format with AM/PM, or 24-hour format. @default '24h' */
1612
+ format?: '12h' | '24h';
1613
+ /** Custom labels for AM/PM when format is 12h */
1614
+ amPmLabels?: {
1615
+ am: string;
1616
+ pm: string;
1617
+ };
1618
+ /** Min time as "HH:mm" or "HH:mm:ss" */
1619
+ min?: string;
1620
+ /** Max time as "HH:mm" or "HH:mm:ss" */
1621
+ max?: string;
1622
+ /** Step for hours (arrow keys). @default 1 */
1623
+ hoursStep?: number;
1624
+ /** Step for minutes (arrow keys). @default 1 */
1625
+ minutesStep?: number;
1626
+ /** Step for seconds (arrow keys). @default 1 */
1627
+ secondsStep?: number;
1628
+ /** Show scrollable columns for hours/minutes/seconds in dropdown (values based on step) */
1629
+ withDropdown?: boolean;
1630
+ /** Time presets: string[] or { label, values }[] for grouped presets */
1631
+ presets?: TimePickerPreset[];
1632
+ /** Controlled dropdown open state */
1633
+ open?: boolean;
1634
+ /** Called when dropdown open state changes */
1635
+ onOpenChange?: (open: boolean) => void;
1636
+ /** Read-only: display value but prevent editing */
1637
+ readOnly?: boolean;
1519
1638
  label?: string;
1520
1639
  placeholder?: string;
1521
1640
  disabled?: boolean;
@@ -1523,6 +1642,18 @@ type TimePickerProps = {
1523
1642
  size?: 'sm' | 'md' | 'lg' | 'xl';
1524
1643
  radius?: 'sm' | 'md' | 'lg' | 'xl';
1525
1644
  dropdownType?: 'popover' | 'modal';
1645
+ /** Right section (e.g. clock icon to open dropdown) */
1646
+ rightSection?: React.ReactNode;
1647
+ /** Popover position/width/control. side, align, width, opened, onChange */
1648
+ popoverProps?: {
1649
+ side?: 'top' | 'bottom' | 'left' | 'right';
1650
+ align?: 'start' | 'center' | 'end';
1651
+ width?: 'target' | string;
1652
+ /** Controlled open state (use with onChange) */
1653
+ opened?: boolean;
1654
+ /** Called when popover open state changes */
1655
+ onChange?: (opened: boolean) => void;
1656
+ };
1526
1657
  'aria-label'?: string;
1527
1658
  className?: string;
1528
1659
  valueFormat?: (date: Date) => string;
@@ -1536,6 +1667,24 @@ type TimePickerContentProps = {
1536
1667
  timeS: string;
1537
1668
  timeFocus: 'h' | 'm' | 's' | null;
1538
1669
  withSeconds: boolean;
1670
+ is12h?: boolean;
1671
+ amPm?: 'AM' | 'PM';
1672
+ setAmPm?: (ap: 'AM' | 'PM') => void;
1673
+ amPmLabels?: {
1674
+ am: string;
1675
+ pm: string;
1676
+ };
1677
+ isWithinRange?: (d: Date) => boolean;
1678
+ hoursStep?: number;
1679
+ minutesStep?: number;
1680
+ secondsStep?: number;
1681
+ presets?: TimePickerPreset[];
1682
+ readOnly?: boolean;
1683
+ withDropdown?: boolean;
1684
+ onPresetClick?: (preset: string) => void;
1685
+ onStep?: (field: 'h' | 'm' | 's', delta: 1 | -1) => void;
1686
+ onColumnSelect?: (field: 'h' | 'm' | 's', value: string) => void;
1687
+ onAmPmSelect?: (ap: 'AM' | 'PM') => void;
1539
1688
  onTimeFocus: (f: 'h' | 'm' | 's') => void;
1540
1689
  onTimeBlur: (field: 'h' | 'm' | 's') => void;
1541
1690
  onTimeHChange: (v: string) => void;
@@ -1544,11 +1693,14 @@ type TimePickerContentProps = {
1544
1693
  onConfirm: () => void;
1545
1694
  };
1546
1695
 
1547
- type YearPickerContentProps = {
1548
- calendarType: CalendarType;
1549
- years: number[];
1696
+ type YearPickerView = {
1550
1697
  decadeStart: number;
1698
+ years: number[];
1551
1699
  headerLabel: string;
1700
+ };
1701
+ type YearPickerContentProps = {
1702
+ calendarType: CalendarType;
1703
+ views: YearPickerView[];
1552
1704
  onPrev: () => void;
1553
1705
  onNext: () => void;
1554
1706
  onYearClick: (y: number) => void;
@@ -1559,9 +1711,25 @@ type YearPickerContentProps = {
1559
1711
  isYearInRange: (y: number) => boolean;
1560
1712
  isRangeStart: (y: number) => boolean;
1561
1713
  isRangeEnd: (y: number) => boolean;
1714
+ canPrev?: boolean;
1715
+ canNext?: boolean;
1716
+ isYearDisabled?: (y: number) => boolean;
1717
+ formatYear?: (y: number) => string;
1718
+ getYearControlProps?: (date: Date) => Record<string, unknown>;
1719
+ yearToDate?: (y: number) => Date;
1720
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1562
1721
  };
1563
1722
 
1564
- type YearPickerType = 'default' | 'range';
1723
+ type YearPickerType = 'default' | 'range' | 'multiple';
1724
+ type YearPickerSize = 'sm' | 'md' | 'lg' | 'xl';
1725
+ /** Format for year display: YYYY = full year (2024), YY = 2-digit (24) */
1726
+ type YearFormat = 'YYYY' | 'YY';
1727
+ type GetYearControlProps = (date: Date) => {
1728
+ disabled?: boolean;
1729
+ className?: string;
1730
+ style?: React.CSSProperties;
1731
+ [key: string]: unknown;
1732
+ };
1565
1733
  interface YearPickerBaseProps {
1566
1734
  allowDeselect?: boolean;
1567
1735
  /** @default 'GC' */
@@ -1570,6 +1738,18 @@ interface YearPickerBaseProps {
1570
1738
  defaultDate?: Date;
1571
1739
  date?: Date;
1572
1740
  onDateChange?: (date: Date) => void;
1741
+ minDate?: Date;
1742
+ maxDate?: Date;
1743
+ /** Props to add to each year control. Receives year as Date. */
1744
+ getYearControlProps?: GetYearControlProps;
1745
+ /** Number of picker columns (for range type). @default 1 */
1746
+ numberOfColumns?: number;
1747
+ /** @default 'md' */
1748
+ size?: YearPickerSize;
1749
+ /** Format for year display in grid. @default 'YYYY' */
1750
+ yearsListFormat?: YearFormat;
1751
+ /** Format for decade label. @default 'YYYY' */
1752
+ decadeLabelFormat?: YearFormat;
1573
1753
  }
1574
1754
  type YearPickerProps = (YearPickerBaseProps & {
1575
1755
  type?: 'default';
@@ -1582,14 +1762,19 @@ type YearPickerProps = (YearPickerBaseProps & {
1582
1762
  defaultValue?: [Date | null, Date | null];
1583
1763
  onChange?: (value: [Date | null, Date | null]) => void;
1584
1764
  allowSingleDateInRange?: boolean;
1765
+ }) | (YearPickerBaseProps & {
1766
+ type: 'multiple';
1767
+ value?: Date[];
1768
+ defaultValue?: Date[];
1769
+ onChange?: (value: Date[]) => void;
1585
1770
  });
1586
1771
 
1587
1772
  declare function YearPicker(props: YearPickerProps): react_jsx_runtime.JSX.Element;
1588
1773
 
1589
- type YearPickerInputType = 'default' | 'range';
1774
+ type YearPickerInputType = 'default' | 'range' | 'multiple';
1590
1775
  type YearPickerInputFormatter = (opts: {
1591
1776
  type: YearPickerInputType;
1592
- date: Date | null | [Date | null, Date | null];
1777
+ date: Date | null | [Date | null, Date | null] | Date[];
1593
1778
  }) => string;
1594
1779
  interface YearPickerInputBaseProps {
1595
1780
  label?: string;
@@ -1619,6 +1804,11 @@ type YearPickerInputProps = (YearPickerInputBaseProps & {
1619
1804
  defaultValue?: [Date | null, Date | null];
1620
1805
  onChange?: (value: [Date | null, Date | null]) => void;
1621
1806
  allowSingleDateInRange?: boolean;
1807
+ }) | (YearPickerInputBaseProps & {
1808
+ type: 'multiple';
1809
+ value?: Date[];
1810
+ defaultValue?: Date[];
1811
+ onChange?: (value: Date[]) => void;
1622
1812
  });
1623
1813
 
1624
1814
  declare const YearPickerInput: React$1.ForwardRefExoticComponent<YearPickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
@@ -1879,7 +2069,7 @@ declare const THEMES: {
1879
2069
  readonly dark: ".dark";
1880
2070
  };
1881
2071
  type ChartConfig = {
1882
- [k in string]: {
2072
+ [Key in string]: {
1883
2073
  label?: React$1.ReactNode;
1884
2074
  icon?: React$1.ComponentType;
1885
2075
  } & ({
@@ -3201,4 +3391,4 @@ declare function UnstyledButton({ className, render, ...props }: UnstyledButtonP
3201
3391
 
3202
3392
  declare function VisuallyHidden({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
3203
3393
 
3204
- 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, 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, TimeInput, type TimeInputProps, TimePicker, type TimePickerContentProps, 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, YearPicker, type YearPickerContentProps, YearPickerInput, type YearPickerInputFormatter, type YearPickerInputProps, type YearPickerInputType, type YearPickerProps, type YearPickerType, actionIconVariants, addDays, anchorVariants, badgeVariants, blockquoteVariants, burgerVariants, buttonVariants, chipVariants, codeVariants, completeNProgress, configureNProgress, containerVariants, dateToIsoDate, formatDateWithPattern, 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 };
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 };