@mlw-packages/react-components 1.7.14 → 1.7.16
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 +15 -0
- package/dist/index.d.mts +106 -24
- package/dist/index.d.ts +106 -24
- package/dist/index.js +1092 -966
- package/dist/index.mjs +1093 -967
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -978,6 +978,9 @@ body {
|
|
|
978
978
|
.h-\[var\(--radix-select-trigger-height\)\] {
|
|
979
979
|
height: var(--radix-select-trigger-height);
|
|
980
980
|
}
|
|
981
|
+
.h-\[var\(--svg-h\)\] {
|
|
982
|
+
height: var(--svg-h);
|
|
983
|
+
}
|
|
981
984
|
.h-\[var\(--week-cells-height\)\] {
|
|
982
985
|
height: var(--week-cells-height);
|
|
983
986
|
}
|
|
@@ -1332,6 +1335,9 @@ body {
|
|
|
1332
1335
|
.max-w-\[80px\] {
|
|
1333
1336
|
max-width: 80px;
|
|
1334
1337
|
}
|
|
1338
|
+
.max-w-\[900px\] {
|
|
1339
|
+
max-width: 900px;
|
|
1340
|
+
}
|
|
1335
1341
|
.max-w-\[90vw\] {
|
|
1336
1342
|
max-width: 90vw;
|
|
1337
1343
|
}
|
|
@@ -2681,6 +2687,9 @@ body {
|
|
|
2681
2687
|
.pl-8 {
|
|
2682
2688
|
padding-left: 2rem;
|
|
2683
2689
|
}
|
|
2690
|
+
.pl-\[var\(--pl\)\] {
|
|
2691
|
+
padding-left: var(--pl);
|
|
2692
|
+
}
|
|
2684
2693
|
.pr-1 {
|
|
2685
2694
|
padding-right: 0.25rem;
|
|
2686
2695
|
}
|
|
@@ -2693,6 +2702,9 @@ body {
|
|
|
2693
2702
|
.pr-2\.5 {
|
|
2694
2703
|
padding-right: 0.625rem;
|
|
2695
2704
|
}
|
|
2705
|
+
.pr-3 {
|
|
2706
|
+
padding-right: 0.75rem;
|
|
2707
|
+
}
|
|
2696
2708
|
.pr-4 {
|
|
2697
2709
|
padding-right: 1rem;
|
|
2698
2710
|
}
|
|
@@ -2891,6 +2903,9 @@ body {
|
|
|
2891
2903
|
--tw-text-opacity: 1;
|
|
2892
2904
|
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
2893
2905
|
}
|
|
2906
|
+
.text-black\/80 {
|
|
2907
|
+
color: rgb(0 0 0 / 0.8);
|
|
2908
|
+
}
|
|
2894
2909
|
.text-blue-400 {
|
|
2895
2910
|
--tw-text-opacity: 1;
|
|
2896
2911
|
color: rgb(96 165 250 / var(--tw-text-opacity, 1));
|
package/dist/index.d.mts
CHANGED
|
@@ -254,36 +254,32 @@ type valueFormatter = (props: {
|
|
|
254
254
|
}) => string;
|
|
255
255
|
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
256
256
|
|
|
257
|
-
|
|
257
|
+
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
258
|
+
|
|
259
|
+
interface ChartData$1 {
|
|
258
260
|
[key: string]: string | number | boolean | null | undefined;
|
|
259
261
|
}
|
|
260
|
-
interface XAxisConfig$
|
|
262
|
+
interface XAxisConfig$2 {
|
|
261
263
|
dataKey: string;
|
|
262
264
|
label?: string;
|
|
263
265
|
valueFormatter?: (value: string | number) => string;
|
|
264
266
|
autoLabel?: boolean;
|
|
265
267
|
}
|
|
266
|
-
|
|
268
|
+
interface BiaxialConfig {
|
|
269
|
+
key: string[];
|
|
270
|
+
label?: string;
|
|
271
|
+
percentage?: boolean;
|
|
272
|
+
decimals?: number;
|
|
273
|
+
stroke?: string | Record<string, string>;
|
|
274
|
+
}
|
|
275
|
+
type SeriesProp$1 = {
|
|
267
276
|
bar?: string[];
|
|
268
277
|
line?: string[];
|
|
269
278
|
area?: string[];
|
|
270
279
|
};
|
|
271
280
|
interface ChartProps {
|
|
272
|
-
data: ChartData[];
|
|
273
|
-
series?: SeriesProp;
|
|
274
|
-
yAxisMap?: Record<string, "left" | "right">;
|
|
275
|
-
yAxes?: Partial<{
|
|
276
|
-
left: {
|
|
277
|
-
label?: string;
|
|
278
|
-
stroke?: string;
|
|
279
|
-
width?: number;
|
|
280
|
-
};
|
|
281
|
-
right: {
|
|
282
|
-
label?: string;
|
|
283
|
-
stroke?: string;
|
|
284
|
-
width?: number;
|
|
285
|
-
};
|
|
286
|
-
}>;
|
|
281
|
+
data: ChartData$1[];
|
|
282
|
+
series?: SeriesProp$1;
|
|
287
283
|
className?: string;
|
|
288
284
|
chartMargin?: Partial<{
|
|
289
285
|
top: number;
|
|
@@ -304,9 +300,11 @@ interface ChartProps {
|
|
|
304
300
|
labelMap?: Record<string, string>;
|
|
305
301
|
valueFormatter?: valueFormatter;
|
|
306
302
|
categoryFormatter?: (value: string | number) => string;
|
|
303
|
+
periodLabel?: string;
|
|
307
304
|
xAxisLabel?: string;
|
|
308
305
|
yAxisLabel?: string;
|
|
309
|
-
xAxis?: XAxisConfig$
|
|
306
|
+
xAxis?: XAxisConfig$2 | string;
|
|
307
|
+
biaxial?: BiaxialConfig | string | string[];
|
|
310
308
|
enableHighlights?: boolean;
|
|
311
309
|
enableShowOnly?: boolean;
|
|
312
310
|
enablePeriodsDropdown?: boolean;
|
|
@@ -314,15 +312,13 @@ interface ChartProps {
|
|
|
314
312
|
showTooltipTotal?: boolean;
|
|
315
313
|
maxTooltips?: number;
|
|
316
314
|
formatBR?: boolean;
|
|
317
|
-
/** Texto exibido no cabeçalho dos tooltips (ex.: "Período") */
|
|
318
|
-
periodLabel?: string;
|
|
319
315
|
}
|
|
320
316
|
declare const Chart: React__default.FC<ChartProps>;
|
|
321
317
|
|
|
322
318
|
interface BarChartData {
|
|
323
319
|
[key: string]: string | number | boolean | null | undefined;
|
|
324
320
|
}
|
|
325
|
-
interface XAxisConfig {
|
|
321
|
+
interface XAxisConfig$1 {
|
|
326
322
|
dataKey: string;
|
|
327
323
|
label?: string;
|
|
328
324
|
valueFormatter?: (value: string | number) => string;
|
|
@@ -355,7 +351,7 @@ interface BarChartProps {
|
|
|
355
351
|
titlePosition?: "left" | "center" | "right";
|
|
356
352
|
showLabels?: boolean;
|
|
357
353
|
labelMap?: Record<string, string>;
|
|
358
|
-
xAxis?: XAxisConfig | string;
|
|
354
|
+
xAxis?: XAxisConfig$1 | string;
|
|
359
355
|
mapper?: DataMapper | string[];
|
|
360
356
|
yAxis?: DataMapper | string[];
|
|
361
357
|
autoDetect?: boolean;
|
|
@@ -544,6 +540,92 @@ interface UseChartHighlightsReturn {
|
|
|
544
540
|
}
|
|
545
541
|
declare const useChartHighlights: () => UseChartHighlightsReturn;
|
|
546
542
|
|
|
543
|
+
interface NoDataProps {
|
|
544
|
+
paddingLeft?: number;
|
|
545
|
+
height?: number | string;
|
|
546
|
+
message?: string;
|
|
547
|
+
className?: string;
|
|
548
|
+
}
|
|
549
|
+
declare const NoData: React__default.FC<NoDataProps>;
|
|
550
|
+
|
|
551
|
+
type Primitive = string | number | boolean | null | undefined;
|
|
552
|
+
interface ChartData {
|
|
553
|
+
[key: string]: Primitive;
|
|
554
|
+
name?: string;
|
|
555
|
+
}
|
|
556
|
+
interface XAxisConfig {
|
|
557
|
+
dataKey: string;
|
|
558
|
+
label?: string;
|
|
559
|
+
valueFormatter?: (value: string | number) => string;
|
|
560
|
+
autoLabel?: boolean;
|
|
561
|
+
}
|
|
562
|
+
type ValueFormatter = (value: string | number) => string | number;
|
|
563
|
+
type FinalValueFormatter = (value: number | string | null | undefined) => string;
|
|
564
|
+
type SeriesProp = {
|
|
565
|
+
bar?: string[];
|
|
566
|
+
line?: string[];
|
|
567
|
+
area?: string[];
|
|
568
|
+
};
|
|
569
|
+
type SeriesEntry = {
|
|
570
|
+
type: "bar" | "line" | "area";
|
|
571
|
+
key: string;
|
|
572
|
+
};
|
|
573
|
+
type SeriesCounts = {
|
|
574
|
+
bar: number;
|
|
575
|
+
line: number;
|
|
576
|
+
area: number;
|
|
577
|
+
};
|
|
578
|
+
type YAxisSide = "left" | "right";
|
|
579
|
+
type YAxisMap = Record<string, YAxisSide>;
|
|
580
|
+
interface MapperConfigEntry {
|
|
581
|
+
label?: string;
|
|
582
|
+
valueFormatter?: ValueFormatter;
|
|
583
|
+
color?: string;
|
|
584
|
+
type?: "number" | "string" | "auto";
|
|
585
|
+
visible?: boolean;
|
|
586
|
+
}
|
|
587
|
+
type MapperConfig = Record<string, MapperConfigEntry>;
|
|
588
|
+
interface YAxisOptions {
|
|
589
|
+
label?: string;
|
|
590
|
+
stroke?: string;
|
|
591
|
+
width?: number;
|
|
592
|
+
percent?: boolean;
|
|
593
|
+
percentDecimals?: number;
|
|
594
|
+
}
|
|
595
|
+
type YAxes = Partial<{
|
|
596
|
+
left: YAxisOptions;
|
|
597
|
+
right: YAxisOptions;
|
|
598
|
+
}>;
|
|
599
|
+
interface TooltipItem {
|
|
600
|
+
id: string;
|
|
601
|
+
data: ChartData;
|
|
602
|
+
position: {
|
|
603
|
+
top: number;
|
|
604
|
+
left: number;
|
|
605
|
+
};
|
|
606
|
+
}
|
|
607
|
+
type TooltipAdaptedRow = Record<string, string | number> & {
|
|
608
|
+
name: string;
|
|
609
|
+
};
|
|
610
|
+
interface ChartHooksArgs {
|
|
611
|
+
width?: number | string;
|
|
612
|
+
measuredWidth?: number | null;
|
|
613
|
+
points?: number;
|
|
614
|
+
seriesCounts?: SeriesCounts;
|
|
615
|
+
niceMax?: number;
|
|
616
|
+
yAxes?: YAxes;
|
|
617
|
+
yAxisLabel?: string;
|
|
618
|
+
chartMargin?: Partial<{
|
|
619
|
+
top: number;
|
|
620
|
+
right: number;
|
|
621
|
+
left: number;
|
|
622
|
+
bottom: number;
|
|
623
|
+
}>;
|
|
624
|
+
showLabels?: boolean;
|
|
625
|
+
showLegend?: boolean;
|
|
626
|
+
xAxisLabel?: string;
|
|
627
|
+
}
|
|
628
|
+
|
|
547
629
|
declare const AvatarBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
548
630
|
declare const AvatarImageBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
549
631
|
declare const AvatarFallbackBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1585,4 +1667,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
1585
1667
|
isDragging: boolean;
|
|
1586
1668
|
};
|
|
1587
1669
|
|
|
1588
|
-
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, type CalendarEvent, type CalendarProps, type CalendarView, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, DayView, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultStartHour, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, EditButton, EndHour, ErrorMessage, EventCalendar, type EventColor, EventDialog, EventGap, EventHeight, EventItem, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StatusIndicator, type StatusProps, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, ViewButton, VisibilityButton, WeekCellsHeight, WeekView, addHoursToDate, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAllEventsForDay, getArrowByType, getBorderRadiusClasses, getDateByType, getEventColorClasses, getEventsForDay, getSpanningEventsForDay, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, toast, useCalendarDnd, useChartHighlights, useCurrentTimeIndicator, useDrag, useEventVisibility, useIsMobile, useTheme, type valueFormatter };
|
|
1670
|
+
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, type CalendarEvent, type CalendarProps, type CalendarView, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData, type ChartHooksArgs, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, DayView, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultStartHour, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, EditButton, EndHour, ErrorMessage, EventCalendar, type EventColor, EventDialog, EventGap, EventHeight, EventItem, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NoData, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesCounts, type SeriesEntry, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StatusIndicator, type StatusProps, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekView, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, addHoursToDate, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAllEventsForDay, getArrowByType, getBorderRadiusClasses, getDateByType, getEventColorClasses, getEventsForDay, getSpanningEventsForDay, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, toast, useCalendarDnd, useChartHighlights, useCurrentTimeIndicator, useDrag, useEventVisibility, useIsMobile, useTheme, type valueFormatter };
|
package/dist/index.d.ts
CHANGED
|
@@ -254,36 +254,32 @@ type valueFormatter = (props: {
|
|
|
254
254
|
}) => string;
|
|
255
255
|
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
256
256
|
|
|
257
|
-
|
|
257
|
+
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
258
|
+
|
|
259
|
+
interface ChartData$1 {
|
|
258
260
|
[key: string]: string | number | boolean | null | undefined;
|
|
259
261
|
}
|
|
260
|
-
interface XAxisConfig$
|
|
262
|
+
interface XAxisConfig$2 {
|
|
261
263
|
dataKey: string;
|
|
262
264
|
label?: string;
|
|
263
265
|
valueFormatter?: (value: string | number) => string;
|
|
264
266
|
autoLabel?: boolean;
|
|
265
267
|
}
|
|
266
|
-
|
|
268
|
+
interface BiaxialConfig {
|
|
269
|
+
key: string[];
|
|
270
|
+
label?: string;
|
|
271
|
+
percentage?: boolean;
|
|
272
|
+
decimals?: number;
|
|
273
|
+
stroke?: string | Record<string, string>;
|
|
274
|
+
}
|
|
275
|
+
type SeriesProp$1 = {
|
|
267
276
|
bar?: string[];
|
|
268
277
|
line?: string[];
|
|
269
278
|
area?: string[];
|
|
270
279
|
};
|
|
271
280
|
interface ChartProps {
|
|
272
|
-
data: ChartData[];
|
|
273
|
-
series?: SeriesProp;
|
|
274
|
-
yAxisMap?: Record<string, "left" | "right">;
|
|
275
|
-
yAxes?: Partial<{
|
|
276
|
-
left: {
|
|
277
|
-
label?: string;
|
|
278
|
-
stroke?: string;
|
|
279
|
-
width?: number;
|
|
280
|
-
};
|
|
281
|
-
right: {
|
|
282
|
-
label?: string;
|
|
283
|
-
stroke?: string;
|
|
284
|
-
width?: number;
|
|
285
|
-
};
|
|
286
|
-
}>;
|
|
281
|
+
data: ChartData$1[];
|
|
282
|
+
series?: SeriesProp$1;
|
|
287
283
|
className?: string;
|
|
288
284
|
chartMargin?: Partial<{
|
|
289
285
|
top: number;
|
|
@@ -304,9 +300,11 @@ interface ChartProps {
|
|
|
304
300
|
labelMap?: Record<string, string>;
|
|
305
301
|
valueFormatter?: valueFormatter;
|
|
306
302
|
categoryFormatter?: (value: string | number) => string;
|
|
303
|
+
periodLabel?: string;
|
|
307
304
|
xAxisLabel?: string;
|
|
308
305
|
yAxisLabel?: string;
|
|
309
|
-
xAxis?: XAxisConfig$
|
|
306
|
+
xAxis?: XAxisConfig$2 | string;
|
|
307
|
+
biaxial?: BiaxialConfig | string | string[];
|
|
310
308
|
enableHighlights?: boolean;
|
|
311
309
|
enableShowOnly?: boolean;
|
|
312
310
|
enablePeriodsDropdown?: boolean;
|
|
@@ -314,15 +312,13 @@ interface ChartProps {
|
|
|
314
312
|
showTooltipTotal?: boolean;
|
|
315
313
|
maxTooltips?: number;
|
|
316
314
|
formatBR?: boolean;
|
|
317
|
-
/** Texto exibido no cabeçalho dos tooltips (ex.: "Período") */
|
|
318
|
-
periodLabel?: string;
|
|
319
315
|
}
|
|
320
316
|
declare const Chart: React__default.FC<ChartProps>;
|
|
321
317
|
|
|
322
318
|
interface BarChartData {
|
|
323
319
|
[key: string]: string | number | boolean | null | undefined;
|
|
324
320
|
}
|
|
325
|
-
interface XAxisConfig {
|
|
321
|
+
interface XAxisConfig$1 {
|
|
326
322
|
dataKey: string;
|
|
327
323
|
label?: string;
|
|
328
324
|
valueFormatter?: (value: string | number) => string;
|
|
@@ -355,7 +351,7 @@ interface BarChartProps {
|
|
|
355
351
|
titlePosition?: "left" | "center" | "right";
|
|
356
352
|
showLabels?: boolean;
|
|
357
353
|
labelMap?: Record<string, string>;
|
|
358
|
-
xAxis?: XAxisConfig | string;
|
|
354
|
+
xAxis?: XAxisConfig$1 | string;
|
|
359
355
|
mapper?: DataMapper | string[];
|
|
360
356
|
yAxis?: DataMapper | string[];
|
|
361
357
|
autoDetect?: boolean;
|
|
@@ -544,6 +540,92 @@ interface UseChartHighlightsReturn {
|
|
|
544
540
|
}
|
|
545
541
|
declare const useChartHighlights: () => UseChartHighlightsReturn;
|
|
546
542
|
|
|
543
|
+
interface NoDataProps {
|
|
544
|
+
paddingLeft?: number;
|
|
545
|
+
height?: number | string;
|
|
546
|
+
message?: string;
|
|
547
|
+
className?: string;
|
|
548
|
+
}
|
|
549
|
+
declare const NoData: React__default.FC<NoDataProps>;
|
|
550
|
+
|
|
551
|
+
type Primitive = string | number | boolean | null | undefined;
|
|
552
|
+
interface ChartData {
|
|
553
|
+
[key: string]: Primitive;
|
|
554
|
+
name?: string;
|
|
555
|
+
}
|
|
556
|
+
interface XAxisConfig {
|
|
557
|
+
dataKey: string;
|
|
558
|
+
label?: string;
|
|
559
|
+
valueFormatter?: (value: string | number) => string;
|
|
560
|
+
autoLabel?: boolean;
|
|
561
|
+
}
|
|
562
|
+
type ValueFormatter = (value: string | number) => string | number;
|
|
563
|
+
type FinalValueFormatter = (value: number | string | null | undefined) => string;
|
|
564
|
+
type SeriesProp = {
|
|
565
|
+
bar?: string[];
|
|
566
|
+
line?: string[];
|
|
567
|
+
area?: string[];
|
|
568
|
+
};
|
|
569
|
+
type SeriesEntry = {
|
|
570
|
+
type: "bar" | "line" | "area";
|
|
571
|
+
key: string;
|
|
572
|
+
};
|
|
573
|
+
type SeriesCounts = {
|
|
574
|
+
bar: number;
|
|
575
|
+
line: number;
|
|
576
|
+
area: number;
|
|
577
|
+
};
|
|
578
|
+
type YAxisSide = "left" | "right";
|
|
579
|
+
type YAxisMap = Record<string, YAxisSide>;
|
|
580
|
+
interface MapperConfigEntry {
|
|
581
|
+
label?: string;
|
|
582
|
+
valueFormatter?: ValueFormatter;
|
|
583
|
+
color?: string;
|
|
584
|
+
type?: "number" | "string" | "auto";
|
|
585
|
+
visible?: boolean;
|
|
586
|
+
}
|
|
587
|
+
type MapperConfig = Record<string, MapperConfigEntry>;
|
|
588
|
+
interface YAxisOptions {
|
|
589
|
+
label?: string;
|
|
590
|
+
stroke?: string;
|
|
591
|
+
width?: number;
|
|
592
|
+
percent?: boolean;
|
|
593
|
+
percentDecimals?: number;
|
|
594
|
+
}
|
|
595
|
+
type YAxes = Partial<{
|
|
596
|
+
left: YAxisOptions;
|
|
597
|
+
right: YAxisOptions;
|
|
598
|
+
}>;
|
|
599
|
+
interface TooltipItem {
|
|
600
|
+
id: string;
|
|
601
|
+
data: ChartData;
|
|
602
|
+
position: {
|
|
603
|
+
top: number;
|
|
604
|
+
left: number;
|
|
605
|
+
};
|
|
606
|
+
}
|
|
607
|
+
type TooltipAdaptedRow = Record<string, string | number> & {
|
|
608
|
+
name: string;
|
|
609
|
+
};
|
|
610
|
+
interface ChartHooksArgs {
|
|
611
|
+
width?: number | string;
|
|
612
|
+
measuredWidth?: number | null;
|
|
613
|
+
points?: number;
|
|
614
|
+
seriesCounts?: SeriesCounts;
|
|
615
|
+
niceMax?: number;
|
|
616
|
+
yAxes?: YAxes;
|
|
617
|
+
yAxisLabel?: string;
|
|
618
|
+
chartMargin?: Partial<{
|
|
619
|
+
top: number;
|
|
620
|
+
right: number;
|
|
621
|
+
left: number;
|
|
622
|
+
bottom: number;
|
|
623
|
+
}>;
|
|
624
|
+
showLabels?: boolean;
|
|
625
|
+
showLegend?: boolean;
|
|
626
|
+
xAxisLabel?: string;
|
|
627
|
+
}
|
|
628
|
+
|
|
547
629
|
declare const AvatarBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
548
630
|
declare const AvatarImageBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
549
631
|
declare const AvatarFallbackBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1585,4 +1667,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
1585
1667
|
isDragging: boolean;
|
|
1586
1668
|
};
|
|
1587
1669
|
|
|
1588
|
-
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, type CalendarEvent, type CalendarProps, type CalendarView, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, DayView, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultStartHour, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, EditButton, EndHour, ErrorMessage, EventCalendar, type EventColor, EventDialog, EventGap, EventHeight, EventItem, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StatusIndicator, type StatusProps, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, ViewButton, VisibilityButton, WeekCellsHeight, WeekView, addHoursToDate, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAllEventsForDay, getArrowByType, getBorderRadiusClasses, getDateByType, getEventColorClasses, getEventsForDay, getSpanningEventsForDay, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, toast, useCalendarDnd, useChartHighlights, useCurrentTimeIndicator, useDrag, useEventVisibility, useIsMobile, useTheme, type valueFormatter };
|
|
1670
|
+
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, type CalendarEvent, type CalendarProps, type CalendarView, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData, type ChartHooksArgs, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, DayView, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultStartHour, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, EditButton, EndHour, ErrorMessage, EventCalendar, type EventColor, EventDialog, EventGap, EventHeight, EventItem, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NoData, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesCounts, type SeriesEntry, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StatusIndicator, type StatusProps, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekView, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, addHoursToDate, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAllEventsForDay, getArrowByType, getBorderRadiusClasses, getDateByType, getEventColorClasses, getEventsForDay, getSpanningEventsForDay, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, toast, useCalendarDnd, useChartHighlights, useCurrentTimeIndicator, useDrag, useEventVisibility, useIsMobile, useTheme, type valueFormatter };
|