@mlw-packages/react-components 1.8.6 → 1.8.8

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.d.mts CHANGED
@@ -63,8 +63,10 @@ declare const useTheme: () => ThemeProviderState;
63
63
 
64
64
  type ModeToggleBaseProps = {
65
65
  themes?: Theme[];
66
+ className?: string;
67
+ variant?: "default" | "outline" | "link" | "destructive" | "secondary" | "ghost";
66
68
  };
67
- declare function ModeToggleBase({ themes, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
69
+ declare function ModeToggleBase({ themes, className, variant, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
68
70
 
69
71
  declare const AvatarBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
70
72
  declare const AvatarImageBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
@@ -546,7 +548,6 @@ declare const DropDownMenuContentBase: React$1.ForwardRefExoticComponent<Omit<Dr
546
548
  } & React$1.RefAttributes<HTMLDivElement>>;
547
549
  declare const DropDownMenuItemBase: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
548
550
  inset?: boolean;
549
- leftIcon?: React$1.ReactNode;
550
551
  rightIcon?: React$1.ReactNode;
551
552
  } & React$1.RefAttributes<HTMLDivElement>>;
552
553
  declare const DropDownMenuCheckboxItemBase: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
@@ -1313,6 +1314,7 @@ interface AvatarComboboxItem<T extends string> {
1313
1314
  value: T;
1314
1315
  avatar?: ReactNode;
1315
1316
  avatarClassName?: string;
1317
+ img?: string;
1316
1318
  }
1317
1319
  interface AvatarComboboxTestIds {
1318
1320
  root?: string;
@@ -1639,8 +1641,10 @@ declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?
1639
1641
 
1640
1642
  declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
1641
1643
 
1644
+ type Primitive = string | number | boolean | null | undefined;
1642
1645
  interface ChartData$4 {
1643
- [key: string]: string | number | boolean | null | undefined;
1646
+ [key: string]: Primitive;
1647
+ name?: string;
1644
1648
  }
1645
1649
  interface XAxisConfig$2 {
1646
1650
  dataKey: string;
@@ -1648,13 +1652,54 @@ interface XAxisConfig$2 {
1648
1652
  valueFormatter?: (value: string | number) => string;
1649
1653
  autoLabel?: boolean;
1650
1654
  }
1651
- interface BiaxialConfig {
1652
- key: string[];
1655
+ type ValueFormatter = (value: string | number) => string | number;
1656
+ type FinalValueFormatter = (value: number | string | null | undefined) => string;
1657
+ type SeriesProp$1 = {
1658
+ bar?: string[];
1659
+ line?: string[];
1660
+ area?: string[];
1661
+ };
1662
+ type SeriesEntry = {
1663
+ type: "bar" | "line" | "area";
1664
+ key: string;
1665
+ };
1666
+ type SeriesCounts = {
1667
+ bar: number;
1668
+ line: number;
1669
+ area: number;
1670
+ };
1671
+ type YAxisSide = "left" | "right";
1672
+ type YAxisMap = Record<string, YAxisSide>;
1673
+ interface MapperConfigEntry {
1653
1674
  label?: string;
1654
- percentage?: boolean;
1655
- decimals?: number;
1656
- stroke?: string | Record<string, string>;
1675
+ valueFormatter?: ValueFormatter;
1676
+ color?: string;
1677
+ type?: "number" | "string" | "auto";
1678
+ visible?: boolean;
1679
+ }
1680
+ type MapperConfig = Record<string, MapperConfigEntry>;
1681
+ interface YAxisOptions {
1682
+ label?: string;
1683
+ stroke?: string;
1684
+ width?: number;
1685
+ percent?: boolean;
1686
+ percentDecimals?: number;
1687
+ }
1688
+ type YAxes = Partial<{
1689
+ left: YAxisOptions;
1690
+ right: YAxisOptions;
1691
+ }>;
1692
+ interface TooltipItem$2 {
1693
+ id: string;
1694
+ data: ChartData$4;
1695
+ position: {
1696
+ top: number;
1697
+ left: number;
1698
+ };
1657
1699
  }
1700
+ type TooltipAdaptedRow = Record<string, string | number> & {
1701
+ name: string;
1702
+ };
1658
1703
  interface TimeSeriesConfig {
1659
1704
  start?: number;
1660
1705
  end?: number;
@@ -1665,14 +1710,61 @@ interface TimeSeriesConfig {
1665
1710
  miniChartOpacity?: number;
1666
1711
  chartHeight?: number;
1667
1712
  }
1668
- type SeriesProp$1 = {
1713
+ interface ChartHooksArgs {
1714
+ width?: number | string;
1715
+ measuredWidth?: number | null;
1716
+ points?: number;
1717
+ seriesCounts?: SeriesCounts;
1718
+ niceMax?: number;
1719
+ yAxes?: YAxes;
1720
+ yAxisLabel?: string;
1721
+ chartMargin?: Partial<{
1722
+ top: number;
1723
+ right: number;
1724
+ left: number;
1725
+ bottom: number;
1726
+ }>;
1727
+ showLabels?: boolean;
1728
+ timeSeries?: boolean | TimeSeriesConfig;
1729
+ timeSeriesLegend?: string;
1730
+ customLegend?: boolean;
1731
+ }
1732
+ interface LegendItem {
1733
+ label: string;
1734
+ value: string | number;
1735
+ color?: string;
1736
+ trend?: {
1737
+ value?: number;
1738
+ label?: string;
1739
+ positive?: boolean;
1740
+ neutral?: boolean;
1741
+ };
1742
+ }
1743
+
1744
+ interface ChartData$3 {
1745
+ [key: string]: string | number | boolean | null | undefined;
1746
+ }
1747
+ interface XAxisConfig$1 {
1748
+ dataKey: string;
1749
+ label?: string;
1750
+ valueFormatter?: (value: string | number) => string;
1751
+ autoLabel?: boolean;
1752
+ }
1753
+ interface BiaxialConfig {
1754
+ key: string[];
1755
+ label?: string;
1756
+ percentage?: boolean;
1757
+ decimals?: number;
1758
+ stroke?: string | Record<string, string>;
1759
+ }
1760
+ type SeriesProp = {
1669
1761
  bar?: string[];
1670
1762
  line?: string[];
1671
1763
  area?: string[];
1672
1764
  };
1673
1765
  interface ChartProps {
1674
- data: ChartData$4[];
1675
- series?: SeriesProp$1;
1766
+ data: ChartData$3[];
1767
+ series?: SeriesProp;
1676
1768
  className?: string;
1677
1769
  chartMargin?: Partial<{
1678
1770
  top: number;
@@ -1690,13 +1782,18 @@ interface ChartProps {
1690
1782
  title?: string;
1691
1783
  titlePosition?: "left" | "center" | "right";
1692
1784
  showLabels?: boolean;
1785
+ labelsVisibility?: {
1786
+ bar?: boolean;
1787
+ line?: boolean;
1788
+ area?: boolean;
1789
+ };
1693
1790
  labelMap?: Record<string, string>;
1694
1791
  valueFormatter?: valueFormatter;
1695
1792
  categoryFormatter?: (value: string | number) => string;
1696
1793
  periodLabel?: string;
1697
1794
  xAxisLabel?: string;
1698
1795
  yAxisLabel?: string;
1699
- xAxis?: XAxisConfig$2 | string;
1796
+ xAxis?: XAxisConfig$1 | string;
1700
1797
  biaxial?: BiaxialConfig | string | string[];
1701
1798
  enableHighlights?: boolean;
1702
1799
  enableShowOnly?: boolean;
@@ -1708,13 +1805,15 @@ interface ChartProps {
1708
1805
  legendUppercase?: boolean;
1709
1806
  isLoading?: boolean;
1710
1807
  timeSeries?: boolean | TimeSeriesConfig;
1808
+ timeSeriesLegend?: string;
1809
+ customLegend?: boolean;
1711
1810
  }
1712
1811
  declare const Chart: React__default.FC<ChartProps>;
1713
1812
 
1714
1813
  interface BarChartData {
1715
1814
  [key: string]: string | number | boolean | null | undefined;
1716
1815
  }
1717
- interface XAxisConfig$1 {
1816
+ interface XAxisConfig {
1718
1817
  dataKey: string;
1719
1818
  label?: string;
1720
1819
  valueFormatter?: (value: string | number) => string;
@@ -1747,7 +1846,7 @@ interface BarChartProps {
1747
1846
  titlePosition?: "left" | "center" | "right";
1748
1847
  showLabels?: boolean;
1749
1848
  labelMap?: Record<string, string>;
1750
- xAxis?: XAxisConfig$1 | string;
1849
+ xAxis?: XAxisConfig | string;
1751
1850
  mapper?: DataMapper | string[];
1752
1851
  yAxis?: DataMapper | string[];
1753
1852
  autoDetect?: boolean;
@@ -1939,11 +2038,12 @@ interface Props {
1939
2038
  }
1940
2039
  declare const TooltipSimple: React__default.FC<Props>;
1941
2040
 
1942
- interface ChartData$3 {
2041
+ interface ChartData$2 {
1943
2042
  [key: string]: string | number | boolean | null | undefined;
1944
2043
  }
1945
2044
  interface BrushProps {
1946
- data: ChartData$3[];
2045
+ data: ChartData$2[];
2046
+ legend?: string;
1947
2047
  startIndex: number;
1948
2048
  endIndex: number;
1949
2049
  onMouseDown: (e: React__default.MouseEvent, type: "start" | "end" | "middle") => void;
@@ -1966,6 +2066,11 @@ interface BrushProps {
1966
2066
  }
1967
2067
  declare const Brush: React__default.FC<BrushProps>;
1968
2068
 
2069
+ interface ChartTotalLegendProps {
2070
+ items: LegendItem[];
2071
+ }
2072
+ declare const ChartTotalLegend: React__default.FC<ChartTotalLegendProps>;
2073
+
1969
2074
  interface UseChartHighlightsReturn {
1970
2075
  highlightedSeries: Set<string>;
1971
2076
  showOnlyHighlighted: boolean;
@@ -1982,20 +2087,20 @@ declare const useChartDimensions: () => {
1982
2087
  measuredWidth: number | null;
1983
2088
  };
1984
2089
 
1985
- interface ChartData$2 {
2090
+ interface ChartData$1 {
1986
2091
  [key: string]: string | number | boolean | null | undefined;
1987
2092
  }
1988
- interface TooltipItem$2 {
2093
+ interface TooltipItem$1 {
1989
2094
  id: string;
1990
- data: ChartData$2;
2095
+ data: ChartData$1;
1991
2096
  position: {
1992
2097
  top: number;
1993
2098
  left: number;
1994
2099
  };
1995
2100
  }
1996
2101
  declare const useChartTooltips: (maxTooltips?: number) => {
1997
- activeTooltips: TooltipItem$2[];
1998
- toggleTooltip: (tooltipId: string, data: ChartData$2, basePosition: {
2102
+ activeTooltips: TooltipItem$1[];
2103
+ toggleTooltip: (tooltipId: string, data: ChartData$1, basePosition: {
1999
2104
  top: number;
2000
2105
  left: number;
2001
2106
  }) => void;
@@ -2005,15 +2110,15 @@ declare const useChartTooltips: (maxTooltips?: number) => {
2005
2110
  }) => void;
2006
2111
  closeTooltip: (id: string) => void;
2007
2112
  closeAllTooltips: () => void;
2008
- setActiveTooltips: React$1.Dispatch<React$1.SetStateAction<TooltipItem$2[]>>;
2113
+ setActiveTooltips: React$1.Dispatch<React$1.SetStateAction<TooltipItem$1[]>>;
2009
2114
  };
2010
2115
 
2011
- interface ChartData$1 {
2116
+ interface ChartData {
2012
2117
  [key: string]: string | number | boolean | null | undefined;
2013
2118
  }
2014
- interface TooltipItem$1 {
2119
+ interface TooltipItem {
2015
2120
  id: string;
2016
- data: ChartData$1;
2121
+ data: ChartData;
2017
2122
  position: {
2018
2123
  top: number;
2019
2124
  left: number;
@@ -2022,15 +2127,15 @@ interface TooltipItem$1 {
2022
2127
  interface UseChartClickProps {
2023
2128
  enableDraggableTooltips: boolean;
2024
2129
  xAxisDataKey: string;
2025
- toggleTooltip: (tooltipId: string, data: ChartData$1, basePosition: {
2130
+ toggleTooltip: (tooltipId: string, data: ChartData, basePosition: {
2026
2131
  top: number;
2027
2132
  left: number;
2028
2133
  }) => void;
2029
- setActiveTooltips: React.Dispatch<React.SetStateAction<TooltipItem$1[]>>;
2134
+ setActiveTooltips: React.Dispatch<React.SetStateAction<TooltipItem[]>>;
2030
2135
  }
2031
2136
  declare const useChartClick: ({ enableDraggableTooltips, xAxisDataKey, toggleTooltip, setActiveTooltips, }: UseChartClickProps) => {
2032
2137
  handleChartClick: (e?: unknown) => void;
2033
- handleBarClick: (data: ChartData$1, index: number, event: React.MouseEvent) => void;
2138
+ handleBarClick: (data: ChartData, index: number, event: React.MouseEvent) => void;
2034
2139
  handleSeriesClick: (...args: unknown[]) => void;
2035
2140
  };
2036
2141
 
@@ -2059,84 +2164,6 @@ interface NoDataProps {
2059
2164
  }
2060
2165
  declare const NoData: React__default.FC<NoDataProps>;
2061
2166
 
2062
- type Primitive = string | number | boolean | null | undefined;
2063
- interface ChartData {
2064
- [key: string]: Primitive;
2065
- name?: string;
2066
- }
2067
- interface XAxisConfig {
2068
- dataKey: string;
2069
- label?: string;
2070
- valueFormatter?: (value: string | number) => string;
2071
- autoLabel?: boolean;
2072
- }
2073
- type ValueFormatter = (value: string | number) => string | number;
2074
- type FinalValueFormatter = (value: number | string | null | undefined) => string;
2075
- type SeriesProp = {
2076
- bar?: string[];
2077
- line?: string[];
2078
- area?: string[];
2079
- };
2080
- type SeriesEntry = {
2081
- type: "bar" | "line" | "area";
2082
- key: string;
2083
- };
2084
- type SeriesCounts = {
2085
- bar: number;
2086
- line: number;
2087
- area: number;
2088
- };
2089
- type YAxisSide = "left" | "right";
2090
- type YAxisMap = Record<string, YAxisSide>;
2091
- interface MapperConfigEntry {
2092
- label?: string;
2093
- valueFormatter?: ValueFormatter;
2094
- color?: string;
2095
- type?: "number" | "string" | "auto";
2096
- visible?: boolean;
2097
- }
2098
- type MapperConfig = Record<string, MapperConfigEntry>;
2099
- interface YAxisOptions {
2100
- label?: string;
2101
- stroke?: string;
2102
- width?: number;
2103
- percent?: boolean;
2104
- percentDecimals?: number;
2105
- }
2106
- type YAxes = Partial<{
2107
- left: YAxisOptions;
2108
- right: YAxisOptions;
2109
- }>;
2110
- interface TooltipItem {
2111
- id: string;
2112
- data: ChartData;
2113
- position: {
2114
- top: number;
2115
- left: number;
2116
- };
2117
- }
2118
- type TooltipAdaptedRow = Record<string, string | number> & {
2119
- name: string;
2120
- };
2121
- interface ChartHooksArgs {
2122
- width?: number | string;
2123
- measuredWidth?: number | null;
2124
- points?: number;
2125
- seriesCounts?: SeriesCounts;
2126
- niceMax?: number;
2127
- yAxes?: YAxes;
2128
- yAxisLabel?: string;
2129
- chartMargin?: Partial<{
2130
- top: number;
2131
- right: number;
2132
- left: number;
2133
- bottom: number;
2134
- }>;
2135
- showLabels?: boolean;
2136
- showLegend?: boolean;
2137
- xAxisLabel?: string;
2138
- }
2139
-
2140
2167
  interface LeaderboardItem<T extends string> {
2141
2168
  name: string;
2142
2169
  value: number | string | T;
@@ -2147,9 +2174,10 @@ interface LeaderboardProps<T extends string> {
2147
2174
  title?: string;
2148
2175
  className?: string;
2149
2176
  isLoading?: boolean;
2150
- legend?: [string, string][];
2177
+ legend?: string[];
2178
+ best?: boolean;
2151
2179
  }
2152
- declare function Leaderboard<T extends string>({ items, order: initialOrder, title, className, isLoading, legend, }: LeaderboardProps<T>): react_jsx_runtime.JSX.Element;
2180
+ declare function Leaderboard<T extends string>({ items, order: initialOrder, title, className, isLoading, legend, best, }: LeaderboardProps<T>): react_jsx_runtime.JSX.Element;
2153
2181
 
2154
2182
  declare function useIsMobile(): boolean;
2155
2183
 
@@ -2170,4 +2198,4 @@ declare const useDrag: (options?: UseDragOptions) => {
2170
2198
  isDragging: boolean;
2171
2199
  };
2172
2200
 
2173
- export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, 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, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, 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, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, 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, type MultiComboboxProps, type MultiComboboxTestIds, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type NewSelectProps, 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, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, 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, TimeSeries, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getMaxDataValue, getMinDataValue, 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, useChartClick, useChartDimensions, useChartHighlights, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
2201
+ export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, 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$4 as ChartData, type ChartHooksArgs, ChartTotalLegend, 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, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, 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, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, 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, type MultiComboboxProps, type MultiComboboxTestIds, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type NewSelectProps, 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, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesCounts, type SeriesEntry, type SeriesProp$1 as 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, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig$2 as XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getMaxDataValue, getMinDataValue, 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, useChartClick, useChartDimensions, useChartHighlights, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };