@mlw-packages/react-components 1.5.7 → 1.5.9
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 +88 -38
- package/dist/index.d.mts +217 -55
- package/dist/index.d.ts +217 -55
- package/dist/index.js +2786 -483
- package/dist/index.mjs +2875 -525
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -376,10 +376,22 @@ type TestIdProps = {
|
|
|
376
376
|
};
|
|
377
377
|
declare const PopoverContentBase: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & TestIdProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
378
378
|
|
|
379
|
+
/**
|
|
380
|
+
* Tipos disponíveis de progresso
|
|
381
|
+
*/
|
|
382
|
+
type ProgressType = "bar" | "segments" | "panels" | "circles";
|
|
379
383
|
interface ProgressBaseProps extends React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
|
|
384
|
+
/** Tipo de visualização do progresso */
|
|
385
|
+
variant?: ProgressType;
|
|
380
386
|
label?: string;
|
|
381
387
|
leftIcon?: React$1.ReactNode;
|
|
382
388
|
rightIcon?: React$1.ReactNode;
|
|
389
|
+
/** Número de segmentos (usado quando variant="segments") */
|
|
390
|
+
segments?: number;
|
|
391
|
+
/** Array de etapas (usado quando variant="panels" ou "circles") */
|
|
392
|
+
steps?: string[];
|
|
393
|
+
/** Índice da etapa atual (usado quando variant="panels" ou "circles") */
|
|
394
|
+
currentStep?: number;
|
|
383
395
|
}
|
|
384
396
|
declare const ProgressBase: React$1.ForwardRefExoticComponent<ProgressBaseProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
385
397
|
interface ProgressSegmentsBaseProps {
|
|
@@ -550,7 +562,11 @@ declare const TabsListBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive
|
|
|
550
562
|
declare const TabsTriggerBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
551
563
|
declare const TabsContentBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
552
564
|
|
|
553
|
-
|
|
565
|
+
interface TextAreaBaseProps extends React$1.ComponentProps<"textarea"> {
|
|
566
|
+
clearable?: boolean;
|
|
567
|
+
onClear?: () => void;
|
|
568
|
+
}
|
|
569
|
+
declare const TextAreaBase: React$1.ForwardRefExoticComponent<Omit<TextAreaBaseProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
554
570
|
|
|
555
571
|
type Theme = "light" | "light-purple" | "light-green" | "light-blue" | "dark" | "dark-purple" | "dark-green" | "dark-blue" | "system";
|
|
556
572
|
type ThemeProviderProps = {
|
|
@@ -570,6 +586,16 @@ type ModeToggleBaseProps = {
|
|
|
570
586
|
};
|
|
571
587
|
declare function ModeToggleBase({ themes, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
572
588
|
|
|
589
|
+
interface DestructiveDialogProps {
|
|
590
|
+
title: string;
|
|
591
|
+
description: string;
|
|
592
|
+
onConfirm: () => void;
|
|
593
|
+
onCancel?: () => void;
|
|
594
|
+
children?: React$1.ReactNode;
|
|
595
|
+
triggerContent?: React$1.ReactNode;
|
|
596
|
+
}
|
|
597
|
+
declare const DestructiveDialog: React$1.FC<DestructiveDialogProps>;
|
|
598
|
+
|
|
573
599
|
interface DateTimePickerProps {
|
|
574
600
|
label?: string;
|
|
575
601
|
date: Date | undefined;
|
|
@@ -695,15 +721,186 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
|
|
|
695
721
|
type SelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
696
722
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, errorMessage, testIds, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
697
723
|
|
|
698
|
-
interface
|
|
699
|
-
|
|
700
|
-
description: string;
|
|
701
|
-
onConfirm: () => void;
|
|
702
|
-
onCancel?: () => void;
|
|
703
|
-
children?: React$1.ReactNode;
|
|
704
|
-
triggerContent?: React$1.ReactNode;
|
|
724
|
+
interface ChartData {
|
|
725
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
705
726
|
}
|
|
706
|
-
|
|
727
|
+
interface XAxisConfig$1 {
|
|
728
|
+
dataKey: string;
|
|
729
|
+
label?: string;
|
|
730
|
+
formatter?: (value: string | number) => string;
|
|
731
|
+
autoLabel?: boolean;
|
|
732
|
+
}
|
|
733
|
+
type SeriesProp = {
|
|
734
|
+
bar?: string[];
|
|
735
|
+
line?: string[];
|
|
736
|
+
area?: string[];
|
|
737
|
+
};
|
|
738
|
+
interface ChartProps {
|
|
739
|
+
data: ChartData[];
|
|
740
|
+
series?: SeriesProp;
|
|
741
|
+
className?: string;
|
|
742
|
+
chartMargin?: Partial<{
|
|
743
|
+
top: number;
|
|
744
|
+
right: number;
|
|
745
|
+
left: number;
|
|
746
|
+
bottom: number;
|
|
747
|
+
}>;
|
|
748
|
+
height?: number;
|
|
749
|
+
width?: number | string;
|
|
750
|
+
colors?: string[];
|
|
751
|
+
gridColor?: string;
|
|
752
|
+
showGrid?: boolean;
|
|
753
|
+
showTooltip?: boolean;
|
|
754
|
+
showLegend?: boolean;
|
|
755
|
+
title?: string;
|
|
756
|
+
titlePosition?: "left" | "center" | "right";
|
|
757
|
+
showLabels?: boolean;
|
|
758
|
+
labelMap?: Record<string, string>;
|
|
759
|
+
xAxis?: XAxisConfig$1 | string;
|
|
760
|
+
enableHighlights?: boolean;
|
|
761
|
+
enableShowOnly?: boolean;
|
|
762
|
+
enablePeriodsDropdown?: boolean;
|
|
763
|
+
enableDraggableTooltips?: boolean;
|
|
764
|
+
showTooltipTotal?: boolean;
|
|
765
|
+
maxTooltips?: number;
|
|
766
|
+
}
|
|
767
|
+
declare const Chart: React__default.FC<ChartProps>;
|
|
768
|
+
|
|
769
|
+
declare const formatFieldName: (fieldName: string) => string;
|
|
770
|
+
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
771
|
+
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
772
|
+
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
773
|
+
declare const niceCeil: (value: number) => number;
|
|
774
|
+
declare const compactTick: (value: number) => string;
|
|
775
|
+
type Padding = number | Partial<{
|
|
776
|
+
left: number;
|
|
777
|
+
right: number;
|
|
778
|
+
top: number;
|
|
779
|
+
bottom: number;
|
|
780
|
+
}>;
|
|
781
|
+
type Margins = Partial<{
|
|
782
|
+
top: number;
|
|
783
|
+
right: number;
|
|
784
|
+
left: number;
|
|
785
|
+
bottom: number;
|
|
786
|
+
}>;
|
|
787
|
+
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
788
|
+
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
789
|
+
top: number;
|
|
790
|
+
right: number;
|
|
791
|
+
left: number;
|
|
792
|
+
bottom: number;
|
|
793
|
+
};
|
|
794
|
+
|
|
795
|
+
type Variant = "filled" | "outline" | "soft";
|
|
796
|
+
type LabelRendererProps = {
|
|
797
|
+
x?: number | string;
|
|
798
|
+
y?: number | string;
|
|
799
|
+
value?: number | string;
|
|
800
|
+
index?: number;
|
|
801
|
+
payload?: unknown;
|
|
802
|
+
width?: number | string;
|
|
803
|
+
height?: number | string;
|
|
804
|
+
viewBox?: {
|
|
805
|
+
x?: number;
|
|
806
|
+
y?: number;
|
|
807
|
+
width?: number;
|
|
808
|
+
height?: number;
|
|
809
|
+
} | Record<string, unknown> | undefined;
|
|
810
|
+
cx?: number | string;
|
|
811
|
+
cy?: number | string;
|
|
812
|
+
};
|
|
813
|
+
declare const renderPillLabel: (color: string, variant: Variant) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
814
|
+
|
|
815
|
+
interface BarChartData {
|
|
816
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
817
|
+
}
|
|
818
|
+
interface XAxisConfig {
|
|
819
|
+
dataKey: string;
|
|
820
|
+
label?: string;
|
|
821
|
+
formatter?: (value: string | number) => string;
|
|
822
|
+
autoLabel?: boolean;
|
|
823
|
+
}
|
|
824
|
+
interface DataMapper {
|
|
825
|
+
[dataKey: string]: {
|
|
826
|
+
label?: string;
|
|
827
|
+
formatter?: (value: string | number) => string | number;
|
|
828
|
+
color?: string;
|
|
829
|
+
type?: "number" | "string" | "auto";
|
|
830
|
+
visible?: boolean;
|
|
831
|
+
};
|
|
832
|
+
}
|
|
833
|
+
interface BarChartProps {
|
|
834
|
+
data: BarChartData[];
|
|
835
|
+
className?: string;
|
|
836
|
+
padding?: Padding;
|
|
837
|
+
margins?: Margins;
|
|
838
|
+
containerPaddingLeft?: number;
|
|
839
|
+
chartMargins?: Margins;
|
|
840
|
+
height?: number;
|
|
841
|
+
width?: number | string;
|
|
842
|
+
colors?: string[];
|
|
843
|
+
gridColor?: string;
|
|
844
|
+
showGrid?: boolean;
|
|
845
|
+
showTooltip?: boolean;
|
|
846
|
+
showLegend?: boolean;
|
|
847
|
+
title?: string;
|
|
848
|
+
titlePosition?: "left" | "center" | "right";
|
|
849
|
+
showLabels?: boolean;
|
|
850
|
+
labelMap?: Record<string, string>;
|
|
851
|
+
xAxis?: XAxisConfig | string;
|
|
852
|
+
mapper?: DataMapper | string[];
|
|
853
|
+
yAxis?: DataMapper | string[];
|
|
854
|
+
autoDetect?: boolean;
|
|
855
|
+
}
|
|
856
|
+
declare const BarChart: React__default.FC<BarChartProps>;
|
|
857
|
+
|
|
858
|
+
interface LineChartData {
|
|
859
|
+
name: string;
|
|
860
|
+
[key: string]: string | number;
|
|
861
|
+
}
|
|
862
|
+
interface CustomLineChartProps {
|
|
863
|
+
data?: LineChartData[];
|
|
864
|
+
className?: string;
|
|
865
|
+
padding?: Padding;
|
|
866
|
+
margins?: Margins;
|
|
867
|
+
containerPaddingLeft?: number;
|
|
868
|
+
chartMargins?: Margins;
|
|
869
|
+
height?: number;
|
|
870
|
+
width?: number | string;
|
|
871
|
+
colors?: string[];
|
|
872
|
+
gridColor?: string;
|
|
873
|
+
showGrid?: boolean;
|
|
874
|
+
showTooltip?: boolean;
|
|
875
|
+
showLegend?: boolean;
|
|
876
|
+
title?: string;
|
|
877
|
+
titlePosition?: "left" | "center" | "right";
|
|
878
|
+
strokeWidth?: number;
|
|
879
|
+
showDots?: boolean;
|
|
880
|
+
showLabels?: boolean;
|
|
881
|
+
}
|
|
882
|
+
declare const CustomLineChart: React__default.FC<CustomLineChartProps>;
|
|
883
|
+
|
|
884
|
+
interface PieChartData {
|
|
885
|
+
name: string;
|
|
886
|
+
value: number;
|
|
887
|
+
[key: string]: string | number;
|
|
888
|
+
}
|
|
889
|
+
interface CustomPieChartProps {
|
|
890
|
+
data?: PieChartData[];
|
|
891
|
+
className?: string;
|
|
892
|
+
height?: number;
|
|
893
|
+
width?: number | string;
|
|
894
|
+
colors?: string[];
|
|
895
|
+
showTooltip?: boolean;
|
|
896
|
+
showLegend?: boolean;
|
|
897
|
+
showLabels?: boolean;
|
|
898
|
+
innerRadius?: number;
|
|
899
|
+
outerRadius?: number;
|
|
900
|
+
centerX?: string | number;
|
|
901
|
+
centerY?: string | number;
|
|
902
|
+
}
|
|
903
|
+
declare const CustomPieChart: React__default.FC<CustomPieChartProps>;
|
|
707
904
|
|
|
708
905
|
interface Props$4 {
|
|
709
906
|
processedData: Array<{
|
|
@@ -819,51 +1016,16 @@ interface Props {
|
|
|
819
1016
|
}
|
|
820
1017
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
821
1018
|
|
|
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;
|
|
1019
|
+
interface UseChartHighlightsReturn {
|
|
1020
|
+
highlightedSeries: Set<string>;
|
|
1021
|
+
showOnlyHighlighted: boolean;
|
|
1022
|
+
toggleHighlight: (key: string) => void;
|
|
1023
|
+
setShowOnlyHighlighted: (show: boolean) => void;
|
|
1024
|
+
clearHighlights: () => void;
|
|
1025
|
+
getSeriesStyle: (key: string) => React.CSSProperties;
|
|
1026
|
+
isHighlighted: (key: string) => boolean;
|
|
1027
|
+
}
|
|
1028
|
+
declare const useChartHighlights: () => UseChartHighlightsReturn;
|
|
867
1029
|
|
|
868
1030
|
declare function useIsMobile(): boolean;
|
|
869
1031
|
|
|
@@ -884,4 +1046,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
884
1046
|
isDragging: boolean;
|
|
885
1047
|
};
|
|
886
1048
|
|
|
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 };
|
|
1049
|
+
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, type ProgressType, 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 TextAreaBaseProps, 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 };
|