@mlw-packages/react-components 1.9.8 → 1.9.10
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 +8 -28
- package/dist/index.d.mts +45 -31
- package/dist/index.d.ts +45 -31
- package/dist/index.js +735 -780
- package/dist/index.mjs +429 -470
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -453,8 +453,8 @@ body {
|
|
|
453
453
|
.bottom-2 {
|
|
454
454
|
bottom: 0.5rem;
|
|
455
455
|
}
|
|
456
|
-
.bottom-
|
|
457
|
-
bottom:
|
|
456
|
+
.bottom-4 {
|
|
457
|
+
bottom: 1rem;
|
|
458
458
|
}
|
|
459
459
|
.left-0 {
|
|
460
460
|
left: 0px;
|
|
@@ -465,12 +465,6 @@ body {
|
|
|
465
465
|
.left-1\/2 {
|
|
466
466
|
left: 50%;
|
|
467
467
|
}
|
|
468
|
-
.left-1\/3 {
|
|
469
|
-
left: 33.333333%;
|
|
470
|
-
}
|
|
471
|
-
.left-14 {
|
|
472
|
-
left: 3.5rem;
|
|
473
|
-
}
|
|
474
468
|
.left-2 {
|
|
475
469
|
left: 0.5rem;
|
|
476
470
|
}
|
|
@@ -691,15 +685,9 @@ body {
|
|
|
691
685
|
.-me-2 {
|
|
692
686
|
margin-inline-end: -0.5rem;
|
|
693
687
|
}
|
|
694
|
-
.-ml-4 {
|
|
695
|
-
margin-left: -1rem;
|
|
696
|
-
}
|
|
697
688
|
.-mt-1 {
|
|
698
689
|
margin-top: -0.25rem;
|
|
699
690
|
}
|
|
700
|
-
.-mt-4 {
|
|
701
|
-
margin-top: -1rem;
|
|
702
|
-
}
|
|
703
691
|
.mb-0 {
|
|
704
692
|
margin-bottom: 0px;
|
|
705
693
|
}
|
|
@@ -1464,12 +1452,6 @@ body {
|
|
|
1464
1452
|
.shrink-0 {
|
|
1465
1453
|
flex-shrink: 0;
|
|
1466
1454
|
}
|
|
1467
|
-
.grow-0 {
|
|
1468
|
-
flex-grow: 0;
|
|
1469
|
-
}
|
|
1470
|
-
.basis-full {
|
|
1471
|
-
flex-basis: 100%;
|
|
1472
|
-
}
|
|
1473
1455
|
.caption-bottom {
|
|
1474
1456
|
caption-side: bottom;
|
|
1475
1457
|
}
|
|
@@ -1949,10 +1931,6 @@ body {
|
|
|
1949
1931
|
border-top-left-radius: 0.25rem;
|
|
1950
1932
|
border-bottom-left-radius: 0.25rem;
|
|
1951
1933
|
}
|
|
1952
|
-
.rounded-l-3xl {
|
|
1953
|
-
border-top-left-radius: 1.5rem;
|
|
1954
|
-
border-bottom-left-radius: 1.5rem;
|
|
1955
|
-
}
|
|
1956
1934
|
.rounded-l-lg {
|
|
1957
1935
|
border-top-left-radius: var(--radius);
|
|
1958
1936
|
border-bottom-left-radius: var(--radius);
|
|
@@ -1969,10 +1947,6 @@ body {
|
|
|
1969
1947
|
border-top-right-radius: 0.25rem;
|
|
1970
1948
|
border-bottom-right-radius: 0.25rem;
|
|
1971
1949
|
}
|
|
1972
|
-
.rounded-r-3xl {
|
|
1973
|
-
border-top-right-radius: 1.5rem;
|
|
1974
|
-
border-bottom-right-radius: 1.5rem;
|
|
1975
|
-
}
|
|
1976
1950
|
.rounded-r-lg {
|
|
1977
1951
|
border-top-right-radius: var(--radius);
|
|
1978
1952
|
border-bottom-right-radius: var(--radius);
|
|
@@ -2699,6 +2673,9 @@ body {
|
|
|
2699
2673
|
.bg-white\/5 {
|
|
2700
2674
|
background-color: rgb(255 255 255 / 0.05);
|
|
2701
2675
|
}
|
|
2676
|
+
.bg-white\/50 {
|
|
2677
|
+
background-color: rgb(255 255 255 / 0.5);
|
|
2678
|
+
}
|
|
2702
2679
|
.bg-white\/70 {
|
|
2703
2680
|
background-color: rgb(255 255 255 / 0.7);
|
|
2704
2681
|
}
|
|
@@ -6793,6 +6770,9 @@ body {
|
|
|
6793
6770
|
.lg\:grid-cols-\[\.75fr_1fr\] {
|
|
6794
6771
|
grid-template-columns: .75fr 1fr;
|
|
6795
6772
|
}
|
|
6773
|
+
.lg\:p-10 {
|
|
6774
|
+
padding: 2.5rem;
|
|
6775
|
+
}
|
|
6796
6776
|
.lg\:px-8 {
|
|
6797
6777
|
padding-left: 2rem;
|
|
6798
6778
|
padding-right: 2rem;
|
package/dist/index.d.mts
CHANGED
|
@@ -18,7 +18,6 @@ import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
|
18
18
|
import { OTPInput } from 'input-otp';
|
|
19
19
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
20
20
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
21
|
-
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
22
21
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
23
22
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
24
23
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
@@ -392,22 +391,6 @@ interface TextAreaBaseProps extends React$1.ComponentProps<"textarea"> {
|
|
|
392
391
|
}
|
|
393
392
|
declare const TextAreaBase: React$1.ForwardRefExoticComponent<Omit<TextAreaBaseProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
394
393
|
|
|
395
|
-
type CarouselApi = UseEmblaCarouselType[1];
|
|
396
|
-
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
397
|
-
type CarouselOptions = UseCarouselParameters[0];
|
|
398
|
-
type CarouselPlugin = UseCarouselParameters[1];
|
|
399
|
-
type CarouselProps = {
|
|
400
|
-
opts?: CarouselOptions;
|
|
401
|
-
plugins?: CarouselPlugin;
|
|
402
|
-
orientation?: "horizontal" | "vertical";
|
|
403
|
-
setApi?: (api: CarouselApi) => void;
|
|
404
|
-
};
|
|
405
|
-
declare function CarouselBase({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
406
|
-
declare function CarouselContentBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
407
|
-
declare function CarouselItemBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
408
|
-
declare function CarouselPreviousBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
409
|
-
declare function CarouselNextBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
410
|
-
|
|
411
394
|
declare const ScrollAreaBase: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
412
395
|
declare const ScrollBarBase: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
413
396
|
|
|
@@ -443,6 +426,19 @@ declare function BreadcrumbPageBase({ className, ...props }: React$1.ComponentPr
|
|
|
443
426
|
declare function BreadcrumbSeparatorBase({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
444
427
|
declare function BreadcrumbEllipsisBase({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
445
428
|
|
|
429
|
+
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
430
|
+
value: string;
|
|
431
|
+
onChange: (value: string) => void;
|
|
432
|
+
debounce?: number;
|
|
433
|
+
label?: string;
|
|
434
|
+
labelClassname?: string;
|
|
435
|
+
leftIcon?: React.ReactNode;
|
|
436
|
+
rightIcon?: React.ReactNode;
|
|
437
|
+
showLoadingIndicator?: boolean;
|
|
438
|
+
error?: string | undefined;
|
|
439
|
+
}
|
|
440
|
+
declare const DebouncedInput: React$1.ForwardRefExoticComponent<DebouncedInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
441
|
+
|
|
446
442
|
declare const CommandBase: React$1.ForwardRefExoticComponent<Omit<{
|
|
447
443
|
children?: React$1.ReactNode;
|
|
448
444
|
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
@@ -473,6 +469,14 @@ declare const CommandInputBase: React$1.ForwardRefExoticComponent<Omit<Omit<Pick
|
|
|
473
469
|
} & React$1.RefAttributes<HTMLInputElement>, "ref"> & {
|
|
474
470
|
testid?: string;
|
|
475
471
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
472
|
+
declare const CommandDebouncedInputBase: React$1.ForwardRefExoticComponent<Omit<Omit<DebouncedInputProps & React$1.RefAttributes<HTMLInputElement>, "ref">, "onChange" | "value"> & {
|
|
473
|
+
value?: string;
|
|
474
|
+
onChange?: (value: string) => void;
|
|
475
|
+
search?: string;
|
|
476
|
+
onSearch?: (value: string) => void;
|
|
477
|
+
testid?: string;
|
|
478
|
+
onValueChange?: (value: string) => void;
|
|
479
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
476
480
|
declare const CommandListBase: React$1.ForwardRefExoticComponent<Omit<{
|
|
477
481
|
children?: React$1.ReactNode;
|
|
478
482
|
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
@@ -752,19 +756,6 @@ interface StatusProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
752
756
|
}
|
|
753
757
|
declare function StatusIndicator({ color, size, position, show, children, className, ...props }: StatusProps): react_jsx_runtime.JSX.Element;
|
|
754
758
|
|
|
755
|
-
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
756
|
-
value: string;
|
|
757
|
-
onChange: (value: string) => void;
|
|
758
|
-
debounce?: number;
|
|
759
|
-
label?: string;
|
|
760
|
-
labelClassname?: string;
|
|
761
|
-
leftIcon?: React.ReactNode;
|
|
762
|
-
rightIcon?: React.ReactNode;
|
|
763
|
-
showLoadingIndicator?: boolean;
|
|
764
|
-
error?: string | undefined;
|
|
765
|
-
}
|
|
766
|
-
declare const DebouncedInput: React$1.ForwardRefExoticComponent<DebouncedInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
767
|
-
|
|
768
759
|
interface TreeNode {
|
|
769
760
|
id: string;
|
|
770
761
|
label: string;
|
|
@@ -2312,6 +2303,29 @@ type NumericInputProps = {
|
|
|
2312
2303
|
};
|
|
2313
2304
|
declare function NumericInput({ value, onChange, min, max, label, className, error, isLoading, disabled, tooltip_on_overflow, hideConfirm, numericKeyboard, }: NumericInputProps): react_jsx_runtime.JSX.Element;
|
|
2314
2305
|
|
|
2306
|
+
interface CarouselItem {
|
|
2307
|
+
id: number | string;
|
|
2308
|
+
url: string;
|
|
2309
|
+
title: string;
|
|
2310
|
+
}
|
|
2311
|
+
interface CarouselBaseProps {
|
|
2312
|
+
items: CarouselItem[];
|
|
2313
|
+
className?: string;
|
|
2314
|
+
containerClassName?: string;
|
|
2315
|
+
imageClassName?: string;
|
|
2316
|
+
width?: string;
|
|
2317
|
+
height?: string;
|
|
2318
|
+
showControls?: boolean;
|
|
2319
|
+
showIndicators?: boolean;
|
|
2320
|
+
autoPlay?: boolean;
|
|
2321
|
+
autoPlayInterval?: number;
|
|
2322
|
+
springConfig?: {
|
|
2323
|
+
stiffness?: number;
|
|
2324
|
+
damping?: number;
|
|
2325
|
+
};
|
|
2326
|
+
}
|
|
2327
|
+
declare function CarouselBase({ items, className, containerClassName, imageClassName, width, height, showControls, showIndicators, autoPlay, autoPlayInterval, springConfig, }: CarouselBaseProps): react_jsx_runtime.JSX.Element;
|
|
2328
|
+
|
|
2315
2329
|
declare function useIsMobile(): boolean;
|
|
2316
2330
|
|
|
2317
2331
|
interface Position {
|
|
@@ -2331,4 +2345,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2331
2345
|
isDragging: boolean;
|
|
2332
2346
|
};
|
|
2333
2347
|
|
|
2334
|
-
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, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase,
|
|
2348
|
+
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, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, type DataMapper, 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, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, 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 Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, 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, type SystemData, SystemTooltip, 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, VISIBLE_ITEMS, 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, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,6 @@ import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
|
18
18
|
import { OTPInput } from 'input-otp';
|
|
19
19
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
20
20
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
21
|
-
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
22
21
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
23
22
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
24
23
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
@@ -392,22 +391,6 @@ interface TextAreaBaseProps extends React$1.ComponentProps<"textarea"> {
|
|
|
392
391
|
}
|
|
393
392
|
declare const TextAreaBase: React$1.ForwardRefExoticComponent<Omit<TextAreaBaseProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
394
393
|
|
|
395
|
-
type CarouselApi = UseEmblaCarouselType[1];
|
|
396
|
-
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
397
|
-
type CarouselOptions = UseCarouselParameters[0];
|
|
398
|
-
type CarouselPlugin = UseCarouselParameters[1];
|
|
399
|
-
type CarouselProps = {
|
|
400
|
-
opts?: CarouselOptions;
|
|
401
|
-
plugins?: CarouselPlugin;
|
|
402
|
-
orientation?: "horizontal" | "vertical";
|
|
403
|
-
setApi?: (api: CarouselApi) => void;
|
|
404
|
-
};
|
|
405
|
-
declare function CarouselBase({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
406
|
-
declare function CarouselContentBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
407
|
-
declare function CarouselItemBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
408
|
-
declare function CarouselPreviousBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
409
|
-
declare function CarouselNextBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
410
|
-
|
|
411
394
|
declare const ScrollAreaBase: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
412
395
|
declare const ScrollBarBase: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
413
396
|
|
|
@@ -443,6 +426,19 @@ declare function BreadcrumbPageBase({ className, ...props }: React$1.ComponentPr
|
|
|
443
426
|
declare function BreadcrumbSeparatorBase({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
444
427
|
declare function BreadcrumbEllipsisBase({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
445
428
|
|
|
429
|
+
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
430
|
+
value: string;
|
|
431
|
+
onChange: (value: string) => void;
|
|
432
|
+
debounce?: number;
|
|
433
|
+
label?: string;
|
|
434
|
+
labelClassname?: string;
|
|
435
|
+
leftIcon?: React.ReactNode;
|
|
436
|
+
rightIcon?: React.ReactNode;
|
|
437
|
+
showLoadingIndicator?: boolean;
|
|
438
|
+
error?: string | undefined;
|
|
439
|
+
}
|
|
440
|
+
declare const DebouncedInput: React$1.ForwardRefExoticComponent<DebouncedInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
441
|
+
|
|
446
442
|
declare const CommandBase: React$1.ForwardRefExoticComponent<Omit<{
|
|
447
443
|
children?: React$1.ReactNode;
|
|
448
444
|
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
@@ -473,6 +469,14 @@ declare const CommandInputBase: React$1.ForwardRefExoticComponent<Omit<Omit<Pick
|
|
|
473
469
|
} & React$1.RefAttributes<HTMLInputElement>, "ref"> & {
|
|
474
470
|
testid?: string;
|
|
475
471
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
472
|
+
declare const CommandDebouncedInputBase: React$1.ForwardRefExoticComponent<Omit<Omit<DebouncedInputProps & React$1.RefAttributes<HTMLInputElement>, "ref">, "onChange" | "value"> & {
|
|
473
|
+
value?: string;
|
|
474
|
+
onChange?: (value: string) => void;
|
|
475
|
+
search?: string;
|
|
476
|
+
onSearch?: (value: string) => void;
|
|
477
|
+
testid?: string;
|
|
478
|
+
onValueChange?: (value: string) => void;
|
|
479
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
476
480
|
declare const CommandListBase: React$1.ForwardRefExoticComponent<Omit<{
|
|
477
481
|
children?: React$1.ReactNode;
|
|
478
482
|
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
@@ -752,19 +756,6 @@ interface StatusProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
752
756
|
}
|
|
753
757
|
declare function StatusIndicator({ color, size, position, show, children, className, ...props }: StatusProps): react_jsx_runtime.JSX.Element;
|
|
754
758
|
|
|
755
|
-
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
756
|
-
value: string;
|
|
757
|
-
onChange: (value: string) => void;
|
|
758
|
-
debounce?: number;
|
|
759
|
-
label?: string;
|
|
760
|
-
labelClassname?: string;
|
|
761
|
-
leftIcon?: React.ReactNode;
|
|
762
|
-
rightIcon?: React.ReactNode;
|
|
763
|
-
showLoadingIndicator?: boolean;
|
|
764
|
-
error?: string | undefined;
|
|
765
|
-
}
|
|
766
|
-
declare const DebouncedInput: React$1.ForwardRefExoticComponent<DebouncedInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
767
|
-
|
|
768
759
|
interface TreeNode {
|
|
769
760
|
id: string;
|
|
770
761
|
label: string;
|
|
@@ -2312,6 +2303,29 @@ type NumericInputProps = {
|
|
|
2312
2303
|
};
|
|
2313
2304
|
declare function NumericInput({ value, onChange, min, max, label, className, error, isLoading, disabled, tooltip_on_overflow, hideConfirm, numericKeyboard, }: NumericInputProps): react_jsx_runtime.JSX.Element;
|
|
2314
2305
|
|
|
2306
|
+
interface CarouselItem {
|
|
2307
|
+
id: number | string;
|
|
2308
|
+
url: string;
|
|
2309
|
+
title: string;
|
|
2310
|
+
}
|
|
2311
|
+
interface CarouselBaseProps {
|
|
2312
|
+
items: CarouselItem[];
|
|
2313
|
+
className?: string;
|
|
2314
|
+
containerClassName?: string;
|
|
2315
|
+
imageClassName?: string;
|
|
2316
|
+
width?: string;
|
|
2317
|
+
height?: string;
|
|
2318
|
+
showControls?: boolean;
|
|
2319
|
+
showIndicators?: boolean;
|
|
2320
|
+
autoPlay?: boolean;
|
|
2321
|
+
autoPlayInterval?: number;
|
|
2322
|
+
springConfig?: {
|
|
2323
|
+
stiffness?: number;
|
|
2324
|
+
damping?: number;
|
|
2325
|
+
};
|
|
2326
|
+
}
|
|
2327
|
+
declare function CarouselBase({ items, className, containerClassName, imageClassName, width, height, showControls, showIndicators, autoPlay, autoPlayInterval, springConfig, }: CarouselBaseProps): react_jsx_runtime.JSX.Element;
|
|
2328
|
+
|
|
2315
2329
|
declare function useIsMobile(): boolean;
|
|
2316
2330
|
|
|
2317
2331
|
interface Position {
|
|
@@ -2331,4 +2345,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2331
2345
|
isDragging: boolean;
|
|
2332
2346
|
};
|
|
2333
2347
|
|
|
2334
|
-
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, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase,
|
|
2348
|
+
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, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, type DataMapper, 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, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, 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 Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, 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, type SystemData, SystemTooltip, 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, VISIBLE_ITEMS, 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, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|