@mlw-packages/react-components 1.7.17 → 1.7.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -559,6 +559,9 @@ body {
559
559
  .top-\[calc\(var\(--week-cells-height\)\/4\)\] {
560
560
  top: calc(var(--week-cells-height) / 4);
561
561
  }
562
+ .top-\[calc\(var\(--week-cells-height\)\/4\*\)\] {
563
+ top: calc(var(--week-cells-height) / 4 *);
564
+ }
562
565
  .top-\[calc\(var\(--week-cells-height\)\/4\*2\)\] {
563
566
  top: calc(var(--week-cells-height) / 4 * 2);
564
567
  }
@@ -1946,6 +1949,9 @@ body {
1946
1949
  .border-black\/40 {
1947
1950
  border-color: rgb(0 0 0 / 0.4);
1948
1951
  }
1952
+ .border-black\/5 {
1953
+ border-color: rgb(0 0 0 / 0.05);
1954
+ }
1949
1955
  .border-blue-200 {
1950
1956
  --tw-border-opacity: 1;
1951
1957
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
@@ -3604,6 +3610,9 @@ body {
3604
3610
  .ease-out {
3605
3611
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
3606
3612
  }
3613
+ .running {
3614
+ animation-play-state: running;
3615
+ }
3607
3616
  :root {
3608
3617
  --white: #ffffff;
3609
3618
  --purple: #8e68ff;
@@ -5660,6 +5669,9 @@ body {
5660
5669
  }
5661
5670
  }
5662
5671
  @media (min-width: 480px) {
5672
+ .min-\[480px\]\:inline-block {
5673
+ display: inline-block;
5674
+ }
5663
5675
  .min-\[480px\]\:hidden {
5664
5676
  display: none;
5665
5677
  }
@@ -5837,6 +5849,9 @@ body {
5837
5849
  .sm\:text-\[11px\] {
5838
5850
  font-size: 11px;
5839
5851
  }
5852
+ .sm\:text-\[15px\] {
5853
+ font-size: 15px;
5854
+ }
5840
5855
  .sm\:text-\[clamp\(0\.65rem\,1\.1vw\,0\.825rem\)\] {
5841
5856
  font-size: clamp(0.65rem, 1.1vw, 0.825rem);
5842
5857
  }
package/dist/index.d.mts CHANGED
@@ -1423,21 +1423,21 @@ interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputEl
1423
1423
  }
1424
1424
  declare function DebouncedInput({ value: initialValue, onChange, debounce, label, labelClassname, leftIcon, rightIcon, showLoadingIndicator, className, error, ...props }: DebouncedInputProps): react_jsx_runtime.JSX.Element;
1425
1425
 
1426
- interface AgendaViewProps {
1426
+ interface AgendaViewProps$1 {
1427
1427
  currentDate: Date;
1428
1428
  events: CalendarEvent[];
1429
1429
  onEventSelect?: (event: CalendarEvent) => void;
1430
1430
  showUndatedEvents?: boolean;
1431
1431
  }
1432
- declare function AgendaView({ currentDate, events, onEventSelect, showUndatedEvents, }: AgendaViewProps): react_jsx_runtime.JSX.Element;
1432
+ declare function AgendaView({ currentDate, events, onEventSelect, showUndatedEvents, }: AgendaViewProps$1): react_jsx_runtime.JSX.Element;
1433
1433
 
1434
- interface CalendarDndProviderProps {
1434
+ interface CalendarDndProviderProps$1 {
1435
1435
  children: ReactNode;
1436
1436
  onEventUpdate: (event: CalendarEvent) => void;
1437
1437
  }
1438
- declare function CalendarDndProvider({ children, onEventUpdate, }: CalendarDndProviderProps): react_jsx_runtime.JSX.Element;
1438
+ declare function CalendarDndProvider({ children, onEventUpdate, }: CalendarDndProviderProps$1): react_jsx_runtime.JSX.Element;
1439
1439
 
1440
- type CalendarDndContextType = {
1440
+ type CalendarDndContextType$1 = {
1441
1441
  activeEvent: CalendarEvent | null;
1442
1442
  activeId: UniqueIdentifier | null;
1443
1443
  activeView: "month" | "week" | "day" | null;
@@ -1454,7 +1454,7 @@ type CalendarDndContextType = {
1454
1454
  };
1455
1455
  } | null;
1456
1456
  };
1457
- declare const useCalendarDnd: () => CalendarDndContextType;
1457
+ declare const useCalendarDnd: () => CalendarDndContextType$1;
1458
1458
 
1459
1459
  declare const EventHeight = 24;
1460
1460
  declare const EventGap = 4;
@@ -1465,13 +1465,13 @@ declare const EndHour = 24;
1465
1465
  declare const DefaultStartHour = 9;
1466
1466
  declare const DefaultEndHour = 10;
1467
1467
 
1468
- interface DayViewProps {
1468
+ interface DayViewProps$1 {
1469
1469
  currentDate: Date;
1470
1470
  events: CalendarEvent[];
1471
1471
  onEventSelect: (event: CalendarEvent) => void;
1472
1472
  onEventCreate: (startTime: Date) => void;
1473
1473
  }
1474
- declare function DayView({ currentDate, events, onEventSelect, onEventCreate, }: DayViewProps): react_jsx_runtime.JSX.Element;
1474
+ declare function DayView({ currentDate, events, onEventSelect, onEventCreate, }: DayViewProps$1): react_jsx_runtime.JSX.Element;
1475
1475
 
1476
1476
  interface DraggableEventProps {
1477
1477
  event: CalendarEvent;
@@ -1487,7 +1487,7 @@ interface DraggableEventProps {
1487
1487
  }
1488
1488
  declare function DraggableEvent({ event, view, showTime, onClick, height, isMultiDay, multiDayWidth, isFirstDay, isLastDay, "aria-hidden": ariaHidden, }: DraggableEventProps): react_jsx_runtime.JSX.Element;
1489
1489
 
1490
- interface DroppableCellProps {
1490
+ interface DroppableCellProps$1 {
1491
1491
  id: string;
1492
1492
  date: Date;
1493
1493
  time?: number;
@@ -1495,18 +1495,17 @@ interface DroppableCellProps {
1495
1495
  className?: string;
1496
1496
  onClick?: () => void;
1497
1497
  }
1498
- declare function DroppableCell({ id, date, time, children, className, onClick, }: DroppableCellProps): react_jsx_runtime.JSX.Element;
1498
+ declare function DroppableCell({ id, date, time, children, className, onClick, }: DroppableCellProps$1): react_jsx_runtime.JSX.Element;
1499
1499
 
1500
- interface EventCalendarProps {
1500
+ interface EventCalendarProps$1 {
1501
1501
  events?: CalendarEvent[];
1502
1502
  onEventAdd?: (event: CalendarEvent) => void;
1503
1503
  onEventUpdate?: (event: CalendarEvent) => void;
1504
1504
  onEventDelete?: (eventId: string) => void;
1505
1505
  className?: string;
1506
1506
  initialView?: CalendarView;
1507
- mode?: "agenda-only" | "default";
1508
1507
  }
1509
- declare function EventCalendar({ events, onEventAdd, onEventUpdate, onEventDelete, className, initialView, mode, }: EventCalendarProps): react_jsx_runtime.JSX.Element;
1508
+ declare function EventCalendar({ events, onEventAdd, onEventUpdate, onEventDelete, className, initialView, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
1510
1509
 
1511
1510
  interface EventDialogProps {
1512
1511
  event: CalendarEvent | null;
@@ -1517,7 +1516,7 @@ interface EventDialogProps {
1517
1516
  }
1518
1517
  declare function EventDialog({ event, isOpen, onClose, onSave, onDelete, }: EventDialogProps): react_jsx_runtime.JSX.Element;
1519
1518
 
1520
- interface EventItemProps {
1519
+ interface EventItemProps$1 {
1521
1520
  event: CalendarEvent;
1522
1521
  view: "month" | "week" | "day" | "agenda";
1523
1522
  agendaOnly?: boolean;
@@ -1534,7 +1533,7 @@ interface EventItemProps {
1534
1533
  onMouseDown?: (e: React.MouseEvent) => void;
1535
1534
  onTouchStart?: (e: React.TouchEvent) => void;
1536
1535
  }
1537
- declare function EventItem({ event, view, isDragging, onClick, showTime, currentTime, isFirstDay, isLastDay, children, className, dndListeners, dndAttributes, onMouseDown, onTouchStart, agendaOnly, }: EventItemProps): react_jsx_runtime.JSX.Element;
1536
+ declare function EventItem({ event, view, onClick, showTime, currentTime, isFirstDay, isLastDay, children, className, dndListeners, dndAttributes, onMouseDown, onTouchStart, agendaOnly, }: EventItemProps$1): react_jsx_runtime.JSX.Element;
1538
1537
 
1539
1538
  interface EventsPopupProps {
1540
1539
  date: Date;
@@ -1553,11 +1552,11 @@ declare function useCurrentTimeIndicator(currentDate: Date, view: "day" | "week"
1553
1552
  currentTimeVisible: boolean;
1554
1553
  };
1555
1554
 
1556
- interface EventVisibilityOptions {
1555
+ interface EventVisibilityOptions$1 {
1557
1556
  eventHeight: number;
1558
1557
  eventGap: number;
1559
1558
  }
1560
- interface EventVisibilityResult {
1559
+ interface EventVisibilityResult$1 {
1561
1560
  contentRef: React.RefObject<HTMLDivElement>;
1562
1561
  contentHeight: number | null;
1563
1562
  getVisibleEventCount: (totalEvents: number) => number;
@@ -1566,15 +1565,15 @@ interface EventVisibilityResult {
1566
1565
  * Hook for calculating event visibility based on container height
1567
1566
  * Uses ResizeObserver for efficient updates
1568
1567
  */
1569
- declare function useEventVisibility({ eventHeight, eventGap, }: EventVisibilityOptions): EventVisibilityResult;
1568
+ declare function useEventVisibility({ eventHeight, eventGap, }: EventVisibilityOptions$1): EventVisibilityResult$1;
1570
1569
 
1571
- interface MonthViewProps {
1570
+ interface MonthViewProps$1 {
1572
1571
  currentDate: Date;
1573
1572
  events: CalendarEvent[];
1574
1573
  onEventSelect: (event: CalendarEvent) => void;
1575
1574
  onEventCreate: (startTime: Date) => void;
1576
1575
  }
1577
- declare function MonthView({ currentDate, events, onEventSelect, onEventCreate, }: MonthViewProps): react_jsx_runtime.JSX.Element;
1576
+ declare function MonthView({ currentDate, events, onEventSelect, onEventCreate, }: MonthViewProps$1): react_jsx_runtime.JSX.Element;
1578
1577
 
1579
1578
  type CalendarView = "month" | "week" | "day" | "agenda";
1580
1579
  interface CalendarEvent {
@@ -1621,13 +1620,13 @@ declare function getAgendaEventsForDay(events: CalendarEvent[], day: Date): Cale
1621
1620
  */
1622
1621
  declare function addHoursToDate(date: Date, hours: number): Date;
1623
1622
 
1624
- interface WeekViewProps {
1623
+ interface WeekViewProps$1 {
1625
1624
  currentDate: Date;
1626
1625
  events: CalendarEvent[];
1627
1626
  onEventSelect: (event: CalendarEvent) => void;
1628
1627
  onEventCreate: (startTime: Date) => void;
1629
1628
  }
1630
- declare function WeekView({ currentDate, events, onEventSelect, onEventCreate, }: WeekViewProps): react_jsx_runtime.JSX.Element;
1629
+ declare function WeekView({ currentDate, events, onEventSelect, onEventCreate, }: WeekViewProps$1): react_jsx_runtime.JSX.Element;
1631
1630
 
1632
1631
  interface TreeNode {
1633
1632
  id: string;
@@ -1678,6 +1677,187 @@ declare function MultiSelectItemBase({ value, children, badgeLabel, onSelect, ..
1678
1677
  declare function MultiSelectGroupBase(props: ComponentPropsWithoutRef<typeof CommandGroupBase>): react_jsx_runtime.JSX.Element;
1679
1678
  declare function MultiSelectSeparatorBase(props: ComponentPropsWithoutRef<typeof CommandSeparatorBase>): react_jsx_runtime.JSX.Element;
1680
1679
 
1680
+ interface AgendaViewProps {
1681
+ currentDate: Date;
1682
+ events: CalendarEventAgenda[];
1683
+ onEventSelect?: (event: CalendarEventAgenda) => void;
1684
+ showUndatedEvents?: boolean;
1685
+ }
1686
+ declare function Agenda({ currentDate, events, onEventSelect, showUndatedEvents, }: AgendaViewProps): react_jsx_runtime.JSX.Element;
1687
+
1688
+ interface CalendarDndProviderProps {
1689
+ children: ReactNode;
1690
+ onEventUpdate: (event: CalendarEventAgenda) => void;
1691
+ }
1692
+ declare function CalendarDndProviderAgenda({ children, onEventUpdate, }: CalendarDndProviderProps): react_jsx_runtime.JSX.Element;
1693
+
1694
+ type CalendarDndContextType = {
1695
+ activeEvent: CalendarEventAgenda | null;
1696
+ activeId: UniqueIdentifier | null;
1697
+ activeView: "month" | "week" | "day" | null;
1698
+ currentTime: Date | null;
1699
+ eventHeight: number | null;
1700
+ isMultiDay: boolean;
1701
+ multiDayWidth: number | null;
1702
+ dragHandlePosition: {
1703
+ x?: number;
1704
+ y?: number;
1705
+ data?: {
1706
+ isFirstDay?: boolean;
1707
+ isLastDay?: boolean;
1708
+ };
1709
+ } | null;
1710
+ };
1711
+ declare const useCalendarDndAgenda: () => CalendarDndContextType;
1712
+
1713
+ declare const EventHeightAgenda = 24;
1714
+ declare const EventGapAgenda = 4;
1715
+ declare const WeekCellsHeightAgenda = 64;
1716
+ declare const AgendaDaysToShowAgenda = 30;
1717
+ declare const StartHourAgenda = 0;
1718
+ declare const EndHourAgenda = 24;
1719
+ declare const DefaultStartHourAgenda = 9;
1720
+ declare const DefaultEndHourAgenda = 10;
1721
+
1722
+ type CalendarViewAgenda = "month" | "week" | "day" | "agenda";
1723
+ interface CalendarEventAgenda {
1724
+ id: string;
1725
+ title: string;
1726
+ description?: ReactNode;
1727
+ start?: Date | null;
1728
+ end?: Date | null;
1729
+ attend_date?: Date | null;
1730
+ allDay?: boolean;
1731
+ color?: EventColorAgenda;
1732
+ location?: string;
1733
+ }
1734
+ type EventColorAgenda = "sky" | "amber" | "violet" | "rose" | "emerald" | "orange" | "green" | "blue" | "red" | "purple";
1735
+
1736
+ interface DayViewProps {
1737
+ currentDate: Date;
1738
+ events: CalendarEventAgenda[];
1739
+ onEventSelect: (event: CalendarEventAgenda) => void;
1740
+ showUndatedEvents?: boolean;
1741
+ }
1742
+ declare function DayViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: DayViewProps): react_jsx_runtime.JSX.Element;
1743
+
1744
+ interface DroppableCellProps {
1745
+ id: string;
1746
+ date: Date;
1747
+ time?: number;
1748
+ children?: React.ReactNode;
1749
+ className?: string;
1750
+ onClick?: () => void;
1751
+ }
1752
+ declare function DroppableCellAgenda({ id, date, time, children, className, onClick, }: DroppableCellProps): react_jsx_runtime.JSX.Element;
1753
+
1754
+ interface EventCalendarProps {
1755
+ events?: CalendarEventAgenda[];
1756
+ onEventUpdate?: (event: CalendarEventAgenda) => void;
1757
+ className?: string;
1758
+ initialView?: CalendarViewAgenda;
1759
+ mode?: "agenda-only";
1760
+ /** Optional initial date for the calendar (used by stories/tests) */
1761
+ initialDate?: Date;
1762
+ }
1763
+ declare function EventAgenda({ events, onEventUpdate, className, initialView, mode, initialDate, }: EventCalendarProps): react_jsx_runtime.JSX.Element;
1764
+
1765
+ interface EventItemProps {
1766
+ event: CalendarEventAgenda;
1767
+ view: "month" | "week" | "day" | "agenda";
1768
+ agendaOnly?: boolean;
1769
+ isDragging?: boolean;
1770
+ onClick?: (e: React.MouseEvent) => void;
1771
+ showTime?: boolean;
1772
+ currentTime?: Date;
1773
+ isFirstDay?: boolean;
1774
+ isLastDay?: boolean;
1775
+ children?: React.ReactNode;
1776
+ className?: string;
1777
+ dndListeners?: SyntheticListenerMap;
1778
+ dndAttributes?: DraggableAttributes;
1779
+ onMouseDown?: (e: React.MouseEvent) => void;
1780
+ onTouchStart?: (e: React.TouchEvent) => void;
1781
+ }
1782
+ declare function EventItemAgenda({ event, view, onClick, showTime, currentTime, isFirstDay, isLastDay, children, className, dndListeners, dndAttributes, onMouseDown, onTouchStart, agendaOnly, }: EventItemProps): react_jsx_runtime.JSX.Element;
1783
+
1784
+ interface UndatedEventsProps {
1785
+ events: CalendarEventAgenda[];
1786
+ onEventSelect?: (event: CalendarEventAgenda) => void;
1787
+ className?: string;
1788
+ title?: string;
1789
+ show?: boolean;
1790
+ }
1791
+ declare function UndatedEvents({ events, onEventSelect, className, title, show, }: UndatedEventsProps): react_jsx_runtime.JSX.Element | null;
1792
+
1793
+ declare function useCurrentTimeIndicatorAgenda(currentDate: Date, view: "day" | "week"): {
1794
+ currentTimePosition: number;
1795
+ currentTimeVisible: boolean;
1796
+ };
1797
+
1798
+ interface EventVisibilityOptions {
1799
+ eventHeight: number;
1800
+ eventGap: number;
1801
+ }
1802
+ interface EventVisibilityResult {
1803
+ contentRef: React.RefObject<HTMLDivElement>;
1804
+ contentHeight: number | null;
1805
+ getVisibleEventCount: (totalEvents: number) => number;
1806
+ }
1807
+ /**
1808
+ * Hook for calculating event visibility based on container height
1809
+ * Uses ResizeObserver for efficient updates
1810
+ */
1811
+ declare function useEventVisibilityAgenda({ eventHeight, eventGap, }: EventVisibilityOptions): EventVisibilityResult;
1812
+
1813
+ interface MonthViewProps {
1814
+ currentDate: Date;
1815
+ events: CalendarEventAgenda[];
1816
+ onEventSelect: (event: CalendarEventAgenda) => void;
1817
+ showUndatedEvents?: boolean;
1818
+ }
1819
+ declare function MonthViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: MonthViewProps): react_jsx_runtime.JSX.Element;
1820
+
1821
+ /**
1822
+ * Get CSS classes for event colors
1823
+ */
1824
+ declare function getEventColorClassesAgenda(color?: EventColorAgenda | string): string;
1825
+ /**
1826
+ * Get CSS classes for border radius based on event position in multi-day events
1827
+ */
1828
+ declare function getBorderRadiusClassesAgenda(isFirstDay: boolean, isLastDay: boolean): string;
1829
+ /**
1830
+ * Check if an event is a multi-day event
1831
+ */
1832
+ declare function isMultiDayEventAgenda(event: CalendarEventAgenda): boolean;
1833
+ /**
1834
+ * Filter events for a specific day
1835
+ */
1836
+ declare function getEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
1837
+ declare function sortEventsAgenda(events: CalendarEventAgenda[]): CalendarEventAgenda[];
1838
+ declare function getSpanningEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
1839
+ /**
1840
+ * Get all events visible on a specific day (starting, ending, or spanning)
1841
+ */
1842
+ declare function getAllEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
1843
+ /**
1844
+ * Get all events for a day (for agenda view)
1845
+ */
1846
+ declare function getAgendaEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
1847
+ declare function normalizeAttendDate(d?: unknown): Date | undefined;
1848
+ /**
1849
+ * Add hours to a date
1850
+ */
1851
+ declare function addHoursToDateAgenda(date: Date, hours: number): Date;
1852
+
1853
+ interface WeekViewProps {
1854
+ currentDate: Date;
1855
+ events: CalendarEventAgenda[];
1856
+ onEventSelect: (event: CalendarEventAgenda) => void;
1857
+ onEventCreate?: (startTime: Date) => void;
1858
+ }
1859
+ declare function WeekViewAgenda({ currentDate, events, onEventSelect, onEventCreate, }: WeekViewProps): react_jsx_runtime.JSX.Element;
1860
+
1681
1861
  declare function useIsMobile(): boolean;
1682
1862
 
1683
1863
  interface Position {
@@ -1697,4 +1877,4 @@ declare const useDrag: (options?: UseDragOptions) => {
1697
1877
  isDragging: boolean;
1698
1878
  };
1699
1879
 
1700
- export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, type CalendarEvent, type CalendarProps, type CalendarView, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData, type ChartHooksArgs, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, DayView, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultStartHour, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, EditButton, EndHour, ErrorMessage, EventCalendar, type EventColor, EventDialog, EventGap, EventHeight, EventItem, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MoreButton, MultiCombobox, MultiSelectBase, MultiSelectContentBase, MultiSelectGroupBase, MultiSelectItemBase, MultiSelectSeparatorBase, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NoData, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesCounts, type SeriesEntry, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StatusIndicator, type StatusProps, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekView, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, addHoursToDate, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAllEventsForDay, getArrowByType, getBorderRadiusClasses, getDateByType, getEventColorClasses, getEventsForDay, getSpanningEventsForDay, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, toast, useCalendarDnd, useChartHighlights, useCurrentTimeIndicator, useDrag, useEventVisibility, useIsMobile, useTheme, type valueFormatter };
1880
+ export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData, type ChartHooksArgs, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultEndHourAgenda, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, MultiSelectBase, MultiSelectContentBase, MultiSelectGroupBase, MultiSelectItemBase, MultiSelectSeparatorBase, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NoData, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesCounts, type SeriesEntry, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, addHoursToDate, addHoursToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventsForDay, getEventsForDayAgenda, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useCalendarDnd, useCalendarDndAgenda, useChartHighlights, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useTheme, type valueFormatter };