@mlw-packages/react-components 1.7.5 → 1.7.7
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/README.md +3 -15
- package/dist/index.css +236 -166
- package/dist/index.d.mts +40 -27
- package/dist/index.d.ts +40 -27
- package/dist/index.js +758 -812
- package/dist/index.mjs +718 -772
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -483,16 +483,16 @@ declare const AvatarImageBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrim
|
|
|
483
483
|
declare const AvatarFallbackBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
484
484
|
|
|
485
485
|
declare const badgeVariants: (props?: ({
|
|
486
|
-
|
|
487
|
-
status?: "destructive" | "custom" | "success" | "desactivated" | "away" | null | undefined;
|
|
486
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
488
487
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
489
|
-
type
|
|
488
|
+
type BadgeColorType = "green" | "gray" | "red" | "yellow" | "blue" | "purple";
|
|
490
489
|
interface BadgeBaseProps extends React$1.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
491
490
|
asChild?: boolean;
|
|
492
|
-
|
|
493
|
-
|
|
491
|
+
color?: BadgeColorType;
|
|
492
|
+
size?: "sm" | "md" | "lg";
|
|
493
|
+
status?: string;
|
|
494
494
|
}
|
|
495
|
-
declare function
|
|
495
|
+
declare function Badge({ className, color, size, asChild, children, style, ...props }: BadgeBaseProps): react_jsx_runtime.JSX.Element;
|
|
496
496
|
|
|
497
497
|
type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
|
|
498
498
|
declare function CalendarBase({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
@@ -702,21 +702,9 @@ declare const CollapsibleTriggerBase: React$1.ForwardRefExoticComponent<Omit<Col
|
|
|
702
702
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
703
703
|
declare const CollapsibleContentBase: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
704
704
|
|
|
705
|
-
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
706
|
-
value: string;
|
|
707
|
-
onChange: (value: string) => void;
|
|
708
|
-
debounce?: number;
|
|
709
|
-
label?: string;
|
|
710
|
-
labelClassname?: string;
|
|
711
|
-
leftIcon?: React.ReactNode;
|
|
712
|
-
rightIcon?: React.ReactNode;
|
|
713
|
-
showLoadingIndicator?: boolean;
|
|
714
|
-
error?: string | undefined;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
705
|
declare function HoverCardBase(props: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
718
706
|
declare function HoverCardTriggerBase(props: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
719
|
-
declare
|
|
707
|
+
declare const HoverCardContentBase: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
720
708
|
|
|
721
709
|
declare function InputOTPBase({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
722
710
|
containerClassName?: string;
|
|
@@ -821,7 +809,7 @@ type CarouselProps = {
|
|
|
821
809
|
declare function CarouselBase({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
822
810
|
declare function CarouselContentBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
823
811
|
declare function CarouselItemBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
824
|
-
declare function
|
|
812
|
+
declare function CarouselPreviousBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
825
813
|
declare function CarouselNextBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
826
814
|
|
|
827
815
|
declare const ScrollAreaBase: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -840,8 +828,14 @@ declare const TableCaptionBase: React$1.ForwardRefExoticComponent<React$1.HTMLAt
|
|
|
840
828
|
|
|
841
829
|
declare const TabsBase: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
842
830
|
declare const TabsListBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
843
|
-
|
|
844
|
-
declare const
|
|
831
|
+
type TabsTriggerAnimation = "default" | "none" | "scale" | "underline" | string;
|
|
832
|
+
declare const TabsTriggerBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
833
|
+
animation?: TabsTriggerAnimation;
|
|
834
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
835
|
+
type TabsContentAnimation = "default" | "fade" | "slide" | "none" | string;
|
|
836
|
+
declare const TabsContentBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
837
|
+
animation?: TabsContentAnimation;
|
|
838
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
845
839
|
|
|
846
840
|
declare function BreadcrumbBase({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
847
841
|
declare function BreadcrumbListBase({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
@@ -1104,18 +1098,16 @@ interface DateTimePickerProps extends ErrorMessageProps {
|
|
|
1104
1098
|
label?: string;
|
|
1105
1099
|
date: Date | undefined;
|
|
1106
1100
|
onChange: (date: Date | undefined) => void;
|
|
1107
|
-
displayFormat?:
|
|
1101
|
+
displayFormat?: boolean;
|
|
1108
1102
|
hideTime?: boolean;
|
|
1109
1103
|
hideSeconds?: boolean;
|
|
1110
|
-
hideHour?: boolean;
|
|
1111
|
-
hideMinute?: boolean;
|
|
1112
1104
|
fromDate?: Date;
|
|
1113
1105
|
toDate?: Date;
|
|
1114
1106
|
disabled?: boolean;
|
|
1115
1107
|
className?: string;
|
|
1116
1108
|
error?: string;
|
|
1117
1109
|
}
|
|
1118
|
-
declare function DateTimePicker({ label, date, onChange, displayFormat, hideTime, hideSeconds,
|
|
1110
|
+
declare function DateTimePicker({ label, date, onChange, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
1119
1111
|
|
|
1120
1112
|
interface RangePickerProps extends ErrorMessageProps {
|
|
1121
1113
|
value?: DateRange;
|
|
@@ -1260,6 +1252,27 @@ type CodeBlockProps = {
|
|
|
1260
1252
|
});
|
|
1261
1253
|
declare const CodeBlock: ({ language, filename, code, highlightLines, tabs, breadcrumb, showStats, }: CodeBlockProps) => react_jsx_runtime.JSX.Element;
|
|
1262
1254
|
|
|
1255
|
+
interface StatusProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1256
|
+
color?: "green" | "gray" | "red" | "yellow" | "blue" | "purple" | "retire";
|
|
1257
|
+
size?: "xs" | "sm" | "md" | "lg";
|
|
1258
|
+
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "inline";
|
|
1259
|
+
show?: boolean;
|
|
1260
|
+
children?: React$1.ReactNode;
|
|
1261
|
+
}
|
|
1262
|
+
declare function StatusIndicator({ color, size, position, show, children, className, ...props }: StatusProps): react_jsx_runtime.JSX.Element;
|
|
1263
|
+
|
|
1264
|
+
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
1265
|
+
value: string;
|
|
1266
|
+
onChange: (value: string) => void;
|
|
1267
|
+
debounce?: number;
|
|
1268
|
+
label?: string;
|
|
1269
|
+
labelClassname?: string;
|
|
1270
|
+
leftIcon?: React.ReactNode;
|
|
1271
|
+
rightIcon?: React.ReactNode;
|
|
1272
|
+
showLoadingIndicator?: boolean;
|
|
1273
|
+
error?: string | undefined;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1263
1276
|
declare function useIsMobile(): boolean;
|
|
1264
1277
|
|
|
1265
1278
|
interface Position {
|
|
@@ -1279,4 +1292,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
1279
1292
|
isDragging: boolean;
|
|
1280
1293
|
};
|
|
1281
1294
|
|
|
1282
|
-
export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton,
|
|
1295
|
+
export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, 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, CarouselPreviousBase, ChangeButton, Chart, CheckButton, CheckboxBase, 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, type DebouncedInputProps, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, 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, EditButton, ErrorMessage, 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, 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, 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, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getArrowByType, getDateByType, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, toast, useChartHighlights, useDrag, useIsMobile, useTheme, type valueFormatter };
|
package/dist/index.d.ts
CHANGED
|
@@ -483,16 +483,16 @@ declare const AvatarImageBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrim
|
|
|
483
483
|
declare const AvatarFallbackBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
484
484
|
|
|
485
485
|
declare const badgeVariants: (props?: ({
|
|
486
|
-
|
|
487
|
-
status?: "destructive" | "custom" | "success" | "desactivated" | "away" | null | undefined;
|
|
486
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
488
487
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
489
|
-
type
|
|
488
|
+
type BadgeColorType = "green" | "gray" | "red" | "yellow" | "blue" | "purple";
|
|
490
489
|
interface BadgeBaseProps extends React$1.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
491
490
|
asChild?: boolean;
|
|
492
|
-
|
|
493
|
-
|
|
491
|
+
color?: BadgeColorType;
|
|
492
|
+
size?: "sm" | "md" | "lg";
|
|
493
|
+
status?: string;
|
|
494
494
|
}
|
|
495
|
-
declare function
|
|
495
|
+
declare function Badge({ className, color, size, asChild, children, style, ...props }: BadgeBaseProps): react_jsx_runtime.JSX.Element;
|
|
496
496
|
|
|
497
497
|
type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
|
|
498
498
|
declare function CalendarBase({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
@@ -702,21 +702,9 @@ declare const CollapsibleTriggerBase: React$1.ForwardRefExoticComponent<Omit<Col
|
|
|
702
702
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
703
703
|
declare const CollapsibleContentBase: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
704
704
|
|
|
705
|
-
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
706
|
-
value: string;
|
|
707
|
-
onChange: (value: string) => void;
|
|
708
|
-
debounce?: number;
|
|
709
|
-
label?: string;
|
|
710
|
-
labelClassname?: string;
|
|
711
|
-
leftIcon?: React.ReactNode;
|
|
712
|
-
rightIcon?: React.ReactNode;
|
|
713
|
-
showLoadingIndicator?: boolean;
|
|
714
|
-
error?: string | undefined;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
705
|
declare function HoverCardBase(props: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
718
706
|
declare function HoverCardTriggerBase(props: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
719
|
-
declare
|
|
707
|
+
declare const HoverCardContentBase: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
720
708
|
|
|
721
709
|
declare function InputOTPBase({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
722
710
|
containerClassName?: string;
|
|
@@ -821,7 +809,7 @@ type CarouselProps = {
|
|
|
821
809
|
declare function CarouselBase({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
822
810
|
declare function CarouselContentBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
823
811
|
declare function CarouselItemBase({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
824
|
-
declare function
|
|
812
|
+
declare function CarouselPreviousBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
825
813
|
declare function CarouselNextBase({ className, variant, size, ...props }: React$1.ComponentProps<typeof ButtonBase>): react_jsx_runtime.JSX.Element;
|
|
826
814
|
|
|
827
815
|
declare const ScrollAreaBase: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -840,8 +828,14 @@ declare const TableCaptionBase: React$1.ForwardRefExoticComponent<React$1.HTMLAt
|
|
|
840
828
|
|
|
841
829
|
declare const TabsBase: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
842
830
|
declare const TabsListBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
843
|
-
|
|
844
|
-
declare const
|
|
831
|
+
type TabsTriggerAnimation = "default" | "none" | "scale" | "underline" | string;
|
|
832
|
+
declare const TabsTriggerBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
833
|
+
animation?: TabsTriggerAnimation;
|
|
834
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
835
|
+
type TabsContentAnimation = "default" | "fade" | "slide" | "none" | string;
|
|
836
|
+
declare const TabsContentBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
837
|
+
animation?: TabsContentAnimation;
|
|
838
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
845
839
|
|
|
846
840
|
declare function BreadcrumbBase({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
847
841
|
declare function BreadcrumbListBase({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
@@ -1104,18 +1098,16 @@ interface DateTimePickerProps extends ErrorMessageProps {
|
|
|
1104
1098
|
label?: string;
|
|
1105
1099
|
date: Date | undefined;
|
|
1106
1100
|
onChange: (date: Date | undefined) => void;
|
|
1107
|
-
displayFormat?:
|
|
1101
|
+
displayFormat?: boolean;
|
|
1108
1102
|
hideTime?: boolean;
|
|
1109
1103
|
hideSeconds?: boolean;
|
|
1110
|
-
hideHour?: boolean;
|
|
1111
|
-
hideMinute?: boolean;
|
|
1112
1104
|
fromDate?: Date;
|
|
1113
1105
|
toDate?: Date;
|
|
1114
1106
|
disabled?: boolean;
|
|
1115
1107
|
className?: string;
|
|
1116
1108
|
error?: string;
|
|
1117
1109
|
}
|
|
1118
|
-
declare function DateTimePicker({ label, date, onChange, displayFormat, hideTime, hideSeconds,
|
|
1110
|
+
declare function DateTimePicker({ label, date, onChange, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
1119
1111
|
|
|
1120
1112
|
interface RangePickerProps extends ErrorMessageProps {
|
|
1121
1113
|
value?: DateRange;
|
|
@@ -1260,6 +1252,27 @@ type CodeBlockProps = {
|
|
|
1260
1252
|
});
|
|
1261
1253
|
declare const CodeBlock: ({ language, filename, code, highlightLines, tabs, breadcrumb, showStats, }: CodeBlockProps) => react_jsx_runtime.JSX.Element;
|
|
1262
1254
|
|
|
1255
|
+
interface StatusProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1256
|
+
color?: "green" | "gray" | "red" | "yellow" | "blue" | "purple" | "retire";
|
|
1257
|
+
size?: "xs" | "sm" | "md" | "lg";
|
|
1258
|
+
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "inline";
|
|
1259
|
+
show?: boolean;
|
|
1260
|
+
children?: React$1.ReactNode;
|
|
1261
|
+
}
|
|
1262
|
+
declare function StatusIndicator({ color, size, position, show, children, className, ...props }: StatusProps): react_jsx_runtime.JSX.Element;
|
|
1263
|
+
|
|
1264
|
+
interface DebouncedInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value">, ErrorMessageProps {
|
|
1265
|
+
value: string;
|
|
1266
|
+
onChange: (value: string) => void;
|
|
1267
|
+
debounce?: number;
|
|
1268
|
+
label?: string;
|
|
1269
|
+
labelClassname?: string;
|
|
1270
|
+
leftIcon?: React.ReactNode;
|
|
1271
|
+
rightIcon?: React.ReactNode;
|
|
1272
|
+
showLoadingIndicator?: boolean;
|
|
1273
|
+
error?: string | undefined;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1263
1276
|
declare function useIsMobile(): boolean;
|
|
1264
1277
|
|
|
1265
1278
|
interface Position {
|
|
@@ -1279,4 +1292,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
1279
1292
|
isDragging: boolean;
|
|
1280
1293
|
};
|
|
1281
1294
|
|
|
1282
|
-
export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton,
|
|
1295
|
+
export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, 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, CarouselPreviousBase, ChangeButton, Chart, CheckButton, CheckboxBase, 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, type DebouncedInputProps, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, 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, EditButton, ErrorMessage, 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, 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, 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, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getArrowByType, getDateByType, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, toast, useChartHighlights, useDrag, useIsMobile, useTheme, type valueFormatter };
|