@mdigital_ui/ui 0.2.8 → 0.2.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.d.ts +184 -2
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,8 @@ import React__default, { ReactNode } from 'react';
|
|
|
6
6
|
import { SwiperProps } from 'swiper/react';
|
|
7
7
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
8
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
9
|
-
import { ColumnDef, Row } from '@tanstack/react-table';
|
|
9
|
+
import { ColumnDef, Row, Header } from '@tanstack/react-table';
|
|
10
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
10
11
|
import { Command as Command$1 } from 'cmdk';
|
|
11
12
|
import * as vaul from 'vaul';
|
|
12
13
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
@@ -1982,7 +1983,28 @@ interface ContextMenuProps {
|
|
|
1982
1983
|
/** Controlled open state */
|
|
1983
1984
|
open?: boolean;
|
|
1984
1985
|
}
|
|
1986
|
+
/**
|
|
1987
|
+
* ContextMenuContent component props
|
|
1988
|
+
*/
|
|
1989
|
+
interface ContextMenuContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
1990
|
+
/** Menu items */
|
|
1991
|
+
items: ContextMenuItem[];
|
|
1992
|
+
setKeyUpHandlers?: (handlers: Record<string, () => void>) => void;
|
|
1993
|
+
/** Handler called when menu closes */
|
|
1994
|
+
onClose: () => void;
|
|
1995
|
+
/** Nesting level (for styling) */
|
|
1996
|
+
level?: number;
|
|
1997
|
+
/** ClassNames for component parts */
|
|
1998
|
+
classNames?: ContextMenuClassNames;
|
|
1999
|
+
}
|
|
1985
2000
|
|
|
2001
|
+
/**
|
|
2002
|
+
* Context menu content component
|
|
2003
|
+
*/
|
|
2004
|
+
declare const ContextMenuContent: {
|
|
2005
|
+
({ items, onClose, level, className, classNames, style, setKeyUpHandlers, ...props }: ContextMenuContentProps): react_jsx_runtime.JSX.Element;
|
|
2006
|
+
displayName: string;
|
|
2007
|
+
};
|
|
1986
2008
|
/**
|
|
1987
2009
|
* ContextMenu component based on Popover
|
|
1988
2010
|
*
|
|
@@ -2734,6 +2756,37 @@ interface ComposedModalProps {
|
|
|
2734
2756
|
}
|
|
2735
2757
|
|
|
2736
2758
|
declare function Modal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
2759
|
+
declare function ModalTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
2760
|
+
declare function ModalPortal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
2761
|
+
declare function ModalClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
2762
|
+
declare function ModalOverlay({ className, opacity, classNames, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Overlay> & {
|
|
2763
|
+
opacity?: 'light' | 'medium' | 'heavy';
|
|
2764
|
+
classNames?: ModalClassNames;
|
|
2765
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2766
|
+
declare function ModalContent({ className, children, showCloseButton, size, color, centered, classNames, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
2767
|
+
showCloseButton?: boolean;
|
|
2768
|
+
size?: ModalSize;
|
|
2769
|
+
color?: ModalColor;
|
|
2770
|
+
centered?: boolean;
|
|
2771
|
+
classNames?: ModalClassNames;
|
|
2772
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2773
|
+
declare const ModalHeader: React$1.NamedExoticComponent<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2774
|
+
size?: ModalSize;
|
|
2775
|
+
color?: ModalColor;
|
|
2776
|
+
classNames?: ModalClassNames;
|
|
2777
|
+
}>;
|
|
2778
|
+
declare const ModalFooter: React$1.NamedExoticComponent<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2779
|
+
size?: ModalSize;
|
|
2780
|
+
classNames?: ModalClassNames;
|
|
2781
|
+
}>;
|
|
2782
|
+
declare const ModalTitle: React$1.NamedExoticComponent<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement> & {
|
|
2783
|
+
size?: ModalSize;
|
|
2784
|
+
classNames?: ModalClassNames;
|
|
2785
|
+
}>;
|
|
2786
|
+
declare const ModalDescription: React$1.NamedExoticComponent<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement> & {
|
|
2787
|
+
size?: ModalSize;
|
|
2788
|
+
classNames?: ModalClassNames;
|
|
2789
|
+
}>;
|
|
2737
2790
|
declare function ComposedModal({ open, onOpenChange, title, description, children, footer, size, color, centered, showCloseButton, hideHeader, hideFooter, className, contentClassName, classNames, }: ComposedModalProps): react_jsx_runtime.JSX.Element;
|
|
2738
2791
|
|
|
2739
2792
|
type MultiSelectSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -3629,6 +3682,84 @@ interface TableProps<TData> {
|
|
|
3629
3682
|
classNames?: TableClassNames;
|
|
3630
3683
|
}
|
|
3631
3684
|
|
|
3685
|
+
interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
|
|
3686
|
+
size?: TableSize;
|
|
3687
|
+
bordered?: boolean;
|
|
3688
|
+
fixed?: 'left' | 'right';
|
|
3689
|
+
}
|
|
3690
|
+
declare const TableCell: {
|
|
3691
|
+
({ size, bordered, fixed, className, children, ...props }: TableCellProps): react_jsx_runtime.JSX.Element;
|
|
3692
|
+
displayName: string;
|
|
3693
|
+
};
|
|
3694
|
+
|
|
3695
|
+
interface TableHeaderCellProps<TData> extends React.ThHTMLAttributes<HTMLTableCellElement> {
|
|
3696
|
+
header: Header<TData, unknown>;
|
|
3697
|
+
size?: TableSize;
|
|
3698
|
+
variant?: TableVariant;
|
|
3699
|
+
color?: TableColor;
|
|
3700
|
+
bordered?: boolean;
|
|
3701
|
+
enableColumnPinning?: boolean;
|
|
3702
|
+
}
|
|
3703
|
+
declare function TableHeaderCell<TData>({ header, size, variant, color, bordered, enableColumnPinning, className, ...props }: TableHeaderCellProps<TData>): react_jsx_runtime.JSX.Element;
|
|
3704
|
+
declare namespace TableHeaderCell {
|
|
3705
|
+
var displayName: string;
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
interface TableRowProps<TData> extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
3709
|
+
row: Row<TData>;
|
|
3710
|
+
index: number;
|
|
3711
|
+
striped?: boolean;
|
|
3712
|
+
hoverable?: boolean;
|
|
3713
|
+
onRowClick?: (row: TData) => void;
|
|
3714
|
+
isPinned?: boolean;
|
|
3715
|
+
isExpanded?: boolean;
|
|
3716
|
+
}
|
|
3717
|
+
declare function TableRow<TData>({ row, index, striped, hoverable, onRowClick, isPinned, isExpanded, className, children, ...props }: TableRowProps<TData>): react_jsx_runtime.JSX.Element;
|
|
3718
|
+
declare namespace TableRow {
|
|
3719
|
+
var displayName: string;
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3722
|
+
interface TableSkeletonProps {
|
|
3723
|
+
rows?: number;
|
|
3724
|
+
columns: number;
|
|
3725
|
+
size?: TableSize;
|
|
3726
|
+
className?: string;
|
|
3727
|
+
}
|
|
3728
|
+
declare const TableSkeleton: {
|
|
3729
|
+
({ rows, columns, size, className, }: TableSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
3730
|
+
displayName: string;
|
|
3731
|
+
};
|
|
3732
|
+
|
|
3733
|
+
interface TableActionsProps {
|
|
3734
|
+
searchValue: string;
|
|
3735
|
+
onSearchChange: (value: string) => void;
|
|
3736
|
+
visibleColumns: string[];
|
|
3737
|
+
allColumns: Array<{
|
|
3738
|
+
id: string;
|
|
3739
|
+
label: string;
|
|
3740
|
+
}>;
|
|
3741
|
+
onVisibleColumnsChange: (columns: string[]) => void;
|
|
3742
|
+
size: TableSize;
|
|
3743
|
+
onSizeChange: (size: TableSize) => void;
|
|
3744
|
+
color?: TableColor;
|
|
3745
|
+
className?: string;
|
|
3746
|
+
}
|
|
3747
|
+
declare function TableActions({ searchValue, onSearchChange, visibleColumns, allColumns, onVisibleColumnsChange, size, onSizeChange, color, className, }: TableActionsProps): react_jsx_runtime.JSX.Element;
|
|
3748
|
+
declare namespace TableActions {
|
|
3749
|
+
var displayName: string;
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
interface EditableCellProps<TValue = unknown> {
|
|
3753
|
+
value: TValue;
|
|
3754
|
+
onValueChange: (value: TValue) => void;
|
|
3755
|
+
size?: TableSize;
|
|
3756
|
+
className?: string;
|
|
3757
|
+
}
|
|
3758
|
+
declare function EditableCell<TValue = unknown>({ value, onValueChange, size, className, }: EditableCellProps<TValue>): react_jsx_runtime.JSX.Element;
|
|
3759
|
+
declare namespace EditableCell {
|
|
3760
|
+
var displayName: string;
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3632
3763
|
declare function Table<TData>({ data, columns, columnGroups, caption, showCaption, 'aria-label': ariaLabel, variant, size: initialSize, color, striped, hoverable, bordered, enableSorting, enableFiltering, enablePagination, enableRowSelection, enableMultiRowSelection, enableRowPinning, enableExpandable, enableGrouping, enableVirtualization, enableClickToSelect, enableColumnPinning, enableActions, paginationPosition, expandedContent, footer, emptyState, loading, loadingRows, pageSize, pageSizeOptions, onRowClick, onSelectionChange, onCellEdit, pinnedRowIds, onPinnedRowsChange, className, classNames, }: TableProps<TData>): react_jsx_runtime.JSX.Element;
|
|
3633
3764
|
declare namespace Table {
|
|
3634
3765
|
var displayName: string;
|
|
@@ -4081,6 +4212,8 @@ interface TooltipProps {
|
|
|
4081
4212
|
classNames?: TooltipClassNames;
|
|
4082
4213
|
}
|
|
4083
4214
|
|
|
4215
|
+
declare const TooltipProvider: React__default.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
4216
|
+
|
|
4084
4217
|
declare const Tooltip: React__default.NamedExoticComponent<TooltipProps>;
|
|
4085
4218
|
|
|
4086
4219
|
type TreeSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -4516,6 +4649,36 @@ interface ComposedChartProps extends CartesianChartProps {
|
|
|
4516
4649
|
type?: 'composed';
|
|
4517
4650
|
}
|
|
4518
4651
|
|
|
4652
|
+
declare const chartContainerVariants: (props?: ({
|
|
4653
|
+
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
4654
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4655
|
+
declare const getChartColor: (index: number) => string | undefined;
|
|
4656
|
+
declare const tooltipStyle: {
|
|
4657
|
+
backgroundColor: string;
|
|
4658
|
+
border: string;
|
|
4659
|
+
borderRadius: string;
|
|
4660
|
+
fontSize: string;
|
|
4661
|
+
boxShadow: string;
|
|
4662
|
+
};
|
|
4663
|
+
declare const legendStyle: {
|
|
4664
|
+
fontSize: string;
|
|
4665
|
+
};
|
|
4666
|
+
declare const axisTickStyle: {
|
|
4667
|
+
fontSize: string;
|
|
4668
|
+
fill: string;
|
|
4669
|
+
};
|
|
4670
|
+
declare const axisLineStyle: {
|
|
4671
|
+
stroke: string;
|
|
4672
|
+
};
|
|
4673
|
+
declare const gridStyle: {
|
|
4674
|
+
stroke: string;
|
|
4675
|
+
opacity: number;
|
|
4676
|
+
};
|
|
4677
|
+
declare const cursorStyle: {
|
|
4678
|
+
fill: string;
|
|
4679
|
+
opacity: number;
|
|
4680
|
+
};
|
|
4681
|
+
|
|
4519
4682
|
declare const LineChart: React__default.NamedExoticComponent<LineChartProps>;
|
|
4520
4683
|
declare const BarChart: React__default.NamedExoticComponent<BarChartProps>;
|
|
4521
4684
|
declare const AreaChart: React__default.NamedExoticComponent<AreaChartProps>;
|
|
@@ -4921,6 +5084,24 @@ interface DrawerCloseProps {
|
|
|
4921
5084
|
*/
|
|
4922
5085
|
ref?: React.Ref<HTMLButtonElement>;
|
|
4923
5086
|
}
|
|
5087
|
+
interface DrawerBodyProps {
|
|
5088
|
+
/**
|
|
5089
|
+
* Children elements
|
|
5090
|
+
*/
|
|
5091
|
+
children: React.ReactNode;
|
|
5092
|
+
/**
|
|
5093
|
+
* Additional CSS class
|
|
5094
|
+
*/
|
|
5095
|
+
className?: string;
|
|
5096
|
+
/**
|
|
5097
|
+
* Reference to the body element
|
|
5098
|
+
*/
|
|
5099
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
5100
|
+
/**
|
|
5101
|
+
* Custom class names for sub-components
|
|
5102
|
+
*/
|
|
5103
|
+
classNames?: DrawerClassNames;
|
|
5104
|
+
}
|
|
4924
5105
|
|
|
4925
5106
|
declare const Drawer: React__default.NamedExoticComponent<DrawerProps>;
|
|
4926
5107
|
declare const DrawerTrigger: React__default.NamedExoticComponent<DrawerTriggerProps>;
|
|
@@ -4928,6 +5109,7 @@ declare const DrawerPortal: typeof vaul.Portal;
|
|
|
4928
5109
|
declare const DrawerOverlay: React__default.NamedExoticComponent<DrawerOverlayProps>;
|
|
4929
5110
|
declare const DrawerContent: React__default.NamedExoticComponent<DrawerContentProps>;
|
|
4930
5111
|
declare const DrawerHeader: React__default.NamedExoticComponent<DrawerHeaderProps>;
|
|
5112
|
+
declare const DrawerBody: React__default.NamedExoticComponent<DrawerBodyProps>;
|
|
4931
5113
|
declare const DrawerFooter: React__default.NamedExoticComponent<DrawerFooterProps>;
|
|
4932
5114
|
declare const DrawerTitle: React__default.NamedExoticComponent<DrawerTitleProps>;
|
|
4933
5115
|
declare const DrawerDescription: React__default.NamedExoticComponent<DrawerDescriptionProps>;
|
|
@@ -5035,4 +5217,4 @@ interface TransferProps {
|
|
|
5035
5217
|
|
|
5036
5218
|
declare const Transfer: React__default.NamedExoticComponent<TransferProps>;
|
|
5037
5219
|
|
|
5038
|
-
export { Accordion, type AccordionClassNames, type AccordionItem, type AccordionProps, AreaChart, Avatar, type AvatarClassNames, AvatarGroup, type AvatarGroupClassNames, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, BarChart, type BaseClassNames, type BaseOption, type BreadcrumbItemData, type BreadcrumbProps, Breadcrumb as Breadcrumbs, type BreadcrumbsClassNames, Button, type ButtonClassNames, type ButtonColor$1 as ButtonColor, ButtonGroup, type ButtonGroupClassNames, type ButtonGroupProps, type ButtonProps, type ButtonShape, type ButtonSize, type ButtonVariant, CardWithSubComponents as Card, type CardActionProps, type CardClassNames, type CardContentProps, type CardDescriptionProps, type CardFooterProps, type CardHeaderProps, type CardImageProps, type CardProps, type CardTitleProps, Carousel, Cascader, type CascaderClassNames, type CascaderOption, type CascaderProps, Checkbox, type CheckboxClassNames, type CheckboxColor, CheckboxGroup, type CheckboxGroupClassNames, type CheckboxGroupProps as CheckboxGroupComponentProps, type CheckboxProps, type CheckboxSize, Clipboard, type ClipboardClassNames, type ClipboardProps, Collapse, type CollapseClassNames, type CollapseProps, Command, type CommandClassNames, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandModal, CommandSeparator, CommandShortcut, type ComponentColor, type ComponentSize, type ComponentVariant, type ComponentVariantExtended, type ComponentVariantInput, ComposedChart, type ComposedModalProps, ContextMenu, type ContextMenuClassNames, type ContextMenuItem, type ContextMenuProps, type CreateClassNames, DatePicker, type DatePickerClassNames, type DatePickerProps, Descriptions, type DescriptionsClassNames, type DescriptionsItem, type DescriptionsProps, type DisableableProps, Divider, type DividerProps, Drawer, type DrawerClassNames, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, type DropdownClassNames, type DropdownItem, type DropdownProps, Empty, type EmptyClassNames, type EmptyProps, FetchingOverlay, type FullWidthProps, Grid, type GridProps, type IconProps, Image, type ImageClassNames, type ImageProps, Input, type InputClassNames, InputGroup, type InputGroupClassNames, type InputGroupProps, InputOTP, type InputOTPClassNames, type InputOTPProps, Input as InputPassword, type InputPasswordClassNames, type InputProps, Kbd, type KbdProps, type KbdVariantType, LineChart, type LoadingProps, type MessagePosition, ComposedModal as Modal, type ModalClassNames, MultiSelect, type MultiSelectClassNames, type MultiSelectProps, Notification, type NotificationClassNames, type NotificationProps, type NotificationVariantType, Pagination, type PaginationClassNames, type PaginationProps, type PasswordInputProps, PieChart, Popover, PopoverAnchor, type PopoverClassNames, PopoverContent, PopoverTrigger, type PopoverVariantType, Progress, type ProgressClassNames, type ProgressOrientation, type ProgressProps, type ProgressSize, type ProgressType, type ProgressVariant, Radio, type RadioClassNames, RadioGroup, type RadioGroupClassNames, type RadioGroupProps as RadioGroupComponentProps, type RadioProps, RangePickerComponent as RangePicker, type RangePickerProps, Rating, type RatingClassNames, type RatingProps, type RequiredProps, Ribbon, type RibbonProps, Select, type SelectClassNames, type SelectProps, type SingleToggleProps, Skeleton, type SkeletonProps, Slider, type SliderClassNames, type SliderProps, Spinner, type SpinnerProps, type StepItem, Stepper, type StepperClassNames, type StepperProps, type StyleVariantType, Switch, type SwitchClassNames, type SwitchProps, type TabItem, Table, type TableClassNames, type TableProps, Tabs, type TabsClassNames, type TabsProps, Tag, type TagClassNames, type TagProps, type TextColorVariants, Textarea, type TextareaClassNames, type TextareaProps, type Theme, type ThemePreset, ThemeProvider, type ThemeProviderProps, type ThemeProviderState, TimePickerComponent as TimePicker, type TimePickerProps, Toggle, type ToggleClassNames, ToggleGroup, type ToggleGroupClassNames, type ToggleGroupProps, Tooltip, type TooltipClassNames, type TooltipProps, Transfer, type TransferClassNames, type TransferItem, type TransferProps, Tree, type TreeClassNames, type TreeNode, type TreeProps, TreeSelect, type TreeSelectClassNames, type TreeSelectProps, Upload, type UploadClassNames, type UploadFile, type UploadProps, type ValidationMessages, bgSkeletonColorClasses, buttonColors, checkboxBorderColorClasses, checkedColorClasses, cn, componentColors, createAllColorVariants, createDashedColorVariants, createDefaultColorVariants, createGhostColorVariants, createKbdColorVariants, createKbdOutlineColorVariants, createKbdSoftColorVariants, createKbdSolidColorVariants, createLinkColorVariants, createNotificationColorVariants, createNotificationOutlineColorVariants, createNotificationSoftColorVariants, createNotificationSolidColorVariants, createOutlineColorVariants, createPopoverColorVariants, createPopoverDefaultColorVariants, createPopoverSoftColorVariants, createPopoverSolidColorVariants, createSoftColorVariants, createSolidColorVariants, createTooltipSoftColorVariants, focusRingColorClasses, getValidationStatus, iconSizes, radioCheckedColorClasses, switchTrackColorClasses, textColorClasses, textColorVariants, themePresets, themeScript, tooltipSolidColorClasses, useTheme };
|
|
5220
|
+
export { Accordion, type AccordionClassNames, type AccordionItem, type AccordionProps, AreaChart, Avatar, type AvatarClassNames, AvatarGroup, type AvatarGroupClassNames, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, BarChart, type BaseClassNames, type BaseOption, type BreadcrumbItemData, type BreadcrumbProps, Breadcrumb as Breadcrumbs, type BreadcrumbsClassNames, Button, type ButtonClassNames, type ButtonColor$1 as ButtonColor, ButtonGroup, type ButtonGroupClassNames, type ButtonGroupProps, type ButtonProps, type ButtonShape, type ButtonSize, type ButtonVariant, CardWithSubComponents as Card, type CardActionProps, type CardClassNames, type CardContentProps, type CardDescriptionProps, type CardFooterProps, type CardHeaderProps, type CardImageProps, type CardProps, type CardTitleProps, Carousel, Cascader, type CascaderClassNames, type CascaderOption, type CascaderProps, Checkbox, type CheckboxClassNames, type CheckboxColor, CheckboxGroup, type CheckboxGroupClassNames, type CheckboxGroupProps as CheckboxGroupComponentProps, type CheckboxProps, type CheckboxSize, Clipboard, type ClipboardClassNames, type ClipboardProps, Collapse, type CollapseClassNames, type CollapseProps, Command, type CommandClassNames, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandModal, CommandSeparator, CommandShortcut, type ComponentColor, type ComponentSize, type ComponentVariant, type ComponentVariantExtended, type ComponentVariantInput, ComposedChart, type ComposedModalProps, ContextMenu, type ContextMenuClassNames, ContextMenuContent, type ContextMenuItem, type ContextMenuProps, type CreateClassNames, DatePicker, type DatePickerClassNames, type DatePickerProps, Descriptions, type DescriptionsClassNames, type DescriptionsItem, type DescriptionsProps, type DisableableProps, Divider, type DividerProps, Drawer, DrawerBody, type DrawerClassNames, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, type DropdownClassNames, type DropdownItem, type DropdownProps, EditableCell, Empty, type EmptyClassNames, type EmptyProps, FetchingOverlay, type FullWidthProps, Grid, type GridProps, type IconProps, Image, type ImageClassNames, type ImageProps, Input, type InputClassNames, InputGroup, type InputGroupClassNames, type InputGroupProps, InputOTP, type InputOTPClassNames, type InputOTPProps, Input as InputPassword, type InputPasswordClassNames, type InputProps, Kbd, type KbdProps, type KbdVariantType, LineChart, type LoadingProps, type MessagePosition, ComposedModal as Modal, type ModalClassNames, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, Modal as ModalRoot, ModalTitle, ModalTrigger, MultiSelect, type MultiSelectClassNames, type MultiSelectProps, Notification, type NotificationClassNames, type NotificationProps, type NotificationVariantType, Pagination, type PaginationClassNames, type PaginationProps, type PasswordInputProps, PieChart, Popover, PopoverAnchor, type PopoverClassNames, PopoverContent, PopoverTrigger, type PopoverVariantType, Progress, type ProgressClassNames, type ProgressOrientation, type ProgressProps, type ProgressSize, type ProgressType, type ProgressVariant, Radio, type RadioClassNames, RadioGroup, type RadioGroupClassNames, type RadioGroupProps as RadioGroupComponentProps, type RadioProps, RangePickerComponent as RangePicker, type RangePickerProps, Rating, type RatingClassNames, type RatingProps, type RequiredProps, Ribbon, type RibbonProps, Select, type SelectClassNames, type SelectProps, type SingleToggleProps, Skeleton, type SkeletonProps, Slider, type SliderClassNames, type SliderProps, Spinner, type SpinnerProps, type StepItem, Stepper, type StepperClassNames, type StepperProps, type StyleVariantType, Switch, type SwitchClassNames, type SwitchProps, type TabItem, Table, TableActions, TableCell, type TableClassNames, TableHeaderCell, type TableProps, TableRow, TableSkeleton, Tabs, type TabsClassNames, type TabsProps, Tag, type TagClassNames, type TagProps, type TextColorVariants, Textarea, type TextareaClassNames, type TextareaProps, type Theme, type ThemePreset, ThemeProvider, type ThemeProviderProps, type ThemeProviderState, TimePickerComponent as TimePicker, type TimePickerProps, Toggle, type ToggleClassNames, ToggleGroup, type ToggleGroupClassNames, type ToggleGroupProps, Tooltip, type TooltipClassNames, type TooltipProps, TooltipProvider, Transfer, type TransferClassNames, type TransferItem, type TransferProps, Tree, type TreeClassNames, type TreeNode, type TreeProps, TreeSelect, type TreeSelectClassNames, type TreeSelectProps, Upload, type UploadClassNames, type UploadFile, type UploadProps, type ValidationMessages, axisLineStyle, axisTickStyle, bgSkeletonColorClasses, buttonColors, chartContainerVariants, checkboxBorderColorClasses, checkedColorClasses, cn, componentColors, createAllColorVariants, createDashedColorVariants, createDefaultColorVariants, createGhostColorVariants, createKbdColorVariants, createKbdOutlineColorVariants, createKbdSoftColorVariants, createKbdSolidColorVariants, createLinkColorVariants, createNotificationColorVariants, createNotificationOutlineColorVariants, createNotificationSoftColorVariants, createNotificationSolidColorVariants, createOutlineColorVariants, createPopoverColorVariants, createPopoverDefaultColorVariants, createPopoverSoftColorVariants, createPopoverSolidColorVariants, createSoftColorVariants, createSolidColorVariants, createTooltipSoftColorVariants, cursorStyle, focusRingColorClasses, getChartColor, getValidationStatus, gridStyle, iconSizes, legendStyle, radioCheckedColorClasses, switchTrackColorClasses, textColorClasses, textColorVariants, themePresets, themeScript, tooltipSolidColorClasses, tooltipStyle, useTheme };
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ export { tag_default as Tag } from './chunk-VY3X4SDU.js';
|
|
|
6
6
|
export { textarea_default as Textarea } from './chunk-2NYVRAG4.js';
|
|
7
7
|
export { ThemeProvider, themeScript, useTheme } from './chunk-5PUATOLR.js';
|
|
8
8
|
export { toggle_default as Toggle } from './chunk-RPIJ2KY7.js';
|
|
9
|
-
export { tooltip_default as Tooltip } from './chunk-ILQQTKD4.js';
|
|
9
|
+
export { tooltip_default as Tooltip, TooltipProvider } from './chunk-ILQQTKD4.js';
|
|
10
10
|
export { Transfer } from './chunk-JIREY2VB.js';
|
|
11
11
|
export { ribbon_default as Ribbon } from './chunk-FVTMKQUE.js';
|
|
12
12
|
export { select_default as Select } from './chunk-43RDFTC5.js';
|
|
@@ -14,13 +14,13 @@ export { skeleton_default as Skeleton } from './chunk-JZ5F6XDO.js';
|
|
|
14
14
|
export { slider_default as Slider } from './chunk-MRFCITKK.js';
|
|
15
15
|
export { stepper_default as Stepper } from './chunk-SAVEKACZ.js';
|
|
16
16
|
export { switch_default as Switch } from './chunk-2REG4OUB.js';
|
|
17
|
-
export { table_default as Table } from './chunk-REKWBXAQ.js';
|
|
17
|
+
export { EditableCell, table_default as Table, TableActions, TableCell, TableHeaderCell, TableRow, TableSkeleton } from './chunk-REKWBXAQ.js';
|
|
18
18
|
export { toggle_group_default as ToggleGroup } from './chunk-KTHWXHDN.js';
|
|
19
19
|
export { multi_select_default as MultiSelect } from './chunk-HEV27FUK.js';
|
|
20
20
|
export { notification_default as Notification } from './chunk-N3ZVPIFC.js';
|
|
21
21
|
export { pagination_default as Pagination } from './chunk-X5SCI7KH.js';
|
|
22
|
-
export { radio_default as Radio } from './chunk-ITZBSE5F.js';
|
|
23
22
|
export { progress_default as Progress } from './chunk-RYKVZFGB.js';
|
|
23
|
+
export { radio_default as Radio } from './chunk-ITZBSE5F.js';
|
|
24
24
|
export { radio_group_default as RadioGroup } from './chunk-SGRACNBP.js';
|
|
25
25
|
export { rating_default as Rating } from './chunk-7UCNBMCV.js';
|
|
26
26
|
export { grid_default as Grid } from './chunk-QKSDVYKF.js';
|
|
@@ -30,22 +30,22 @@ export { input_otp_default as InputOTP } from './chunk-RW4RW4DV.js';
|
|
|
30
30
|
export { input_password_default as InputPassword } from './chunk-3HBMVZF5.js';
|
|
31
31
|
export { input_default as Input } from './chunk-CLLNXRYZ.js';
|
|
32
32
|
export { kbd_default as Kbd } from './chunk-EGNF7BRT.js';
|
|
33
|
-
export { context_menu_default as ContextMenu } from './chunk-FIGSNRWY.js';
|
|
33
|
+
export { context_menu_default as ContextMenu, ContextMenuContent } from './chunk-FIGSNRWY.js';
|
|
34
34
|
export { DatePicker, RangePickerComponent as RangePicker, TimePickerComponent as TimePicker } from './chunk-CPDVBHA3.js';
|
|
35
35
|
export { descriptions_default as Descriptions } from './chunk-H47C2ENJ.js';
|
|
36
36
|
export { divider_default as Divider } from './chunk-WUBMNJGC.js';
|
|
37
|
-
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from './chunk-CSRMVLPR.js';
|
|
37
|
+
export { Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from './chunk-CSRMVLPR.js';
|
|
38
38
|
export { empty_default as Empty } from './chunk-2WZVD7P3.js';
|
|
39
39
|
export { fetching_overlay_default as FetchingOverlay } from './chunk-DQQLJ5C5.js';
|
|
40
40
|
export { carousel_default as Carousel } from './chunk-HWFI4GJE.js';
|
|
41
41
|
export { cascader_default as Cascader } from './chunk-2OUGJBXK.js';
|
|
42
|
-
export { AreaChart, BarChart, ComposedChart, LineChart, PieChart } from './chunk-C5YO5VZS.js';
|
|
42
|
+
export { AreaChart, BarChart, ComposedChart, LineChart, PieChart, axisLineStyle, axisTickStyle, chartContainerVariants, cursorStyle, getChartColor, gridStyle, legendStyle, tooltipStyle } from './chunk-C5YO5VZS.js';
|
|
43
43
|
export { checkbox_default as Checkbox } from './chunk-N32VWE6V.js';
|
|
44
44
|
export { checkbox_group_default as CheckboxGroup } from './chunk-4LSKRZOT.js';
|
|
45
45
|
export { clipboard_default as Clipboard } from './chunk-PXOHJJBE.js';
|
|
46
46
|
export { collapse_default as Collapse } from './chunk-LMR7TKDJ.js';
|
|
47
47
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandModal, CommandSeparator, CommandShortcut } from './chunk-YAAV7FQG.js';
|
|
48
|
-
export { modal_default as Modal } from './chunk-2J57G7XG.js';
|
|
48
|
+
export { modal_default as Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, Modal as ModalRoot, ModalTitle, ModalTrigger } from './chunk-2J57G7XG.js';
|
|
49
49
|
export { accordion_default as Accordion } from './chunk-QF3NJUUG.js';
|
|
50
50
|
export { Avatar, AvatarGroup } from './chunk-UUP7YGOS.js';
|
|
51
51
|
export { badge_default as Badge } from './chunk-IMGVPMHJ.js';
|