@mlw-packages/react-components 1.5.6 → 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.css +382 -56
- package/dist/index.d.mts +273 -66
- package/dist/index.d.ts +273 -66
- package/dist/index.js +3388 -2521
- package/dist/index.mjs +3435 -2549
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -347,6 +347,16 @@ declare const LabelBase: React$1.ForwardRefExoticComponent<Omit<React$1.Detailed
|
|
|
347
347
|
testid?: string;
|
|
348
348
|
} & React$1.RefAttributes<HTMLLabelElement>>;
|
|
349
349
|
|
|
350
|
+
declare const loadingVariants: (props?: ({
|
|
351
|
+
size?: "sm" | "lg" | "md" | "xl" | null | undefined;
|
|
352
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
353
|
+
interface LoadingBaseProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof loadingVariants> {
|
|
354
|
+
message?: string;
|
|
355
|
+
overlay?: boolean;
|
|
356
|
+
variant?: "spinner" | "dots";
|
|
357
|
+
}
|
|
358
|
+
declare const LoadingBase: React$1.ForwardRefExoticComponent<LoadingBaseProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
359
|
+
|
|
350
360
|
declare function NavigationMenuBase({ className, children, viewport, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
|
|
351
361
|
viewport?: boolean;
|
|
352
362
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -560,35 +570,55 @@ type ModeToggleBaseProps = {
|
|
|
560
570
|
};
|
|
561
571
|
declare function ModeToggleBase({ themes, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
562
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
|
+
|
|
563
583
|
interface DateTimePickerProps {
|
|
564
584
|
label?: string;
|
|
565
585
|
date: Date | undefined;
|
|
566
586
|
onChange: (date: Date | undefined) => void;
|
|
567
587
|
hideSeconds?: boolean;
|
|
588
|
+
hideHour?: boolean;
|
|
589
|
+
hideMinute?: boolean;
|
|
568
590
|
fromDate?: Date;
|
|
569
591
|
toDate?: Date;
|
|
570
592
|
disabled?: boolean;
|
|
571
|
-
|
|
593
|
+
className?: string;
|
|
572
594
|
}
|
|
573
|
-
declare function DateTimePicker({ label, date, onChange, hideSeconds, fromDate, toDate, disabled,
|
|
595
|
+
declare function DateTimePicker({ label, date, onChange, hideSeconds, hideHour, hideMinute, fromDate, toDate, disabled, className, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
574
596
|
|
|
575
597
|
interface TimePickerProps {
|
|
576
598
|
date: Date | undefined;
|
|
577
599
|
setDate: (date: Date | undefined) => void;
|
|
578
600
|
hideSeconds?: boolean;
|
|
601
|
+
enableButton?: boolean;
|
|
579
602
|
}
|
|
580
|
-
declare function TimePicker({ date, setDate, hideSeconds }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
603
|
+
declare function TimePicker({ date, setDate, hideSeconds, enableButton, }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
581
604
|
|
|
582
605
|
type TimePickerType = "minutes" | "seconds" | "hours" | "12hours";
|
|
583
606
|
type Period = "AM" | "PM";
|
|
584
607
|
|
|
585
|
-
interface TimePickerInputProps extends React__default.InputHTMLAttributes<HTMLInputElement> {
|
|
608
|
+
interface TimePickerInputProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "size"> {
|
|
586
609
|
picker: TimePickerType;
|
|
587
610
|
date: Date | undefined;
|
|
588
611
|
setDate: (date: Date | undefined) => void;
|
|
589
612
|
period?: Period;
|
|
590
613
|
onRightFocus?: () => void;
|
|
591
614
|
onLeftFocus?: () => void;
|
|
615
|
+
showArrows?: boolean;
|
|
616
|
+
label?: string;
|
|
617
|
+
error?: boolean;
|
|
618
|
+
inputSize?: "sm" | "md" | "lg";
|
|
619
|
+
enableButton?: boolean;
|
|
620
|
+
buttonText?: string;
|
|
621
|
+
buttonIcon?: React__default.ReactNode;
|
|
592
622
|
}
|
|
593
623
|
declare const TimePickerInput: React__default.ForwardRefExoticComponent<TimePickerInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
594
624
|
|
|
@@ -675,23 +705,30 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
|
|
|
675
705
|
type SelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
676
706
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, errorMessage, testIds, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
677
707
|
|
|
678
|
-
interface
|
|
679
|
-
|
|
680
|
-
description: string;
|
|
681
|
-
onConfirm: () => void;
|
|
682
|
-
onCancel?: () => void;
|
|
683
|
-
children?: React$1.ReactNode;
|
|
684
|
-
triggerContent?: React$1.ReactNode;
|
|
708
|
+
interface ChartData {
|
|
709
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
685
710
|
}
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
711
|
+
interface XAxisConfig$1 {
|
|
712
|
+
dataKey: string;
|
|
713
|
+
label?: string;
|
|
714
|
+
formatter?: (value: string | number) => string;
|
|
715
|
+
autoLabel?: boolean;
|
|
691
716
|
}
|
|
692
|
-
|
|
693
|
-
|
|
717
|
+
type SeriesProp = {
|
|
718
|
+
bar?: string[];
|
|
719
|
+
line?: string[];
|
|
720
|
+
area?: string[];
|
|
721
|
+
};
|
|
722
|
+
interface ChartProps {
|
|
723
|
+
data: ChartData[];
|
|
724
|
+
series?: SeriesProp;
|
|
694
725
|
className?: string;
|
|
726
|
+
chartMargin?: Partial<{
|
|
727
|
+
top: number;
|
|
728
|
+
right: number;
|
|
729
|
+
left: number;
|
|
730
|
+
bottom: number;
|
|
731
|
+
}>;
|
|
695
732
|
height?: number;
|
|
696
733
|
width?: number | string;
|
|
697
734
|
colors?: string[];
|
|
@@ -701,37 +738,68 @@ interface CustomLineChartProps {
|
|
|
701
738
|
showLegend?: boolean;
|
|
702
739
|
title?: string;
|
|
703
740
|
titlePosition?: "left" | "center" | "right";
|
|
704
|
-
strokeWidth?: number;
|
|
705
|
-
showDots?: boolean;
|
|
706
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;
|
|
707
750
|
}
|
|
708
|
-
declare const
|
|
751
|
+
declare const Chart: React__default.FC<ChartProps>;
|
|
709
752
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
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;
|
|
719
786
|
width?: number | string;
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
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;
|
|
730
798
|
|
|
731
799
|
interface BarChartData {
|
|
732
800
|
[key: string]: string | number | boolean | null | undefined;
|
|
733
801
|
}
|
|
734
|
-
interface XAxisConfig
|
|
802
|
+
interface XAxisConfig {
|
|
735
803
|
dataKey: string;
|
|
736
804
|
label?: string;
|
|
737
805
|
formatter?: (value: string | number) => string;
|
|
@@ -749,6 +817,10 @@ interface DataMapper {
|
|
|
749
817
|
interface BarChartProps {
|
|
750
818
|
data: BarChartData[];
|
|
751
819
|
className?: string;
|
|
820
|
+
padding?: Padding;
|
|
821
|
+
margins?: Margins;
|
|
822
|
+
containerPaddingLeft?: number;
|
|
823
|
+
chartMargins?: Margins;
|
|
752
824
|
height?: number;
|
|
753
825
|
width?: number | string;
|
|
754
826
|
colors?: string[];
|
|
@@ -760,31 +832,24 @@ interface BarChartProps {
|
|
|
760
832
|
titlePosition?: "left" | "center" | "right";
|
|
761
833
|
showLabels?: boolean;
|
|
762
834
|
labelMap?: Record<string, string>;
|
|
763
|
-
xAxis?: XAxisConfig
|
|
835
|
+
xAxis?: XAxisConfig | string;
|
|
764
836
|
mapper?: DataMapper | string[];
|
|
765
837
|
yAxis?: DataMapper | string[];
|
|
766
838
|
autoDetect?: boolean;
|
|
767
839
|
}
|
|
768
840
|
declare const BarChart: React__default.FC<BarChartProps>;
|
|
769
841
|
|
|
770
|
-
interface
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
interface XAxisConfig {
|
|
774
|
-
dataKey: string;
|
|
775
|
-
label?: string;
|
|
776
|
-
formatter?: (value: string | number) => string;
|
|
777
|
-
autoLabel?: boolean;
|
|
842
|
+
interface LineChartData {
|
|
843
|
+
name: string;
|
|
844
|
+
[key: string]: string | number;
|
|
778
845
|
}
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
line?: string[];
|
|
782
|
-
area?: string[];
|
|
783
|
-
};
|
|
784
|
-
interface ChartProps {
|
|
785
|
-
data: ChartData[];
|
|
786
|
-
series?: SeriesProp;
|
|
846
|
+
interface CustomLineChartProps {
|
|
847
|
+
data?: LineChartData[];
|
|
787
848
|
className?: string;
|
|
849
|
+
padding?: Padding;
|
|
850
|
+
margins?: Margins;
|
|
851
|
+
containerPaddingLeft?: number;
|
|
852
|
+
chartMargins?: Margins;
|
|
788
853
|
height?: number;
|
|
789
854
|
width?: number | string;
|
|
790
855
|
colors?: string[];
|
|
@@ -794,15 +859,157 @@ interface ChartProps {
|
|
|
794
859
|
showLegend?: boolean;
|
|
795
860
|
title?: string;
|
|
796
861
|
titlePosition?: "left" | "center" | "right";
|
|
862
|
+
strokeWidth?: number;
|
|
863
|
+
showDots?: boolean;
|
|
797
864
|
showLabels?: boolean;
|
|
798
|
-
labelMap?: Record<string, string>;
|
|
799
|
-
xAxis: XAxisConfig | string;
|
|
800
|
-
enableHighlights?: boolean;
|
|
801
|
-
enableShowOnly?: boolean;
|
|
802
|
-
enablePeriodsDropdown?: boolean;
|
|
803
|
-
enableDraggableTooltips?: boolean;
|
|
804
865
|
}
|
|
805
|
-
declare const
|
|
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>;
|
|
888
|
+
|
|
889
|
+
interface Props$4 {
|
|
890
|
+
processedData: Array<{
|
|
891
|
+
name: string;
|
|
892
|
+
}>;
|
|
893
|
+
onOpenPeriod: (periodName: string) => void;
|
|
894
|
+
rightOffset?: number;
|
|
895
|
+
topOffset?: number;
|
|
896
|
+
activePeriod?: string;
|
|
897
|
+
activePeriods?: string[];
|
|
898
|
+
}
|
|
899
|
+
declare function PeriodsDropdown({ processedData, onOpenPeriod, rightOffset, topOffset, activePeriod, activePeriods, }: Props$4): react_jsx_runtime.JSX.Element;
|
|
900
|
+
|
|
901
|
+
interface Props$3 {
|
|
902
|
+
showOnlyHighlighted: boolean;
|
|
903
|
+
setShowOnlyHighlighted: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
|
904
|
+
highlightedSeriesSize: number;
|
|
905
|
+
clearHighlights: () => void;
|
|
906
|
+
}
|
|
907
|
+
/**
|
|
908
|
+
* ShowOnly
|
|
909
|
+
* - Botão principal alterna entre mostrar somente os itens destacados ou mostrar todos
|
|
910
|
+
* - Botão secundário limpa os destaques quando houver algum
|
|
911
|
+
* - Acessibilidade: aria-pressed, aria-labels e estados desabilitados
|
|
912
|
+
*/
|
|
913
|
+
declare const ShowOnly: React__default.FC<Props$3>;
|
|
914
|
+
|
|
915
|
+
interface MapperEntry {
|
|
916
|
+
label?: string;
|
|
917
|
+
formatter?: (value: string | number) => string | number;
|
|
918
|
+
color?: string;
|
|
919
|
+
type?: string;
|
|
920
|
+
visible?: boolean;
|
|
921
|
+
}
|
|
922
|
+
interface Props$2 {
|
|
923
|
+
allKeys: string[];
|
|
924
|
+
mapperConfig: Record<string, MapperEntry>;
|
|
925
|
+
finalColors: Record<string, string>;
|
|
926
|
+
highlightedSeries: Set<string>;
|
|
927
|
+
toggleHighlight: (key: string) => void;
|
|
928
|
+
containerWidth?: number;
|
|
929
|
+
}
|
|
930
|
+
declare const Highlights: React__default.FC<Props$2>;
|
|
931
|
+
|
|
932
|
+
interface CloseAllButtonProps {
|
|
933
|
+
count: number;
|
|
934
|
+
onCloseAll: () => void;
|
|
935
|
+
position?: "top-left" | "top-right" | "top-center";
|
|
936
|
+
variant?: "floating" | "inline";
|
|
937
|
+
}
|
|
938
|
+
declare const CloseAllButton: React__default.FC<CloseAllButtonProps>;
|
|
939
|
+
|
|
940
|
+
interface TooltipData {
|
|
941
|
+
name: string;
|
|
942
|
+
[key: string]: string | number;
|
|
943
|
+
}
|
|
944
|
+
interface Position$1 {
|
|
945
|
+
top: number;
|
|
946
|
+
left: number;
|
|
947
|
+
}
|
|
948
|
+
interface DraggableTooltipProps {
|
|
949
|
+
id: string;
|
|
950
|
+
data: TooltipData;
|
|
951
|
+
position: Position$1;
|
|
952
|
+
isDragging?: boolean;
|
|
953
|
+
title?: string;
|
|
954
|
+
dataKeys: string[];
|
|
955
|
+
finalColors: Record<string, string>;
|
|
956
|
+
onMouseDown?: (id: string, e: React__default.MouseEvent) => void;
|
|
957
|
+
onClose: (id: string) => void;
|
|
958
|
+
periodLabel?: string;
|
|
959
|
+
dataLabel?: string;
|
|
960
|
+
showCloseAllButton?: boolean;
|
|
961
|
+
globalTooltipCount?: number;
|
|
962
|
+
onCloseAll?: () => void;
|
|
963
|
+
closeAllButtonPosition?: "top-left" | "top-right" | "top-center";
|
|
964
|
+
closeAllButtonVariant?: "floating" | "inline";
|
|
965
|
+
onPositionChange?: (id: string, position: Position$1) => void;
|
|
966
|
+
highlightedSeries?: Set<string>;
|
|
967
|
+
toggleHighlight?: (key: string) => void;
|
|
968
|
+
showOnlyHighlighted?: boolean;
|
|
969
|
+
}
|
|
970
|
+
declare const DraggableTooltip: React__default.NamedExoticComponent<DraggableTooltipProps>;
|
|
971
|
+
|
|
972
|
+
type TooltipPayloadItem$1 = {
|
|
973
|
+
dataKey: string;
|
|
974
|
+
value: number;
|
|
975
|
+
name: string;
|
|
976
|
+
color?: string;
|
|
977
|
+
};
|
|
978
|
+
interface Props$1 {
|
|
979
|
+
active?: boolean;
|
|
980
|
+
payload?: TooltipPayloadItem$1[];
|
|
981
|
+
label?: string;
|
|
982
|
+
finalColors?: Record<string, string>;
|
|
983
|
+
periodLabel?: string;
|
|
984
|
+
totalLabel?: string;
|
|
985
|
+
}
|
|
986
|
+
declare const RechartTooltipWithTotal: React__default.FC<Props$1>;
|
|
987
|
+
|
|
988
|
+
type TooltipPayloadItem = {
|
|
989
|
+
dataKey: string;
|
|
990
|
+
value: number;
|
|
991
|
+
name: string;
|
|
992
|
+
color?: string;
|
|
993
|
+
};
|
|
994
|
+
interface Props {
|
|
995
|
+
active?: boolean;
|
|
996
|
+
payload?: TooltipPayloadItem[];
|
|
997
|
+
label?: string;
|
|
998
|
+
finalColors?: Record<string, string>;
|
|
999
|
+
periodLabel?: string;
|
|
1000
|
+
}
|
|
1001
|
+
declare const TooltipSimple: React__default.FC<Props>;
|
|
1002
|
+
|
|
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;
|
|
806
1013
|
|
|
807
1014
|
declare function useIsMobile(): boolean;
|
|
808
1015
|
|
|
@@ -823,4 +1030,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
823
1030
|
isDragging: boolean;
|
|
824
1031
|
};
|
|
825
1032
|
|
|
826
|
-
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, 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, 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, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, CustomLineChart as LineChart, ModeToggleBase, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, 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, 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, TooltipTriggerBase, UseSideBarBase, badgeVariants, buttonVariantsBase, 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 };
|