@herca/r-kit 0.0.16 → 0.0.17
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.d.cts +746 -0
- package/dist/clients.d.ts +746 -0
- package/dist/components/hero/index.d.cts +6 -0
- package/dist/components/hero/index.d.ts +6 -0
- package/dist/components/icons/index.d.cts +8 -0
- package/dist/components/icons/index.d.ts +8 -0
- package/dist/index.d.cts +156 -0
- package/dist/index.d.ts +156 -0
- package/dist/type-B49-vkNZ.d.cts +298 -0
- package/dist/type-B49-vkNZ.d.ts +298 -0
- package/dist/type-fvT6Ki3j.d.cts +26 -0
- package/dist/type-fvT6Ki3j.d.ts +26 -0
- package/package.json +3 -5
|
@@ -0,0 +1,746 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import react__default, { ReactNode } from 'react';
|
|
3
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
4
|
+
import { VariantProps } from 'class-variance-authority';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
7
|
+
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
8
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
9
|
+
import { I as IconNameProps } from './type-B49-vkNZ.cjs';
|
|
10
|
+
import * as DropdownMenu from '@radix-ui/react-dropdown-menu';
|
|
11
|
+
import { b as TextVariant } from './type-fvT6Ki3j.cjs';
|
|
12
|
+
|
|
13
|
+
type SizeType$1 = "sm" | "md" | "lg";
|
|
14
|
+
type ColorType$1 = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray";
|
|
15
|
+
type IconType = "check" | "minus";
|
|
16
|
+
interface CheckboxProps {
|
|
17
|
+
id?: string;
|
|
18
|
+
value?: string;
|
|
19
|
+
checked?: boolean;
|
|
20
|
+
defaultChecked?: boolean;
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
required?: boolean;
|
|
23
|
+
size?: SizeType$1;
|
|
24
|
+
color?: ColorType$1;
|
|
25
|
+
icon?: IconType;
|
|
26
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
27
|
+
className?: string;
|
|
28
|
+
}
|
|
29
|
+
interface CheckboxGroupProps {
|
|
30
|
+
value?: string[];
|
|
31
|
+
defaultValue?: string[];
|
|
32
|
+
onValueChange?: (value: string[]) => void;
|
|
33
|
+
disabled?: boolean;
|
|
34
|
+
required?: boolean;
|
|
35
|
+
name?: string;
|
|
36
|
+
size?: SizeType$1;
|
|
37
|
+
color?: ColorType$1;
|
|
38
|
+
icon?: IconType;
|
|
39
|
+
className?: string;
|
|
40
|
+
children?: React.ReactNode;
|
|
41
|
+
}
|
|
42
|
+
interface CheckboxGroupContextValue {
|
|
43
|
+
value?: string[];
|
|
44
|
+
onValueChange?: (value: string[]) => void;
|
|
45
|
+
disabled?: boolean;
|
|
46
|
+
name?: string;
|
|
47
|
+
size?: SizeType$1;
|
|
48
|
+
color?: ColorType$1;
|
|
49
|
+
icon?: "check" | "minus";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
declare const CheckboxGroup: react__default.FC<CheckboxGroupProps & {
|
|
53
|
+
label?: string;
|
|
54
|
+
hint?: string;
|
|
55
|
+
description?: string;
|
|
56
|
+
errorMessages?: string | string[];
|
|
57
|
+
direction?: "horizontal" | "vertical";
|
|
58
|
+
}>;
|
|
59
|
+
declare const BaseCheckbox: react__default.FC<CheckboxProps>;
|
|
60
|
+
declare const Checkbox: react__default.FC<CheckboxProps & {
|
|
61
|
+
label?: string;
|
|
62
|
+
description?: string;
|
|
63
|
+
hint?: string;
|
|
64
|
+
errorMessages?: string | string[];
|
|
65
|
+
vertical?: boolean;
|
|
66
|
+
}>;
|
|
67
|
+
|
|
68
|
+
declare const CheckboxVariants: (props?: ({
|
|
69
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
70
|
+
color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray" | null | undefined;
|
|
71
|
+
checked?: boolean | null | undefined;
|
|
72
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
73
|
+
declare const CheckboxIndicatorVariants: (props?: ({
|
|
74
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
75
|
+
color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray" | null | undefined;
|
|
76
|
+
icon?: "check" | "minus" | null | undefined;
|
|
77
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
78
|
+
|
|
79
|
+
declare const chipVariants: (props?: ({
|
|
80
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
81
|
+
color?: "primary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray" | null | undefined;
|
|
82
|
+
state?: "disabled" | "default" | "selected" | null | undefined;
|
|
83
|
+
block?: boolean | null | undefined;
|
|
84
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
85
|
+
type ChipVariants = VariantProps<typeof chipVariants>;
|
|
86
|
+
|
|
87
|
+
type ChipValue = string | number;
|
|
88
|
+
type ColorVariantType = "gray" | "primary" | "success" | "danger" | "warning" | "info" | "purple" | "orange";
|
|
89
|
+
interface ChipContextValue {
|
|
90
|
+
selectedValues: ChipValue[];
|
|
91
|
+
toggleSelection: (value: ChipValue) => void;
|
|
92
|
+
color?: ColorVariantType;
|
|
93
|
+
size?: "sm" | "md" | "lg";
|
|
94
|
+
block?: boolean;
|
|
95
|
+
}
|
|
96
|
+
interface ChipProps extends Omit<VariantProps<typeof chipVariants>, "state"> {
|
|
97
|
+
value?: ChipValue;
|
|
98
|
+
selected?: boolean;
|
|
99
|
+
disabled?: boolean;
|
|
100
|
+
onClick?: (value?: ChipValue) => void;
|
|
101
|
+
children: React.ReactNode;
|
|
102
|
+
className?: string;
|
|
103
|
+
}
|
|
104
|
+
interface ChipOptionProps {
|
|
105
|
+
value: string | number;
|
|
106
|
+
label: string;
|
|
107
|
+
disabled?: boolean;
|
|
108
|
+
icon?: React.ReactNode;
|
|
109
|
+
}
|
|
110
|
+
type ChipSelectedProps = ChipValue | ChipValue[];
|
|
111
|
+
interface ChipArrayProps {
|
|
112
|
+
options?: ChipOptionProps[];
|
|
113
|
+
selected?: ChipSelectedProps;
|
|
114
|
+
onSelect?: (selected: ChipValue[]) => void;
|
|
115
|
+
direction?: "horizontal" | "vertical";
|
|
116
|
+
color?: ColorVariantType;
|
|
117
|
+
multiple?: boolean;
|
|
118
|
+
scrollable?: boolean;
|
|
119
|
+
block?: boolean;
|
|
120
|
+
size?: "sm" | "md" | "lg";
|
|
121
|
+
footer?: React.ReactNode;
|
|
122
|
+
header?: React.ReactNode;
|
|
123
|
+
children?: React.ReactNode;
|
|
124
|
+
className?: string;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
declare const Chip: react__default.FC<ChipProps>;
|
|
128
|
+
|
|
129
|
+
declare const ChipGroup: react__default.FC<ChipArrayProps>;
|
|
130
|
+
|
|
131
|
+
declare const ChipContext: react.Context<ChipContextValue | null>;
|
|
132
|
+
|
|
133
|
+
declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
134
|
+
declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
135
|
+
declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
136
|
+
|
|
137
|
+
declare const inputVariants: (props?: ({
|
|
138
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
139
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
140
|
+
type InputVariantProps = VariantProps<typeof inputVariants>;
|
|
141
|
+
|
|
142
|
+
interface InputProps extends Omit<react.ComponentProps<"input">, "size">, InputVariantProps {
|
|
143
|
+
leftAddon?: react.ReactNode;
|
|
144
|
+
rightAddon?: react.ReactNode;
|
|
145
|
+
label?: string;
|
|
146
|
+
hint?: string;
|
|
147
|
+
errorMessages?: string | string[];
|
|
148
|
+
inputSize?: number;
|
|
149
|
+
description?: string;
|
|
150
|
+
leftAddonClassName?: string;
|
|
151
|
+
rightAddonClassName?: string;
|
|
152
|
+
isError?: boolean;
|
|
153
|
+
mergedAddon?: boolean;
|
|
154
|
+
onContainerResize?: (width: number) => void;
|
|
155
|
+
}
|
|
156
|
+
declare const Input: react.ForwardRefExoticComponent<Omit<InputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
157
|
+
|
|
158
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: react__default.ComponentProps<"div"> & {
|
|
159
|
+
defaultOpen?: boolean;
|
|
160
|
+
open?: boolean;
|
|
161
|
+
onOpenChange?: (open: boolean) => void;
|
|
162
|
+
}): react_jsx_runtime.JSX.Element;
|
|
163
|
+
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: react__default.ComponentProps<"div"> & {
|
|
164
|
+
side?: "left" | "right";
|
|
165
|
+
variant?: "sidebar" | "floating" | "inset";
|
|
166
|
+
collapsible?: "offcanvas" | "icon" | "none";
|
|
167
|
+
}): react_jsx_runtime.JSX.Element;
|
|
168
|
+
declare function SidebarTrigger({ className, onClick, ...props }: react__default.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
169
|
+
declare function SidebarInset({ className, ...props }: react__default.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
|
|
170
|
+
declare function SidebarInput({ className, ...props }: react__default.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
171
|
+
declare function SidebarHeader({ className, ...props }: react__default.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
172
|
+
declare function SidebarFooter({ className, ...props }: react__default.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
173
|
+
declare function SidebarContent({ className, ...props }: react__default.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
174
|
+
declare function SidebarMenu({ className, ...props }: react__default.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
175
|
+
type SidebarMenuItemProps = react__default.ComponentProps<"li"> & {
|
|
176
|
+
active?: boolean;
|
|
177
|
+
icon?: react__default.ReactNode;
|
|
178
|
+
asChild?: boolean;
|
|
179
|
+
};
|
|
180
|
+
declare function SidebarMenuItem({ children, className, icon, active, asChild, ...props }: SidebarMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
181
|
+
interface SidebarMenuGroupProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
182
|
+
children: react__default.ReactNode;
|
|
183
|
+
className?: string;
|
|
184
|
+
icon?: react__default.ReactNode;
|
|
185
|
+
label: string;
|
|
186
|
+
active?: boolean;
|
|
187
|
+
}
|
|
188
|
+
declare function SidebarMenuGroup({ children, className, icon, label, active, ...props }: SidebarMenuGroupProps): react_jsx_runtime.JSX.Element;
|
|
189
|
+
|
|
190
|
+
type SidebarContextProps = {
|
|
191
|
+
state: "expanded" | "collapsed";
|
|
192
|
+
open: boolean;
|
|
193
|
+
setOpen: (open: boolean) => void;
|
|
194
|
+
openMobile: boolean;
|
|
195
|
+
setOpenMobile: (open: boolean) => void;
|
|
196
|
+
isMobile: boolean;
|
|
197
|
+
toggleSidebar: () => void;
|
|
198
|
+
isHovered: boolean;
|
|
199
|
+
setIsHovered: (hovered: boolean) => void;
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
declare const SidebarContext: react__default.Context<SidebarContextProps | null>;
|
|
203
|
+
declare const useSidebar: () => SidebarContextProps;
|
|
204
|
+
|
|
205
|
+
declare function Sheet({ ...props }: react.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
206
|
+
declare function SheetTrigger({ ...props }: react.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
207
|
+
declare function SheetClose({ ...props }: react.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
208
|
+
declare function SheetContent({ className, children, side, ...props }: react.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
209
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
210
|
+
}): react_jsx_runtime.JSX.Element;
|
|
211
|
+
declare function SheetHeader({ className, ...props }: react.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
212
|
+
declare function SheetFooter({ className, ...props }: react.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
213
|
+
declare function SheetTitle({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
214
|
+
declare function SheetDescription({ className, ...props }: react.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
215
|
+
|
|
216
|
+
declare function TooltipProvider({ delayDuration, ...props }: react.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
217
|
+
declare function Tooltip({ ...props }: react.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
218
|
+
declare function TooltipTrigger({ ...props }: react.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
219
|
+
declare function TooltipContent({ className, sideOffset, children, ...props }: react.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
220
|
+
|
|
221
|
+
declare const modalVariants: (props?: ({
|
|
222
|
+
size?: "sm" | "md" | "lg" | "xs" | "full" | null | undefined;
|
|
223
|
+
state?: "open" | "closed" | null | undefined;
|
|
224
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
225
|
+
declare const modalOverlayVariants: (props?: ({
|
|
226
|
+
position?: "center" | "top" | "bottom" | null | undefined;
|
|
227
|
+
state?: "open" | "closed" | null | undefined;
|
|
228
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
229
|
+
type modalOverlayVariantsProps = VariantProps<typeof modalOverlayVariants>;
|
|
230
|
+
type ModalVariantProps = VariantProps<typeof modalVariants>;
|
|
231
|
+
|
|
232
|
+
interface ModalProps extends ModalVariantProps, modalOverlayVariantsProps {
|
|
233
|
+
isOpen: boolean;
|
|
234
|
+
onClose: () => void;
|
|
235
|
+
children: ReactNode;
|
|
236
|
+
closeOnOverlayClick?: boolean;
|
|
237
|
+
showCloseButton?: boolean;
|
|
238
|
+
closable?: boolean;
|
|
239
|
+
title?: string;
|
|
240
|
+
description?: string;
|
|
241
|
+
}
|
|
242
|
+
interface ModalComponentProps {
|
|
243
|
+
children: ReactNode;
|
|
244
|
+
className?: string;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
declare const Modal: react__default.FC<ModalProps>;
|
|
248
|
+
declare const ModalHeader: react__default.FC<ModalComponentProps>;
|
|
249
|
+
declare const ModalTitle: react__default.FC<ModalComponentProps>;
|
|
250
|
+
declare const ModalDescription: react__default.FC<ModalComponentProps>;
|
|
251
|
+
declare const ModalBody: react__default.FC<ModalComponentProps>;
|
|
252
|
+
declare const ModalFooter: react__default.FC<ModalComponentProps>;
|
|
253
|
+
|
|
254
|
+
interface FileItem {
|
|
255
|
+
file: File;
|
|
256
|
+
label?: string;
|
|
257
|
+
hint?: string;
|
|
258
|
+
customName?: string;
|
|
259
|
+
errorMessage?: string;
|
|
260
|
+
preview: string;
|
|
261
|
+
}
|
|
262
|
+
interface InputFileProps extends PlayerProps {
|
|
263
|
+
value?: FileItem[];
|
|
264
|
+
onChange?: (files: FileItem[]) => void;
|
|
265
|
+
multiple?: boolean;
|
|
266
|
+
accept?: string;
|
|
267
|
+
maxSize?: number;
|
|
268
|
+
maxFiles?: number;
|
|
269
|
+
disabled?: boolean;
|
|
270
|
+
variant?: "primary" | "secondary" | "gray" | "medium" | "large";
|
|
271
|
+
label?: string;
|
|
272
|
+
hint?: string;
|
|
273
|
+
buttonLabel?: string;
|
|
274
|
+
errorMessage?: string;
|
|
275
|
+
maxSizeErrorMessage?: string;
|
|
276
|
+
customNamePlaceholder?: string;
|
|
277
|
+
maxFilesErrorMessage?: string;
|
|
278
|
+
useCustomName?: boolean;
|
|
279
|
+
}
|
|
280
|
+
interface PreviewItemProps extends PlayerProps {
|
|
281
|
+
data: FileItem;
|
|
282
|
+
onRemove: () => void;
|
|
283
|
+
onReplace: () => void;
|
|
284
|
+
disabled?: boolean;
|
|
285
|
+
onCustomNameChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
286
|
+
labelCustomName?: string;
|
|
287
|
+
customNamePlaceholder?: string;
|
|
288
|
+
customName?: string;
|
|
289
|
+
}
|
|
290
|
+
interface PlayerProps {
|
|
291
|
+
pdfViewerProps?: React.IframeHTMLAttributes<HTMLIFrameElement>;
|
|
292
|
+
audioPlayerProps?: React.AudioHTMLAttributes<HTMLAudioElement>;
|
|
293
|
+
videoPlayerProps?: React.VideoHTMLAttributes<HTMLVideoElement>;
|
|
294
|
+
}
|
|
295
|
+
interface InputFileRef {
|
|
296
|
+
clearAll: () => void;
|
|
297
|
+
getFiles: () => FileItem[];
|
|
298
|
+
openFilePicker: () => void;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
declare const InputFile: react.ForwardRefExoticComponent<InputFileProps & react.RefAttributes<InputFileRef>>;
|
|
302
|
+
|
|
303
|
+
declare const PreviewItem: ({ data, onRemove, onReplace, disabled, labelCustomName, onCustomNameChange, customNamePlaceholder, customName, audioPlayerProps, pdfViewerProps, videoPlayerProps, }: PreviewItemProps) => react_jsx_runtime.JSX.Element;
|
|
304
|
+
|
|
305
|
+
interface ModalPreviewProps {
|
|
306
|
+
onClose: () => void;
|
|
307
|
+
src: string;
|
|
308
|
+
name: string;
|
|
309
|
+
type: string;
|
|
310
|
+
iframeProps?: React.IframeHTMLAttributes<HTMLIFrameElement>;
|
|
311
|
+
audioProps?: React.AudioHTMLAttributes<HTMLAudioElement>;
|
|
312
|
+
videoProps?: React.VideoHTMLAttributes<HTMLVideoElement>;
|
|
313
|
+
open: {
|
|
314
|
+
isOpen: boolean;
|
|
315
|
+
isVisible: boolean;
|
|
316
|
+
};
|
|
317
|
+
}
|
|
318
|
+
declare const ModalPreviewAttachment: ({ onClose, open, src, name, type, iframeProps, audioProps, videoProps, }: ModalPreviewProps) => react_jsx_runtime.JSX.Element | null;
|
|
319
|
+
|
|
320
|
+
interface CounterProps {
|
|
321
|
+
iconLeft?: React.ReactNode;
|
|
322
|
+
iconRight?: React.ReactNode;
|
|
323
|
+
className?: string;
|
|
324
|
+
canMinus?: boolean;
|
|
325
|
+
inputWidth?: string;
|
|
326
|
+
variant?: "primary" | "secondary";
|
|
327
|
+
disabled?: boolean;
|
|
328
|
+
size?: "sm" | "md" | "lg";
|
|
329
|
+
value?: string;
|
|
330
|
+
defaultValue?: string;
|
|
331
|
+
onChange?: (value: string) => void;
|
|
332
|
+
}
|
|
333
|
+
interface ButtonIconProps {
|
|
334
|
+
icon: IconNameProps;
|
|
335
|
+
disabled?: boolean;
|
|
336
|
+
onClick: () => void;
|
|
337
|
+
variant?: "primary" | "secondary";
|
|
338
|
+
iconClassName?: string;
|
|
339
|
+
}
|
|
340
|
+
interface CounterControllerProps {
|
|
341
|
+
value: string;
|
|
342
|
+
valueUpdater: (value: string) => void;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
declare const Counter: ({ iconLeft, iconRight, className, canMinus, inputWidth, disabled, variant, size, value: externalValue, defaultValue, onChange, }: CounterProps) => react_jsx_runtime.JSX.Element;
|
|
346
|
+
|
|
347
|
+
declare const normalize: (raw: string) => string;
|
|
348
|
+
declare const handleKeyDown: ({ e, canMinus, value, valueUpdater: updateValue, }: {
|
|
349
|
+
e: React.KeyboardEvent<HTMLInputElement>;
|
|
350
|
+
canMinus?: boolean;
|
|
351
|
+
value: string;
|
|
352
|
+
valueUpdater: (value: string) => void;
|
|
353
|
+
}) => void;
|
|
354
|
+
declare const handleIncrement: ({ value, valueUpdater: updateValue, }: CounterControllerProps) => void;
|
|
355
|
+
declare const handleDecrement: ({ value, valueUpdater: updateValue, canMinus, }: CounterControllerProps & {
|
|
356
|
+
canMinus?: boolean;
|
|
357
|
+
}) => void;
|
|
358
|
+
declare const handleInputChange: ({ e, valueUpdater: updateValue, }: {
|
|
359
|
+
e: React.ChangeEvent<HTMLInputElement>;
|
|
360
|
+
valueUpdater: (value: string) => void;
|
|
361
|
+
}) => void;
|
|
362
|
+
|
|
363
|
+
interface InputOTPProps {
|
|
364
|
+
length?: number;
|
|
365
|
+
value: string;
|
|
366
|
+
onChange: (value: string) => void;
|
|
367
|
+
label?: string;
|
|
368
|
+
hint?: string;
|
|
369
|
+
description?: string;
|
|
370
|
+
errorMessages?: string | string[];
|
|
371
|
+
disabled?: boolean;
|
|
372
|
+
className?: string;
|
|
373
|
+
size?: "sm" | "md" | "lg";
|
|
374
|
+
}
|
|
375
|
+
declare const InputOTP: {
|
|
376
|
+
({ length, value, onChange, label, hint, description, errorMessages, disabled, className, size, }: InputOTPProps): react_jsx_runtime.JSX.Element;
|
|
377
|
+
displayName: string;
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
declare function Dropdown({ children, ...props }: {
|
|
381
|
+
children: React.ReactNode;
|
|
382
|
+
} & DropdownMenu.DropdownMenuProps): react_jsx_runtime.JSX.Element;
|
|
383
|
+
declare function DropdownTrigger({ children, ...props }: {
|
|
384
|
+
children: React.ReactNode;
|
|
385
|
+
} & DropdownMenu.DropdownMenuTriggerProps): react_jsx_runtime.JSX.Element;
|
|
386
|
+
declare function DropdownContent({ children, className, portalProps, ...props }: {
|
|
387
|
+
children: React.ReactNode;
|
|
388
|
+
portalProps?: DropdownMenu.DropdownMenuPortalProps;
|
|
389
|
+
} & DropdownMenu.DropdownMenuContentProps): react_jsx_runtime.JSX.Element;
|
|
390
|
+
declare function DropdownItem({ children, className, ...props }: {
|
|
391
|
+
children: React.ReactNode;
|
|
392
|
+
} & DropdownMenu.DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
393
|
+
|
|
394
|
+
declare function useCopy(): {
|
|
395
|
+
copy: (text: string) => Promise<void>;
|
|
396
|
+
copied: boolean;
|
|
397
|
+
};
|
|
398
|
+
|
|
399
|
+
declare function useIsMobile(): boolean;
|
|
400
|
+
|
|
401
|
+
interface TableRootProps {
|
|
402
|
+
className?: string;
|
|
403
|
+
children: ReactNode;
|
|
404
|
+
variant?: "basic" | "bordered" | "stripped" | "hovered" | "row-bordered" | "wrapped-row-bordered" | "headed";
|
|
405
|
+
}
|
|
406
|
+
interface TableHeadProps {
|
|
407
|
+
children: ReactNode;
|
|
408
|
+
className?: string;
|
|
409
|
+
}
|
|
410
|
+
interface TableBodyProps {
|
|
411
|
+
children: ReactNode;
|
|
412
|
+
className?: string;
|
|
413
|
+
}
|
|
414
|
+
interface TableRowProps {
|
|
415
|
+
children: ReactNode;
|
|
416
|
+
isLast?: boolean;
|
|
417
|
+
isHeader?: boolean;
|
|
418
|
+
className?: string;
|
|
419
|
+
}
|
|
420
|
+
interface TableFooterProps {
|
|
421
|
+
children: ReactNode;
|
|
422
|
+
colSpan: number;
|
|
423
|
+
className?: string;
|
|
424
|
+
}
|
|
425
|
+
type WithChildren = {
|
|
426
|
+
children: ReactNode;
|
|
427
|
+
value?: never;
|
|
428
|
+
className?: string;
|
|
429
|
+
};
|
|
430
|
+
type WithValue = {
|
|
431
|
+
value: string | number;
|
|
432
|
+
children?: never;
|
|
433
|
+
};
|
|
434
|
+
type TableCellHeadProps = {
|
|
435
|
+
className?: string;
|
|
436
|
+
onClick?: () => void;
|
|
437
|
+
} & (WithChildren | WithValue);
|
|
438
|
+
type TableCellProps = React.TdHTMLAttributes<HTMLTableCellElement> & {
|
|
439
|
+
className?: string;
|
|
440
|
+
onClick?: () => void;
|
|
441
|
+
variant?: TextVariant;
|
|
442
|
+
textClassName?: string;
|
|
443
|
+
} & (WithChildren | WithValue);
|
|
444
|
+
type TablePaginationProps = {
|
|
445
|
+
perPages?: number[];
|
|
446
|
+
currentPage: number;
|
|
447
|
+
totalPage: number;
|
|
448
|
+
selectedPerpage?: number;
|
|
449
|
+
onChangePerpage?: (val: number) => void;
|
|
450
|
+
defaultPerpage?: number;
|
|
451
|
+
showNumber?: boolean;
|
|
452
|
+
showController?: boolean;
|
|
453
|
+
numberOnClick?: (page: number) => void;
|
|
454
|
+
nextOnClick?: () => void;
|
|
455
|
+
prevOnClick?: () => void;
|
|
456
|
+
wrapperClassName?: string;
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
declare function Table({ children, variant, className, }: TableRootProps): react_jsx_runtime.JSX.Element;
|
|
460
|
+
declare function TableHead({ children, className }: TableHeadProps): react_jsx_runtime.JSX.Element;
|
|
461
|
+
declare function TableBody({ children, className }: TableBodyProps): react_jsx_runtime.JSX.Element;
|
|
462
|
+
declare function TableRow({ children, isLast, isHeader, className, }: TableRowProps): react_jsx_runtime.JSX.Element;
|
|
463
|
+
declare function TableCellHead({ children, value, className, onClick, }: TableCellHeadProps): react_jsx_runtime.JSX.Element;
|
|
464
|
+
declare function TableCell({ value, onClick, className, children, variant: variantText, textClassName, ...props }: TableCellProps): react_jsx_runtime.JSX.Element;
|
|
465
|
+
declare function TableFooter({ children, colSpan, className, }: TableFooterProps): react_jsx_runtime.JSX.Element;
|
|
466
|
+
declare function TablePagination({ perPages, currentPage, totalPage, selectedPerpage, defaultPerpage, onChangePerpage, showNumber, showController, numberOnClick, nextOnClick, prevOnClick, wrapperClassName, }: TablePaginationProps): react_jsx_runtime.JSX.Element;
|
|
467
|
+
|
|
468
|
+
declare function generatePages(current: number, total: number): (number | "...")[];
|
|
469
|
+
|
|
470
|
+
interface DotConfig {
|
|
471
|
+
color?: string;
|
|
472
|
+
count?: number;
|
|
473
|
+
}
|
|
474
|
+
interface CalendarDayConfig {
|
|
475
|
+
date: Date;
|
|
476
|
+
dots?: DotConfig[];
|
|
477
|
+
disabled?: boolean;
|
|
478
|
+
}
|
|
479
|
+
interface CalendarStyleConfig {
|
|
480
|
+
selected?: {
|
|
481
|
+
background?: string;
|
|
482
|
+
text?: string;
|
|
483
|
+
};
|
|
484
|
+
disabled?: {
|
|
485
|
+
background?: string;
|
|
486
|
+
text?: string;
|
|
487
|
+
};
|
|
488
|
+
}
|
|
489
|
+
interface DateRange$1 {
|
|
490
|
+
start: Date | null;
|
|
491
|
+
end: Date | null;
|
|
492
|
+
}
|
|
493
|
+
interface CalendarProps {
|
|
494
|
+
showNavigator?: boolean;
|
|
495
|
+
showHeader?: boolean;
|
|
496
|
+
value?: Date | null;
|
|
497
|
+
onChange?: (date: Date) => void;
|
|
498
|
+
disabledDates?: Date[];
|
|
499
|
+
dayConfigs?: CalendarDayConfig[];
|
|
500
|
+
defaultMonth?: number;
|
|
501
|
+
defaultYear?: number;
|
|
502
|
+
styleConfig?: CalendarStyleConfig;
|
|
503
|
+
daysOfWeek?: string[];
|
|
504
|
+
months?: string[];
|
|
505
|
+
wrapperClassname?: string;
|
|
506
|
+
dayWrapperClassname?: string;
|
|
507
|
+
weekWrapperClassname?: string;
|
|
508
|
+
showNextNavigator?: boolean;
|
|
509
|
+
showPrevNavigator?: boolean;
|
|
510
|
+
mode?: "single" | "range";
|
|
511
|
+
rangeValue?: DateRange$1;
|
|
512
|
+
size?: "sm" | "md" | "lg";
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
declare const Calendar: ({ showNavigator, showHeader, value, onChange, disabledDates, dayConfigs, defaultMonth, defaultYear, styleConfig, wrapperClassname, weekWrapperClassname, dayWrapperClassname, daysOfWeek, months, showNextNavigator, showPrevNavigator, mode, rangeValue, size, }: CalendarProps) => react_jsx_runtime.JSX.Element;
|
|
516
|
+
|
|
517
|
+
type DatePickerMode = "single" | "range";
|
|
518
|
+
interface DateRange {
|
|
519
|
+
start: Date | null;
|
|
520
|
+
end: Date | null;
|
|
521
|
+
}
|
|
522
|
+
type CalendarBaseProps = React.ComponentProps<typeof Calendar>;
|
|
523
|
+
type CalendarOverrideProps = Omit<CalendarBaseProps, "wrapperClassname" | "weekWrapperClassname" | "dayWrapperClassname" | "onChange" | "mode">;
|
|
524
|
+
type CalendarRangeOverrideProps = Omit<CalendarBaseProps, "wrapperClassname" | "weekWrapperClassname" | "dayWrapperClassname" | "onChange" | "value" | "rangeValue" | "mode">;
|
|
525
|
+
interface DatePickerProps {
|
|
526
|
+
format?: DateFormat;
|
|
527
|
+
mode?: DatePickerMode;
|
|
528
|
+
value?: Date | null;
|
|
529
|
+
rangeValue?: DateRange;
|
|
530
|
+
onChange?: (date: Date | null) => void;
|
|
531
|
+
onRangeChange?: (range: DateRange) => void;
|
|
532
|
+
trigger?: ReactNode;
|
|
533
|
+
onOpenChange?: (open: boolean) => void;
|
|
534
|
+
open?: boolean;
|
|
535
|
+
calendarProps?: CalendarOverrideProps;
|
|
536
|
+
startDateCalendarProps?: CalendarRangeOverrideProps;
|
|
537
|
+
endDateCalendarProps?: CalendarRangeOverrideProps;
|
|
538
|
+
wrapperClassName?: string;
|
|
539
|
+
size?: "sm" | "lg" | "md";
|
|
540
|
+
showController?: boolean;
|
|
541
|
+
align?: "start" | "center" | "end";
|
|
542
|
+
containerClassName?: string;
|
|
543
|
+
}
|
|
544
|
+
type DateFormat = "DD-MM-YYYY" | "DD/MM/YYYY" | "DD MMM YYYY" | "DD MMMM YYYY" | "YYYY-MM-DD" | "MM/DD/YYYY" | "DD-MM-YYYY HH:mm:ss" | "DD/MM/YYYY HH:mm:ss" | "DD MMM YYYY HH:mm:ss" | "DD MMMM YYYY HH:mm:ss" | "YYYY-MM-DD HH:mm:ss" | "MM/DD/YYYY HH:mm:ss" | "DD MMMM YYYY - HH:mm:ss" | "DD MMM YYYY - HH:mm:ss";
|
|
545
|
+
|
|
546
|
+
declare const DatePicker: ({ format, mode, value: controlledValue, rangeValue: controlledRangeValue, onChange: controlledOnChange, onRangeChange: controlledOnRangeChange, trigger, open, onOpenChange, calendarProps, endDateCalendarProps, startDateCalendarProps, wrapperClassName, size, showController, align, containerClassName, }: DatePickerProps) => react_jsx_runtime.JSX.Element;
|
|
547
|
+
|
|
548
|
+
declare const monthsShort: string[];
|
|
549
|
+
declare const monthsFull: string[];
|
|
550
|
+
declare const getFormatConfig: (format: DateFormat) => {
|
|
551
|
+
separator: string;
|
|
552
|
+
placeholder: string;
|
|
553
|
+
maxLength: number;
|
|
554
|
+
};
|
|
555
|
+
declare const formatDateToString: (date: Date | null, format: DateFormat) => string;
|
|
556
|
+
declare const parseMonthName: (monthStr: string) => number | null;
|
|
557
|
+
|
|
558
|
+
interface TextareaProps extends react.ComponentProps<"textarea"> {
|
|
559
|
+
label?: string;
|
|
560
|
+
hint?: string;
|
|
561
|
+
description?: string;
|
|
562
|
+
errorMessages?: string | string[];
|
|
563
|
+
}
|
|
564
|
+
declare function Textarea({ label, hint, description, errorMessages, className, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
565
|
+
|
|
566
|
+
type SizeType = "sm" | "md" | "lg";
|
|
567
|
+
type ColorType = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray";
|
|
568
|
+
interface SwitchProps {
|
|
569
|
+
id?: string;
|
|
570
|
+
checked?: boolean;
|
|
571
|
+
defaultChecked?: boolean;
|
|
572
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
573
|
+
disabled?: boolean;
|
|
574
|
+
required?: boolean;
|
|
575
|
+
name?: string;
|
|
576
|
+
size?: SizeType;
|
|
577
|
+
color?: ColorType;
|
|
578
|
+
className?: string;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
declare const BaseSwitch: react__default.FC<SwitchProps>;
|
|
582
|
+
declare const Switch: react__default.FC<SwitchProps & {
|
|
583
|
+
label?: string;
|
|
584
|
+
description?: string;
|
|
585
|
+
errorMessages?: string | string[];
|
|
586
|
+
hint?: string;
|
|
587
|
+
direction?: "horizontal" | "vertical" | "horizontal-reverse" | "vertical-reverse";
|
|
588
|
+
}>;
|
|
589
|
+
|
|
590
|
+
declare const SwitchVariants: (props?: ({
|
|
591
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
592
|
+
color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "orange" | "purple" | "gray" | null | undefined;
|
|
593
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
594
|
+
declare const SwitchThumbVariants: (props?: ({
|
|
595
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
596
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
597
|
+
|
|
598
|
+
type ColorVariant = "primary" | "info" | "success" | "warning" | "orange" | "danger" | "purple" | "gray" | "secondary";
|
|
599
|
+
interface ToastProps {
|
|
600
|
+
color?: ColorVariant;
|
|
601
|
+
title: string;
|
|
602
|
+
description: string;
|
|
603
|
+
onClose?: () => void;
|
|
604
|
+
icon?: IconNameProps;
|
|
605
|
+
onClickAction?: () => void;
|
|
606
|
+
actionLabel?: string;
|
|
607
|
+
iconSize?: number;
|
|
608
|
+
variant?: "outline";
|
|
609
|
+
duration?: number;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
type Position = "top-right" | "top-left" | "bottom-right" | "bottom-left" | "top-center" | "bottom-center";
|
|
613
|
+
declare function ToastProvider({ children, position, }: {
|
|
614
|
+
children: React.ReactNode;
|
|
615
|
+
position?: Position;
|
|
616
|
+
}): react_jsx_runtime.JSX.Element;
|
|
617
|
+
|
|
618
|
+
type ToastContextType = {
|
|
619
|
+
show: (props: ToastProps) => void;
|
|
620
|
+
};
|
|
621
|
+
|
|
622
|
+
declare function useToast(): ToastContextType;
|
|
623
|
+
|
|
624
|
+
type FormSizeType = "sm" | "md" | "lg" | null;
|
|
625
|
+
interface FormLabelProps {
|
|
626
|
+
htmlFor?: string;
|
|
627
|
+
required?: boolean;
|
|
628
|
+
size?: FormSizeType;
|
|
629
|
+
className?: string;
|
|
630
|
+
children: React.ReactNode;
|
|
631
|
+
}
|
|
632
|
+
interface FormDescriptionProps {
|
|
633
|
+
size?: FormSizeType;
|
|
634
|
+
className?: string;
|
|
635
|
+
children: React.ReactNode;
|
|
636
|
+
}
|
|
637
|
+
interface FormHintProps {
|
|
638
|
+
size?: FormSizeType;
|
|
639
|
+
className?: string;
|
|
640
|
+
children: React.ReactNode;
|
|
641
|
+
}
|
|
642
|
+
interface FormErrorMessagesProps {
|
|
643
|
+
messages?: string | string[];
|
|
644
|
+
size?: FormSizeType;
|
|
645
|
+
className?: string;
|
|
646
|
+
}
|
|
647
|
+
interface FormErrorMessageProps {
|
|
648
|
+
size?: FormSizeType;
|
|
649
|
+
className?: string;
|
|
650
|
+
children: React.ReactNode;
|
|
651
|
+
}
|
|
652
|
+
interface FormFieldProps {
|
|
653
|
+
label?: string;
|
|
654
|
+
description?: string;
|
|
655
|
+
hint?: string;
|
|
656
|
+
errorMessages?: string | string[];
|
|
657
|
+
required?: boolean;
|
|
658
|
+
size?: FormSizeType;
|
|
659
|
+
htmlFor?: string;
|
|
660
|
+
className?: string;
|
|
661
|
+
children: React.ReactNode;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
declare const FormDescription: React.FC<FormDescriptionProps>;
|
|
665
|
+
|
|
666
|
+
declare const FormErrorMessages: React.FC<FormErrorMessagesProps>;
|
|
667
|
+
declare const FormErrorMessage: React.FC<FormErrorMessageProps>;
|
|
668
|
+
|
|
669
|
+
declare const FormField: react__default.ForwardRefExoticComponent<FormFieldProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
670
|
+
|
|
671
|
+
declare const FormHint: React.FC<FormHintProps>;
|
|
672
|
+
|
|
673
|
+
declare const FormLabel: React.FC<FormLabelProps>;
|
|
674
|
+
|
|
675
|
+
interface BaseOption {
|
|
676
|
+
value: string | number;
|
|
677
|
+
label: string;
|
|
678
|
+
}
|
|
679
|
+
type SelectOption<T = unknown> = BaseOption & T;
|
|
680
|
+
interface RenderOptionState {
|
|
681
|
+
selected: boolean;
|
|
682
|
+
}
|
|
683
|
+
interface SelectProps {
|
|
684
|
+
/** Array of options to display in the select */
|
|
685
|
+
options?: SelectOption[];
|
|
686
|
+
/** Current selected value(s) - single option for normal select, array for multi */
|
|
687
|
+
value?: SelectOption | SelectOption[] | null;
|
|
688
|
+
/** Callback function when selection changes */
|
|
689
|
+
onChange: (value: SelectOption | SelectOption[] | null) => void;
|
|
690
|
+
/** Enable multiple selection mode */
|
|
691
|
+
isMulti?: boolean;
|
|
692
|
+
/** Placeholder text when no value is selected */
|
|
693
|
+
placeholder?: string;
|
|
694
|
+
/** Enable search/filter functionality */
|
|
695
|
+
isSearchable?: boolean;
|
|
696
|
+
/** Show clear button to reset selection */
|
|
697
|
+
isClearable?: boolean;
|
|
698
|
+
/** Disable the entire select component */
|
|
699
|
+
isDisabled?: boolean;
|
|
700
|
+
/** Custom render function for option items in dropdown */
|
|
701
|
+
renderOption?: ((option: SelectOption, state: RenderOptionState) => React.ReactNode) | null;
|
|
702
|
+
/** Custom render function for selected value display */
|
|
703
|
+
renderValue?: ((option: SelectOption) => React.ReactNode) | null;
|
|
704
|
+
/** Additional CSS classes for the container */
|
|
705
|
+
className?: string;
|
|
706
|
+
label?: string;
|
|
707
|
+
description?: string;
|
|
708
|
+
hint?: string;
|
|
709
|
+
errorMessages?: string | string[];
|
|
710
|
+
onLoadMore?: () => void;
|
|
711
|
+
isLoadingMore?: boolean;
|
|
712
|
+
treshold?: number;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
declare const Select: react__default.FC<SelectProps>;
|
|
716
|
+
|
|
717
|
+
interface TabsProps {
|
|
718
|
+
defaultValue?: string;
|
|
719
|
+
value?: string;
|
|
720
|
+
onValueChange?: (value: string) => void;
|
|
721
|
+
orientation?: "horizontal" | "vertical";
|
|
722
|
+
className?: string;
|
|
723
|
+
children: React.ReactNode;
|
|
724
|
+
}
|
|
725
|
+
interface TabsListProps {
|
|
726
|
+
className?: string;
|
|
727
|
+
children: React.ReactNode;
|
|
728
|
+
}
|
|
729
|
+
interface TabsTriggerProps {
|
|
730
|
+
value: string;
|
|
731
|
+
disabled?: boolean;
|
|
732
|
+
className?: string;
|
|
733
|
+
children: React.ReactNode;
|
|
734
|
+
}
|
|
735
|
+
interface TabsContentProps {
|
|
736
|
+
value: string;
|
|
737
|
+
className?: string;
|
|
738
|
+
children: React.ReactNode;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
declare const Tabs: react__default.FC<TabsProps>;
|
|
742
|
+
declare const TabsList: react__default.FC<TabsListProps>;
|
|
743
|
+
declare const TabsTrigger: react__default.FC<TabsTriggerProps>;
|
|
744
|
+
declare const TabsContent: react__default.FC<TabsContentProps>;
|
|
745
|
+
|
|
746
|
+
export { BaseCheckbox, BaseSwitch, type ButtonIconProps, type CalendarBaseProps, type CalendarOverrideProps, type CalendarRangeOverrideProps, 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 ColorType$1 as ColorType, type ColorVariantType, Counter, type CounterControllerProps, type CounterProps, type DateFormat, DatePicker, type DatePickerMode, type DatePickerProps, type DateRange, Dropdown, DropdownContent, DropdownItem, DropdownTrigger, type FileItem, FormDescription, type FormDescriptionProps, FormErrorMessage, type FormErrorMessageProps, FormErrorMessages, type FormErrorMessagesProps, FormField, type FormFieldProps, FormHint, type FormHintProps, FormLabel, type FormLabelProps, type FormSizeType, type IconType, Input, InputFile, type InputFileProps, type InputFileRef, InputOTP, type InputOTPProps, type InputProps, type InputVariantProps, Modal, ModalBody, ModalDescription, ModalFooter, ModalHeader, ModalPreviewAttachment, ModalTitle, type PlayerProps, PreviewItem, type PreviewItemProps, Select, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuGroup, SidebarMenuItem, SidebarProvider, SidebarTrigger, type SizeType$1 as SizeType, Switch, SwitchThumbVariants, SwitchVariants, Table, 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, Textarea, type TextareaProps, ToastProvider, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, chipVariants, formatDateToString, generatePages, getFormatConfig, handleDecrement, handleIncrement, handleInputChange, handleKeyDown, inputVariants, monthsFull, monthsShort, normalize, parseMonthName, useCopy, useIsMobile, useSidebar, useToast };
|