@aircall/ds 0.2.3 → 0.2.4
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 +213 -231
- package/dist/index.js +53 -80
- package/package.json +6 -5
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_runtime1 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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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" | "destructive" | "outline" | "secondary" | 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" | "destructive" | "outline" | "secondary" | 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_runtime1.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_runtime1.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_runtime1.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_runtime1.JSX.Element;
|
|
114
115
|
//#endregion
|
|
115
116
|
//#region src/components/button.d.ts
|
|
116
117
|
declare const buttonVariants: (props?: ({
|
|
117
|
-
variant?: "link" | "default" | "
|
|
118
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "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?: "link" | "default" | "
|
|
123
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.JSX.Element;
|
|
209
210
|
declare function CollapsibleTrigger({
|
|
210
211
|
...props
|
|
211
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>):
|
|
212
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime1.JSX.Element;
|
|
212
213
|
declare function CollapsibleContent({
|
|
213
214
|
...props
|
|
214
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>):
|
|
215
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.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_runtime1.JSX.Element;
|
|
487
467
|
declare function EmptyHeader({
|
|
488
468
|
className,
|
|
489
469
|
...props
|
|
490
|
-
}: React.ComponentProps<'div'>):
|
|
470
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime1.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_runtime1.JSX.Element;
|
|
499
479
|
declare function EmptyTitle({
|
|
500
480
|
className,
|
|
501
481
|
...props
|
|
502
|
-
}: React.ComponentProps<'div'>):
|
|
482
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
503
483
|
declare function EmptyDescription({
|
|
504
484
|
className,
|
|
505
485
|
...props
|
|
506
|
-
}: React.ComponentProps<'p'>):
|
|
486
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime1.JSX.Element;
|
|
507
487
|
declare function EmptyContent({
|
|
508
488
|
className,
|
|
509
489
|
...props
|
|
510
|
-
}: React.ComponentProps<'div'>):
|
|
490
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime1.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_runtime1.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_runtime1.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_runtime1.JSX.Element;
|
|
530
510
|
declare function FieldGroup({
|
|
531
511
|
className,
|
|
532
512
|
...props
|
|
533
|
-
}: React.ComponentProps<'div'>):
|
|
513
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime1.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_runtime1.JSX.Element;
|
|
542
522
|
declare function FieldContent({
|
|
543
523
|
className,
|
|
544
524
|
...props
|
|
545
|
-
}: React.ComponentProps<'div'>):
|
|
525
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime1.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_runtime1.JSX.Element;
|
|
550
530
|
declare function FieldTitle({
|
|
551
531
|
className,
|
|
552
532
|
...props
|
|
553
|
-
}: React.ComponentProps<'div'>):
|
|
533
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
554
534
|
declare function FieldDescription({
|
|
555
535
|
className,
|
|
556
536
|
...props
|
|
557
|
-
}: React.ComponentProps<'p'>):
|
|
537
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime1.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_runtime1.JSX.Element;
|
|
565
545
|
declare function FieldError({
|
|
566
546
|
className,
|
|
567
547
|
children,
|
|
@@ -571,53 +551,76 @@ declare function FieldError({
|
|
|
571
551
|
errors?: Array<{
|
|
572
552
|
message?: string;
|
|
573
553
|
} | undefined>;
|
|
574
|
-
}):
|
|
554
|
+
}): react_jsx_runtime1.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_runtime1.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_runtime1.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?: "link" | "default" | "
|
|
574
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "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_runtime1.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_runtime1.JSX.Element;
|
|
595
|
+
//#endregion
|
|
596
|
+
//#region src/components/input-otp.d.ts
|
|
597
|
+
declare function InputOTP({
|
|
598
|
+
className,
|
|
599
|
+
containerClassName,
|
|
600
|
+
...props
|
|
601
|
+
}: React$2.ComponentProps<typeof OTPInput> & {
|
|
602
|
+
containerClassName?: string;
|
|
603
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
604
|
+
declare function InputOTPGroup({
|
|
605
|
+
className,
|
|
606
|
+
...props
|
|
607
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime1.JSX.Element;
|
|
608
|
+
declare function InputOTPSlot({
|
|
609
|
+
index,
|
|
610
|
+
className,
|
|
611
|
+
...props
|
|
612
|
+
}: React$2.ComponentProps<"div"> & {
|
|
613
|
+
index: number;
|
|
614
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
615
|
+
declare function InputOTPSeparator({
|
|
616
|
+
...props
|
|
617
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime1.JSX.Element;
|
|
615
618
|
//#endregion
|
|
616
619
|
//#region src/components/input.d.ts
|
|
617
620
|
declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
618
621
|
sizing?: "default" | "sm" | "lg" | null | undefined;
|
|
619
622
|
block?: boolean | null | undefined;
|
|
620
|
-
} &
|
|
623
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
621
624
|
//#endregion
|
|
622
625
|
//#region src/components/item.d.ts
|
|
623
626
|
interface ItemGroupProps extends React$2.ComponentProps<'div'> {
|
|
@@ -627,18 +630,18 @@ declare const ItemGroup: React$2.ForwardRefExoticComponent<Omit<ItemGroupProps,
|
|
|
627
630
|
declare function ItemSeparator({
|
|
628
631
|
className,
|
|
629
632
|
...props
|
|
630
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
633
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime1.JSX.Element;
|
|
631
634
|
declare const itemVariants: (props?: ({
|
|
632
635
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
633
636
|
size?: "default" | "sm" | null | undefined;
|
|
634
|
-
} &
|
|
637
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
635
638
|
interface ItemProps extends React$2.ComponentPropsWithoutRef<'div'>, VariantProps<typeof itemVariants> {
|
|
636
639
|
asChild?: boolean;
|
|
637
640
|
}
|
|
638
641
|
declare const Item: React$2.ForwardRefExoticComponent<ItemProps & React$2.RefAttributes<HTMLDivElement>>;
|
|
639
642
|
declare const ItemMedia: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & VariantProps<(props?: ({
|
|
640
643
|
variant?: "image" | "default" | "icon" | null | undefined;
|
|
641
|
-
} &
|
|
644
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React$2.RefAttributes<HTMLDivElement>>;
|
|
642
645
|
declare const ItemContent: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
643
646
|
declare const ItemTitle: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
644
647
|
declare const ItemDescription: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React$2.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -654,7 +657,7 @@ declare const List: ({
|
|
|
654
657
|
children,
|
|
655
658
|
className,
|
|
656
659
|
...props
|
|
657
|
-
}: ListProps) =>
|
|
660
|
+
}: ListProps) => react_jsx_runtime1.JSX.Element;
|
|
658
661
|
interface ListRowProps extends React$2.HTMLAttributes<HTMLDivElement> {
|
|
659
662
|
children: React$2.ReactNode;
|
|
660
663
|
}
|
|
@@ -670,64 +673,64 @@ declare const ListCol: ({
|
|
|
670
673
|
children,
|
|
671
674
|
className,
|
|
672
675
|
...props
|
|
673
|
-
}: ListColProps) =>
|
|
676
|
+
}: ListColProps) => react_jsx_runtime1.JSX.Element;
|
|
674
677
|
//#endregion
|
|
675
678
|
//#region src/components/popover.d.ts
|
|
676
679
|
declare function Popover({
|
|
677
680
|
...props
|
|
678
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
681
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
679
682
|
declare function PopoverTrigger({
|
|
680
683
|
...props
|
|
681
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Trigger>):
|
|
684
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime1.JSX.Element;
|
|
682
685
|
declare function PopoverContent({
|
|
683
686
|
className,
|
|
684
687
|
align,
|
|
685
688
|
sideOffset,
|
|
686
689
|
...props
|
|
687
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Content>):
|
|
690
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime1.JSX.Element;
|
|
688
691
|
declare function PopoverAnchor({
|
|
689
692
|
...props
|
|
690
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Anchor>):
|
|
693
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime1.JSX.Element;
|
|
691
694
|
//#endregion
|
|
692
695
|
//#region src/components/progress.d.ts
|
|
693
696
|
declare function Progress({
|
|
694
697
|
className,
|
|
695
698
|
value,
|
|
696
699
|
...props
|
|
697
|
-
}: React$2.ComponentProps<typeof ProgressPrimitive.Root>):
|
|
700
|
+
}: React$2.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
698
701
|
//#endregion
|
|
699
702
|
//#region src/components/radio-group.d.ts
|
|
700
703
|
declare function RadioGroup({
|
|
701
704
|
className,
|
|
702
705
|
...props
|
|
703
|
-
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Root>):
|
|
706
|
+
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
704
707
|
declare function RadioGroupItem({
|
|
705
708
|
className,
|
|
706
709
|
...props
|
|
707
|
-
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Item>):
|
|
710
|
+
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime1.JSX.Element;
|
|
708
711
|
//#endregion
|
|
709
712
|
//#region src/components/scroll-area.d.ts
|
|
710
713
|
declare function ScrollArea({
|
|
711
714
|
className,
|
|
712
715
|
children,
|
|
713
716
|
...props
|
|
714
|
-
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.Root>):
|
|
717
|
+
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
715
718
|
declare function ScrollBar({
|
|
716
719
|
className,
|
|
717
720
|
orientation,
|
|
718
721
|
...props
|
|
719
|
-
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>):
|
|
722
|
+
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime1.JSX.Element;
|
|
720
723
|
//#endregion
|
|
721
724
|
//#region src/components/select.d.ts
|
|
722
725
|
declare function Select({
|
|
723
726
|
...props
|
|
724
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Root>):
|
|
727
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
725
728
|
declare function SelectGroup({
|
|
726
729
|
...props
|
|
727
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Group>):
|
|
730
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime1.JSX.Element;
|
|
728
731
|
declare function SelectValue({
|
|
729
732
|
...props
|
|
730
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Value>):
|
|
733
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime1.JSX.Element;
|
|
731
734
|
declare function SelectTrigger({
|
|
732
735
|
className,
|
|
733
736
|
size,
|
|
@@ -735,45 +738,45 @@ declare function SelectTrigger({
|
|
|
735
738
|
...props
|
|
736
739
|
}: React$2.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
737
740
|
size?: 'sm' | 'default';
|
|
738
|
-
}):
|
|
741
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
739
742
|
declare function SelectContent({
|
|
740
743
|
className,
|
|
741
744
|
children,
|
|
742
745
|
position,
|
|
743
746
|
...props
|
|
744
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Content>):
|
|
747
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime1.JSX.Element;
|
|
745
748
|
declare function SelectLabel({
|
|
746
749
|
className,
|
|
747
750
|
...props
|
|
748
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Label>):
|
|
751
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime1.JSX.Element;
|
|
749
752
|
declare function SelectItem({
|
|
750
753
|
className,
|
|
751
754
|
children,
|
|
752
755
|
...props
|
|
753
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Item>):
|
|
756
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime1.JSX.Element;
|
|
754
757
|
declare function SelectSeparator({
|
|
755
758
|
className,
|
|
756
759
|
...props
|
|
757
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Separator>):
|
|
760
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime1.JSX.Element;
|
|
758
761
|
declare function SelectScrollUpButton({
|
|
759
762
|
className,
|
|
760
763
|
...props
|
|
761
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>):
|
|
764
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime1.JSX.Element;
|
|
762
765
|
declare function SelectScrollDownButton({
|
|
763
766
|
className,
|
|
764
767
|
...props
|
|
765
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>):
|
|
768
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime1.JSX.Element;
|
|
766
769
|
//#endregion
|
|
767
770
|
//#region src/components/sheet.d.ts
|
|
768
771
|
declare function Sheet({
|
|
769
772
|
...props
|
|
770
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Root>):
|
|
773
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
771
774
|
declare function SheetTrigger({
|
|
772
775
|
...props
|
|
773
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>):
|
|
776
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime1.JSX.Element;
|
|
774
777
|
declare function SheetClose({
|
|
775
778
|
...props
|
|
776
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Close>):
|
|
779
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime1.JSX.Element;
|
|
777
780
|
type SheetContentProps = React$2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
778
781
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
779
782
|
position?: 'fixed' | 'absolute';
|
|
@@ -785,23 +788,23 @@ declare function SheetContent({
|
|
|
785
788
|
container,
|
|
786
789
|
position,
|
|
787
790
|
...props
|
|
788
|
-
}: SheetContentProps):
|
|
791
|
+
}: SheetContentProps): react_jsx_runtime1.JSX.Element;
|
|
789
792
|
declare function SheetHeader({
|
|
790
793
|
className,
|
|
791
794
|
...props
|
|
792
|
-
}: React$2.ComponentProps<'div'>):
|
|
795
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
793
796
|
declare function SheetFooter({
|
|
794
797
|
className,
|
|
795
798
|
...props
|
|
796
|
-
}: React$2.ComponentProps<'div'>):
|
|
799
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
797
800
|
declare function SheetTitle({
|
|
798
801
|
className,
|
|
799
802
|
...props
|
|
800
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Title>):
|
|
803
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime1.JSX.Element;
|
|
801
804
|
declare function SheetDescription({
|
|
802
805
|
className,
|
|
803
806
|
...props
|
|
804
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Description>):
|
|
807
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime1.JSX.Element;
|
|
805
808
|
//#endregion
|
|
806
809
|
//#region src/components/tooltip.d.ts
|
|
807
810
|
declare const TooltipProvider: React$2.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
@@ -835,7 +838,7 @@ declare function SidebarProvider({
|
|
|
835
838
|
open?: boolean;
|
|
836
839
|
onOpenChange?: (open: boolean) => void;
|
|
837
840
|
disableMobile?: boolean;
|
|
838
|
-
}):
|
|
841
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
839
842
|
declare function Sidebar({
|
|
840
843
|
side,
|
|
841
844
|
variant,
|
|
@@ -847,115 +850,101 @@ declare function Sidebar({
|
|
|
847
850
|
side?: 'left' | 'right';
|
|
848
851
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
849
852
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
850
|
-
}):
|
|
853
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
851
854
|
declare function SidebarTrigger({
|
|
852
855
|
className,
|
|
853
856
|
onClick,
|
|
854
857
|
...props
|
|
855
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
858
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime1.JSX.Element;
|
|
856
859
|
declare function SidebarRail({
|
|
857
860
|
className,
|
|
858
861
|
...props
|
|
859
|
-
}: React$2.ComponentProps<'button'>):
|
|
862
|
+
}: React$2.ComponentProps<'button'>): react_jsx_runtime1.JSX.Element;
|
|
860
863
|
declare function SidebarInset({
|
|
861
864
|
className,
|
|
862
865
|
...props
|
|
863
|
-
}: React$2.ComponentProps<'main'>):
|
|
866
|
+
}: React$2.ComponentProps<'main'>): react_jsx_runtime1.JSX.Element;
|
|
864
867
|
declare function SidebarInput({
|
|
865
868
|
className,
|
|
866
869
|
...props
|
|
867
|
-
}: React$2.ComponentProps<typeof Input>):
|
|
870
|
+
}: React$2.ComponentProps<typeof Input>): react_jsx_runtime1.JSX.Element;
|
|
868
871
|
declare function SidebarHeader({
|
|
869
872
|
className,
|
|
870
873
|
...props
|
|
871
|
-
}: React$2.ComponentProps<'div'>):
|
|
874
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
872
875
|
declare function SidebarFooter({
|
|
873
876
|
className,
|
|
874
877
|
...props
|
|
875
|
-
}: React$2.ComponentProps<'div'>):
|
|
878
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
876
879
|
declare function SidebarSeparator({
|
|
877
880
|
className,
|
|
878
881
|
...props
|
|
879
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
882
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime1.JSX.Element;
|
|
880
883
|
declare function SidebarContent({
|
|
881
884
|
className,
|
|
882
885
|
...props
|
|
883
|
-
}: React$2.ComponentProps<'div'>):
|
|
886
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
884
887
|
declare function SidebarGroup({
|
|
885
888
|
className,
|
|
886
889
|
...props
|
|
887
|
-
}: React$2.ComponentProps<'div'>):
|
|
890
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
888
891
|
declare function SidebarGroupLabel({
|
|
889
892
|
className,
|
|
890
893
|
asChild,
|
|
891
894
|
...props
|
|
892
895
|
}: React$2.ComponentProps<'div'> & {
|
|
893
896
|
asChild?: boolean;
|
|
894
|
-
}):
|
|
897
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
895
898
|
declare function SidebarGroupAction({
|
|
896
899
|
className,
|
|
897
900
|
asChild,
|
|
898
901
|
...props
|
|
899
902
|
}: React$2.ComponentProps<'button'> & {
|
|
900
903
|
asChild?: boolean;
|
|
901
|
-
}):
|
|
904
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
902
905
|
declare function SidebarGroupContent({
|
|
903
906
|
className,
|
|
904
907
|
...props
|
|
905
|
-
}: React$2.ComponentProps<'div'>):
|
|
908
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
906
909
|
declare function SidebarMenu({
|
|
907
910
|
className,
|
|
908
911
|
...props
|
|
909
|
-
}: React$2.ComponentProps<'ul'>):
|
|
912
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime1.JSX.Element;
|
|
910
913
|
declare function SidebarMenuItem({
|
|
911
914
|
className,
|
|
912
915
|
...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'> & {
|
|
916
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime1.JSX.Element;
|
|
917
|
+
declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
927
918
|
asChild?: boolean;
|
|
928
919
|
isActive?: boolean;
|
|
929
920
|
tooltip?: string | React$2.ComponentProps<typeof TooltipContent>;
|
|
930
|
-
} & VariantProps<
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
...props
|
|
936
|
-
}: React$2.ComponentProps<'button'> & {
|
|
921
|
+
} & VariantProps<(props?: ({
|
|
922
|
+
variant?: "default" | "outline" | null | undefined;
|
|
923
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
924
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
925
|
+
declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
937
926
|
asChild?: boolean;
|
|
938
927
|
showOnHover?: boolean;
|
|
939
|
-
}
|
|
928
|
+
}, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
940
929
|
declare function SidebarMenuBadge({
|
|
941
930
|
className,
|
|
942
931
|
...props
|
|
943
|
-
}: React$2.ComponentProps<'div'>):
|
|
932
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
944
933
|
declare function SidebarMenuSkeleton({
|
|
945
934
|
className,
|
|
946
935
|
showIcon,
|
|
947
936
|
...props
|
|
948
937
|
}: React$2.ComponentProps<'div'> & {
|
|
949
938
|
showIcon?: boolean;
|
|
950
|
-
}):
|
|
939
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
951
940
|
declare function SidebarMenuSub({
|
|
952
941
|
className,
|
|
953
942
|
...props
|
|
954
|
-
}: React$2.ComponentProps<'ul'>):
|
|
943
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime1.JSX.Element;
|
|
955
944
|
declare function SidebarMenuSubItem({
|
|
956
945
|
className,
|
|
957
946
|
...props
|
|
958
|
-
}: React$2.ComponentProps<'li'>):
|
|
947
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime1.JSX.Element;
|
|
959
948
|
declare function SidebarMenuSubButton({
|
|
960
949
|
asChild,
|
|
961
950
|
size,
|
|
@@ -966,13 +955,13 @@ declare function SidebarMenuSubButton({
|
|
|
966
955
|
asChild?: boolean;
|
|
967
956
|
size?: 'sm' | 'md';
|
|
968
957
|
isActive?: boolean;
|
|
969
|
-
}):
|
|
958
|
+
}): react_jsx_runtime1.JSX.Element;
|
|
970
959
|
//#endregion
|
|
971
960
|
//#region src/components/skeleton.d.ts
|
|
972
961
|
declare function Skeleton({
|
|
973
962
|
className,
|
|
974
963
|
...props
|
|
975
|
-
}: React.ComponentProps<'div'>):
|
|
964
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime1.JSX.Element;
|
|
976
965
|
//#endregion
|
|
977
966
|
//#region src/components/slider.d.ts
|
|
978
967
|
declare function Slider({
|
|
@@ -982,36 +971,29 @@ declare function Slider({
|
|
|
982
971
|
min,
|
|
983
972
|
max,
|
|
984
973
|
...props
|
|
985
|
-
}: React$2.ComponentProps<typeof SliderPrimitive.Root>):
|
|
974
|
+
}: React$2.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
986
975
|
//#endregion
|
|
987
976
|
//#region src/components/sonner.d.ts
|
|
988
977
|
declare const Toaster: ({
|
|
989
978
|
...props
|
|
990
|
-
}: ToasterProps) =>
|
|
979
|
+
}: ToasterProps) => react_jsx_runtime1.JSX.Element;
|
|
991
980
|
//#endregion
|
|
992
981
|
//#region src/components/spinner.d.ts
|
|
993
982
|
declare const spinnerVariants: (props?: ({
|
|
994
983
|
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
995
|
-
} &
|
|
984
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
996
985
|
interface SpinnerProps extends React$2.ComponentProps<'svg'>, VariantProps<typeof spinnerVariants> {}
|
|
997
986
|
declare function Spinner({
|
|
998
987
|
className,
|
|
999
988
|
size,
|
|
1000
989
|
...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>>;
|
|
990
|
+
}: SpinnerProps): react_jsx_runtime1.JSX.Element;
|
|
1009
991
|
//#endregion
|
|
1010
992
|
//#region src/components/switch.d.ts
|
|
1011
993
|
declare function Switch({
|
|
1012
994
|
className,
|
|
1013
995
|
...props
|
|
1014
|
-
}: React$2.ComponentProps<typeof SwitchPrimitive.Root>):
|
|
996
|
+
}: React$2.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
1015
997
|
//#endregion
|
|
1016
998
|
//#region src/components/tab-bar.d.ts
|
|
1017
999
|
interface TabBarItem {
|
|
@@ -1033,31 +1015,31 @@ declare function TabBar({
|
|
|
1033
1015
|
onTabChange,
|
|
1034
1016
|
renderTab,
|
|
1035
1017
|
className
|
|
1036
|
-
}: TabBarProps):
|
|
1018
|
+
}: TabBarProps): react_jsx_runtime1.JSX.Element;
|
|
1037
1019
|
//#endregion
|
|
1038
1020
|
//#region src/components/tabs.d.ts
|
|
1039
1021
|
declare function Tabs({
|
|
1040
1022
|
className,
|
|
1041
1023
|
...props
|
|
1042
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Root>):
|
|
1024
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime1.JSX.Element;
|
|
1043
1025
|
declare function TabsList({
|
|
1044
1026
|
className,
|
|
1045
1027
|
...props
|
|
1046
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.List>):
|
|
1028
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime1.JSX.Element;
|
|
1047
1029
|
declare function TabsTrigger({
|
|
1048
1030
|
className,
|
|
1049
1031
|
...props
|
|
1050
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Trigger>):
|
|
1032
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime1.JSX.Element;
|
|
1051
1033
|
declare function TabsContent({
|
|
1052
1034
|
className,
|
|
1053
1035
|
...props
|
|
1054
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Content>):
|
|
1036
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime1.JSX.Element;
|
|
1055
1037
|
//#endregion
|
|
1056
1038
|
//#region src/components/textarea.d.ts
|
|
1057
1039
|
declare function Textarea({
|
|
1058
1040
|
className,
|
|
1059
1041
|
...props
|
|
1060
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
1042
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime1.JSX.Element;
|
|
1061
1043
|
//#endregion
|
|
1062
1044
|
//#region src/components/theme-provider.d.ts
|
|
1063
1045
|
type ThemeProviderProps = ThemeProviderProps$1;
|
|
@@ -1070,11 +1052,11 @@ declare function ThemeProvider({
|
|
|
1070
1052
|
declare const toggleVariants: (props?: ({
|
|
1071
1053
|
variant?: "default" | "outline" | null | undefined;
|
|
1072
1054
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1073
|
-
} &
|
|
1055
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1074
1056
|
declare const Toggle: React$2.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React$2.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
1075
1057
|
variant?: "default" | "outline" | null | undefined;
|
|
1076
1058
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1077
|
-
} &
|
|
1059
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1078
1060
|
//#endregion
|
|
1079
1061
|
//#region src/components/toggle-group.d.ts
|
|
1080
1062
|
declare function ToggleGroup({
|
|
@@ -1083,16 +1065,16 @@ declare function ToggleGroup({
|
|
|
1083
1065
|
size,
|
|
1084
1066
|
children,
|
|
1085
1067
|
...props
|
|
1086
|
-
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>):
|
|
1068
|
+
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime1.JSX.Element;
|
|
1087
1069
|
declare function ToggleGroupItem({
|
|
1088
1070
|
className,
|
|
1089
1071
|
children,
|
|
1090
1072
|
variant,
|
|
1091
1073
|
size,
|
|
1092
1074
|
...props
|
|
1093
|
-
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>):
|
|
1075
|
+
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime1.JSX.Element;
|
|
1094
1076
|
//#endregion
|
|
1095
1077
|
//#region src/lib/utils.d.ts
|
|
1096
1078
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1097
1079
|
//#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,
|
|
1080
|
+
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, spinnerVariants, toast, toggleVariants, useSidebar, useTheme };
|