@aircall/ds 0.2.3 → 0.2.6
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/globals.css +1 -1
- package/dist/index.d.ts +218 -232
- package/dist/index.js +61 -80
- package/package.json +7 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VariantProps } from "class-variance-authority";
|
|
2
2
|
import { ClassValue } from "clsx";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime3 from "react/jsx-runtime";
|
|
4
4
|
import * as React$2 from "react";
|
|
5
5
|
import React$1 from "react";
|
|
6
6
|
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
@@ -19,6 +19,7 @@ import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
|
19
19
|
import { ThemeProviderProps as ThemeProviderProps$1, useTheme } from "next-themes";
|
|
20
20
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
21
21
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
22
|
+
import { OTPInput } from "input-otp";
|
|
22
23
|
import * as ProgressPrimitive from "@radix-ui/react-progress";
|
|
23
24
|
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
24
25
|
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
|
|
@@ -29,35 +30,35 @@ import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
|
29
30
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
30
31
|
import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
|
|
31
32
|
import * as TogglePrimitive from "@radix-ui/react-toggle";
|
|
32
|
-
import * as
|
|
33
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
33
34
|
|
|
34
35
|
//#region src/components/alert.d.ts
|
|
35
36
|
declare const alertVariants: (props?: ({
|
|
36
37
|
variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
|
|
37
|
-
} &
|
|
38
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
38
39
|
declare function Alert({
|
|
39
40
|
className,
|
|
40
41
|
variant,
|
|
41
42
|
...props
|
|
42
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>):
|
|
43
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>): react_jsx_runtime3.JSX.Element;
|
|
43
44
|
declare function AlertTitle({
|
|
44
45
|
className,
|
|
45
46
|
...props
|
|
46
|
-
}: React$2.ComponentProps<'div'>):
|
|
47
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
47
48
|
declare function AlertDescription({
|
|
48
49
|
className,
|
|
49
50
|
...props
|
|
50
|
-
}: React$2.ComponentProps<'div'>):
|
|
51
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
51
52
|
declare function AlertAction({
|
|
52
53
|
className,
|
|
53
54
|
...props
|
|
54
|
-
}: React$2.ComponentProps<'div'>):
|
|
55
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
55
56
|
//#endregion
|
|
56
57
|
//#region src/components/avatar.d.ts
|
|
57
58
|
declare const avatarVariants: (props?: ({
|
|
58
59
|
shape?: "default" | "rounded" | null | undefined;
|
|
59
60
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
60
|
-
} &
|
|
61
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
61
62
|
interface AvatarProps extends React$2.ComponentProps<typeof AvatarPrimitive.Root> {
|
|
62
63
|
shape?: VariantProps<typeof avatarVariants>['shape'];
|
|
63
64
|
size?: VariantProps<typeof avatarVariants>['size'];
|
|
@@ -66,19 +67,19 @@ declare const Avatar: React$2.ForwardRefExoticComponent<Omit<AvatarProps, "ref">
|
|
|
66
67
|
declare function AvatarImage({
|
|
67
68
|
className,
|
|
68
69
|
...props
|
|
69
|
-
}: React$2.ComponentProps<typeof AvatarPrimitive.Image>):
|
|
70
|
+
}: React$2.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime3.JSX.Element;
|
|
70
71
|
declare function AvatarFallback({
|
|
71
72
|
className,
|
|
72
73
|
...props
|
|
73
|
-
}: React$2.ComponentProps<typeof AvatarPrimitive.Fallback>):
|
|
74
|
+
}: React$2.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime3.JSX.Element;
|
|
74
75
|
//#endregion
|
|
75
76
|
//#region src/components/badge.d.ts
|
|
76
77
|
declare const badgeVariants: (props?: ({
|
|
77
|
-
variant?: "default" | "
|
|
78
|
-
} &
|
|
78
|
+
variant?: "default" | "outline" | "secondary" | "destructive" | null | undefined;
|
|
79
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
79
80
|
declare const Badge: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLSpanElement> & React$2.HTMLAttributes<HTMLSpanElement> & VariantProps<(props?: ({
|
|
80
|
-
variant?: "default" | "
|
|
81
|
-
} &
|
|
81
|
+
variant?: "default" | "outline" | "secondary" | "destructive" | null | undefined;
|
|
82
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
82
83
|
asChild?: boolean;
|
|
83
84
|
}, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
84
85
|
//#endregion
|
|
@@ -88,41 +89,41 @@ declare function Separator({
|
|
|
88
89
|
orientation,
|
|
89
90
|
decorative,
|
|
90
91
|
...props
|
|
91
|
-
}: React$2.ComponentProps<typeof SeparatorPrimitive.Root>):
|
|
92
|
+
}: React$2.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
92
93
|
//#endregion
|
|
93
94
|
//#region src/components/button-group.d.ts
|
|
94
95
|
declare const buttonGroupVariants: (props?: ({
|
|
95
96
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
96
|
-
} &
|
|
97
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
97
98
|
declare function ButtonGroup({
|
|
98
99
|
className,
|
|
99
100
|
orientation,
|
|
100
101
|
...props
|
|
101
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>):
|
|
102
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime3.JSX.Element;
|
|
102
103
|
declare function ButtonGroupText({
|
|
103
104
|
className,
|
|
104
105
|
asChild,
|
|
105
106
|
...props
|
|
106
107
|
}: React.ComponentProps<'div'> & {
|
|
107
108
|
asChild?: boolean;
|
|
108
|
-
}):
|
|
109
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
109
110
|
declare function ButtonGroupSeparator({
|
|
110
111
|
className,
|
|
111
112
|
orientation,
|
|
112
113
|
...props
|
|
113
|
-
}: React.ComponentProps<typeof Separator>):
|
|
114
|
+
}: React.ComponentProps<typeof Separator>): react_jsx_runtime3.JSX.Element;
|
|
114
115
|
//#endregion
|
|
115
116
|
//#region src/components/button.d.ts
|
|
116
117
|
declare const buttonVariants: (props?: ({
|
|
117
|
-
variant?: "
|
|
118
|
+
variant?: "default" | "link" | "outline" | "secondary" | "destructive" | "ghost" | null | undefined;
|
|
118
119
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
119
120
|
block?: boolean | null | undefined;
|
|
120
|
-
} &
|
|
121
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
121
122
|
declare const Button: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<(props?: ({
|
|
122
|
-
variant?: "
|
|
123
|
+
variant?: "default" | "link" | "outline" | "secondary" | "destructive" | "ghost" | null | undefined;
|
|
123
124
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
124
125
|
block?: boolean | null | undefined;
|
|
125
|
-
} &
|
|
126
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
126
127
|
asChild?: boolean;
|
|
127
128
|
block?: boolean;
|
|
128
129
|
}, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
@@ -132,31 +133,31 @@ type ButtonProps = React$2.ComponentProps<typeof Button>;
|
|
|
132
133
|
declare function Card({
|
|
133
134
|
className,
|
|
134
135
|
...props
|
|
135
|
-
}: React$2.ComponentProps<'div'>):
|
|
136
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
136
137
|
declare function CardHeader({
|
|
137
138
|
className,
|
|
138
139
|
...props
|
|
139
|
-
}: React$2.ComponentProps<'div'>):
|
|
140
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
140
141
|
declare function CardTitle({
|
|
141
142
|
className,
|
|
142
143
|
...props
|
|
143
|
-
}: React$2.ComponentProps<'div'>):
|
|
144
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
144
145
|
declare function CardDescription({
|
|
145
146
|
className,
|
|
146
147
|
...props
|
|
147
|
-
}: React$2.ComponentProps<'div'>):
|
|
148
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
148
149
|
declare function CardAction({
|
|
149
150
|
className,
|
|
150
151
|
...props
|
|
151
|
-
}: React$2.ComponentProps<'div'>):
|
|
152
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
152
153
|
declare function CardContent({
|
|
153
154
|
className,
|
|
154
155
|
...props
|
|
155
|
-
}: React$2.ComponentProps<'div'>):
|
|
156
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
156
157
|
declare function CardFooter({
|
|
157
158
|
className,
|
|
158
159
|
...props
|
|
159
|
-
}: React$2.ComponentProps<'div'>):
|
|
160
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
160
161
|
//#endregion
|
|
161
162
|
//#region src/components/carousel.d.ts
|
|
162
163
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
@@ -177,27 +178,27 @@ declare function Carousel({
|
|
|
177
178
|
className,
|
|
178
179
|
children,
|
|
179
180
|
...props
|
|
180
|
-
}: React$2.ComponentProps<'div'> & CarouselProps):
|
|
181
|
+
}: React$2.ComponentProps<'div'> & CarouselProps): react_jsx_runtime3.JSX.Element;
|
|
181
182
|
declare function CarouselContent({
|
|
182
183
|
className,
|
|
183
184
|
...props
|
|
184
|
-
}: React$2.ComponentProps<'div'>):
|
|
185
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
185
186
|
declare function CarouselItem({
|
|
186
187
|
className,
|
|
187
188
|
...props
|
|
188
|
-
}: React$2.ComponentProps<'div'>):
|
|
189
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
189
190
|
declare function CarouselPrevious({
|
|
190
191
|
className,
|
|
191
192
|
variant,
|
|
192
193
|
size,
|
|
193
194
|
...props
|
|
194
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
195
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime3.JSX.Element;
|
|
195
196
|
declare function CarouselNext({
|
|
196
197
|
className,
|
|
197
198
|
variant,
|
|
198
199
|
size,
|
|
199
200
|
...props
|
|
200
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
201
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime3.JSX.Element;
|
|
201
202
|
//#endregion
|
|
202
203
|
//#region src/components/checkbox.d.ts
|
|
203
204
|
declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
@@ -205,58 +206,58 @@ declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<CheckboxPrimitive
|
|
|
205
206
|
//#region src/components/collapsible.d.ts
|
|
206
207
|
declare function Collapsible({
|
|
207
208
|
...props
|
|
208
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.Root>):
|
|
209
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
209
210
|
declare function CollapsibleTrigger({
|
|
210
211
|
...props
|
|
211
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>):
|
|
212
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime3.JSX.Element;
|
|
212
213
|
declare function CollapsibleContent({
|
|
213
214
|
...props
|
|
214
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>):
|
|
215
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime3.JSX.Element;
|
|
215
216
|
//#endregion
|
|
216
217
|
//#region src/components/dialog.d.ts
|
|
217
218
|
declare function Dialog({
|
|
218
219
|
...props
|
|
219
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Root>):
|
|
220
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
220
221
|
declare function DialogTrigger({
|
|
221
222
|
...props
|
|
222
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>):
|
|
223
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
223
224
|
declare function DialogPortal({
|
|
224
225
|
...props
|
|
225
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Portal>):
|
|
226
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime3.JSX.Element;
|
|
226
227
|
declare function DialogClose({
|
|
227
228
|
...props
|
|
228
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Close>):
|
|
229
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime3.JSX.Element;
|
|
229
230
|
declare function DialogOverlay({
|
|
230
231
|
className,
|
|
231
232
|
...props
|
|
232
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Overlay>):
|
|
233
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime3.JSX.Element;
|
|
233
234
|
declare function DialogContent({
|
|
234
235
|
className,
|
|
235
236
|
children,
|
|
236
237
|
...props
|
|
237
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Content>):
|
|
238
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
238
239
|
declare function DialogHeader({
|
|
239
240
|
className,
|
|
240
241
|
...props
|
|
241
|
-
}: React$2.ComponentProps<'div'>):
|
|
242
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
242
243
|
declare function DialogFooter({
|
|
243
244
|
className,
|
|
244
245
|
...props
|
|
245
|
-
}: React$2.ComponentProps<'div'>):
|
|
246
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
246
247
|
declare function DialogTitle({
|
|
247
248
|
className,
|
|
248
249
|
...props
|
|
249
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Title>):
|
|
250
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime3.JSX.Element;
|
|
250
251
|
declare function DialogDescription({
|
|
251
252
|
className,
|
|
252
253
|
...props
|
|
253
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Description>):
|
|
254
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime3.JSX.Element;
|
|
254
255
|
//#endregion
|
|
255
256
|
//#region src/components/command.d.ts
|
|
256
257
|
declare function Command({
|
|
257
258
|
className,
|
|
258
259
|
...props
|
|
259
|
-
}: React$2.ComponentProps<typeof Command$1>):
|
|
260
|
+
}: React$2.ComponentProps<typeof Command$1>): react_jsx_runtime3.JSX.Element;
|
|
260
261
|
declare function CommandDialog({
|
|
261
262
|
title,
|
|
262
263
|
description,
|
|
@@ -265,34 +266,34 @@ declare function CommandDialog({
|
|
|
265
266
|
}: React$2.ComponentProps<typeof Dialog> & {
|
|
266
267
|
title?: string;
|
|
267
268
|
description?: string;
|
|
268
|
-
}):
|
|
269
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
269
270
|
declare function CommandInput({
|
|
270
271
|
className,
|
|
271
272
|
...props
|
|
272
|
-
}: React$2.ComponentProps<typeof Command$1.Input>):
|
|
273
|
+
}: React$2.ComponentProps<typeof Command$1.Input>): react_jsx_runtime3.JSX.Element;
|
|
273
274
|
declare function CommandList({
|
|
274
275
|
className,
|
|
275
276
|
...props
|
|
276
|
-
}: React$2.ComponentProps<typeof Command$1.List>):
|
|
277
|
+
}: React$2.ComponentProps<typeof Command$1.List>): react_jsx_runtime3.JSX.Element;
|
|
277
278
|
declare function CommandEmpty({
|
|
278
279
|
...props
|
|
279
|
-
}: React$2.ComponentProps<typeof Command$1.Empty>):
|
|
280
|
+
}: React$2.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime3.JSX.Element;
|
|
280
281
|
declare function CommandGroup({
|
|
281
282
|
className,
|
|
282
283
|
...props
|
|
283
|
-
}: React$2.ComponentProps<typeof Command$1.Group>):
|
|
284
|
+
}: React$2.ComponentProps<typeof Command$1.Group>): react_jsx_runtime3.JSX.Element;
|
|
284
285
|
declare function CommandSeparator({
|
|
285
286
|
className,
|
|
286
287
|
...props
|
|
287
|
-
}: React$2.ComponentProps<typeof Command$1.Separator>):
|
|
288
|
+
}: React$2.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime3.JSX.Element;
|
|
288
289
|
declare function CommandItem({
|
|
289
290
|
className,
|
|
290
291
|
...props
|
|
291
|
-
}: React$2.ComponentProps<typeof Command$1.Item>):
|
|
292
|
+
}: React$2.ComponentProps<typeof Command$1.Item>): react_jsx_runtime3.JSX.Element;
|
|
292
293
|
declare function CommandShortcut({
|
|
293
294
|
className,
|
|
294
295
|
...props
|
|
295
|
-
}: React$2.ComponentProps<'span'>):
|
|
296
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime3.JSX.Element;
|
|
296
297
|
//#endregion
|
|
297
298
|
//#region src/components/country-flag.d.ts
|
|
298
299
|
type FlagSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -304,41 +305,20 @@ interface CountryFlagProps {
|
|
|
304
305
|
}
|
|
305
306
|
declare const CountryFlag: React$1.FC<CountryFlagProps>;
|
|
306
307
|
//#endregion
|
|
307
|
-
//#region src/components/dock.d.ts
|
|
308
|
-
interface DockItem {
|
|
309
|
-
id: string;
|
|
310
|
-
label: string;
|
|
311
|
-
icon?: React$2.ReactNode;
|
|
312
|
-
href?: string;
|
|
313
|
-
onClick?: () => void;
|
|
314
|
-
isActive?: boolean;
|
|
315
|
-
badge?: number;
|
|
316
|
-
disabled?: boolean;
|
|
317
|
-
}
|
|
318
|
-
interface DockProps extends React$2.HTMLAttributes<HTMLDivElement> {
|
|
319
|
-
items: DockItem[];
|
|
320
|
-
activeItem?: string;
|
|
321
|
-
onItemClick?: (id: string, item: DockItem) => void;
|
|
322
|
-
variant?: 'default' | 'floating' | 'minimal';
|
|
323
|
-
size?: 'sm' | 'md' | 'lg';
|
|
324
|
-
orientation?: 'horizontal' | 'vertical';
|
|
325
|
-
}
|
|
326
|
-
declare const Dock: React$2.ForwardRefExoticComponent<DockProps & React$2.RefAttributes<HTMLDivElement>>;
|
|
327
|
-
//#endregion
|
|
328
308
|
//#region src/components/drawer.d.ts
|
|
329
309
|
declare function Drawer({
|
|
330
310
|
...props
|
|
331
|
-
}: React$2.ComponentProps<typeof Drawer$1.Root>):
|
|
311
|
+
}: React$2.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime3.JSX.Element;
|
|
332
312
|
declare function DrawerTrigger({
|
|
333
313
|
...props
|
|
334
|
-
}: React$2.ComponentProps<typeof Drawer$1.Trigger>):
|
|
314
|
+
}: React$2.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
335
315
|
type DrawerPortalProps = React$2.ComponentProps<typeof Drawer$1.Portal>;
|
|
336
316
|
declare function DrawerPortal({
|
|
337
317
|
...props
|
|
338
|
-
}: DrawerPortalProps):
|
|
318
|
+
}: DrawerPortalProps): react_jsx_runtime3.JSX.Element;
|
|
339
319
|
declare function DrawerClose({
|
|
340
320
|
...props
|
|
341
|
-
}: React$2.ComponentProps<typeof Drawer$1.Close>):
|
|
321
|
+
}: React$2.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime3.JSX.Element;
|
|
342
322
|
declare const DrawerOverlay: React$2.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$2.RefAttributes<HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
343
323
|
type DrawerContentProps = React$2.ComponentProps<typeof Drawer$1.Content> & Pick<DrawerPortalProps, 'container'>;
|
|
344
324
|
declare function DrawerContent({
|
|
@@ -346,34 +326,34 @@ declare function DrawerContent({
|
|
|
346
326
|
children,
|
|
347
327
|
container,
|
|
348
328
|
...props
|
|
349
|
-
}: DrawerContentProps):
|
|
329
|
+
}: DrawerContentProps): react_jsx_runtime3.JSX.Element;
|
|
350
330
|
declare function DrawerHeader({
|
|
351
331
|
className,
|
|
352
332
|
...props
|
|
353
|
-
}: React$2.ComponentProps<'div'>):
|
|
333
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
354
334
|
declare function DrawerFooter({
|
|
355
335
|
className,
|
|
356
336
|
...props
|
|
357
|
-
}: React$2.ComponentProps<'div'>):
|
|
337
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
358
338
|
declare function DrawerTitle({
|
|
359
339
|
className,
|
|
360
340
|
...props
|
|
361
|
-
}: React$2.ComponentProps<typeof Drawer$1.Title>):
|
|
341
|
+
}: React$2.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime3.JSX.Element;
|
|
362
342
|
declare function DrawerDescription({
|
|
363
343
|
className,
|
|
364
344
|
...props
|
|
365
|
-
}: React$2.ComponentProps<typeof Drawer$1.Description>):
|
|
345
|
+
}: React$2.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime3.JSX.Element;
|
|
366
346
|
//#endregion
|
|
367
347
|
//#region src/components/dropdown-menu.d.ts
|
|
368
348
|
declare function DropdownMenu({
|
|
369
349
|
...props
|
|
370
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Root>):
|
|
350
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
371
351
|
declare function DropdownMenuPortal({
|
|
372
352
|
...props
|
|
373
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Portal>):
|
|
353
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime3.JSX.Element;
|
|
374
354
|
declare function DropdownMenuTrigger({
|
|
375
355
|
...props
|
|
376
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Trigger>):
|
|
356
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
377
357
|
type DropdownMenuContentProps = React$2.ComponentProps<typeof DropdownMenuPrimitive.Portal> & React$2.ComponentProps<typeof DropdownMenuPrimitive.Content>;
|
|
378
358
|
declare function DropdownMenuContent({
|
|
379
359
|
className,
|
|
@@ -381,10 +361,10 @@ declare function DropdownMenuContent({
|
|
|
381
361
|
container,
|
|
382
362
|
forceMount,
|
|
383
363
|
...props
|
|
384
|
-
}: DropdownMenuContentProps):
|
|
364
|
+
}: DropdownMenuContentProps): react_jsx_runtime3.JSX.Element;
|
|
385
365
|
declare function DropdownMenuGroup({
|
|
386
366
|
...props
|
|
387
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Group>):
|
|
367
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime3.JSX.Element;
|
|
388
368
|
declare function DropdownMenuItem({
|
|
389
369
|
className,
|
|
390
370
|
inset,
|
|
@@ -393,39 +373,39 @@ declare function DropdownMenuItem({
|
|
|
393
373
|
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
394
374
|
inset?: boolean;
|
|
395
375
|
variant?: 'default' | 'destructive';
|
|
396
|
-
}):
|
|
376
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
397
377
|
declare function DropdownMenuCheckboxItem({
|
|
398
378
|
className,
|
|
399
379
|
children,
|
|
400
380
|
checked,
|
|
401
381
|
...props
|
|
402
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>):
|
|
382
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime3.JSX.Element;
|
|
403
383
|
declare function DropdownMenuRadioGroup({
|
|
404
384
|
...props
|
|
405
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>):
|
|
385
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime3.JSX.Element;
|
|
406
386
|
declare function DropdownMenuRadioItem({
|
|
407
387
|
className,
|
|
408
388
|
children,
|
|
409
389
|
...props
|
|
410
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>):
|
|
390
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime3.JSX.Element;
|
|
411
391
|
declare function DropdownMenuLabel({
|
|
412
392
|
className,
|
|
413
393
|
inset,
|
|
414
394
|
...props
|
|
415
395
|
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
416
396
|
inset?: boolean;
|
|
417
|
-
}):
|
|
397
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
418
398
|
declare function DropdownMenuSeparator({
|
|
419
399
|
className,
|
|
420
400
|
...props
|
|
421
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Separator>):
|
|
401
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime3.JSX.Element;
|
|
422
402
|
declare function DropdownMenuShortcut({
|
|
423
403
|
className,
|
|
424
404
|
...props
|
|
425
|
-
}: React$2.ComponentProps<'span'>):
|
|
405
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime3.JSX.Element;
|
|
426
406
|
declare function DropdownMenuSub({
|
|
427
407
|
...props
|
|
428
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Sub>):
|
|
408
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime3.JSX.Element;
|
|
429
409
|
declare function DropdownMenuSubTrigger({
|
|
430
410
|
className,
|
|
431
411
|
inset,
|
|
@@ -433,11 +413,11 @@ declare function DropdownMenuSubTrigger({
|
|
|
433
413
|
...props
|
|
434
414
|
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
435
415
|
inset?: boolean;
|
|
436
|
-
}):
|
|
416
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
437
417
|
declare function DropdownMenuSubContent({
|
|
438
418
|
className,
|
|
439
419
|
...props
|
|
440
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.SubContent>):
|
|
420
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime3.JSX.Element;
|
|
441
421
|
//#endregion
|
|
442
422
|
//#region src/components/emoji-picker.d.ts
|
|
443
423
|
declare const EmojiPickerCategories: {
|
|
@@ -477,91 +457,91 @@ declare function EmojiPicker({
|
|
|
477
457
|
emojiListWidth,
|
|
478
458
|
DefaultTriggerComponent,
|
|
479
459
|
categories
|
|
480
|
-
}: EmojiPickerProps):
|
|
460
|
+
}: EmojiPickerProps): react_jsx_runtime3.JSX.Element;
|
|
481
461
|
//#endregion
|
|
482
462
|
//#region src/components/empty.d.ts
|
|
483
463
|
declare function Empty({
|
|
484
464
|
className,
|
|
485
465
|
...props
|
|
486
|
-
}: React.ComponentProps<'div'>):
|
|
466
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
487
467
|
declare function EmptyHeader({
|
|
488
468
|
className,
|
|
489
469
|
...props
|
|
490
|
-
}: React.ComponentProps<'div'>):
|
|
470
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
491
471
|
declare const emptyMediaVariants: (props?: ({
|
|
492
472
|
variant?: "default" | "icon" | null | undefined;
|
|
493
|
-
} &
|
|
473
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
494
474
|
declare function EmptyMedia({
|
|
495
475
|
className,
|
|
496
476
|
variant,
|
|
497
477
|
...props
|
|
498
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>):
|
|
478
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime3.JSX.Element;
|
|
499
479
|
declare function EmptyTitle({
|
|
500
480
|
className,
|
|
501
481
|
...props
|
|
502
|
-
}: React.ComponentProps<'div'>):
|
|
482
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
503
483
|
declare function EmptyDescription({
|
|
504
484
|
className,
|
|
505
485
|
...props
|
|
506
|
-
}: React.ComponentProps<'p'>):
|
|
486
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime3.JSX.Element;
|
|
507
487
|
declare function EmptyContent({
|
|
508
488
|
className,
|
|
509
489
|
...props
|
|
510
|
-
}: React.ComponentProps<'div'>):
|
|
490
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
511
491
|
//#endregion
|
|
512
492
|
//#region src/components/label.d.ts
|
|
513
493
|
declare function Label({
|
|
514
494
|
className,
|
|
515
495
|
...props
|
|
516
|
-
}: React$2.ComponentProps<typeof LabelPrimitive.Root>):
|
|
496
|
+
}: React$2.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
517
497
|
//#endregion
|
|
518
498
|
//#region src/components/field.d.ts
|
|
519
499
|
declare function FieldSet({
|
|
520
500
|
className,
|
|
521
501
|
...props
|
|
522
|
-
}: React.ComponentProps<'fieldset'>):
|
|
502
|
+
}: React.ComponentProps<'fieldset'>): react_jsx_runtime3.JSX.Element;
|
|
523
503
|
declare function FieldLegend({
|
|
524
504
|
className,
|
|
525
505
|
variant,
|
|
526
506
|
...props
|
|
527
507
|
}: React.ComponentProps<'legend'> & {
|
|
528
508
|
variant?: 'legend' | 'label';
|
|
529
|
-
}):
|
|
509
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
530
510
|
declare function FieldGroup({
|
|
531
511
|
className,
|
|
532
512
|
...props
|
|
533
|
-
}: React.ComponentProps<'div'>):
|
|
513
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
534
514
|
declare const fieldVariants: (props?: ({
|
|
535
515
|
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
536
|
-
} &
|
|
516
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
537
517
|
declare function Field({
|
|
538
518
|
className,
|
|
539
519
|
orientation,
|
|
540
520
|
...props
|
|
541
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof fieldVariants>):
|
|
521
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof fieldVariants>): react_jsx_runtime3.JSX.Element;
|
|
542
522
|
declare function FieldContent({
|
|
543
523
|
className,
|
|
544
524
|
...props
|
|
545
|
-
}: React.ComponentProps<'div'>):
|
|
525
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
546
526
|
declare function FieldLabel({
|
|
547
527
|
className,
|
|
548
528
|
...props
|
|
549
|
-
}: React.ComponentProps<typeof Label>):
|
|
529
|
+
}: React.ComponentProps<typeof Label>): react_jsx_runtime3.JSX.Element;
|
|
550
530
|
declare function FieldTitle({
|
|
551
531
|
className,
|
|
552
532
|
...props
|
|
553
|
-
}: React.ComponentProps<'div'>):
|
|
533
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
554
534
|
declare function FieldDescription({
|
|
555
535
|
className,
|
|
556
536
|
...props
|
|
557
|
-
}: React.ComponentProps<'p'>):
|
|
537
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime3.JSX.Element;
|
|
558
538
|
declare function FieldSeparator({
|
|
559
539
|
children,
|
|
560
540
|
className,
|
|
561
541
|
...props
|
|
562
542
|
}: React.ComponentProps<'div'> & {
|
|
563
543
|
children?: React.ReactNode;
|
|
564
|
-
}):
|
|
544
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
565
545
|
declare function FieldError({
|
|
566
546
|
className,
|
|
567
547
|
children,
|
|
@@ -571,53 +551,80 @@ declare function FieldError({
|
|
|
571
551
|
errors?: Array<{
|
|
572
552
|
message?: string;
|
|
573
553
|
} | undefined>;
|
|
574
|
-
}):
|
|
554
|
+
}): react_jsx_runtime3.JSX.Element | null;
|
|
575
555
|
//#endregion
|
|
576
556
|
//#region src/components/input-group.d.ts
|
|
577
557
|
declare const inputGroupVariants: (props?: ({
|
|
578
558
|
sizing?: "default" | "sm" | "lg" | null | undefined;
|
|
579
|
-
} &
|
|
559
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
580
560
|
declare function InputGroup({
|
|
581
561
|
className,
|
|
582
562
|
sizing,
|
|
583
563
|
...props
|
|
584
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupVariants>):
|
|
564
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupVariants>): react_jsx_runtime3.JSX.Element;
|
|
585
565
|
declare const inputGroupAddonVariants: (props?: ({
|
|
586
566
|
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
587
|
-
} &
|
|
567
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
588
568
|
declare function InputGroupAddon({
|
|
589
569
|
className,
|
|
590
570
|
align,
|
|
591
571
|
...props
|
|
592
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>):
|
|
572
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime3.JSX.Element;
|
|
593
573
|
declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<(props?: ({
|
|
594
|
-
variant?: "
|
|
574
|
+
variant?: "default" | "link" | "outline" | "secondary" | "destructive" | "ghost" | null | undefined;
|
|
595
575
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
596
576
|
block?: boolean | null | undefined;
|
|
597
|
-
} &
|
|
577
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
598
578
|
asChild?: boolean;
|
|
599
579
|
block?: boolean;
|
|
600
580
|
}, "ref"> & React$2.RefAttributes<HTMLButtonElement>, "ref">, "size"> & VariantProps<(props?: ({
|
|
601
581
|
size?: "sm" | "icon-sm" | "xs" | "icon-xs" | null | undefined;
|
|
602
|
-
} &
|
|
582
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
603
583
|
declare function InputGroupText({
|
|
604
584
|
className,
|
|
605
585
|
...props
|
|
606
|
-
}: React$2.ComponentProps<'span'>):
|
|
586
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime3.JSX.Element;
|
|
607
587
|
declare const InputGroupInput: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
608
588
|
sizing?: "default" | "sm" | "lg" | null | undefined;
|
|
609
589
|
block?: boolean | null | undefined;
|
|
610
|
-
} &
|
|
590
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
611
591
|
declare function InputGroupTextarea({
|
|
612
592
|
className,
|
|
613
593
|
...props
|
|
614
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
594
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime3.JSX.Element;
|
|
595
|
+
//#endregion
|
|
596
|
+
//#region src/components/input-otp.d.ts
|
|
597
|
+
declare const inputOTPVariants: (props?: ({
|
|
598
|
+
sizing?: "default" | "sm" | "lg" | null | undefined;
|
|
599
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
600
|
+
declare function InputOTP({
|
|
601
|
+
className,
|
|
602
|
+
containerClassName,
|
|
603
|
+
sizing,
|
|
604
|
+
...props
|
|
605
|
+
}: React$2.ComponentProps<typeof OTPInput> & VariantProps<typeof inputOTPVariants> & {
|
|
606
|
+
containerClassName?: string;
|
|
607
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
608
|
+
declare function InputOTPGroup({
|
|
609
|
+
className,
|
|
610
|
+
...props
|
|
611
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime3.JSX.Element;
|
|
612
|
+
declare function InputOTPSlot({
|
|
613
|
+
index,
|
|
614
|
+
className,
|
|
615
|
+
...props
|
|
616
|
+
}: React$2.ComponentProps<"div"> & {
|
|
617
|
+
index: number;
|
|
618
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
619
|
+
declare function InputOTPSeparator({
|
|
620
|
+
...props
|
|
621
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime3.JSX.Element;
|
|
615
622
|
//#endregion
|
|
616
623
|
//#region src/components/input.d.ts
|
|
617
624
|
declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
618
625
|
sizing?: "default" | "sm" | "lg" | null | undefined;
|
|
619
626
|
block?: boolean | null | undefined;
|
|
620
|
-
} &
|
|
627
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
621
628
|
//#endregion
|
|
622
629
|
//#region src/components/item.d.ts
|
|
623
630
|
interface ItemGroupProps extends React$2.ComponentProps<'div'> {
|
|
@@ -627,18 +634,18 @@ declare const ItemGroup: React$2.ForwardRefExoticComponent<Omit<ItemGroupProps,
|
|
|
627
634
|
declare function ItemSeparator({
|
|
628
635
|
className,
|
|
629
636
|
...props
|
|
630
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
637
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime3.JSX.Element;
|
|
631
638
|
declare const itemVariants: (props?: ({
|
|
632
639
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
633
640
|
size?: "default" | "sm" | null | undefined;
|
|
634
|
-
} &
|
|
641
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
635
642
|
interface ItemProps extends React$2.ComponentPropsWithoutRef<'div'>, VariantProps<typeof itemVariants> {
|
|
636
643
|
asChild?: boolean;
|
|
637
644
|
}
|
|
638
645
|
declare const Item: React$2.ForwardRefExoticComponent<ItemProps & React$2.RefAttributes<HTMLDivElement>>;
|
|
639
646
|
declare const ItemMedia: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & VariantProps<(props?: ({
|
|
640
|
-
variant?: "
|
|
641
|
-
} &
|
|
647
|
+
variant?: "default" | "image" | "icon" | null | undefined;
|
|
648
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React$2.RefAttributes<HTMLDivElement>>;
|
|
642
649
|
declare const ItemContent: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
643
650
|
declare const ItemTitle: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
644
651
|
declare const ItemDescription: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React$2.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -654,7 +661,7 @@ declare const List: ({
|
|
|
654
661
|
children,
|
|
655
662
|
className,
|
|
656
663
|
...props
|
|
657
|
-
}: ListProps) =>
|
|
664
|
+
}: ListProps) => react_jsx_runtime3.JSX.Element;
|
|
658
665
|
interface ListRowProps extends React$2.HTMLAttributes<HTMLDivElement> {
|
|
659
666
|
children: React$2.ReactNode;
|
|
660
667
|
}
|
|
@@ -670,64 +677,64 @@ declare const ListCol: ({
|
|
|
670
677
|
children,
|
|
671
678
|
className,
|
|
672
679
|
...props
|
|
673
|
-
}: ListColProps) =>
|
|
680
|
+
}: ListColProps) => react_jsx_runtime3.JSX.Element;
|
|
674
681
|
//#endregion
|
|
675
682
|
//#region src/components/popover.d.ts
|
|
676
683
|
declare function Popover({
|
|
677
684
|
...props
|
|
678
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
685
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
679
686
|
declare function PopoverTrigger({
|
|
680
687
|
...props
|
|
681
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Trigger>):
|
|
688
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
682
689
|
declare function PopoverContent({
|
|
683
690
|
className,
|
|
684
691
|
align,
|
|
685
692
|
sideOffset,
|
|
686
693
|
...props
|
|
687
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Content>):
|
|
694
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
688
695
|
declare function PopoverAnchor({
|
|
689
696
|
...props
|
|
690
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Anchor>):
|
|
697
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime3.JSX.Element;
|
|
691
698
|
//#endregion
|
|
692
699
|
//#region src/components/progress.d.ts
|
|
693
700
|
declare function Progress({
|
|
694
701
|
className,
|
|
695
702
|
value,
|
|
696
703
|
...props
|
|
697
|
-
}: React$2.ComponentProps<typeof ProgressPrimitive.Root>):
|
|
704
|
+
}: React$2.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
698
705
|
//#endregion
|
|
699
706
|
//#region src/components/radio-group.d.ts
|
|
700
707
|
declare function RadioGroup({
|
|
701
708
|
className,
|
|
702
709
|
...props
|
|
703
|
-
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Root>):
|
|
710
|
+
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
704
711
|
declare function RadioGroupItem({
|
|
705
712
|
className,
|
|
706
713
|
...props
|
|
707
|
-
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Item>):
|
|
714
|
+
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime3.JSX.Element;
|
|
708
715
|
//#endregion
|
|
709
716
|
//#region src/components/scroll-area.d.ts
|
|
710
717
|
declare function ScrollArea({
|
|
711
718
|
className,
|
|
712
719
|
children,
|
|
713
720
|
...props
|
|
714
|
-
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.Root>):
|
|
721
|
+
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
715
722
|
declare function ScrollBar({
|
|
716
723
|
className,
|
|
717
724
|
orientation,
|
|
718
725
|
...props
|
|
719
|
-
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>):
|
|
726
|
+
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime3.JSX.Element;
|
|
720
727
|
//#endregion
|
|
721
728
|
//#region src/components/select.d.ts
|
|
722
729
|
declare function Select({
|
|
723
730
|
...props
|
|
724
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Root>):
|
|
731
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
725
732
|
declare function SelectGroup({
|
|
726
733
|
...props
|
|
727
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Group>):
|
|
734
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime3.JSX.Element;
|
|
728
735
|
declare function SelectValue({
|
|
729
736
|
...props
|
|
730
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Value>):
|
|
737
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime3.JSX.Element;
|
|
731
738
|
declare function SelectTrigger({
|
|
732
739
|
className,
|
|
733
740
|
size,
|
|
@@ -735,45 +742,45 @@ declare function SelectTrigger({
|
|
|
735
742
|
...props
|
|
736
743
|
}: React$2.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
737
744
|
size?: 'sm' | 'default';
|
|
738
|
-
}):
|
|
745
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
739
746
|
declare function SelectContent({
|
|
740
747
|
className,
|
|
741
748
|
children,
|
|
742
749
|
position,
|
|
743
750
|
...props
|
|
744
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Content>):
|
|
751
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
745
752
|
declare function SelectLabel({
|
|
746
753
|
className,
|
|
747
754
|
...props
|
|
748
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Label>):
|
|
755
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime3.JSX.Element;
|
|
749
756
|
declare function SelectItem({
|
|
750
757
|
className,
|
|
751
758
|
children,
|
|
752
759
|
...props
|
|
753
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Item>):
|
|
760
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime3.JSX.Element;
|
|
754
761
|
declare function SelectSeparator({
|
|
755
762
|
className,
|
|
756
763
|
...props
|
|
757
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Separator>):
|
|
764
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime3.JSX.Element;
|
|
758
765
|
declare function SelectScrollUpButton({
|
|
759
766
|
className,
|
|
760
767
|
...props
|
|
761
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>):
|
|
768
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime3.JSX.Element;
|
|
762
769
|
declare function SelectScrollDownButton({
|
|
763
770
|
className,
|
|
764
771
|
...props
|
|
765
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>):
|
|
772
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime3.JSX.Element;
|
|
766
773
|
//#endregion
|
|
767
774
|
//#region src/components/sheet.d.ts
|
|
768
775
|
declare function Sheet({
|
|
769
776
|
...props
|
|
770
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Root>):
|
|
777
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
771
778
|
declare function SheetTrigger({
|
|
772
779
|
...props
|
|
773
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>):
|
|
780
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
774
781
|
declare function SheetClose({
|
|
775
782
|
...props
|
|
776
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Close>):
|
|
783
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime3.JSX.Element;
|
|
777
784
|
type SheetContentProps = React$2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
778
785
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
779
786
|
position?: 'fixed' | 'absolute';
|
|
@@ -785,23 +792,23 @@ declare function SheetContent({
|
|
|
785
792
|
container,
|
|
786
793
|
position,
|
|
787
794
|
...props
|
|
788
|
-
}: SheetContentProps):
|
|
795
|
+
}: SheetContentProps): react_jsx_runtime3.JSX.Element;
|
|
789
796
|
declare function SheetHeader({
|
|
790
797
|
className,
|
|
791
798
|
...props
|
|
792
|
-
}: React$2.ComponentProps<'div'>):
|
|
799
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
793
800
|
declare function SheetFooter({
|
|
794
801
|
className,
|
|
795
802
|
...props
|
|
796
|
-
}: React$2.ComponentProps<'div'>):
|
|
803
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
797
804
|
declare function SheetTitle({
|
|
798
805
|
className,
|
|
799
806
|
...props
|
|
800
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Title>):
|
|
807
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime3.JSX.Element;
|
|
801
808
|
declare function SheetDescription({
|
|
802
809
|
className,
|
|
803
810
|
...props
|
|
804
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Description>):
|
|
811
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime3.JSX.Element;
|
|
805
812
|
//#endregion
|
|
806
813
|
//#region src/components/tooltip.d.ts
|
|
807
814
|
declare const TooltipProvider: React$2.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
@@ -835,7 +842,7 @@ declare function SidebarProvider({
|
|
|
835
842
|
open?: boolean;
|
|
836
843
|
onOpenChange?: (open: boolean) => void;
|
|
837
844
|
disableMobile?: boolean;
|
|
838
|
-
}):
|
|
845
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
839
846
|
declare function Sidebar({
|
|
840
847
|
side,
|
|
841
848
|
variant,
|
|
@@ -847,115 +854,101 @@ declare function Sidebar({
|
|
|
847
854
|
side?: 'left' | 'right';
|
|
848
855
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
849
856
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
850
|
-
}):
|
|
857
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
851
858
|
declare function SidebarTrigger({
|
|
852
859
|
className,
|
|
853
860
|
onClick,
|
|
854
861
|
...props
|
|
855
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
862
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime3.JSX.Element;
|
|
856
863
|
declare function SidebarRail({
|
|
857
864
|
className,
|
|
858
865
|
...props
|
|
859
|
-
}: React$2.ComponentProps<'button'>):
|
|
866
|
+
}: React$2.ComponentProps<'button'>): react_jsx_runtime3.JSX.Element;
|
|
860
867
|
declare function SidebarInset({
|
|
861
868
|
className,
|
|
862
869
|
...props
|
|
863
|
-
}: React$2.ComponentProps<'main'>):
|
|
870
|
+
}: React$2.ComponentProps<'main'>): react_jsx_runtime3.JSX.Element;
|
|
864
871
|
declare function SidebarInput({
|
|
865
872
|
className,
|
|
866
873
|
...props
|
|
867
|
-
}: React$2.ComponentProps<typeof Input>):
|
|
874
|
+
}: React$2.ComponentProps<typeof Input>): react_jsx_runtime3.JSX.Element;
|
|
868
875
|
declare function SidebarHeader({
|
|
869
876
|
className,
|
|
870
877
|
...props
|
|
871
|
-
}: React$2.ComponentProps<'div'>):
|
|
878
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
872
879
|
declare function SidebarFooter({
|
|
873
880
|
className,
|
|
874
881
|
...props
|
|
875
|
-
}: React$2.ComponentProps<'div'>):
|
|
882
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
876
883
|
declare function SidebarSeparator({
|
|
877
884
|
className,
|
|
878
885
|
...props
|
|
879
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
886
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime3.JSX.Element;
|
|
880
887
|
declare function SidebarContent({
|
|
881
888
|
className,
|
|
882
889
|
...props
|
|
883
|
-
}: React$2.ComponentProps<'div'>):
|
|
890
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
884
891
|
declare function SidebarGroup({
|
|
885
892
|
className,
|
|
886
893
|
...props
|
|
887
|
-
}: React$2.ComponentProps<'div'>):
|
|
894
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
888
895
|
declare function SidebarGroupLabel({
|
|
889
896
|
className,
|
|
890
897
|
asChild,
|
|
891
898
|
...props
|
|
892
899
|
}: React$2.ComponentProps<'div'> & {
|
|
893
900
|
asChild?: boolean;
|
|
894
|
-
}):
|
|
901
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
895
902
|
declare function SidebarGroupAction({
|
|
896
903
|
className,
|
|
897
904
|
asChild,
|
|
898
905
|
...props
|
|
899
906
|
}: React$2.ComponentProps<'button'> & {
|
|
900
907
|
asChild?: boolean;
|
|
901
|
-
}):
|
|
908
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
902
909
|
declare function SidebarGroupContent({
|
|
903
910
|
className,
|
|
904
911
|
...props
|
|
905
|
-
}: React$2.ComponentProps<'div'>):
|
|
912
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
906
913
|
declare function SidebarMenu({
|
|
907
914
|
className,
|
|
908
915
|
...props
|
|
909
|
-
}: React$2.ComponentProps<'ul'>):
|
|
916
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime3.JSX.Element;
|
|
910
917
|
declare function SidebarMenuItem({
|
|
911
918
|
className,
|
|
912
919
|
...props
|
|
913
|
-
}: React$2.ComponentProps<'li'>):
|
|
914
|
-
declare const
|
|
915
|
-
variant?: "default" | "outline" | null | undefined;
|
|
916
|
-
size?: "default" | "sm" | "lg" | null | undefined;
|
|
917
|
-
} & class_variance_authority_types3.ClassProp) | undefined) => string;
|
|
918
|
-
declare function SidebarMenuButton({
|
|
919
|
-
asChild,
|
|
920
|
-
isActive,
|
|
921
|
-
variant,
|
|
922
|
-
size,
|
|
923
|
-
tooltip,
|
|
924
|
-
className,
|
|
925
|
-
...props
|
|
926
|
-
}: React$2.ComponentProps<'button'> & {
|
|
920
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime3.JSX.Element;
|
|
921
|
+
declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
927
922
|
asChild?: boolean;
|
|
928
923
|
isActive?: boolean;
|
|
929
924
|
tooltip?: string | React$2.ComponentProps<typeof TooltipContent>;
|
|
930
|
-
} & VariantProps<
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
...props
|
|
936
|
-
}: React$2.ComponentProps<'button'> & {
|
|
925
|
+
} & VariantProps<(props?: ({
|
|
926
|
+
variant?: "default" | "outline" | null | undefined;
|
|
927
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
928
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
929
|
+
declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
937
930
|
asChild?: boolean;
|
|
938
931
|
showOnHover?: boolean;
|
|
939
|
-
}
|
|
932
|
+
}, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
940
933
|
declare function SidebarMenuBadge({
|
|
941
934
|
className,
|
|
942
935
|
...props
|
|
943
|
-
}: React$2.ComponentProps<'div'>):
|
|
936
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
944
937
|
declare function SidebarMenuSkeleton({
|
|
945
938
|
className,
|
|
946
939
|
showIcon,
|
|
947
940
|
...props
|
|
948
941
|
}: React$2.ComponentProps<'div'> & {
|
|
949
942
|
showIcon?: boolean;
|
|
950
|
-
}):
|
|
943
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
951
944
|
declare function SidebarMenuSub({
|
|
952
945
|
className,
|
|
953
946
|
...props
|
|
954
|
-
}: React$2.ComponentProps<'ul'>):
|
|
947
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime3.JSX.Element;
|
|
955
948
|
declare function SidebarMenuSubItem({
|
|
956
949
|
className,
|
|
957
950
|
...props
|
|
958
|
-
}: React$2.ComponentProps<'li'>):
|
|
951
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime3.JSX.Element;
|
|
959
952
|
declare function SidebarMenuSubButton({
|
|
960
953
|
asChild,
|
|
961
954
|
size,
|
|
@@ -966,13 +959,13 @@ declare function SidebarMenuSubButton({
|
|
|
966
959
|
asChild?: boolean;
|
|
967
960
|
size?: 'sm' | 'md';
|
|
968
961
|
isActive?: boolean;
|
|
969
|
-
}):
|
|
962
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
970
963
|
//#endregion
|
|
971
964
|
//#region src/components/skeleton.d.ts
|
|
972
965
|
declare function Skeleton({
|
|
973
966
|
className,
|
|
974
967
|
...props
|
|
975
|
-
}: React.ComponentProps<'div'>):
|
|
968
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
976
969
|
//#endregion
|
|
977
970
|
//#region src/components/slider.d.ts
|
|
978
971
|
declare function Slider({
|
|
@@ -982,36 +975,29 @@ declare function Slider({
|
|
|
982
975
|
min,
|
|
983
976
|
max,
|
|
984
977
|
...props
|
|
985
|
-
}: React$2.ComponentProps<typeof SliderPrimitive.Root>):
|
|
978
|
+
}: React$2.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
986
979
|
//#endregion
|
|
987
980
|
//#region src/components/sonner.d.ts
|
|
988
981
|
declare const Toaster: ({
|
|
989
982
|
...props
|
|
990
|
-
}: ToasterProps) =>
|
|
983
|
+
}: ToasterProps) => react_jsx_runtime3.JSX.Element;
|
|
991
984
|
//#endregion
|
|
992
985
|
//#region src/components/spinner.d.ts
|
|
993
986
|
declare const spinnerVariants: (props?: ({
|
|
994
987
|
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
995
|
-
} &
|
|
988
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
996
989
|
interface SpinnerProps extends React$2.ComponentProps<'svg'>, VariantProps<typeof spinnerVariants> {}
|
|
997
990
|
declare function Spinner({
|
|
998
991
|
className,
|
|
999
992
|
size,
|
|
1000
993
|
...props
|
|
1001
|
-
}: SpinnerProps):
|
|
1002
|
-
//#endregion
|
|
1003
|
-
//#region src/components/split-button.d.ts
|
|
1004
|
-
interface SplitButtonProps {
|
|
1005
|
-
children: React$2.ReactNode;
|
|
1006
|
-
className?: string;
|
|
1007
|
-
}
|
|
1008
|
-
declare const SplitButton: React$2.ForwardRefExoticComponent<SplitButtonProps & React$2.RefAttributes<HTMLDivElement>>;
|
|
994
|
+
}: SpinnerProps): react_jsx_runtime3.JSX.Element;
|
|
1009
995
|
//#endregion
|
|
1010
996
|
//#region src/components/switch.d.ts
|
|
1011
997
|
declare function Switch({
|
|
1012
998
|
className,
|
|
1013
999
|
...props
|
|
1014
|
-
}: React$2.ComponentProps<typeof SwitchPrimitive.Root>):
|
|
1000
|
+
}: React$2.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
1015
1001
|
//#endregion
|
|
1016
1002
|
//#region src/components/tab-bar.d.ts
|
|
1017
1003
|
interface TabBarItem {
|
|
@@ -1033,31 +1019,31 @@ declare function TabBar({
|
|
|
1033
1019
|
onTabChange,
|
|
1034
1020
|
renderTab,
|
|
1035
1021
|
className
|
|
1036
|
-
}: TabBarProps):
|
|
1022
|
+
}: TabBarProps): react_jsx_runtime3.JSX.Element;
|
|
1037
1023
|
//#endregion
|
|
1038
1024
|
//#region src/components/tabs.d.ts
|
|
1039
1025
|
declare function Tabs({
|
|
1040
1026
|
className,
|
|
1041
1027
|
...props
|
|
1042
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Root>):
|
|
1028
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
1043
1029
|
declare function TabsList({
|
|
1044
1030
|
className,
|
|
1045
1031
|
...props
|
|
1046
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.List>):
|
|
1032
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime3.JSX.Element;
|
|
1047
1033
|
declare function TabsTrigger({
|
|
1048
1034
|
className,
|
|
1049
1035
|
...props
|
|
1050
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Trigger>):
|
|
1036
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
1051
1037
|
declare function TabsContent({
|
|
1052
1038
|
className,
|
|
1053
1039
|
...props
|
|
1054
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Content>):
|
|
1040
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
1055
1041
|
//#endregion
|
|
1056
1042
|
//#region src/components/textarea.d.ts
|
|
1057
1043
|
declare function Textarea({
|
|
1058
1044
|
className,
|
|
1059
1045
|
...props
|
|
1060
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
1046
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime3.JSX.Element;
|
|
1061
1047
|
//#endregion
|
|
1062
1048
|
//#region src/components/theme-provider.d.ts
|
|
1063
1049
|
type ThemeProviderProps = ThemeProviderProps$1;
|
|
@@ -1070,11 +1056,11 @@ declare function ThemeProvider({
|
|
|
1070
1056
|
declare const toggleVariants: (props?: ({
|
|
1071
1057
|
variant?: "default" | "outline" | null | undefined;
|
|
1072
1058
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1073
|
-
} &
|
|
1059
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1074
1060
|
declare const Toggle: React$2.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React$2.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
1075
1061
|
variant?: "default" | "outline" | null | undefined;
|
|
1076
1062
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1077
|
-
} &
|
|
1063
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1078
1064
|
//#endregion
|
|
1079
1065
|
//#region src/components/toggle-group.d.ts
|
|
1080
1066
|
declare function ToggleGroup({
|
|
@@ -1083,16 +1069,16 @@ declare function ToggleGroup({
|
|
|
1083
1069
|
size,
|
|
1084
1070
|
children,
|
|
1085
1071
|
...props
|
|
1086
|
-
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>):
|
|
1072
|
+
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime3.JSX.Element;
|
|
1087
1073
|
declare function ToggleGroupItem({
|
|
1088
1074
|
className,
|
|
1089
1075
|
children,
|
|
1090
1076
|
variant,
|
|
1091
1077
|
size,
|
|
1092
1078
|
...props
|
|
1093
|
-
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>):
|
|
1079
|
+
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime3.JSX.Element;
|
|
1094
1080
|
//#endregion
|
|
1095
1081
|
//#region src/lib/utils.d.ts
|
|
1096
1082
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1097
1083
|
//#endregion
|
|
1098
|
-
export { Alert, AlertAction, AlertDescription, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CountryFlag, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger,
|
|
1084
|
+
export { Alert, AlertAction, AlertDescription, AlertTitle, Avatar, AvatarFallback, AvatarImage, AvatarProps, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CountryFlag, CountryFlagProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerContentProps, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmojiPicker, EmojiPickerCategories, EmojiPickerProps, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemProps, ItemSeparator, ItemTitle, Label, List, ListCol, ListRow, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Slot, Spinner, Switch, TabBar, TabBarItem, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipContentProps, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, inputOTPVariants, spinnerVariants, toast, toggleVariants, useSidebar, useTheme };
|