@diyet24/design-system 0.1.0

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.
@@ -0,0 +1,1068 @@
1
+ import * as class_variance_authority_types from 'class-variance-authority/types';
2
+ import * as React$1 from 'react';
3
+ import { VariantProps } from 'class-variance-authority';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
6
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
7
+ import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
8
+ import * as AvatarPrimitive from '@radix-ui/react-avatar';
9
+ import { DayPicker } from 'react-day-picker';
10
+ import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
11
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
12
+ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
13
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
14
+ import { DialogProps } from '@radix-ui/react-dialog';
15
+ import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
16
+ import * as vaul from 'vaul';
17
+ import { Drawer as Drawer$1 } from 'vaul';
18
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
19
+ import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
20
+ import * as input_otp from 'input-otp';
21
+ import * as LabelPrimitive from '@radix-ui/react-label';
22
+ import * as MenubarPrimitive from '@radix-ui/react-menubar';
23
+ import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
24
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
25
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
26
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
27
+ import * as ResizablePrimitive from 'react-resizable-panels';
28
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
29
+ import * as SelectPrimitive from '@radix-ui/react-select';
30
+ import * as SeparatorPrimitive from '@radix-ui/react-separator';
31
+ import * as SliderPrimitive from '@radix-ui/react-slider';
32
+ import * as SwitchPrimitive from '@radix-ui/react-switch';
33
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
34
+ import * as TogglePrimitive from '@radix-ui/react-toggle';
35
+ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
36
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
37
+ import { ExternalToast } from 'sonner';
38
+ import { ColumnDef, RowSelectionState } from '@tanstack/react-table';
39
+ import { ClassValue } from 'clsx';
40
+
41
+ declare const buttonVariants: (props?: ({
42
+ variant?: "contained" | "outline" | "ghost" | "tonal" | "link" | null | undefined;
43
+ color?: "primary" | "secondary" | "success" | "info" | "warning" | "danger" | null | undefined;
44
+ size?: "sm" | "default" | "lg" | "xl" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
45
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
46
+ interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color">, VariantProps<typeof buttonVariants> {
47
+ asChild?: boolean;
48
+ }
49
+ declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
50
+
51
+ declare const inputVariants: (props?: ({
52
+ variant?: "success" | "default" | "error" | null | undefined;
53
+ inputSize?: "sm" | "default" | "lg" | null | undefined;
54
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
55
+ interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement>, VariantProps<typeof inputVariants> {
56
+ }
57
+ declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
58
+
59
+ declare const badgeVariants: (props?: ({
60
+ variant?: "outline" | "primary" | "secondary" | "success" | "info" | "warning" | "danger" | "default" | "outline-secondary" | "light" | "light-secondary" | "light-success" | "light-info" | "light-warning" | "light-danger" | null | undefined;
61
+ size?: "sm" | "default" | "lg" | null | undefined;
62
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
63
+ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
64
+ }
65
+ declare function Badge({ className, variant, size, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
66
+
67
+ declare const cardVariants: (props?: ({
68
+ variant?: "primary" | "success" | "warning" | "danger" | "default" | "interactive" | "elevated" | "flat" | null | undefined;
69
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
70
+ interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
71
+ }
72
+ declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
73
+ declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
74
+ declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
75
+ declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
76
+ declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
77
+ declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
78
+
79
+ declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
80
+ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
81
+ declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
82
+ declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
83
+
84
+ declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
85
+ variant?: "primary" | "secondary" | "success" | "info" | "warning" | "danger" | "default" | null | undefined;
86
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
87
+ declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
88
+ declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
89
+
90
+ declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
91
+ declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
92
+ declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
93
+ declare const AlertDialogHeader: {
94
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
95
+ displayName: string;
96
+ };
97
+ declare const AlertDialogFooter: {
98
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
99
+ displayName: string;
100
+ };
101
+ declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
102
+ declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
103
+ declare const AlertDialogAction: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
104
+ declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
105
+
106
+ declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
107
+
108
+ declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
109
+ declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
110
+ declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
111
+
112
+ declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
113
+ separator?: React$1.ComponentType<{
114
+ className?: string;
115
+ }>;
116
+ } & React$1.RefAttributes<HTMLElement>>;
117
+ declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
118
+ declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
119
+ declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
120
+ asChild?: boolean;
121
+ } & React$1.RefAttributes<HTMLAnchorElement>>;
122
+ declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
123
+ declare const BreadcrumbSeparator: {
124
+ ({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
125
+ displayName: string;
126
+ };
127
+ declare const BreadcrumbEllipsis: {
128
+ ({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
129
+ displayName: string;
130
+ };
131
+
132
+ type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
133
+ declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
134
+ declare namespace Calendar {
135
+ var displayName: string;
136
+ }
137
+
138
+ type CarouselApi = UseEmblaCarouselType[1];
139
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
140
+ type CarouselOptions = UseCarouselParameters[0];
141
+ type CarouselPlugin = UseCarouselParameters[1];
142
+ type CarouselProps = {
143
+ opts?: CarouselOptions;
144
+ plugins?: CarouselPlugin;
145
+ orientation?: "horizontal" | "vertical";
146
+ setApi?: (api: CarouselApi) => void;
147
+ };
148
+ declare const Carousel: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & React$1.RefAttributes<HTMLDivElement>>;
149
+ declare const CarouselContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
150
+ declare const CarouselItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
151
+ declare const CarouselPrevious: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
152
+ declare const CarouselNext: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
153
+
154
+ declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
155
+
156
+ declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
157
+ declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
158
+ declare const CollapsibleContent: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
159
+
160
+ declare const Command: React$1.ForwardRefExoticComponent<Omit<{
161
+ children?: React$1.ReactNode;
162
+ } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
163
+ ref?: React$1.Ref<HTMLDivElement>;
164
+ } & {
165
+ asChild?: boolean;
166
+ }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
167
+ label?: string;
168
+ shouldFilter?: boolean;
169
+ filter?: (value: string, search: string, keywords?: string[]) => number;
170
+ defaultValue?: string;
171
+ value?: string;
172
+ onValueChange?: (value: string) => void;
173
+ loop?: boolean;
174
+ disablePointerSelection?: boolean;
175
+ vimBindings?: boolean;
176
+ } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
177
+ interface CommandDialogProps extends DialogProps {
178
+ }
179
+ declare const CommandDialog: ({ children, ...props }: CommandDialogProps) => react_jsx_runtime.JSX.Element;
180
+ declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "key" | keyof React$1.InputHTMLAttributes<HTMLInputElement>> & {
181
+ ref?: React$1.Ref<HTMLInputElement>;
182
+ } & {
183
+ asChild?: boolean;
184
+ }, "asChild" | "key" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "type" | "value" | "onChange"> & {
185
+ value?: string;
186
+ onValueChange?: (search: string) => void;
187
+ } & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
188
+ declare const CommandList: React$1.ForwardRefExoticComponent<Omit<{
189
+ children?: React$1.ReactNode;
190
+ } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
191
+ ref?: React$1.Ref<HTMLDivElement>;
192
+ } & {
193
+ asChild?: boolean;
194
+ }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
195
+ label?: string;
196
+ } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
197
+ declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
198
+ children?: React$1.ReactNode;
199
+ } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
200
+ ref?: React$1.Ref<HTMLDivElement>;
201
+ } & {
202
+ asChild?: boolean;
203
+ }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
204
+ declare const CommandGroup: React$1.ForwardRefExoticComponent<Omit<{
205
+ children?: React$1.ReactNode;
206
+ } & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
207
+ ref?: React$1.Ref<HTMLDivElement>;
208
+ } & {
209
+ asChild?: boolean;
210
+ }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "value" | "heading"> & {
211
+ heading?: React$1.ReactNode;
212
+ value?: string;
213
+ forceMount?: boolean;
214
+ } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
215
+ declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
216
+ ref?: React$1.Ref<HTMLDivElement>;
217
+ } & {
218
+ asChild?: boolean;
219
+ }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
220
+ alwaysRender?: boolean;
221
+ } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
222
+ declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
223
+ children?: React$1.ReactNode;
224
+ } & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
225
+ ref?: React$1.Ref<HTMLDivElement>;
226
+ } & {
227
+ asChild?: boolean;
228
+ }, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "disabled" | "value" | "onSelect"> & {
229
+ disabled?: boolean;
230
+ onSelect?: (value: string) => void;
231
+ value?: string;
232
+ keywords?: string[];
233
+ forceMount?: boolean;
234
+ } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
235
+ declare const CommandShortcut: {
236
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
237
+ displayName: string;
238
+ };
239
+
240
+ declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
241
+ declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
242
+ declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
243
+ declare const ContextMenuPortal: React$1.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
244
+ declare const ContextMenuSub: React$1.FC<ContextMenuPrimitive.ContextMenuSubProps>;
245
+ declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
246
+ declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
247
+ inset?: boolean;
248
+ } & React$1.RefAttributes<HTMLDivElement>>;
249
+ declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
250
+ declare const ContextMenuContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
251
+ declare const ContextMenuItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
252
+ inset?: boolean;
253
+ } & React$1.RefAttributes<HTMLDivElement>>;
254
+ declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
255
+ declare const ContextMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
256
+ declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
257
+ inset?: boolean;
258
+ } & React$1.RefAttributes<HTMLDivElement>>;
259
+ declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
260
+ declare const ContextMenuShortcut: {
261
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
262
+ displayName: string;
263
+ };
264
+
265
+ declare const DialogHeader: {
266
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
267
+ displayName: string;
268
+ };
269
+ declare const DialogFooter: {
270
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
271
+ displayName: string;
272
+ };
273
+ declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
274
+ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
275
+ declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
276
+ declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
277
+ declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
278
+ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
279
+ declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
280
+ declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
281
+
282
+ declare const Drawer: {
283
+ ({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
284
+ displayName: string;
285
+ };
286
+ declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
287
+ declare const DrawerPortal: typeof vaul.Portal;
288
+ declare const DrawerClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
289
+ declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
290
+ declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
291
+ declare const DrawerHeader: {
292
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
293
+ displayName: string;
294
+ };
295
+ declare const DrawerFooter: {
296
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
297
+ displayName: string;
298
+ };
299
+ declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
300
+ declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
301
+
302
+ declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
303
+ declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
304
+ declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
305
+ declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
306
+ declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
307
+ declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
308
+ declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
309
+ inset?: boolean;
310
+ } & React$1.RefAttributes<HTMLDivElement>>;
311
+ declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
312
+ declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
313
+ declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
314
+ inset?: boolean;
315
+ } & React$1.RefAttributes<HTMLDivElement>>;
316
+ declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
317
+ declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
318
+ declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
319
+ inset?: boolean;
320
+ } & React$1.RefAttributes<HTMLDivElement>>;
321
+ declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
322
+ declare const DropdownMenuShortcut: {
323
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
324
+ displayName: string;
325
+ };
326
+
327
+ declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
328
+ declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
329
+ declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
330
+
331
+ declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
332
+ value?: string;
333
+ onChange?: (newValue: string) => unknown;
334
+ maxLength: number;
335
+ textAlign?: "left" | "center" | "right";
336
+ onComplete?: (...args: any[]) => unknown;
337
+ pushPasswordManagerStrategy?: "increase-width" | "none";
338
+ pasteTransformer?: (pasted: string) => string;
339
+ containerClassName?: string;
340
+ noScriptCSSFallback?: string | null;
341
+ } & {
342
+ render: (props: input_otp.RenderProps) => React$1.ReactNode;
343
+ children?: never;
344
+ } & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
345
+ value?: string;
346
+ onChange?: (newValue: string) => unknown;
347
+ maxLength: number;
348
+ textAlign?: "left" | "center" | "right";
349
+ onComplete?: (...args: any[]) => unknown;
350
+ pushPasswordManagerStrategy?: "increase-width" | "none";
351
+ pasteTransformer?: (pasted: string) => string;
352
+ containerClassName?: string;
353
+ noScriptCSSFallback?: string | null;
354
+ } & {
355
+ render?: never;
356
+ children: React$1.ReactNode;
357
+ } & React$1.RefAttributes<HTMLInputElement>, "ref">) & React$1.RefAttributes<HTMLInputElement>>;
358
+ declare const InputOTPGroup: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
359
+ declare const InputOTPSlot: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
360
+ index: number;
361
+ } & React$1.RefAttributes<HTMLDivElement>>;
362
+ declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
363
+
364
+ interface KbdProps extends React$1.HTMLAttributes<HTMLElement> {
365
+ }
366
+ declare const Kbd: React$1.ForwardRefExoticComponent<KbdProps & React$1.RefAttributes<HTMLElement>>;
367
+
368
+ declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
369
+
370
+ declare const MenubarMenu: typeof MenubarPrimitive.Menu;
371
+ declare const MenubarGroup: typeof MenubarPrimitive.Group;
372
+ declare const MenubarPortal: typeof MenubarPrimitive.Portal;
373
+ declare const MenubarSub: typeof MenubarPrimitive.Sub;
374
+ declare const MenubarRadioGroup: typeof MenubarPrimitive.RadioGroup;
375
+ declare const Menubar: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
376
+ declare const MenubarTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
377
+ declare const MenubarSubTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
378
+ inset?: boolean;
379
+ } & React$1.RefAttributes<HTMLDivElement>>;
380
+ declare const MenubarSubContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
381
+ declare const MenubarContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
382
+ declare const MenubarItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
383
+ inset?: boolean;
384
+ } & React$1.RefAttributes<HTMLDivElement>>;
385
+ declare const MenubarCheckboxItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
386
+ declare const MenubarRadioItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
387
+ declare const MenubarLabel: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
388
+ inset?: boolean;
389
+ } & React$1.RefAttributes<HTMLDivElement>>;
390
+ declare const MenubarSeparator: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
391
+ declare const MenubarShortcut: {
392
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
393
+ displayName: string;
394
+ };
395
+
396
+ declare const NavigationMenu: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
397
+ declare const NavigationMenuList: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
398
+ declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
399
+ declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
400
+ declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
401
+ declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
402
+ declare const NavigationMenuViewport: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
403
+ declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
404
+
405
+ declare const Pagination: {
406
+ ({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
407
+ displayName: string;
408
+ };
409
+ declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
410
+ declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
411
+ type PaginationLinkProps = {
412
+ isActive?: boolean;
413
+ } & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
414
+ declare const PaginationLink: {
415
+ ({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
416
+ displayName: string;
417
+ };
418
+ declare const PaginationPrevious: {
419
+ ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
420
+ displayName: string;
421
+ };
422
+ declare const PaginationNext: {
423
+ ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
424
+ displayName: string;
425
+ };
426
+ declare const PaginationEllipsis: {
427
+ ({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
428
+ displayName: string;
429
+ };
430
+
431
+ declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
432
+ declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
433
+ declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
434
+
435
+ declare const progressVariants: (props?: ({
436
+ size?: "sm" | "default" | "lg" | null | undefined;
437
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
438
+ declare const progressIndicatorVariants: (props?: ({
439
+ variant?: "success" | "info" | "warning" | "danger" | "default" | "purple" | null | undefined;
440
+ animated?: boolean | null | undefined;
441
+ striped?: boolean | null | undefined;
442
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
443
+ interface ProgressProps extends React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>, VariantProps<typeof progressVariants>, VariantProps<typeof progressIndicatorVariants> {
444
+ value?: number;
445
+ showValue?: boolean;
446
+ label?: string;
447
+ }
448
+ declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
449
+
450
+ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
451
+ declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
452
+
453
+ declare const ResizablePanelGroup: ({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => react_jsx_runtime.JSX.Element;
454
+ declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLButtonElement | HTMLElement | HTMLSpanElement | HTMLInputElement | HTMLDivElement | HTMLParagraphElement | HTMLHeadingElement | HTMLObjectElement | HTMLLinkElement | HTMLFormElement | HTMLSlotElement | HTMLStyleElement | HTMLTitleElement | HTMLDialogElement | HTMLImageElement | HTMLOptionElement | HTMLTableElement | HTMLTimeElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLLabelElement | HTMLLegendElement | HTMLLIElement | HTMLMapElement | HTMLMetaElement | HTMLMeterElement | HTMLOListElement | HTMLOptGroupElement | HTMLOutputElement | HTMLPreElement | HTMLProgressElement | HTMLScriptElement | HTMLSelectElement | HTMLSourceElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTemplateElement | HTMLTextAreaElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
455
+ className?: string | undefined;
456
+ collapsedSize?: number | undefined;
457
+ collapsible?: boolean | undefined;
458
+ defaultSize?: number | undefined;
459
+ id?: string | undefined;
460
+ maxSize?: number | undefined;
461
+ minSize?: number | undefined;
462
+ onCollapse?: ResizablePrimitive.PanelOnCollapse | undefined;
463
+ onExpand?: ResizablePrimitive.PanelOnExpand | undefined;
464
+ onResize?: ResizablePrimitive.PanelOnResize | undefined;
465
+ order?: number | undefined;
466
+ style?: object | undefined;
467
+ tagName?: keyof HTMLElementTagNameMap | undefined;
468
+ } & {
469
+ children?: React$1.ReactNode;
470
+ } & React$1.RefAttributes<ResizablePrimitive.ImperativePanelHandle>>;
471
+ declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
472
+ withHandle?: boolean;
473
+ }) => react_jsx_runtime.JSX.Element;
474
+
475
+ declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
476
+ declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
477
+
478
+ declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
479
+ declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
480
+ declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
481
+ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
482
+ declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
483
+ declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
484
+ declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
485
+ declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
486
+ declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
487
+ declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
488
+
489
+ declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
490
+
491
+ declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
492
+ declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
493
+ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
494
+ declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
495
+ declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
496
+ declare const sheetVariants: (props?: ({
497
+ side?: "top" | "right" | "bottom" | "left" | null | undefined;
498
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
499
+ interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
500
+ }
501
+ declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
502
+ declare const SheetHeader: {
503
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
504
+ displayName: string;
505
+ };
506
+ declare const SheetFooter: {
507
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
508
+ displayName: string;
509
+ };
510
+ declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
511
+ declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
512
+
513
+ declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
514
+
515
+ declare const Slider: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
516
+
517
+ declare const spinnerVariants: (props?: ({
518
+ variant?: "primary" | "secondary" | "success" | "info" | "warning" | "danger" | "default" | "white" | null | undefined;
519
+ size?: "sm" | "default" | "lg" | "xl" | null | undefined;
520
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
521
+ interface SpinnerProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof spinnerVariants> {
522
+ label?: string;
523
+ }
524
+ declare const Spinner: React$1.ForwardRefExoticComponent<SpinnerProps & React$1.RefAttributes<HTMLDivElement>>;
525
+
526
+ declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
527
+
528
+ declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
529
+ declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
530
+ declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
531
+ declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
532
+ declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
533
+ declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
534
+ declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
535
+ declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
536
+
537
+ declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
538
+ declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
539
+ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
540
+ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
541
+
542
+ declare const textareaVariants: (props?: ({
543
+ variant?: "success" | "default" | "error" | null | undefined;
544
+ textareaSize?: "sm" | "default" | "lg" | null | undefined;
545
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
546
+ interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
547
+ }
548
+ declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
549
+
550
+ declare const toggleVariants: (props?: ({
551
+ variant?: "outline" | "default" | null | undefined;
552
+ size?: "sm" | "default" | "lg" | null | undefined;
553
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
554
+ declare const Toggle: React$1.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
555
+ variant?: "outline" | "default" | null | undefined;
556
+ size?: "sm" | "default" | "lg" | null | undefined;
557
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
558
+
559
+ declare const ToggleGroup: React$1.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
560
+ variant?: "outline" | "default" | null | undefined;
561
+ size?: "sm" | "default" | "lg" | null | undefined;
562
+ } & class_variance_authority_types.ClassProp) | undefined) => string>) & React$1.RefAttributes<HTMLDivElement>>;
563
+ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
564
+ variant?: "outline" | "default" | null | undefined;
565
+ size?: "sm" | "default" | "lg" | null | undefined;
566
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
567
+
568
+ declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
569
+ declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
570
+ declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
571
+ declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
572
+
573
+ declare const typographyVariants: (props?: ({
574
+ variant?: "small" | "blockquote" | "code" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "ul" | "muted" | "lead" | "large" | null | undefined;
575
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
576
+ interface TypographyProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
577
+ as?: React$1.ElementType;
578
+ }
579
+ declare const Typography: React$1.ForwardRefExoticComponent<TypographyProps & React$1.RefAttributes<HTMLElement>>;
580
+
581
+ interface ComboboxOption {
582
+ value: string;
583
+ label: string;
584
+ }
585
+ interface ComboboxProps {
586
+ options: ComboboxOption[];
587
+ value?: string;
588
+ onValueChange?: (value: string) => void;
589
+ placeholder?: string;
590
+ searchPlaceholder?: string;
591
+ emptyMessage?: string;
592
+ className?: string;
593
+ disabled?: boolean;
594
+ }
595
+ declare const Combobox: React$1.ForwardRefExoticComponent<ComboboxProps & React$1.RefAttributes<HTMLButtonElement>>;
596
+
597
+ interface DatePickerProps {
598
+ date?: Date;
599
+ onDateChange?: (date: Date | undefined) => void;
600
+ placeholder?: string;
601
+ className?: string;
602
+ disabled?: boolean;
603
+ disabledDates?: (date: Date) => boolean;
604
+ }
605
+ declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
606
+
607
+ interface DashboardNavigationItem {
608
+ name: string;
609
+ href: string;
610
+ icon?: React$1.ComponentType<{
611
+ className?: string;
612
+ }>;
613
+ badge?: number | string;
614
+ onClick?: () => void;
615
+ }
616
+ interface DashboardNotification {
617
+ id: string;
618
+ title: string;
619
+ description: string;
620
+ time: string;
621
+ unread?: boolean;
622
+ }
623
+ interface DashboardUser {
624
+ name: string;
625
+ email?: string;
626
+ avatar?: string;
627
+ fallback?: string;
628
+ }
629
+ interface DashboardUserMenuItem {
630
+ label: string;
631
+ icon?: React$1.ComponentType<{
632
+ className?: string;
633
+ }>;
634
+ onClick?: () => void;
635
+ variant?: "default" | "danger";
636
+ separator?: boolean;
637
+ }
638
+ interface DashboardLogoProps {
639
+ collapsed?: boolean;
640
+ src?: string;
641
+ alt?: string;
642
+ render?: (collapsed: boolean) => React$1.ReactNode;
643
+ }
644
+ interface DashboardProps {
645
+ children: React$1.ReactNode;
646
+ navigation: DashboardNavigationItem[];
647
+ currentPath?: string;
648
+ logo?: DashboardLogoProps;
649
+ user?: DashboardUser;
650
+ userMenuItems?: DashboardUserMenuItem[];
651
+ notifications?: DashboardNotification[];
652
+ notificationsLabel?: string;
653
+ onNotificationClick?: (notification: DashboardNotification) => void;
654
+ searchPlaceholder?: string;
655
+ onSearchClick?: () => void;
656
+ defaultSidebarCollapsed?: boolean;
657
+ defaultSidebarOpen?: boolean;
658
+ onSidebarToggle?: (open: boolean) => void;
659
+ sidebarCollapseIcon?: React$1.ComponentType<{
660
+ className?: string;
661
+ }>;
662
+ sidebarExpandIcon?: React$1.ComponentType<{
663
+ className?: string;
664
+ }>;
665
+ headerClassName?: string;
666
+ sidebarClassName?: string;
667
+ mainClassName?: string;
668
+ renderLogo?: (collapsed: boolean) => React$1.ReactNode;
669
+ renderUserAvatar?: () => React$1.ReactNode;
670
+ renderNotificationBadge?: () => React$1.ReactNode;
671
+ searchIcon?: React$1.ComponentType<{
672
+ className?: string;
673
+ }>;
674
+ notificationIcon?: React$1.ComponentType<{
675
+ className?: string;
676
+ }>;
677
+ menuIcon?: React$1.ComponentType<{
678
+ className?: string;
679
+ }>;
680
+ }
681
+ declare const Dashboard: React$1.ForwardRefExoticComponent<DashboardProps & React$1.RefAttributes<HTMLDivElement>>;
682
+
683
+ declare const flexVariants: (props?: ({
684
+ direction?: "row" | "col" | "row-reverse" | "col-reverse" | null | undefined;
685
+ justify?: "center" | "end" | "start" | "between" | "around" | "evenly" | "stretch" | null | undefined;
686
+ align?: "center" | "end" | "start" | "baseline" | "stretch" | null | undefined;
687
+ wrap?: "wrap" | "wrap-reverse" | "nowrap" | null | undefined;
688
+ gap?: 0 | 1 | 2 | 4 | 3 | 8 | 5 | 6 | 10 | 12 | 16 | 20 | 24 | null | undefined;
689
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
690
+ interface FlexProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof flexVariants> {
691
+ /** Custom element type, default is div */
692
+ as?: React$1.ElementType;
693
+ /** Inline styles */
694
+ style?: React$1.CSSProperties;
695
+ /** Whether the flex container should take full width */
696
+ fullWidth?: boolean;
697
+ /** Whether the flex container should take full height */
698
+ fullHeight?: boolean;
699
+ /** Custom gap value (CSS value) */
700
+ customGap?: string;
701
+ /** Row gap */
702
+ rowGap?: string | number;
703
+ /** Column gap */
704
+ columnGap?: string | number;
705
+ /** Flex grow */
706
+ grow?: boolean | number;
707
+ /** Flex shrink */
708
+ shrink?: boolean | number;
709
+ /** Flex basis */
710
+ basis?: string;
711
+ /** Inline flex instead of flex */
712
+ inline?: boolean;
713
+ }
714
+ declare const Flex: React$1.ForwardRefExoticComponent<FlexProps & React$1.RefAttributes<HTMLDivElement>>;
715
+ declare const FlexRow: React$1.ForwardRefExoticComponent<Omit<FlexProps, "direction"> & React$1.RefAttributes<HTMLDivElement>>;
716
+ declare const FlexCol: React$1.ForwardRefExoticComponent<Omit<FlexProps, "direction"> & React$1.RefAttributes<HTMLDivElement>>;
717
+ declare const FlexCenter: React$1.ForwardRefExoticComponent<FlexProps & React$1.RefAttributes<HTMLDivElement>>;
718
+
719
+ declare const gridVariants: (props?: ({
720
+ cols?: 1 | "none" | 2 | 4 | 3 | 8 | 5 | 6 | 10 | 12 | 7 | 9 | 11 | null | undefined;
721
+ rows?: 1 | "none" | 2 | 4 | 3 | 5 | 6 | null | undefined;
722
+ gap?: 0 | 1 | 2 | 4 | 3 | 8 | 5 | 6 | 10 | 12 | 16 | 20 | 24 | null | undefined;
723
+ flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
724
+ justifyItems?: "center" | "end" | "start" | "stretch" | null | undefined;
725
+ alignItems?: "center" | "end" | "start" | "baseline" | "stretch" | null | undefined;
726
+ justifyContent?: "center" | "end" | "start" | "between" | "around" | "evenly" | "stretch" | null | undefined;
727
+ alignContent?: "center" | "end" | "start" | "baseline" | "between" | "around" | "evenly" | "stretch" | null | undefined;
728
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
729
+ interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
730
+ /** Custom element type, default is div */
731
+ as?: React$1.ElementType;
732
+ /** Inline styles */
733
+ style?: React$1.CSSProperties;
734
+ /** Whether the grid container should take full width */
735
+ fullWidth?: boolean;
736
+ /** Whether the grid container should take full height */
737
+ fullHeight?: boolean;
738
+ /** Custom gap value (CSS value) */
739
+ customGap?: string;
740
+ /** Row gap */
741
+ rowGap?: string | number;
742
+ /** Column gap */
743
+ columnGap?: string | number;
744
+ /** Custom grid template columns */
745
+ templateColumns?: string;
746
+ /** Custom grid template rows */
747
+ templateRows?: string;
748
+ /** Custom grid template areas */
749
+ templateAreas?: string;
750
+ /** Grid auto columns */
751
+ autoColumns?: string;
752
+ /** Grid auto rows */
753
+ autoRows?: string;
754
+ /** Inline grid instead of grid */
755
+ inline?: boolean;
756
+ /** Responsive columns for mobile (sm breakpoint) */
757
+ smCols?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
758
+ /** Responsive columns for tablet (md breakpoint) */
759
+ mdCols?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
760
+ /** Responsive columns for desktop (lg breakpoint) */
761
+ lgCols?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
762
+ /** Responsive columns for large desktop (xl breakpoint) */
763
+ xlCols?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
764
+ /** Responsive columns for extra large desktop (2xl breakpoint) */
765
+ "2xlCols"?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
766
+ }
767
+ declare const Grid: React$1.ForwardRefExoticComponent<GridProps & React$1.RefAttributes<HTMLDivElement>>;
768
+ interface GridItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
769
+ /** Custom element type, default is div */
770
+ as?: React$1.ElementType;
771
+ /** Grid column span */
772
+ colSpan?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "auto" | "full";
773
+ /** Grid row span */
774
+ rowSpan?: 1 | 2 | 3 | 4 | 5 | 6 | "auto" | "full";
775
+ /** Grid column start */
776
+ colStart?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | "auto";
777
+ /** Grid column end */
778
+ colEnd?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | "auto";
779
+ /** Grid row start */
780
+ rowStart?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | "auto";
781
+ /** Grid row end */
782
+ rowEnd?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | "auto";
783
+ /** Grid area */
784
+ area?: string;
785
+ }
786
+ declare const GridItem: React$1.ForwardRefExoticComponent<GridItemProps & React$1.RefAttributes<HTMLDivElement>>;
787
+
788
+ declare const sectionVariants: (props?: ({
789
+ spacing?: "sm" | "lg" | "xl" | "none" | "md" | null | undefined;
790
+ container?: "sm" | "lg" | "xl" | "none" | "full" | "md" | "2xl" | null | undefined;
791
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
792
+ declare const sectionHeaderVariants: (props?: ({
793
+ layout?: "default" | "stacked" | "centered" | null | undefined;
794
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
795
+ interface SectionLink {
796
+ name: string;
797
+ href: string;
798
+ active?: boolean;
799
+ onClick?: () => void;
800
+ icon?: React$1.ComponentType<{
801
+ className?: string;
802
+ }>;
803
+ disabled?: boolean;
804
+ }
805
+ interface SectionAction {
806
+ label: string;
807
+ onClick?: () => void;
808
+ href?: string;
809
+ variant?: "default" | "primary" | "secondary" | "outline" | "ghost";
810
+ size?: "sm" | "default" | "lg";
811
+ icon?: React$1.ComponentType<{
812
+ className?: string;
813
+ }>;
814
+ disabled?: boolean;
815
+ }
816
+ interface SectionProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof sectionVariants> {
817
+ /** Section başlığı */
818
+ title?: string;
819
+ /** Section açıklaması */
820
+ description?: string;
821
+ /** Başlık elementi tipi */
822
+ titleAs?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
823
+ /** Header layout stili */
824
+ headerLayout?: "default" | "stacked" | "centered";
825
+ /** Sağ üst aksiyonlar */
826
+ actions?: React$1.ReactNode;
827
+ /** Action butonları (array olarak) */
828
+ actionButtons?: SectionAction[];
829
+ /** İçerik */
830
+ children?: React$1.ReactNode;
831
+ /** Navigasyon linkleri */
832
+ links?: SectionLink[];
833
+ /** Link render fonksiyonu */
834
+ renderLink?: (link: SectionLink) => React$1.ReactNode;
835
+ /** Aktif link kontrolü */
836
+ isLinkActive?: (link: SectionLink) => boolean;
837
+ /** Header gizle */
838
+ hideHeader?: boolean;
839
+ /** Header margin bottom */
840
+ headerMargin?: "none" | "sm" | "md" | "lg";
841
+ /** Links margin */
842
+ linksMargin?: "none" | "sm" | "md" | "lg";
843
+ /** Custom header renderer */
844
+ renderHeader?: () => React$1.ReactNode;
845
+ /** Custom links renderer */
846
+ renderLinks?: () => React$1.ReactNode;
847
+ /** Header className */
848
+ headerClassName?: string;
849
+ /** Links className */
850
+ linksClassName?: string;
851
+ /** Content className */
852
+ contentClassName?: string;
853
+ /** Custom element type */
854
+ as?: React$1.ElementType;
855
+ }
856
+ declare const Section: React$1.ForwardRefExoticComponent<SectionProps & React$1.RefAttributes<HTMLElement>>;
857
+
858
+ interface ToasterProps {
859
+ /** Toast konumu */
860
+ position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
861
+ /** Expand toast on hover */
862
+ expand?: boolean;
863
+ /** Rich colors */
864
+ richColors?: boolean;
865
+ /** Close button göster */
866
+ closeButton?: boolean;
867
+ /** Maksimum gösterilecek toast sayısı */
868
+ visibleToasts?: number;
869
+ /** Toast süresi (ms) */
870
+ duration?: number;
871
+ /** Custom className */
872
+ className?: string;
873
+ /** Toast gap */
874
+ gap?: number;
875
+ /** Offset from the edge */
876
+ offset?: string | number;
877
+ /** Theme */
878
+ theme?: "light" | "dark" | "system";
879
+ /** Direction */
880
+ dir?: "ltr" | "rtl" | "auto";
881
+ }
882
+ declare const Toaster: React$1.FC<ToasterProps>;
883
+ interface ToastOptions {
884
+ /** Toast açıklaması */
885
+ description?: string;
886
+ /** Action button */
887
+ action?: {
888
+ label: string;
889
+ onClick: () => void;
890
+ };
891
+ /** Cancel button */
892
+ cancel?: {
893
+ label: string;
894
+ onClick?: () => void;
895
+ };
896
+ /** Toast süresi (ms) */
897
+ duration?: number;
898
+ /** Toast ID */
899
+ id?: string | number;
900
+ /** Icon */
901
+ icon?: React$1.ReactNode;
902
+ /** onDismiss callback */
903
+ onDismiss?: (toast: any) => void;
904
+ /** onAutoClose callback */
905
+ onAutoClose?: (toast: any) => void;
906
+ /** Dismissible */
907
+ dismissible?: boolean;
908
+ /** Important */
909
+ important?: boolean;
910
+ /** Class name */
911
+ className?: string;
912
+ /** Class names */
913
+ classNames?: {
914
+ toast?: string;
915
+ title?: string;
916
+ description?: string;
917
+ icon?: string;
918
+ actionButton?: string;
919
+ cancelButton?: string;
920
+ closeButton?: string;
921
+ };
922
+ }
923
+ /**
924
+ * Toast mesaj gösterme fonksiyonu
925
+ */
926
+ declare const toast: {
927
+ (message: string | React$1.ReactNode, options?: ExternalToast): string | number;
928
+ success(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
929
+ error(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
930
+ warning(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
931
+ info(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
932
+ loading(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
933
+ promise<T>(promise: Promise<T>, options: {
934
+ loading: string | React$1.ReactNode;
935
+ success: string | React$1.ReactNode | ((data: T) => string | React$1.ReactNode);
936
+ error: string | React$1.ReactNode | ((error: any) => string | React$1.ReactNode);
937
+ description?: string;
938
+ duration?: number;
939
+ }): (string & {
940
+ unwrap: () => Promise<T>;
941
+ }) | (number & {
942
+ unwrap: () => Promise<T>;
943
+ }) | {
944
+ unwrap: () => Promise<T>;
945
+ };
946
+ custom(jsx: (id: number | string) => React$1.ReactElement, options?: ExternalToast): string | number;
947
+ dismiss(id?: number | string): string | number;
948
+ message(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
949
+ };
950
+ declare const useToast: () => {
951
+ toast: {
952
+ (message: string | React$1.ReactNode, options?: ExternalToast): string | number;
953
+ success(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
954
+ error(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
955
+ warning(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
956
+ info(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
957
+ loading(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
958
+ promise<T>(promise: Promise<T>, options: {
959
+ loading: string | React$1.ReactNode;
960
+ success: string | React$1.ReactNode | ((data: T) => string | React$1.ReactNode);
961
+ error: string | React$1.ReactNode | ((error: any) => string | React$1.ReactNode);
962
+ description?: string;
963
+ duration?: number;
964
+ }): (string & {
965
+ unwrap: () => Promise<T>;
966
+ }) | (number & {
967
+ unwrap: () => Promise<T>;
968
+ }) | {
969
+ unwrap: () => Promise<T>;
970
+ };
971
+ custom(jsx: (id: number | string) => React$1.ReactElement, options?: ExternalToast): string | number;
972
+ dismiss(id?: number | string): string | number;
973
+ message(message: string | React$1.ReactNode, options?: ExternalToast): string | number;
974
+ };
975
+ dismiss: (id?: number | string) => string | number;
976
+ };
977
+
978
+ type DataTableColumn<TData> = ColumnDef<TData> & {
979
+ /** Column başlığı */
980
+ header?: string;
981
+ /** Sıralama yapılabilir mi */
982
+ enableSorting?: boolean;
983
+ /** Filtreleme yapılabilir mi */
984
+ enableColumnFilter?: boolean;
985
+ /** Gizlenebilir mi */
986
+ enableHiding?: boolean;
987
+ };
988
+ interface DataTableProps<TData> {
989
+ /** Tablo sütunları */
990
+ columns: DataTableColumn<TData>[];
991
+ /** Tablo verisi */
992
+ data: TData[];
993
+ /** Toplam satır sayısı (server-side pagination için) */
994
+ totalRows?: number;
995
+ /** Loading durumu */
996
+ loading?: boolean;
997
+ /** Sayfa başına satır sayısı seçenekleri */
998
+ pageSizeOptions?: number[];
999
+ /** Varsayılan sayfa boyutu */
1000
+ defaultPageSize?: number;
1001
+ /** Search placeholder */
1002
+ searchPlaceholder?: string;
1003
+ /** Search yapılacak alan (nuqs key) */
1004
+ searchKey?: string;
1005
+ /** Satır seçimi aktif mi */
1006
+ enableRowSelection?: boolean;
1007
+ /** Seçili satırlar */
1008
+ selectedRows?: RowSelectionState;
1009
+ /** Seçili satırlar değiştiğinde callback */
1010
+ onRowSelectionChange?: (selection: RowSelectionState) => void;
1011
+ /** Empty state gösterilecek mi */
1012
+ emptyMessage?: string;
1013
+ /** Table className */
1014
+ className?: string;
1015
+ /** Container className */
1016
+ containerClassName?: string;
1017
+ /** Pagination pozisyonu */
1018
+ paginationPosition?: "top" | "bottom" | "both";
1019
+ /** Manuel pagination (server-side için) */
1020
+ manualPagination?: boolean;
1021
+ /** Manuel sorting (server-side için) */
1022
+ manualSorting?: boolean;
1023
+ /** Manuel filtering (server-side için) */
1024
+ manualFiltering?: boolean;
1025
+ }
1026
+ /**
1027
+ * Server-side destekli, URL state yönetimli DataTable componenti
1028
+ *
1029
+ * @example
1030
+ * ```tsx
1031
+ * const columns: DataTableColumn<User>[] = [
1032
+ * {
1033
+ * accessorKey: "name",
1034
+ * header: "Name",
1035
+ * enableSorting: true,
1036
+ * },
1037
+ * {
1038
+ * accessorKey: "email",
1039
+ * header: "Email",
1040
+ * },
1041
+ * {
1042
+ * id: "actions",
1043
+ * cell: ({ row }) => (
1044
+ * <Button onClick={() => handleEdit(row.original)}>Edit</Button>
1045
+ * ),
1046
+ * },
1047
+ * ];
1048
+ *
1049
+ * <DataTable
1050
+ * columns={columns}
1051
+ * data={users}
1052
+ * totalRows={totalCount}
1053
+ * loading={isLoading}
1054
+ * manualPagination
1055
+ * manualSorting
1056
+ * />
1057
+ * ```
1058
+ */
1059
+ declare function DataTable<TData>({ columns, data, totalRows, loading, pageSizeOptions, defaultPageSize, searchPlaceholder, searchKey, enableRowSelection, selectedRows, onRowSelectionChange, emptyMessage, className, containerClassName, paginationPosition, manualPagination, manualSorting, manualFiltering, }: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
1060
+
1061
+ /**
1062
+ * Combines class names using clsx and merges Tailwind classes intelligently
1063
+ * @param inputs - Class values to merge
1064
+ * @returns Merged class string
1065
+ */
1066
+ declare function cn(...inputs: ClassValue[]): string;
1067
+
1068
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dashboard, type DashboardLogoProps, type DashboardNavigationItem, type DashboardNotification, type DashboardProps, type DashboardUser, type DashboardUserMenuItem, DataTable, type DataTableColumn, type DataTableProps, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Flex, FlexCenter, FlexCol, type FlexProps, FlexRow, Grid, GridItem, type GridItemProps, type GridProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Kbd, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Section, type SectionAction, type SectionLink, type SectionProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Spinner, type SpinnerProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type ToastOptions, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Typography, Input as UIInput, badgeVariants, buttonVariants, cn, flexVariants, gridVariants, sectionHeaderVariants, sectionVariants, spinnerVariants, toast, toggleVariants, useToast };