@mlw-packages/react-components 1.5.7 → 1.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +200 -54
- package/dist/index.d.ts +200 -54
- package/dist/index.js +2545 -445
- package/dist/index.mjs +2581 -434
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -570,6 +570,16 @@ type ModeToggleBaseProps = {
|
|
|
570
570
|
};
|
|
571
571
|
declare function ModeToggleBase({ themes, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
572
572
|
|
|
573
|
+
interface DestructiveDialogProps {
|
|
574
|
+
title: string;
|
|
575
|
+
description: string;
|
|
576
|
+
onConfirm: () => void;
|
|
577
|
+
onCancel?: () => void;
|
|
578
|
+
children?: React$1.ReactNode;
|
|
579
|
+
triggerContent?: React$1.ReactNode;
|
|
580
|
+
}
|
|
581
|
+
declare const DestructiveDialog: React$1.FC<DestructiveDialogProps>;
|
|
582
|
+
|
|
573
583
|
interface DateTimePickerProps {
|
|
574
584
|
label?: string;
|
|
575
585
|
date: Date | undefined;
|
|
@@ -695,15 +705,186 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
|
|
|
695
705
|
type SelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
696
706
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, errorMessage, testIds, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
697
707
|
|
|
698
|
-
interface
|
|
699
|
-
|
|
700
|
-
description: string;
|
|
701
|
-
onConfirm: () => void;
|
|
702
|
-
onCancel?: () => void;
|
|
703
|
-
children?: React$1.ReactNode;
|
|
704
|
-
triggerContent?: React$1.ReactNode;
|
|
708
|
+
interface ChartData {
|
|
709
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
705
710
|
}
|
|
706
|
-
|
|
711
|
+
interface XAxisConfig$1 {
|
|
712
|
+
dataKey: string;
|
|
713
|
+
label?: string;
|
|
714
|
+
formatter?: (value: string | number) => string;
|
|
715
|
+
autoLabel?: boolean;
|
|
716
|
+
}
|
|
717
|
+
type SeriesProp = {
|
|
718
|
+
bar?: string[];
|
|
719
|
+
line?: string[];
|
|
720
|
+
area?: string[];
|
|
721
|
+
};
|
|
722
|
+
interface ChartProps {
|
|
723
|
+
data: ChartData[];
|
|
724
|
+
series?: SeriesProp;
|
|
725
|
+
className?: string;
|
|
726
|
+
chartMargin?: Partial<{
|
|
727
|
+
top: number;
|
|
728
|
+
right: number;
|
|
729
|
+
left: number;
|
|
730
|
+
bottom: number;
|
|
731
|
+
}>;
|
|
732
|
+
height?: number;
|
|
733
|
+
width?: number | string;
|
|
734
|
+
colors?: string[];
|
|
735
|
+
gridColor?: string;
|
|
736
|
+
showGrid?: boolean;
|
|
737
|
+
showTooltip?: boolean;
|
|
738
|
+
showLegend?: boolean;
|
|
739
|
+
title?: string;
|
|
740
|
+
titlePosition?: "left" | "center" | "right";
|
|
741
|
+
showLabels?: boolean;
|
|
742
|
+
labelMap?: Record<string, string>;
|
|
743
|
+
xAxis?: XAxisConfig$1 | string;
|
|
744
|
+
enableHighlights?: boolean;
|
|
745
|
+
enableShowOnly?: boolean;
|
|
746
|
+
enablePeriodsDropdown?: boolean;
|
|
747
|
+
enableDraggableTooltips?: boolean;
|
|
748
|
+
showTooltipTotal?: boolean;
|
|
749
|
+
maxTooltips?: number;
|
|
750
|
+
}
|
|
751
|
+
declare const Chart: React__default.FC<ChartProps>;
|
|
752
|
+
|
|
753
|
+
declare const formatFieldName: (fieldName: string) => string;
|
|
754
|
+
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
755
|
+
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
756
|
+
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
757
|
+
declare const niceCeil: (value: number) => number;
|
|
758
|
+
declare const compactTick: (value: number) => string;
|
|
759
|
+
type Padding = number | Partial<{
|
|
760
|
+
left: number;
|
|
761
|
+
right: number;
|
|
762
|
+
top: number;
|
|
763
|
+
bottom: number;
|
|
764
|
+
}>;
|
|
765
|
+
type Margins = Partial<{
|
|
766
|
+
top: number;
|
|
767
|
+
right: number;
|
|
768
|
+
left: number;
|
|
769
|
+
bottom: number;
|
|
770
|
+
}>;
|
|
771
|
+
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
772
|
+
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
773
|
+
top: number;
|
|
774
|
+
right: number;
|
|
775
|
+
left: number;
|
|
776
|
+
bottom: number;
|
|
777
|
+
};
|
|
778
|
+
|
|
779
|
+
type Variant = "filled" | "outline" | "soft";
|
|
780
|
+
type LabelRendererProps = {
|
|
781
|
+
x?: number | string;
|
|
782
|
+
y?: number | string;
|
|
783
|
+
value?: number | string;
|
|
784
|
+
index?: number;
|
|
785
|
+
payload?: unknown;
|
|
786
|
+
width?: number | string;
|
|
787
|
+
height?: number | string;
|
|
788
|
+
viewBox?: {
|
|
789
|
+
x?: number;
|
|
790
|
+
y?: number;
|
|
791
|
+
width?: number;
|
|
792
|
+
height?: number;
|
|
793
|
+
} | Record<string, unknown> | undefined;
|
|
794
|
+
cx?: number | string;
|
|
795
|
+
cy?: number | string;
|
|
796
|
+
};
|
|
797
|
+
declare const renderPillLabel: (color: string, variant: Variant) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
798
|
+
|
|
799
|
+
interface BarChartData {
|
|
800
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
801
|
+
}
|
|
802
|
+
interface XAxisConfig {
|
|
803
|
+
dataKey: string;
|
|
804
|
+
label?: string;
|
|
805
|
+
formatter?: (value: string | number) => string;
|
|
806
|
+
autoLabel?: boolean;
|
|
807
|
+
}
|
|
808
|
+
interface DataMapper {
|
|
809
|
+
[dataKey: string]: {
|
|
810
|
+
label?: string;
|
|
811
|
+
formatter?: (value: string | number) => string | number;
|
|
812
|
+
color?: string;
|
|
813
|
+
type?: "number" | "string" | "auto";
|
|
814
|
+
visible?: boolean;
|
|
815
|
+
};
|
|
816
|
+
}
|
|
817
|
+
interface BarChartProps {
|
|
818
|
+
data: BarChartData[];
|
|
819
|
+
className?: string;
|
|
820
|
+
padding?: Padding;
|
|
821
|
+
margins?: Margins;
|
|
822
|
+
containerPaddingLeft?: number;
|
|
823
|
+
chartMargins?: Margins;
|
|
824
|
+
height?: number;
|
|
825
|
+
width?: number | string;
|
|
826
|
+
colors?: string[];
|
|
827
|
+
gridColor?: string;
|
|
828
|
+
showGrid?: boolean;
|
|
829
|
+
showTooltip?: boolean;
|
|
830
|
+
showLegend?: boolean;
|
|
831
|
+
title?: string;
|
|
832
|
+
titlePosition?: "left" | "center" | "right";
|
|
833
|
+
showLabels?: boolean;
|
|
834
|
+
labelMap?: Record<string, string>;
|
|
835
|
+
xAxis?: XAxisConfig | string;
|
|
836
|
+
mapper?: DataMapper | string[];
|
|
837
|
+
yAxis?: DataMapper | string[];
|
|
838
|
+
autoDetect?: boolean;
|
|
839
|
+
}
|
|
840
|
+
declare const BarChart: React__default.FC<BarChartProps>;
|
|
841
|
+
|
|
842
|
+
interface LineChartData {
|
|
843
|
+
name: string;
|
|
844
|
+
[key: string]: string | number;
|
|
845
|
+
}
|
|
846
|
+
interface CustomLineChartProps {
|
|
847
|
+
data?: LineChartData[];
|
|
848
|
+
className?: string;
|
|
849
|
+
padding?: Padding;
|
|
850
|
+
margins?: Margins;
|
|
851
|
+
containerPaddingLeft?: number;
|
|
852
|
+
chartMargins?: Margins;
|
|
853
|
+
height?: number;
|
|
854
|
+
width?: number | string;
|
|
855
|
+
colors?: string[];
|
|
856
|
+
gridColor?: string;
|
|
857
|
+
showGrid?: boolean;
|
|
858
|
+
showTooltip?: boolean;
|
|
859
|
+
showLegend?: boolean;
|
|
860
|
+
title?: string;
|
|
861
|
+
titlePosition?: "left" | "center" | "right";
|
|
862
|
+
strokeWidth?: number;
|
|
863
|
+
showDots?: boolean;
|
|
864
|
+
showLabels?: boolean;
|
|
865
|
+
}
|
|
866
|
+
declare const CustomLineChart: React__default.FC<CustomLineChartProps>;
|
|
867
|
+
|
|
868
|
+
interface PieChartData {
|
|
869
|
+
name: string;
|
|
870
|
+
value: number;
|
|
871
|
+
[key: string]: string | number;
|
|
872
|
+
}
|
|
873
|
+
interface CustomPieChartProps {
|
|
874
|
+
data?: PieChartData[];
|
|
875
|
+
className?: string;
|
|
876
|
+
height?: number;
|
|
877
|
+
width?: number | string;
|
|
878
|
+
colors?: string[];
|
|
879
|
+
showTooltip?: boolean;
|
|
880
|
+
showLegend?: boolean;
|
|
881
|
+
showLabels?: boolean;
|
|
882
|
+
innerRadius?: number;
|
|
883
|
+
outerRadius?: number;
|
|
884
|
+
centerX?: string | number;
|
|
885
|
+
centerY?: string | number;
|
|
886
|
+
}
|
|
887
|
+
declare const CustomPieChart: React__default.FC<CustomPieChartProps>;
|
|
707
888
|
|
|
708
889
|
interface Props$4 {
|
|
709
890
|
processedData: Array<{
|
|
@@ -819,51 +1000,16 @@ interface Props {
|
|
|
819
1000
|
}
|
|
820
1001
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
821
1002
|
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
bottom: number;
|
|
833
|
-
}>;
|
|
834
|
-
type Margins = Partial<{
|
|
835
|
-
top: number;
|
|
836
|
-
right: number;
|
|
837
|
-
left: number;
|
|
838
|
-
bottom: number;
|
|
839
|
-
}>;
|
|
840
|
-
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
841
|
-
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
842
|
-
top: number;
|
|
843
|
-
right: number;
|
|
844
|
-
left: number;
|
|
845
|
-
bottom: number;
|
|
846
|
-
};
|
|
847
|
-
|
|
848
|
-
type Variant = "filled" | "outline" | "soft";
|
|
849
|
-
type LabelRendererProps = {
|
|
850
|
-
x?: number | string;
|
|
851
|
-
y?: number | string;
|
|
852
|
-
value?: number | string;
|
|
853
|
-
index?: number;
|
|
854
|
-
payload?: unknown;
|
|
855
|
-
width?: number | string;
|
|
856
|
-
height?: number | string;
|
|
857
|
-
viewBox?: {
|
|
858
|
-
x?: number;
|
|
859
|
-
y?: number;
|
|
860
|
-
width?: number;
|
|
861
|
-
height?: number;
|
|
862
|
-
} | Record<string, unknown> | undefined;
|
|
863
|
-
cx?: number | string;
|
|
864
|
-
cy?: number | string;
|
|
865
|
-
};
|
|
866
|
-
declare const renderPillLabel: (color: string, variant: Variant) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1003
|
+
interface UseChartHighlightsReturn {
|
|
1004
|
+
highlightedSeries: Set<string>;
|
|
1005
|
+
showOnlyHighlighted: boolean;
|
|
1006
|
+
toggleHighlight: (key: string) => void;
|
|
1007
|
+
setShowOnlyHighlighted: (show: boolean) => void;
|
|
1008
|
+
clearHighlights: () => void;
|
|
1009
|
+
getSeriesStyle: (key: string) => React.CSSProperties;
|
|
1010
|
+
isHighlighted: (key: string) => boolean;
|
|
1011
|
+
}
|
|
1012
|
+
declare const useChartHighlights: () => UseChartHighlightsReturn;
|
|
867
1013
|
|
|
868
1014
|
declare function useIsMobile(): boolean;
|
|
869
1015
|
|
|
@@ -884,4 +1030,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
884
1030
|
isDragging: boolean;
|
|
885
1031
|
};
|
|
886
1032
|
|
|
887
|
-
export { AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BadgeBase, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, CheckboxBase, CloseAllButton, 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, DateTimePicker, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, 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, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LoadingBase, type Margins, ModeToggleBase, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Padding, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, ScrollAreaBase, ScrollBarBase, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UseSideBarBase, badgeVariants, buttonVariantsBase, compactTick, detectDataFields, detectXAxis, formatFieldName, generateAdditionalColors, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, toast, useDrag, useIsMobile, useTheme };
|
|
1033
|
+
export { AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BadgeBase, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, Chart, CheckboxBase, CloseAllButton, 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, DateTimePicker, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, 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, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, CustomLineChart as LineChart, LoadingBase, type Margins, ModeToggleBase, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Padding, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, ScrollAreaBase, ScrollBarBase, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UseSideBarBase, badgeVariants, buttonVariantsBase, compactTick, detectDataFields, detectXAxis, formatFieldName, generateAdditionalColors, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, toast, useChartHighlights, useDrag, useIsMobile, useTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -570,6 +570,16 @@ type ModeToggleBaseProps = {
|
|
|
570
570
|
};
|
|
571
571
|
declare function ModeToggleBase({ themes, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
572
572
|
|
|
573
|
+
interface DestructiveDialogProps {
|
|
574
|
+
title: string;
|
|
575
|
+
description: string;
|
|
576
|
+
onConfirm: () => void;
|
|
577
|
+
onCancel?: () => void;
|
|
578
|
+
children?: React$1.ReactNode;
|
|
579
|
+
triggerContent?: React$1.ReactNode;
|
|
580
|
+
}
|
|
581
|
+
declare const DestructiveDialog: React$1.FC<DestructiveDialogProps>;
|
|
582
|
+
|
|
573
583
|
interface DateTimePickerProps {
|
|
574
584
|
label?: string;
|
|
575
585
|
date: Date | undefined;
|
|
@@ -695,15 +705,186 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
|
|
|
695
705
|
type SelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
696
706
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, errorMessage, testIds, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
697
707
|
|
|
698
|
-
interface
|
|
699
|
-
|
|
700
|
-
description: string;
|
|
701
|
-
onConfirm: () => void;
|
|
702
|
-
onCancel?: () => void;
|
|
703
|
-
children?: React$1.ReactNode;
|
|
704
|
-
triggerContent?: React$1.ReactNode;
|
|
708
|
+
interface ChartData {
|
|
709
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
705
710
|
}
|
|
706
|
-
|
|
711
|
+
interface XAxisConfig$1 {
|
|
712
|
+
dataKey: string;
|
|
713
|
+
label?: string;
|
|
714
|
+
formatter?: (value: string | number) => string;
|
|
715
|
+
autoLabel?: boolean;
|
|
716
|
+
}
|
|
717
|
+
type SeriesProp = {
|
|
718
|
+
bar?: string[];
|
|
719
|
+
line?: string[];
|
|
720
|
+
area?: string[];
|
|
721
|
+
};
|
|
722
|
+
interface ChartProps {
|
|
723
|
+
data: ChartData[];
|
|
724
|
+
series?: SeriesProp;
|
|
725
|
+
className?: string;
|
|
726
|
+
chartMargin?: Partial<{
|
|
727
|
+
top: number;
|
|
728
|
+
right: number;
|
|
729
|
+
left: number;
|
|
730
|
+
bottom: number;
|
|
731
|
+
}>;
|
|
732
|
+
height?: number;
|
|
733
|
+
width?: number | string;
|
|
734
|
+
colors?: string[];
|
|
735
|
+
gridColor?: string;
|
|
736
|
+
showGrid?: boolean;
|
|
737
|
+
showTooltip?: boolean;
|
|
738
|
+
showLegend?: boolean;
|
|
739
|
+
title?: string;
|
|
740
|
+
titlePosition?: "left" | "center" | "right";
|
|
741
|
+
showLabels?: boolean;
|
|
742
|
+
labelMap?: Record<string, string>;
|
|
743
|
+
xAxis?: XAxisConfig$1 | string;
|
|
744
|
+
enableHighlights?: boolean;
|
|
745
|
+
enableShowOnly?: boolean;
|
|
746
|
+
enablePeriodsDropdown?: boolean;
|
|
747
|
+
enableDraggableTooltips?: boolean;
|
|
748
|
+
showTooltipTotal?: boolean;
|
|
749
|
+
maxTooltips?: number;
|
|
750
|
+
}
|
|
751
|
+
declare const Chart: React__default.FC<ChartProps>;
|
|
752
|
+
|
|
753
|
+
declare const formatFieldName: (fieldName: string) => string;
|
|
754
|
+
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
755
|
+
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
756
|
+
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
757
|
+
declare const niceCeil: (value: number) => number;
|
|
758
|
+
declare const compactTick: (value: number) => string;
|
|
759
|
+
type Padding = number | Partial<{
|
|
760
|
+
left: number;
|
|
761
|
+
right: number;
|
|
762
|
+
top: number;
|
|
763
|
+
bottom: number;
|
|
764
|
+
}>;
|
|
765
|
+
type Margins = Partial<{
|
|
766
|
+
top: number;
|
|
767
|
+
right: number;
|
|
768
|
+
left: number;
|
|
769
|
+
bottom: number;
|
|
770
|
+
}>;
|
|
771
|
+
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
772
|
+
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
773
|
+
top: number;
|
|
774
|
+
right: number;
|
|
775
|
+
left: number;
|
|
776
|
+
bottom: number;
|
|
777
|
+
};
|
|
778
|
+
|
|
779
|
+
type Variant = "filled" | "outline" | "soft";
|
|
780
|
+
type LabelRendererProps = {
|
|
781
|
+
x?: number | string;
|
|
782
|
+
y?: number | string;
|
|
783
|
+
value?: number | string;
|
|
784
|
+
index?: number;
|
|
785
|
+
payload?: unknown;
|
|
786
|
+
width?: number | string;
|
|
787
|
+
height?: number | string;
|
|
788
|
+
viewBox?: {
|
|
789
|
+
x?: number;
|
|
790
|
+
y?: number;
|
|
791
|
+
width?: number;
|
|
792
|
+
height?: number;
|
|
793
|
+
} | Record<string, unknown> | undefined;
|
|
794
|
+
cx?: number | string;
|
|
795
|
+
cy?: number | string;
|
|
796
|
+
};
|
|
797
|
+
declare const renderPillLabel: (color: string, variant: Variant) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
798
|
+
|
|
799
|
+
interface BarChartData {
|
|
800
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
801
|
+
}
|
|
802
|
+
interface XAxisConfig {
|
|
803
|
+
dataKey: string;
|
|
804
|
+
label?: string;
|
|
805
|
+
formatter?: (value: string | number) => string;
|
|
806
|
+
autoLabel?: boolean;
|
|
807
|
+
}
|
|
808
|
+
interface DataMapper {
|
|
809
|
+
[dataKey: string]: {
|
|
810
|
+
label?: string;
|
|
811
|
+
formatter?: (value: string | number) => string | number;
|
|
812
|
+
color?: string;
|
|
813
|
+
type?: "number" | "string" | "auto";
|
|
814
|
+
visible?: boolean;
|
|
815
|
+
};
|
|
816
|
+
}
|
|
817
|
+
interface BarChartProps {
|
|
818
|
+
data: BarChartData[];
|
|
819
|
+
className?: string;
|
|
820
|
+
padding?: Padding;
|
|
821
|
+
margins?: Margins;
|
|
822
|
+
containerPaddingLeft?: number;
|
|
823
|
+
chartMargins?: Margins;
|
|
824
|
+
height?: number;
|
|
825
|
+
width?: number | string;
|
|
826
|
+
colors?: string[];
|
|
827
|
+
gridColor?: string;
|
|
828
|
+
showGrid?: boolean;
|
|
829
|
+
showTooltip?: boolean;
|
|
830
|
+
showLegend?: boolean;
|
|
831
|
+
title?: string;
|
|
832
|
+
titlePosition?: "left" | "center" | "right";
|
|
833
|
+
showLabels?: boolean;
|
|
834
|
+
labelMap?: Record<string, string>;
|
|
835
|
+
xAxis?: XAxisConfig | string;
|
|
836
|
+
mapper?: DataMapper | string[];
|
|
837
|
+
yAxis?: DataMapper | string[];
|
|
838
|
+
autoDetect?: boolean;
|
|
839
|
+
}
|
|
840
|
+
declare const BarChart: React__default.FC<BarChartProps>;
|
|
841
|
+
|
|
842
|
+
interface LineChartData {
|
|
843
|
+
name: string;
|
|
844
|
+
[key: string]: string | number;
|
|
845
|
+
}
|
|
846
|
+
interface CustomLineChartProps {
|
|
847
|
+
data?: LineChartData[];
|
|
848
|
+
className?: string;
|
|
849
|
+
padding?: Padding;
|
|
850
|
+
margins?: Margins;
|
|
851
|
+
containerPaddingLeft?: number;
|
|
852
|
+
chartMargins?: Margins;
|
|
853
|
+
height?: number;
|
|
854
|
+
width?: number | string;
|
|
855
|
+
colors?: string[];
|
|
856
|
+
gridColor?: string;
|
|
857
|
+
showGrid?: boolean;
|
|
858
|
+
showTooltip?: boolean;
|
|
859
|
+
showLegend?: boolean;
|
|
860
|
+
title?: string;
|
|
861
|
+
titlePosition?: "left" | "center" | "right";
|
|
862
|
+
strokeWidth?: number;
|
|
863
|
+
showDots?: boolean;
|
|
864
|
+
showLabels?: boolean;
|
|
865
|
+
}
|
|
866
|
+
declare const CustomLineChart: React__default.FC<CustomLineChartProps>;
|
|
867
|
+
|
|
868
|
+
interface PieChartData {
|
|
869
|
+
name: string;
|
|
870
|
+
value: number;
|
|
871
|
+
[key: string]: string | number;
|
|
872
|
+
}
|
|
873
|
+
interface CustomPieChartProps {
|
|
874
|
+
data?: PieChartData[];
|
|
875
|
+
className?: string;
|
|
876
|
+
height?: number;
|
|
877
|
+
width?: number | string;
|
|
878
|
+
colors?: string[];
|
|
879
|
+
showTooltip?: boolean;
|
|
880
|
+
showLegend?: boolean;
|
|
881
|
+
showLabels?: boolean;
|
|
882
|
+
innerRadius?: number;
|
|
883
|
+
outerRadius?: number;
|
|
884
|
+
centerX?: string | number;
|
|
885
|
+
centerY?: string | number;
|
|
886
|
+
}
|
|
887
|
+
declare const CustomPieChart: React__default.FC<CustomPieChartProps>;
|
|
707
888
|
|
|
708
889
|
interface Props$4 {
|
|
709
890
|
processedData: Array<{
|
|
@@ -819,51 +1000,16 @@ interface Props {
|
|
|
819
1000
|
}
|
|
820
1001
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
821
1002
|
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
bottom: number;
|
|
833
|
-
}>;
|
|
834
|
-
type Margins = Partial<{
|
|
835
|
-
top: number;
|
|
836
|
-
right: number;
|
|
837
|
-
left: number;
|
|
838
|
-
bottom: number;
|
|
839
|
-
}>;
|
|
840
|
-
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
841
|
-
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
842
|
-
top: number;
|
|
843
|
-
right: number;
|
|
844
|
-
left: number;
|
|
845
|
-
bottom: number;
|
|
846
|
-
};
|
|
847
|
-
|
|
848
|
-
type Variant = "filled" | "outline" | "soft";
|
|
849
|
-
type LabelRendererProps = {
|
|
850
|
-
x?: number | string;
|
|
851
|
-
y?: number | string;
|
|
852
|
-
value?: number | string;
|
|
853
|
-
index?: number;
|
|
854
|
-
payload?: unknown;
|
|
855
|
-
width?: number | string;
|
|
856
|
-
height?: number | string;
|
|
857
|
-
viewBox?: {
|
|
858
|
-
x?: number;
|
|
859
|
-
y?: number;
|
|
860
|
-
width?: number;
|
|
861
|
-
height?: number;
|
|
862
|
-
} | Record<string, unknown> | undefined;
|
|
863
|
-
cx?: number | string;
|
|
864
|
-
cy?: number | string;
|
|
865
|
-
};
|
|
866
|
-
declare const renderPillLabel: (color: string, variant: Variant) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1003
|
+
interface UseChartHighlightsReturn {
|
|
1004
|
+
highlightedSeries: Set<string>;
|
|
1005
|
+
showOnlyHighlighted: boolean;
|
|
1006
|
+
toggleHighlight: (key: string) => void;
|
|
1007
|
+
setShowOnlyHighlighted: (show: boolean) => void;
|
|
1008
|
+
clearHighlights: () => void;
|
|
1009
|
+
getSeriesStyle: (key: string) => React.CSSProperties;
|
|
1010
|
+
isHighlighted: (key: string) => boolean;
|
|
1011
|
+
}
|
|
1012
|
+
declare const useChartHighlights: () => UseChartHighlightsReturn;
|
|
867
1013
|
|
|
868
1014
|
declare function useIsMobile(): boolean;
|
|
869
1015
|
|
|
@@ -884,4 +1030,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
884
1030
|
isDragging: boolean;
|
|
885
1031
|
};
|
|
886
1032
|
|
|
887
|
-
export { AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BadgeBase, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, CheckboxBase, CloseAllButton, 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, DateTimePicker, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, 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, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LoadingBase, type Margins, ModeToggleBase, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Padding, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, ScrollAreaBase, ScrollBarBase, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UseSideBarBase, badgeVariants, buttonVariantsBase, compactTick, detectDataFields, detectXAxis, formatFieldName, generateAdditionalColors, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, toast, useDrag, useIsMobile, useTheme };
|
|
1033
|
+
export { AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BadgeBase, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, Chart, CheckboxBase, CloseAllButton, 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, DateTimePicker, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, 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, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, CustomLineChart as LineChart, LoadingBase, type Margins, ModeToggleBase, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Padding, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, ScrollAreaBase, ScrollBarBase, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UseSideBarBase, badgeVariants, buttonVariantsBase, compactTick, detectDataFields, detectXAxis, formatFieldName, generateAdditionalColors, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, toast, useChartHighlights, useDrag, useIsMobile, useTheme };
|