@mlw-packages/react-components 1.8.1 → 1.8.3

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
@@ -334,28 +334,6 @@ video {
334
334
  [hidden]:where(:not([hidden=until-found])) {
335
335
  display: none;
336
336
  }
337
- * {
338
- scrollbar-width: thin;
339
- scrollbar-color: hsl(var(--border)) hsl(var(--background));
340
- border-color: hsl(var(--border));
341
- }
342
- *::-webkit-scrollbar {
343
- width: 8px;
344
- height: 8px;
345
- }
346
- *::-webkit-scrollbar-track {
347
- background: hsl(var(--background));
348
- }
349
- *::-webkit-scrollbar-thumb {
350
- background-color: hsl(var(--border));
351
- border-radius: 9999px;
352
- border: 2px solid hsl(var(--background));
353
- -webkit-transition: background-color 0.3s ease;
354
- transition: background-color 0.3s ease;
355
- }
356
- *::-webkit-scrollbar-thumb:hover {
357
- background-color: hsl(var(--muted));
358
- }
359
337
  body {
360
338
  background-color: hsl(var(--background));
361
339
  font-family:
@@ -1936,15 +1914,6 @@ body {
1936
1914
  border-top-left-radius: 0.75rem;
1937
1915
  border-top-right-radius: 0.75rem;
1938
1916
  }
1939
- .rounded-bl-md {
1940
- border-bottom-left-radius: calc(var(--radius) - 2px);
1941
- }
1942
- .rounded-br-md {
1943
- border-bottom-right-radius: calc(var(--radius) - 2px);
1944
- }
1945
- .rounded-tl-none {
1946
- border-top-left-radius: 0px;
1947
- }
1948
1917
  .rounded-tl-sm {
1949
1918
  border-top-left-radius: calc(var(--radius) - 4px);
1950
1919
  }
@@ -1983,9 +1952,6 @@ body {
1983
1952
  .border-t {
1984
1953
  border-top-width: 1px;
1985
1954
  }
1986
- .border-t-0 {
1987
- border-top-width: 0px;
1988
- }
1989
1955
  .border-t-2 {
1990
1956
  border-top-width: 2px;
1991
1957
  }
@@ -2638,6 +2604,9 @@ body {
2638
2604
  .fill-popover {
2639
2605
  fill: hsl(var(--popover));
2640
2606
  }
2607
+ .fill-primary {
2608
+ fill: hsl(var(--primary));
2609
+ }
2641
2610
  .stroke-\[rgba\(0\,0\,0\,0\.06\)\] {
2642
2611
  stroke: rgba(0, 0, 0, 0.06);
2643
2612
  }
@@ -5076,6 +5045,9 @@ body {
5076
5045
  .data-\[active\=true\]\:ring-ring\/50[data-active=true] {
5077
5046
  --tw-ring-color: hsl(var(--ring) / 0.5);
5078
5047
  }
5048
+ .data-\[state\=closed\]\:duration-150[data-state=closed] {
5049
+ transition-duration: 150ms;
5050
+ }
5079
5051
  .data-\[state\=closed\]\:duration-300[data-state=closed] {
5080
5052
  transition-duration: 300ms;
5081
5053
  }
@@ -5223,6 +5195,9 @@ body {
5223
5195
  .data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open] {
5224
5196
  --tw-enter-translate-y: -48%;
5225
5197
  }
5198
+ .data-\[state\=closed\]\:duration-150[data-state=closed] {
5199
+ animation-duration: 150ms;
5200
+ }
5226
5201
  .data-\[state\=closed\]\:duration-300[data-state=closed] {
5227
5202
  animation-duration: 300ms;
5228
5203
  }
@@ -5704,6 +5679,10 @@ body {
5704
5679
  --tw-text-opacity: 1;
5705
5680
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
5706
5681
  }
5682
+ .dark\:text-slate-500:is(.dark *) {
5683
+ --tw-text-opacity: 1;
5684
+ color: rgb(100 116 139 / var(--tw-text-opacity, 1));
5685
+ }
5707
5686
  .dark\:text-slate-900:is(.dark *) {
5708
5687
  --tw-text-opacity: 1;
5709
5688
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
@@ -5995,27 +5974,10 @@ body {
5995
5974
  .sm\:rounded-lg {
5996
5975
  border-radius: var(--radius);
5997
5976
  }
5998
- .sm\:rounded-b-none {
5999
- border-bottom-right-radius: 0px;
6000
- border-bottom-left-radius: 0px;
6001
- }
6002
- .sm\:rounded-r-md {
6003
- border-top-right-radius: calc(var(--radius) - 2px);
6004
- border-bottom-right-radius: calc(var(--radius) - 2px);
6005
- }
6006
5977
  .sm\:rounded-r-none {
6007
5978
  border-top-right-radius: 0px;
6008
5979
  border-bottom-right-radius: 0px;
6009
5980
  }
6010
- .sm\:border-b {
6011
- border-bottom-width: 1px;
6012
- }
6013
- .sm\:border-r {
6014
- border-right-width: 1px;
6015
- }
6016
- .sm\:border-t {
6017
- border-top-width: 1px;
6018
- }
6019
5981
  .sm\:p-2 {
6020
5982
  padding: 0.5rem;
6021
5983
  }
package/dist/index.d.mts CHANGED
@@ -260,18 +260,21 @@ declare const toast: {
260
260
  };
261
261
 
262
262
  declare const TooltipProviderBase: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
263
- declare const TooltipBase: React$1.FC<TooltipPrimitive.TooltipProps>;
264
- declare const TooltipTriggerBase: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
263
+ declare const TooltipBase: React$1.FC<React$1.ComponentProps<typeof TooltipPrimitive.Root>>;
264
+ declare const TooltipTriggerBase: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
265
+ button?: boolean;
266
+ } & React$1.RefAttributes<HTMLButtonElement>>;
265
267
  declare const TooltipContentBase: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
266
268
 
267
269
  declare const buttonVariantsBase: (props?: ({
268
- variant?: "default" | "destructive" | "outline" | "select" | "secondary" | "ghost" | "link" | null | undefined;
269
- size?: "default" | "select" | "sm" | "lg" | "icon" | null | undefined;
270
+ variant?: "select" | "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
271
+ size?: "select" | "default" | "sm" | "lg" | "icon" | null | undefined;
270
272
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
271
273
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariantsBase> {
272
274
  asChild?: boolean;
273
275
  testid?: string;
274
276
  isLoading?: boolean;
277
+ tooltip?: string;
275
278
  }
276
279
  declare const ButtonBase: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
277
280
  interface ButtonGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
@@ -380,7 +383,7 @@ declare const SwitchBase: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitive
380
383
  } & React$1.RefAttributes<HTMLButtonElement>>;
381
384
 
382
385
  interface TextAreaBaseProps extends React$1.ComponentProps<"textarea"> {
383
- clearable?: boolean;
386
+ hideClear?: boolean;
384
387
  onClear?: () => void;
385
388
  }
386
389
  declare const TextAreaBase: React$1.ForwardRefExoticComponent<Omit<TextAreaBaseProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
@@ -442,7 +445,7 @@ declare const CommandBase: React$1.ForwardRefExoticComponent<Omit<{
442
445
  ref?: React$1.Ref<HTMLDivElement>;
443
446
  } & {
444
447
  asChild?: boolean;
445
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
448
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
446
449
  label?: string;
447
450
  shouldFilter?: boolean;
448
451
  filter?: (value: string, search: string, keywords?: string[]) => number;
@@ -460,7 +463,7 @@ declare const CommandInputBase: React$1.ForwardRefExoticComponent<Omit<Omit<Pick
460
463
  ref?: React$1.Ref<HTMLInputElement>;
461
464
  } & {
462
465
  asChild?: boolean;
463
- }, "asChild" | "key" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "type" | "value" | "onChange"> & {
466
+ }, "key" | "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "type" | "value"> & {
464
467
  value?: string;
465
468
  onValueChange?: (search: string) => void;
466
469
  } & React$1.RefAttributes<HTMLInputElement>, "ref"> & {
@@ -472,7 +475,7 @@ declare const CommandListBase: React$1.ForwardRefExoticComponent<Omit<{
472
475
  ref?: React$1.Ref<HTMLDivElement>;
473
476
  } & {
474
477
  asChild?: boolean;
475
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
478
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
476
479
  label?: string;
477
480
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
478
481
  testid?: string;
@@ -483,7 +486,7 @@ declare const CommandEmptyBase: React$1.ForwardRefExoticComponent<Omit<{
483
486
  ref?: React$1.Ref<HTMLDivElement>;
484
487
  } & {
485
488
  asChild?: boolean;
486
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
489
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
487
490
  testid?: string;
488
491
  } & React$1.RefAttributes<HTMLDivElement>>;
489
492
  declare const CommandGroupBase: React$1.ForwardRefExoticComponent<Omit<{
@@ -492,7 +495,7 @@ declare const CommandGroupBase: React$1.ForwardRefExoticComponent<Omit<{
492
495
  ref?: React$1.Ref<HTMLDivElement>;
493
496
  } & {
494
497
  asChild?: boolean;
495
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "value" | "heading"> & {
498
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
496
499
  heading?: React$1.ReactNode;
497
500
  value?: string;
498
501
  forceMount?: boolean;
@@ -503,7 +506,7 @@ declare const CommandSeparatorBase: React$1.ForwardRefExoticComponent<Omit<Pick<
503
506
  ref?: React$1.Ref<HTMLDivElement>;
504
507
  } & {
505
508
  asChild?: boolean;
506
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
509
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
507
510
  alwaysRender?: boolean;
508
511
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
509
512
  testid?: string;
@@ -514,7 +517,7 @@ declare const CommandItemBase: React$1.ForwardRefExoticComponent<Omit<{
514
517
  ref?: React$1.Ref<HTMLDivElement>;
515
518
  } & {
516
519
  asChild?: boolean;
517
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "disabled" | "value" | "onSelect"> & {
520
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
518
521
  disabled?: boolean;
519
522
  onSelect?: (value: string) => void;
520
523
  value?: string;
@@ -656,7 +659,7 @@ declare const SheetCloseBase: React$1.ForwardRefExoticComponent<DialogPrimitive.
656
659
  declare const SheetPortalBase: React$1.FC<DialogPrimitive.DialogPortalProps>;
657
660
  declare const SheetOverlayBase: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
658
661
  declare const sheetVariants: (props?: ({
659
- side?: "left" | "right" | "bottom" | "top" | null | undefined;
662
+ side?: "left" | "right" | "top" | "bottom" | null | undefined;
660
663
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
661
664
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
662
665
  }
@@ -800,8 +803,9 @@ interface DateTimePickerProps extends ErrorMessageProps {
800
803
  disabled?: boolean;
801
804
  className?: string;
802
805
  error?: string;
806
+ hideClear?: boolean;
803
807
  }
804
- declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
808
+ declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, hideClear, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
805
809
 
806
810
  interface RangePickerProps extends ErrorMessageProps {
807
811
  value?: DateRange;
@@ -896,6 +900,13 @@ interface TimePickerInputProps extends Omit<React__default.InputHTMLAttributes<H
896
900
  }
897
901
  declare const TimePickerInput: React__default.ForwardRefExoticComponent<TimePickerInputProps & React__default.RefAttributes<HTMLInputElement>>;
898
902
 
903
+ declare function visualForItem(item: number, value: number): {
904
+ scale: number;
905
+ opacity: number;
906
+ translateY: number;
907
+ distance: number;
908
+ };
909
+
899
910
  interface AgendaViewProps$1 {
900
911
  currentDate: Date;
901
912
  events: CalendarEventAgenda[];
@@ -1452,6 +1463,56 @@ declare function MultiSelectItemBase({ value, children, badgeLabel, onSelect, ..
1452
1463
  declare function MultiSelectGroupBase(props: ComponentPropsWithoutRef<typeof CommandGroupBase>): react_jsx_runtime.JSX.Element;
1453
1464
  declare function MultiSelectSeparatorBase(props: ComponentPropsWithoutRef<typeof CommandSeparatorBase>): react_jsx_runtime.JSX.Element;
1454
1465
 
1466
+ interface MultiSelectItem<T extends string> {
1467
+ label: string;
1468
+ value: T;
1469
+ badgeLabel?: string;
1470
+ }
1471
+ interface MultiSelectTestIds {
1472
+ root?: string;
1473
+ base?: string;
1474
+ trigger?: string;
1475
+ value?: string;
1476
+ content?: string;
1477
+ group?: string;
1478
+ item?: (value: string) => string;
1479
+ paginationPrev?: string;
1480
+ paginationNext?: string;
1481
+ paginationPage?: (page: number) => string;
1482
+ }
1483
+ interface DefaultMultiSelectProps<T extends string> extends ErrorMessageProps {
1484
+ selected?: T[];
1485
+ defaultSelected?: T[];
1486
+ onChange?: (values: T[]) => void;
1487
+ placeholder?: string;
1488
+ disabled?: boolean;
1489
+ className?: string;
1490
+ label?: string;
1491
+ labelClassname?: string;
1492
+ pagination?: number;
1493
+ empty?: string;
1494
+ search?: boolean | {
1495
+ placeholder?: string;
1496
+ emptyMessage?: string;
1497
+ };
1498
+ clickToRemove?: boolean;
1499
+ overflowBehavior?: "wrap" | "wrap-when-open" | "cutoff";
1500
+ }
1501
+ interface MultiSelectPropsWithItems<T extends string> extends DefaultMultiSelectProps<T> {
1502
+ items: MultiSelectItem<T>[];
1503
+ groupItems?: never;
1504
+ testIds?: MultiSelectTestIds;
1505
+ }
1506
+ interface MultiSelectPropsWithGroupItems<T extends string> extends DefaultMultiSelectProps<T> {
1507
+ items?: never;
1508
+ groupItems: {
1509
+ [key: string]: MultiSelectItem<T>[];
1510
+ };
1511
+ testIds?: MultiSelectTestIds;
1512
+ }
1513
+ type MultiSelectProps<T extends string> = MultiSelectPropsWithItems<T> | MultiSelectPropsWithGroupItems<T>;
1514
+ declare function MultiSelect<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, defaultSelected, label, labelClassname, className, pagination, empty, search, clickToRemove, overflowBehavior, }: MultiSelectProps<T>): react_jsx_runtime.JSX.Element;
1515
+
1455
1516
  interface SelectItem<T extends string> {
1456
1517
  label: string;
1457
1518
  value: T;
@@ -1479,7 +1540,7 @@ interface DefaultSelectProps<T extends string> extends ErrorMessageProps {
1479
1540
  label?: string;
1480
1541
  labelClassname?: string;
1481
1542
  pagination?: number;
1482
- clearable?: boolean;
1543
+ hideClear?: boolean;
1483
1544
  }
1484
1545
  interface SelectPropsWithItems<T extends string> extends DefaultSelectProps<T> {
1485
1546
  items: SelectItem<T>[];
@@ -1494,7 +1555,7 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
1494
1555
  testIds?: SelectTestIds;
1495
1556
  }
1496
1557
  type NewSelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
1497
- declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, pagination, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
1558
+ declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, pagination, hideClear, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
1498
1559
 
1499
1560
  declare const formatFieldName: (fieldName: string) => string;
1500
1561
  declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
@@ -1630,6 +1691,7 @@ interface ChartProps {
1630
1691
  maxTooltips?: number;
1631
1692
  formatBR?: boolean;
1632
1693
  legendUppercase?: boolean;
1694
+ isLoading?: boolean;
1633
1695
  }
1634
1696
  declare const Chart: React__default.FC<ChartProps>;
1635
1697
 
@@ -1915,10 +1977,8 @@ interface NoDataProps {
1915
1977
  message?: string;
1916
1978
  className?: string;
1917
1979
  title?: string;
1918
- subtitle?: string;
1919
- icon?: "chart" | "database" | "search";
1920
- showSuggestion?: boolean;
1921
- suggestionText?: string;
1980
+ isLoading?: boolean;
1981
+ loadingMessage?: string;
1922
1982
  }
1923
1983
  declare const NoData: React__default.FC<NoDataProps>;
1924
1984
 
@@ -2032,4 +2092,4 @@ declare const useDrag: (options?: UseDragOptions) => {
2032
2092
  isDragging: boolean;
2033
2093
  };
2034
2094
 
2035
- 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, 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 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, 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, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, MultiSelectItemBase, MultiSelectSeparatorBase, 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, 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, type valueFormatter };
2095
+ 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, 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, 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, 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, type valueFormatter, visualForItem };
package/dist/index.d.ts CHANGED
@@ -260,18 +260,21 @@ declare const toast: {
260
260
  };
261
261
 
262
262
  declare const TooltipProviderBase: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
263
- declare const TooltipBase: React$1.FC<TooltipPrimitive.TooltipProps>;
264
- declare const TooltipTriggerBase: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
263
+ declare const TooltipBase: React$1.FC<React$1.ComponentProps<typeof TooltipPrimitive.Root>>;
264
+ declare const TooltipTriggerBase: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
265
+ button?: boolean;
266
+ } & React$1.RefAttributes<HTMLButtonElement>>;
265
267
  declare const TooltipContentBase: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
266
268
 
267
269
  declare const buttonVariantsBase: (props?: ({
268
- variant?: "default" | "destructive" | "outline" | "select" | "secondary" | "ghost" | "link" | null | undefined;
269
- size?: "default" | "select" | "sm" | "lg" | "icon" | null | undefined;
270
+ variant?: "select" | "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
271
+ size?: "select" | "default" | "sm" | "lg" | "icon" | null | undefined;
270
272
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
271
273
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariantsBase> {
272
274
  asChild?: boolean;
273
275
  testid?: string;
274
276
  isLoading?: boolean;
277
+ tooltip?: string;
275
278
  }
276
279
  declare const ButtonBase: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
277
280
  interface ButtonGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
@@ -380,7 +383,7 @@ declare const SwitchBase: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitive
380
383
  } & React$1.RefAttributes<HTMLButtonElement>>;
381
384
 
382
385
  interface TextAreaBaseProps extends React$1.ComponentProps<"textarea"> {
383
- clearable?: boolean;
386
+ hideClear?: boolean;
384
387
  onClear?: () => void;
385
388
  }
386
389
  declare const TextAreaBase: React$1.ForwardRefExoticComponent<Omit<TextAreaBaseProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
@@ -442,7 +445,7 @@ declare const CommandBase: React$1.ForwardRefExoticComponent<Omit<{
442
445
  ref?: React$1.Ref<HTMLDivElement>;
443
446
  } & {
444
447
  asChild?: boolean;
445
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
448
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
446
449
  label?: string;
447
450
  shouldFilter?: boolean;
448
451
  filter?: (value: string, search: string, keywords?: string[]) => number;
@@ -460,7 +463,7 @@ declare const CommandInputBase: React$1.ForwardRefExoticComponent<Omit<Omit<Pick
460
463
  ref?: React$1.Ref<HTMLInputElement>;
461
464
  } & {
462
465
  asChild?: boolean;
463
- }, "asChild" | "key" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "type" | "value" | "onChange"> & {
466
+ }, "key" | "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "type" | "value"> & {
464
467
  value?: string;
465
468
  onValueChange?: (search: string) => void;
466
469
  } & React$1.RefAttributes<HTMLInputElement>, "ref"> & {
@@ -472,7 +475,7 @@ declare const CommandListBase: React$1.ForwardRefExoticComponent<Omit<{
472
475
  ref?: React$1.Ref<HTMLDivElement>;
473
476
  } & {
474
477
  asChild?: boolean;
475
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
478
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
476
479
  label?: string;
477
480
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
478
481
  testid?: string;
@@ -483,7 +486,7 @@ declare const CommandEmptyBase: React$1.ForwardRefExoticComponent<Omit<{
483
486
  ref?: React$1.Ref<HTMLDivElement>;
484
487
  } & {
485
488
  asChild?: boolean;
486
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
489
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
487
490
  testid?: string;
488
491
  } & React$1.RefAttributes<HTMLDivElement>>;
489
492
  declare const CommandGroupBase: React$1.ForwardRefExoticComponent<Omit<{
@@ -492,7 +495,7 @@ declare const CommandGroupBase: React$1.ForwardRefExoticComponent<Omit<{
492
495
  ref?: React$1.Ref<HTMLDivElement>;
493
496
  } & {
494
497
  asChild?: boolean;
495
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "value" | "heading"> & {
498
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
496
499
  heading?: React$1.ReactNode;
497
500
  value?: string;
498
501
  forceMount?: boolean;
@@ -503,7 +506,7 @@ declare const CommandSeparatorBase: React$1.ForwardRefExoticComponent<Omit<Pick<
503
506
  ref?: React$1.Ref<HTMLDivElement>;
504
507
  } & {
505
508
  asChild?: boolean;
506
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
509
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
507
510
  alwaysRender?: boolean;
508
511
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
509
512
  testid?: string;
@@ -514,7 +517,7 @@ declare const CommandItemBase: React$1.ForwardRefExoticComponent<Omit<{
514
517
  ref?: React$1.Ref<HTMLDivElement>;
515
518
  } & {
516
519
  asChild?: boolean;
517
- }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "disabled" | "value" | "onSelect"> & {
520
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
518
521
  disabled?: boolean;
519
522
  onSelect?: (value: string) => void;
520
523
  value?: string;
@@ -656,7 +659,7 @@ declare const SheetCloseBase: React$1.ForwardRefExoticComponent<DialogPrimitive.
656
659
  declare const SheetPortalBase: React$1.FC<DialogPrimitive.DialogPortalProps>;
657
660
  declare const SheetOverlayBase: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
658
661
  declare const sheetVariants: (props?: ({
659
- side?: "left" | "right" | "bottom" | "top" | null | undefined;
662
+ side?: "left" | "right" | "top" | "bottom" | null | undefined;
660
663
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
661
664
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
662
665
  }
@@ -800,8 +803,9 @@ interface DateTimePickerProps extends ErrorMessageProps {
800
803
  disabled?: boolean;
801
804
  className?: string;
802
805
  error?: string;
806
+ hideClear?: boolean;
803
807
  }
804
- declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
808
+ declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, hideClear, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
805
809
 
806
810
  interface RangePickerProps extends ErrorMessageProps {
807
811
  value?: DateRange;
@@ -896,6 +900,13 @@ interface TimePickerInputProps extends Omit<React__default.InputHTMLAttributes<H
896
900
  }
897
901
  declare const TimePickerInput: React__default.ForwardRefExoticComponent<TimePickerInputProps & React__default.RefAttributes<HTMLInputElement>>;
898
902
 
903
+ declare function visualForItem(item: number, value: number): {
904
+ scale: number;
905
+ opacity: number;
906
+ translateY: number;
907
+ distance: number;
908
+ };
909
+
899
910
  interface AgendaViewProps$1 {
900
911
  currentDate: Date;
901
912
  events: CalendarEventAgenda[];
@@ -1452,6 +1463,56 @@ declare function MultiSelectItemBase({ value, children, badgeLabel, onSelect, ..
1452
1463
  declare function MultiSelectGroupBase(props: ComponentPropsWithoutRef<typeof CommandGroupBase>): react_jsx_runtime.JSX.Element;
1453
1464
  declare function MultiSelectSeparatorBase(props: ComponentPropsWithoutRef<typeof CommandSeparatorBase>): react_jsx_runtime.JSX.Element;
1454
1465
 
1466
+ interface MultiSelectItem<T extends string> {
1467
+ label: string;
1468
+ value: T;
1469
+ badgeLabel?: string;
1470
+ }
1471
+ interface MultiSelectTestIds {
1472
+ root?: string;
1473
+ base?: string;
1474
+ trigger?: string;
1475
+ value?: string;
1476
+ content?: string;
1477
+ group?: string;
1478
+ item?: (value: string) => string;
1479
+ paginationPrev?: string;
1480
+ paginationNext?: string;
1481
+ paginationPage?: (page: number) => string;
1482
+ }
1483
+ interface DefaultMultiSelectProps<T extends string> extends ErrorMessageProps {
1484
+ selected?: T[];
1485
+ defaultSelected?: T[];
1486
+ onChange?: (values: T[]) => void;
1487
+ placeholder?: string;
1488
+ disabled?: boolean;
1489
+ className?: string;
1490
+ label?: string;
1491
+ labelClassname?: string;
1492
+ pagination?: number;
1493
+ empty?: string;
1494
+ search?: boolean | {
1495
+ placeholder?: string;
1496
+ emptyMessage?: string;
1497
+ };
1498
+ clickToRemove?: boolean;
1499
+ overflowBehavior?: "wrap" | "wrap-when-open" | "cutoff";
1500
+ }
1501
+ interface MultiSelectPropsWithItems<T extends string> extends DefaultMultiSelectProps<T> {
1502
+ items: MultiSelectItem<T>[];
1503
+ groupItems?: never;
1504
+ testIds?: MultiSelectTestIds;
1505
+ }
1506
+ interface MultiSelectPropsWithGroupItems<T extends string> extends DefaultMultiSelectProps<T> {
1507
+ items?: never;
1508
+ groupItems: {
1509
+ [key: string]: MultiSelectItem<T>[];
1510
+ };
1511
+ testIds?: MultiSelectTestIds;
1512
+ }
1513
+ type MultiSelectProps<T extends string> = MultiSelectPropsWithItems<T> | MultiSelectPropsWithGroupItems<T>;
1514
+ declare function MultiSelect<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, defaultSelected, label, labelClassname, className, pagination, empty, search, clickToRemove, overflowBehavior, }: MultiSelectProps<T>): react_jsx_runtime.JSX.Element;
1515
+
1455
1516
  interface SelectItem<T extends string> {
1456
1517
  label: string;
1457
1518
  value: T;
@@ -1479,7 +1540,7 @@ interface DefaultSelectProps<T extends string> extends ErrorMessageProps {
1479
1540
  label?: string;
1480
1541
  labelClassname?: string;
1481
1542
  pagination?: number;
1482
- clearable?: boolean;
1543
+ hideClear?: boolean;
1483
1544
  }
1484
1545
  interface SelectPropsWithItems<T extends string> extends DefaultSelectProps<T> {
1485
1546
  items: SelectItem<T>[];
@@ -1494,7 +1555,7 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
1494
1555
  testIds?: SelectTestIds;
1495
1556
  }
1496
1557
  type NewSelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
1497
- declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, pagination, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
1558
+ declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, pagination, hideClear, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
1498
1559
 
1499
1560
  declare const formatFieldName: (fieldName: string) => string;
1500
1561
  declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
@@ -1630,6 +1691,7 @@ interface ChartProps {
1630
1691
  maxTooltips?: number;
1631
1692
  formatBR?: boolean;
1632
1693
  legendUppercase?: boolean;
1694
+ isLoading?: boolean;
1633
1695
  }
1634
1696
  declare const Chart: React__default.FC<ChartProps>;
1635
1697
 
@@ -1915,10 +1977,8 @@ interface NoDataProps {
1915
1977
  message?: string;
1916
1978
  className?: string;
1917
1979
  title?: string;
1918
- subtitle?: string;
1919
- icon?: "chart" | "database" | "search";
1920
- showSuggestion?: boolean;
1921
- suggestionText?: string;
1980
+ isLoading?: boolean;
1981
+ loadingMessage?: string;
1922
1982
  }
1923
1983
  declare const NoData: React__default.FC<NoDataProps>;
1924
1984
 
@@ -2032,4 +2092,4 @@ declare const useDrag: (options?: UseDragOptions) => {
2032
2092
  isDragging: boolean;
2033
2093
  };
2034
2094
 
2035
- 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, 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 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, 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, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, MultiSelectItemBase, MultiSelectSeparatorBase, 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, 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, type valueFormatter };
2095
+ 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, 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, 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, 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, type valueFormatter, visualForItem };