@herca/r-kit 0.0.68 → 0.0.70
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/clients.cjs +15522 -433
- package/dist/clients.cjs.map +1 -1
- package/dist/clients.d.cts +28 -14
- package/dist/clients.d.ts +28 -14
- package/dist/clients.js +15550 -437
- package/dist/clients.js.map +1 -1
- package/package.json +1 -1
package/dist/clients.d.cts
CHANGED
|
@@ -157,16 +157,18 @@ interface InputProps extends Omit<react.ComponentProps<'input'>, 'size'>, InputV
|
|
|
157
157
|
}
|
|
158
158
|
declare const Input: react.ForwardRefExoticComponent<Omit<InputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
type SidebarProviderProps = react__default.ComponentProps<'div'> & {
|
|
161
161
|
defaultOpen?: boolean;
|
|
162
162
|
open?: boolean;
|
|
163
163
|
onOpenChange?: (open: boolean) => void;
|
|
164
|
-
}
|
|
165
|
-
declare function
|
|
164
|
+
};
|
|
165
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: SidebarProviderProps): react_jsx_runtime.JSX.Element;
|
|
166
|
+
type SidebarProps = react__default.ComponentProps<'div'> & {
|
|
166
167
|
side?: 'left' | 'right';
|
|
167
168
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
168
169
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
169
|
-
}
|
|
170
|
+
};
|
|
171
|
+
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: SidebarProps): react_jsx_runtime.JSX.Element;
|
|
170
172
|
declare function SidebarTrigger({ className, onClick, ...props }: react__default.ComponentProps<'button'>): react_jsx_runtime.JSX.Element;
|
|
171
173
|
declare function SidebarInset({ className, ...props }: react__default.ComponentProps<'main'>): react_jsx_runtime.JSX.Element;
|
|
172
174
|
declare function SidebarInput({ className, ...props }: react__default.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
@@ -180,13 +182,12 @@ type SidebarMenuItemProps = react__default.ComponentProps<'li'> & {
|
|
|
180
182
|
asChild?: boolean;
|
|
181
183
|
};
|
|
182
184
|
declare function SidebarMenuItem({ children, className, icon, active, asChild, ...props }: SidebarMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
183
|
-
|
|
185
|
+
type SidebarMenuGroupProps = react__default.HTMLAttributes<HTMLDivElement> & {
|
|
184
186
|
children: react__default.ReactNode;
|
|
185
|
-
className?: string;
|
|
186
187
|
icon?: react__default.ReactNode;
|
|
187
188
|
label: string;
|
|
188
189
|
active?: boolean;
|
|
189
|
-
}
|
|
190
|
+
};
|
|
190
191
|
declare function SidebarMenuGroup({ children, className, icon, label, active, ...props }: SidebarMenuGroupProps): react_jsx_runtime.JSX.Element;
|
|
191
192
|
|
|
192
193
|
type SidebarContextProps = {
|
|
@@ -204,16 +205,26 @@ type SidebarContextProps = {
|
|
|
204
205
|
declare const SidebarContext: react__default.Context<SidebarContextProps | null>;
|
|
205
206
|
declare const useSidebar: () => SidebarContextProps;
|
|
206
207
|
|
|
207
|
-
|
|
208
|
+
type SheetProps = React.ComponentProps<typeof SheetPrimitive.Root> & {
|
|
209
|
+
id?: string;
|
|
210
|
+
urlReplace?: boolean;
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
type SheetSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
214
|
+
type SheetSide = 'top' | 'right' | 'bottom' | 'left';
|
|
215
|
+
declare function Sheet({ id, urlReplace, open: openProp, defaultOpen, onOpenChange, ...props }: SheetProps): react_jsx_runtime.JSX.Element;
|
|
216
|
+
declare function useSheetHref(id: string): string;
|
|
208
217
|
declare function SheetTrigger({ ...props }: react.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
209
218
|
declare function SheetClose({ ...props }: react.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
210
|
-
declare function SheetContent({ className, children, side, ...props }: react.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
211
|
-
side?:
|
|
219
|
+
declare function SheetContent({ className, children, side, size, ...props }: react.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
220
|
+
side?: SheetSide;
|
|
221
|
+
size?: SheetSize;
|
|
212
222
|
}): react_jsx_runtime.JSX.Element;
|
|
213
223
|
declare function SheetHeader({ className, ...props }: react.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
214
224
|
declare function SheetFooter({ className, ...props }: react.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
215
225
|
declare function SheetTitle({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
216
226
|
declare function SheetDescription({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
227
|
+
declare function SheetBody({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
217
228
|
|
|
218
229
|
declare function TooltipProvider({ delayDuration, ...props }: react.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
219
230
|
declare function Tooltip({ ...props }: react.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
@@ -221,7 +232,7 @@ declare function TooltipTrigger({ ...props }: react.ComponentProps<typeof Toolti
|
|
|
221
232
|
declare function TooltipContent({ className, sideOffset, children, ...props }: react.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
222
233
|
|
|
223
234
|
declare const modalVariants: (props?: ({
|
|
224
|
-
size?: "sm" | "md" | "lg" | "
|
|
235
|
+
size?: "sm" | "md" | "lg" | "full" | "xs" | null | undefined;
|
|
225
236
|
state?: "open" | "closed" | null | undefined;
|
|
226
237
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
227
238
|
declare const modalOverlayVariants: (props?: ({
|
|
@@ -949,10 +960,12 @@ interface TabsProps {
|
|
|
949
960
|
defaultValue?: string;
|
|
950
961
|
value?: string;
|
|
951
962
|
onValueChange?: (value: string) => void;
|
|
963
|
+
id: string;
|
|
964
|
+
urlReplace?: boolean;
|
|
952
965
|
orientation?: 'horizontal' | 'vertical';
|
|
953
|
-
className?: string;
|
|
954
|
-
children: React.ReactNode;
|
|
955
966
|
unmountOnHide?: boolean;
|
|
967
|
+
className?: string;
|
|
968
|
+
children?: React.ReactNode;
|
|
956
969
|
}
|
|
957
970
|
interface TabsListProps {
|
|
958
971
|
className?: string;
|
|
@@ -970,6 +983,7 @@ interface TabsContentProps {
|
|
|
970
983
|
children: React.ReactNode;
|
|
971
984
|
}
|
|
972
985
|
|
|
986
|
+
declare const useTabHref: (value: string) => string | undefined;
|
|
973
987
|
declare const Tabs: react__default.FC<TabsProps>;
|
|
974
988
|
declare const TabsList: react__default.FC<TabsListProps>;
|
|
975
989
|
declare const TabsTrigger: react__default.FC<TabsTriggerProps>;
|
|
@@ -1133,4 +1147,4 @@ declare const RadioIndicatorVariants: (props?: ({
|
|
|
1133
1147
|
color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray" | null | undefined;
|
|
1134
1148
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1135
1149
|
|
|
1136
|
-
export { type AttachmentField, BaseCheckbox, type BaseOption, BaseRadio, BaseSwitch, ButtonDropdown, type ButtonDropdownProps, ButtonGroup, ButtonGroupItem, type ButtonGroupProps, type ButtonIconProps, ButtonNavigator, Calendar, type CalendarBaseProps, type CalendarDay, type CalendarDayConfig, type CalendarDayItemProps, type CalendarEvent, type CalendarGridProps, type CalendarOverrideProps, type CalendarProps, type CalendarRangeOverrideProps, type CalendarState, type CalendarStyleConfig, type CalendarTypes, Checkbox, CheckboxGroup, type CheckboxGroupContextValue, type CheckboxGroupProps, CheckboxIndicatorVariants, type CheckboxProps, CheckboxVariants, Chip, type ChipArrayProps, ChipContext, type ChipContextValue, ChipGroup, type ChipOptionProps, type ChipProps, type ChipSelectedProps, type ChipValue, type ChipVariants, Collapsible, CollapsibleContent, CollapsibleTrigger, type ColorPickerButtonProps, type ColorType$2 as ColorType, type ColorVariantType, Counter, type CounterControllerProps, type CounterProps, type DateFormat, DatePicker, type DatePickerMode, type DatePickerProps, type DateRange, type DateRangeProps, type DotConfig, Dropdown, DropdownContent, DropdownItem, type DropdownState, DropdownTrigger, type FileItem, FormDescription, type FormDescriptionProps, FormErrorMessage, type FormErrorMessageProps, FormErrorMessages, type FormErrorMessagesProps, FormField, type FormFieldProps, FormHint, type FormHintProps, FormLabel, type FormLabelProps, type FormSizeType, type GetCalendarDaysProps, type HeadingLevel, type IconType, type ImageForm, Input, InputFile, type InputFileProps, type InputFileRef, InputOTP, type InputOTPProps, type InputOTPSize, type InputOTPType, type InputProps, type InputVariantProps, ItemDropdown, type ListItemType, Modal, ModalBody, ModalDescription, ModalFooter, ModalHeader, ModalPreviewAttachment, ModalTitle, type PlayerProps, PreviewItem, type PreviewItemProps, Radio, RadioGroup, RadioIndicatorVariants, RadioVariants, Select, type SelectOption, type SelectProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuGroup, SidebarMenuItem, SidebarProvider, SidebarTrigger, type SizeType$2 as SizeType, Switch, SwitchThumbVariants, SwitchVariants, Table, type TableAction, TableBody, type TableBodyProps, TableCell, TableCellHead, type TableCellHeadProps, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableRootProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, type TextAlignValue, TextEditor, type TextEditorProps, Textarea, type TextareaProps, ToastProvider, type ToolbarButtonProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UploadConfig, type UploadStatus, type UploadedFile, chipVariants, formatDateLocal, formatDateToString, generatePages, getCalendarDays, getFormatConfig, getWeekEventSegments, handleDecrement, handleIncrement, handleInputChange, handleKeyDown, inputVariants, isSameDate, isToday, monthsFull, monthsShort, normalize, parseLocalDate, parseMonthName, toDateOnly, useCopy, useIsMobile, useSidebar, useToast };
|
|
1150
|
+
export { type AttachmentField, BaseCheckbox, type BaseOption, BaseRadio, BaseSwitch, ButtonDropdown, type ButtonDropdownProps, ButtonGroup, ButtonGroupItem, type ButtonGroupProps, type ButtonIconProps, ButtonNavigator, Calendar, type CalendarBaseProps, type CalendarDay, type CalendarDayConfig, type CalendarDayItemProps, type CalendarEvent, type CalendarGridProps, type CalendarOverrideProps, type CalendarProps, type CalendarRangeOverrideProps, type CalendarState, type CalendarStyleConfig, type CalendarTypes, Checkbox, CheckboxGroup, type CheckboxGroupContextValue, type CheckboxGroupProps, CheckboxIndicatorVariants, type CheckboxProps, CheckboxVariants, Chip, type ChipArrayProps, ChipContext, type ChipContextValue, ChipGroup, type ChipOptionProps, type ChipProps, type ChipSelectedProps, type ChipValue, type ChipVariants, Collapsible, CollapsibleContent, CollapsibleTrigger, type ColorPickerButtonProps, type ColorType$2 as ColorType, type ColorVariantType, Counter, type CounterControllerProps, type CounterProps, type DateFormat, DatePicker, type DatePickerMode, type DatePickerProps, type DateRange, type DateRangeProps, type DotConfig, Dropdown, DropdownContent, DropdownItem, type DropdownState, DropdownTrigger, type FileItem, FormDescription, type FormDescriptionProps, FormErrorMessage, type FormErrorMessageProps, FormErrorMessages, type FormErrorMessagesProps, FormField, type FormFieldProps, FormHint, type FormHintProps, FormLabel, type FormLabelProps, type FormSizeType, type GetCalendarDaysProps, type HeadingLevel, type IconType, type ImageForm, Input, InputFile, type InputFileProps, type InputFileRef, InputOTP, type InputOTPProps, type InputOTPSize, type InputOTPType, type InputProps, type InputVariantProps, ItemDropdown, type ListItemType, Modal, ModalBody, ModalDescription, ModalFooter, ModalHeader, ModalPreviewAttachment, ModalTitle, type PlayerProps, PreviewItem, type PreviewItemProps, Radio, RadioGroup, RadioIndicatorVariants, RadioVariants, Select, type SelectOption, type SelectProps, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetSide, type SheetSize, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuGroup, SidebarMenuItem, SidebarProvider, SidebarTrigger, type SizeType$2 as SizeType, Switch, SwitchThumbVariants, SwitchVariants, Table, type TableAction, TableBody, type TableBodyProps, TableCell, TableCellHead, type TableCellHeadProps, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableRootProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, type TextAlignValue, TextEditor, type TextEditorProps, Textarea, type TextareaProps, ToastProvider, type ToolbarButtonProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UploadConfig, type UploadStatus, type UploadedFile, chipVariants, formatDateLocal, formatDateToString, generatePages, getCalendarDays, getFormatConfig, getWeekEventSegments, handleDecrement, handleIncrement, handleInputChange, handleKeyDown, inputVariants, isSameDate, isToday, monthsFull, monthsShort, normalize, parseLocalDate, parseMonthName, toDateOnly, useCopy, useIsMobile, useSheetHref, useSidebar, useTabHref, useToast };
|
package/dist/clients.d.ts
CHANGED
|
@@ -157,16 +157,18 @@ interface InputProps extends Omit<react.ComponentProps<'input'>, 'size'>, InputV
|
|
|
157
157
|
}
|
|
158
158
|
declare const Input: react.ForwardRefExoticComponent<Omit<InputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
type SidebarProviderProps = react__default.ComponentProps<'div'> & {
|
|
161
161
|
defaultOpen?: boolean;
|
|
162
162
|
open?: boolean;
|
|
163
163
|
onOpenChange?: (open: boolean) => void;
|
|
164
|
-
}
|
|
165
|
-
declare function
|
|
164
|
+
};
|
|
165
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: SidebarProviderProps): react_jsx_runtime.JSX.Element;
|
|
166
|
+
type SidebarProps = react__default.ComponentProps<'div'> & {
|
|
166
167
|
side?: 'left' | 'right';
|
|
167
168
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
168
169
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
169
|
-
}
|
|
170
|
+
};
|
|
171
|
+
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: SidebarProps): react_jsx_runtime.JSX.Element;
|
|
170
172
|
declare function SidebarTrigger({ className, onClick, ...props }: react__default.ComponentProps<'button'>): react_jsx_runtime.JSX.Element;
|
|
171
173
|
declare function SidebarInset({ className, ...props }: react__default.ComponentProps<'main'>): react_jsx_runtime.JSX.Element;
|
|
172
174
|
declare function SidebarInput({ className, ...props }: react__default.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
@@ -180,13 +182,12 @@ type SidebarMenuItemProps = react__default.ComponentProps<'li'> & {
|
|
|
180
182
|
asChild?: boolean;
|
|
181
183
|
};
|
|
182
184
|
declare function SidebarMenuItem({ children, className, icon, active, asChild, ...props }: SidebarMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
183
|
-
|
|
185
|
+
type SidebarMenuGroupProps = react__default.HTMLAttributes<HTMLDivElement> & {
|
|
184
186
|
children: react__default.ReactNode;
|
|
185
|
-
className?: string;
|
|
186
187
|
icon?: react__default.ReactNode;
|
|
187
188
|
label: string;
|
|
188
189
|
active?: boolean;
|
|
189
|
-
}
|
|
190
|
+
};
|
|
190
191
|
declare function SidebarMenuGroup({ children, className, icon, label, active, ...props }: SidebarMenuGroupProps): react_jsx_runtime.JSX.Element;
|
|
191
192
|
|
|
192
193
|
type SidebarContextProps = {
|
|
@@ -204,16 +205,26 @@ type SidebarContextProps = {
|
|
|
204
205
|
declare const SidebarContext: react__default.Context<SidebarContextProps | null>;
|
|
205
206
|
declare const useSidebar: () => SidebarContextProps;
|
|
206
207
|
|
|
207
|
-
|
|
208
|
+
type SheetProps = React.ComponentProps<typeof SheetPrimitive.Root> & {
|
|
209
|
+
id?: string;
|
|
210
|
+
urlReplace?: boolean;
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
type SheetSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
214
|
+
type SheetSide = 'top' | 'right' | 'bottom' | 'left';
|
|
215
|
+
declare function Sheet({ id, urlReplace, open: openProp, defaultOpen, onOpenChange, ...props }: SheetProps): react_jsx_runtime.JSX.Element;
|
|
216
|
+
declare function useSheetHref(id: string): string;
|
|
208
217
|
declare function SheetTrigger({ ...props }: react.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
209
218
|
declare function SheetClose({ ...props }: react.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
210
|
-
declare function SheetContent({ className, children, side, ...props }: react.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
211
|
-
side?:
|
|
219
|
+
declare function SheetContent({ className, children, side, size, ...props }: react.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
220
|
+
side?: SheetSide;
|
|
221
|
+
size?: SheetSize;
|
|
212
222
|
}): react_jsx_runtime.JSX.Element;
|
|
213
223
|
declare function SheetHeader({ className, ...props }: react.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
214
224
|
declare function SheetFooter({ className, ...props }: react.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
215
225
|
declare function SheetTitle({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
216
226
|
declare function SheetDescription({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
227
|
+
declare function SheetBody({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
217
228
|
|
|
218
229
|
declare function TooltipProvider({ delayDuration, ...props }: react.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
219
230
|
declare function Tooltip({ ...props }: react.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
@@ -221,7 +232,7 @@ declare function TooltipTrigger({ ...props }: react.ComponentProps<typeof Toolti
|
|
|
221
232
|
declare function TooltipContent({ className, sideOffset, children, ...props }: react.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
222
233
|
|
|
223
234
|
declare const modalVariants: (props?: ({
|
|
224
|
-
size?: "sm" | "md" | "lg" | "
|
|
235
|
+
size?: "sm" | "md" | "lg" | "full" | "xs" | null | undefined;
|
|
225
236
|
state?: "open" | "closed" | null | undefined;
|
|
226
237
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
227
238
|
declare const modalOverlayVariants: (props?: ({
|
|
@@ -949,10 +960,12 @@ interface TabsProps {
|
|
|
949
960
|
defaultValue?: string;
|
|
950
961
|
value?: string;
|
|
951
962
|
onValueChange?: (value: string) => void;
|
|
963
|
+
id: string;
|
|
964
|
+
urlReplace?: boolean;
|
|
952
965
|
orientation?: 'horizontal' | 'vertical';
|
|
953
|
-
className?: string;
|
|
954
|
-
children: React.ReactNode;
|
|
955
966
|
unmountOnHide?: boolean;
|
|
967
|
+
className?: string;
|
|
968
|
+
children?: React.ReactNode;
|
|
956
969
|
}
|
|
957
970
|
interface TabsListProps {
|
|
958
971
|
className?: string;
|
|
@@ -970,6 +983,7 @@ interface TabsContentProps {
|
|
|
970
983
|
children: React.ReactNode;
|
|
971
984
|
}
|
|
972
985
|
|
|
986
|
+
declare const useTabHref: (value: string) => string | undefined;
|
|
973
987
|
declare const Tabs: react__default.FC<TabsProps>;
|
|
974
988
|
declare const TabsList: react__default.FC<TabsListProps>;
|
|
975
989
|
declare const TabsTrigger: react__default.FC<TabsTriggerProps>;
|
|
@@ -1133,4 +1147,4 @@ declare const RadioIndicatorVariants: (props?: ({
|
|
|
1133
1147
|
color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray" | null | undefined;
|
|
1134
1148
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1135
1149
|
|
|
1136
|
-
export { type AttachmentField, BaseCheckbox, type BaseOption, BaseRadio, BaseSwitch, ButtonDropdown, type ButtonDropdownProps, ButtonGroup, ButtonGroupItem, type ButtonGroupProps, type ButtonIconProps, ButtonNavigator, Calendar, type CalendarBaseProps, type CalendarDay, type CalendarDayConfig, type CalendarDayItemProps, type CalendarEvent, type CalendarGridProps, type CalendarOverrideProps, type CalendarProps, type CalendarRangeOverrideProps, type CalendarState, type CalendarStyleConfig, type CalendarTypes, Checkbox, CheckboxGroup, type CheckboxGroupContextValue, type CheckboxGroupProps, CheckboxIndicatorVariants, type CheckboxProps, CheckboxVariants, Chip, type ChipArrayProps, ChipContext, type ChipContextValue, ChipGroup, type ChipOptionProps, type ChipProps, type ChipSelectedProps, type ChipValue, type ChipVariants, Collapsible, CollapsibleContent, CollapsibleTrigger, type ColorPickerButtonProps, type ColorType$2 as ColorType, type ColorVariantType, Counter, type CounterControllerProps, type CounterProps, type DateFormat, DatePicker, type DatePickerMode, type DatePickerProps, type DateRange, type DateRangeProps, type DotConfig, Dropdown, DropdownContent, DropdownItem, type DropdownState, DropdownTrigger, type FileItem, FormDescription, type FormDescriptionProps, FormErrorMessage, type FormErrorMessageProps, FormErrorMessages, type FormErrorMessagesProps, FormField, type FormFieldProps, FormHint, type FormHintProps, FormLabel, type FormLabelProps, type FormSizeType, type GetCalendarDaysProps, type HeadingLevel, type IconType, type ImageForm, Input, InputFile, type InputFileProps, type InputFileRef, InputOTP, type InputOTPProps, type InputOTPSize, type InputOTPType, type InputProps, type InputVariantProps, ItemDropdown, type ListItemType, Modal, ModalBody, ModalDescription, ModalFooter, ModalHeader, ModalPreviewAttachment, ModalTitle, type PlayerProps, PreviewItem, type PreviewItemProps, Radio, RadioGroup, RadioIndicatorVariants, RadioVariants, Select, type SelectOption, type SelectProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuGroup, SidebarMenuItem, SidebarProvider, SidebarTrigger, type SizeType$2 as SizeType, Switch, SwitchThumbVariants, SwitchVariants, Table, type TableAction, TableBody, type TableBodyProps, TableCell, TableCellHead, type TableCellHeadProps, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableRootProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, type TextAlignValue, TextEditor, type TextEditorProps, Textarea, type TextareaProps, ToastProvider, type ToolbarButtonProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UploadConfig, type UploadStatus, type UploadedFile, chipVariants, formatDateLocal, formatDateToString, generatePages, getCalendarDays, getFormatConfig, getWeekEventSegments, handleDecrement, handleIncrement, handleInputChange, handleKeyDown, inputVariants, isSameDate, isToday, monthsFull, monthsShort, normalize, parseLocalDate, parseMonthName, toDateOnly, useCopy, useIsMobile, useSidebar, useToast };
|
|
1150
|
+
export { type AttachmentField, BaseCheckbox, type BaseOption, BaseRadio, BaseSwitch, ButtonDropdown, type ButtonDropdownProps, ButtonGroup, ButtonGroupItem, type ButtonGroupProps, type ButtonIconProps, ButtonNavigator, Calendar, type CalendarBaseProps, type CalendarDay, type CalendarDayConfig, type CalendarDayItemProps, type CalendarEvent, type CalendarGridProps, type CalendarOverrideProps, type CalendarProps, type CalendarRangeOverrideProps, type CalendarState, type CalendarStyleConfig, type CalendarTypes, Checkbox, CheckboxGroup, type CheckboxGroupContextValue, type CheckboxGroupProps, CheckboxIndicatorVariants, type CheckboxProps, CheckboxVariants, Chip, type ChipArrayProps, ChipContext, type ChipContextValue, ChipGroup, type ChipOptionProps, type ChipProps, type ChipSelectedProps, type ChipValue, type ChipVariants, Collapsible, CollapsibleContent, CollapsibleTrigger, type ColorPickerButtonProps, type ColorType$2 as ColorType, type ColorVariantType, Counter, type CounterControllerProps, type CounterProps, type DateFormat, DatePicker, type DatePickerMode, type DatePickerProps, type DateRange, type DateRangeProps, type DotConfig, Dropdown, DropdownContent, DropdownItem, type DropdownState, DropdownTrigger, type FileItem, FormDescription, type FormDescriptionProps, FormErrorMessage, type FormErrorMessageProps, FormErrorMessages, type FormErrorMessagesProps, FormField, type FormFieldProps, FormHint, type FormHintProps, FormLabel, type FormLabelProps, type FormSizeType, type GetCalendarDaysProps, type HeadingLevel, type IconType, type ImageForm, Input, InputFile, type InputFileProps, type InputFileRef, InputOTP, type InputOTPProps, type InputOTPSize, type InputOTPType, type InputProps, type InputVariantProps, ItemDropdown, type ListItemType, Modal, ModalBody, ModalDescription, ModalFooter, ModalHeader, ModalPreviewAttachment, ModalTitle, type PlayerProps, PreviewItem, type PreviewItemProps, Radio, RadioGroup, RadioIndicatorVariants, RadioVariants, Select, type SelectOption, type SelectProps, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetSide, type SheetSize, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuGroup, SidebarMenuItem, SidebarProvider, SidebarTrigger, type SizeType$2 as SizeType, Switch, SwitchThumbVariants, SwitchVariants, Table, type TableAction, TableBody, type TableBodyProps, TableCell, TableCellHead, type TableCellHeadProps, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableRootProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, type TextAlignValue, TextEditor, type TextEditorProps, Textarea, type TextareaProps, ToastProvider, type ToolbarButtonProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UploadConfig, type UploadStatus, type UploadedFile, chipVariants, formatDateLocal, formatDateToString, generatePages, getCalendarDays, getFormatConfig, getWeekEventSegments, handleDecrement, handleIncrement, handleInputChange, handleKeyDown, inputVariants, isSameDate, isToday, monthsFull, monthsShort, normalize, parseLocalDate, parseMonthName, toDateOnly, useCopy, useIsMobile, useSheetHref, useSidebar, useTabHref, useToast };
|