@melv1c/ui-core 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base.css +54 -0
- package/dist/index.d.mts +1865 -0
- package/dist/index.mjs +4247 -0
- package/dist/locales/index.d.mts +187 -0
- package/dist/locales/index.mjs +14 -0
- package/dist/nl-CCT3Xhp8.mjs +204 -0
- package/dist/themes/claude.css +117 -0
- package/dist/themes/default.css +70 -0
- package/dist/themes/doom64.css +107 -0
- package/dist/themes/t3chat.css +117 -0
- package/dist/themes/twitter.css +127 -0
- package/dist/themes/vercel.css +107 -0
- package/package.json +108 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,1865 @@
|
|
|
1
|
+
import * as React$1 from "react";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
import { Accordion as Accordion$1, AlertDialog as AlertDialog$1, AspectRatio as AspectRatio$1, Avatar as Avatar$1, Checkbox as Checkbox$1, Collapsible as Collapsible$1, ContextMenu as ContextMenu$1, Dialog as Dialog$1, Direction, DropdownMenu as DropdownMenu$1, HoverCard as HoverCard$1, Label as Label$1, Menubar as Menubar$1, NavigationMenu as NavigationMenu$1, Popover as Popover$1, Progress as Progress$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Separator as Separator$1, Slider as Slider$1, Switch as Switch$1, Tabs as Tabs$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1, Tooltip as Tooltip$1 } from "radix-ui";
|
|
4
|
+
import { ClassValue } from "clsx";
|
|
5
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
6
|
+
import { VariantProps } from "class-variance-authority";
|
|
7
|
+
import { DayButton, DayPicker } from "react-day-picker";
|
|
8
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
|
|
9
|
+
import * as RechartsPrimitive from "recharts";
|
|
10
|
+
import { Combobox as Combobox$1 } from "@base-ui/react";
|
|
11
|
+
import { Command as Command$1 } from "cmdk";
|
|
12
|
+
import { Drawer as Drawer$1 } from "vaul";
|
|
13
|
+
import { OTPInput } from "input-otp";
|
|
14
|
+
import * as ResizablePrimitive from "react-resizable-panels";
|
|
15
|
+
import { ToasterProps } from "sonner";
|
|
16
|
+
import * as z from "zod";
|
|
17
|
+
import { i18n as i18n$1 } from "i18next";
|
|
18
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
19
|
+
|
|
20
|
+
//#region src/components/base/accordion.d.ts
|
|
21
|
+
declare function Accordion({
|
|
22
|
+
...props
|
|
23
|
+
}: React$1.ComponentProps<typeof Accordion$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
24
|
+
declare function AccordionItem({
|
|
25
|
+
className,
|
|
26
|
+
...props
|
|
27
|
+
}: React$1.ComponentProps<typeof Accordion$1.Item>): react_jsx_runtime0.JSX.Element;
|
|
28
|
+
declare function AccordionTrigger({
|
|
29
|
+
className,
|
|
30
|
+
children,
|
|
31
|
+
...props
|
|
32
|
+
}: React$1.ComponentProps<typeof Accordion$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
33
|
+
declare function AccordionContent({
|
|
34
|
+
className,
|
|
35
|
+
children,
|
|
36
|
+
...props
|
|
37
|
+
}: React$1.ComponentProps<typeof Accordion$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
38
|
+
//#endregion
|
|
39
|
+
//#region src/components/base/alert.d.ts
|
|
40
|
+
declare const alertVariants: (props?: ({
|
|
41
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
42
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
43
|
+
declare function Alert({
|
|
44
|
+
className,
|
|
45
|
+
variant,
|
|
46
|
+
...props
|
|
47
|
+
}: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime0.JSX.Element;
|
|
48
|
+
declare function AlertTitle({
|
|
49
|
+
className,
|
|
50
|
+
...props
|
|
51
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
52
|
+
declare function AlertDescription({
|
|
53
|
+
className,
|
|
54
|
+
...props
|
|
55
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
56
|
+
//#endregion
|
|
57
|
+
//#region src/components/base/button.d.ts
|
|
58
|
+
declare const buttonVariants: (props?: ({
|
|
59
|
+
variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | "link" | null | undefined;
|
|
60
|
+
size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
61
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
62
|
+
declare function Button({
|
|
63
|
+
className,
|
|
64
|
+
variant,
|
|
65
|
+
size,
|
|
66
|
+
asChild,
|
|
67
|
+
...props
|
|
68
|
+
}: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
69
|
+
asChild?: boolean;
|
|
70
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
71
|
+
//#endregion
|
|
72
|
+
//#region src/components/base/alert-dialog.d.ts
|
|
73
|
+
declare function AlertDialog({
|
|
74
|
+
...props
|
|
75
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
76
|
+
declare function AlertDialogTrigger({
|
|
77
|
+
...props
|
|
78
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
79
|
+
declare function AlertDialogPortal({
|
|
80
|
+
...props
|
|
81
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime0.JSX.Element;
|
|
82
|
+
declare function AlertDialogOverlay({
|
|
83
|
+
className,
|
|
84
|
+
...props
|
|
85
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime0.JSX.Element;
|
|
86
|
+
declare function AlertDialogContent({
|
|
87
|
+
className,
|
|
88
|
+
size,
|
|
89
|
+
...props
|
|
90
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Content> & {
|
|
91
|
+
size?: "default" | "sm";
|
|
92
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
93
|
+
declare function AlertDialogHeader({
|
|
94
|
+
className,
|
|
95
|
+
...props
|
|
96
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
97
|
+
declare function AlertDialogFooter({
|
|
98
|
+
className,
|
|
99
|
+
...props
|
|
100
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
101
|
+
declare function AlertDialogTitle({
|
|
102
|
+
className,
|
|
103
|
+
...props
|
|
104
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime0.JSX.Element;
|
|
105
|
+
declare function AlertDialogDescription({
|
|
106
|
+
className,
|
|
107
|
+
...props
|
|
108
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime0.JSX.Element;
|
|
109
|
+
declare function AlertDialogMedia({
|
|
110
|
+
className,
|
|
111
|
+
...props
|
|
112
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
113
|
+
declare function AlertDialogAction({
|
|
114
|
+
className,
|
|
115
|
+
variant,
|
|
116
|
+
size,
|
|
117
|
+
...props
|
|
118
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Action> & Pick<React$1.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime0.JSX.Element;
|
|
119
|
+
declare function AlertDialogCancel({
|
|
120
|
+
className,
|
|
121
|
+
variant,
|
|
122
|
+
size,
|
|
123
|
+
...props
|
|
124
|
+
}: React$1.ComponentProps<typeof AlertDialog$1.Cancel> & Pick<React$1.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime0.JSX.Element;
|
|
125
|
+
//#endregion
|
|
126
|
+
//#region src/components/base/aspect-ratio.d.ts
|
|
127
|
+
declare function AspectRatio({
|
|
128
|
+
...props
|
|
129
|
+
}: React.ComponentProps<typeof AspectRatio$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
130
|
+
//#endregion
|
|
131
|
+
//#region src/components/base/avatar.d.ts
|
|
132
|
+
declare function Avatar({
|
|
133
|
+
className,
|
|
134
|
+
size,
|
|
135
|
+
...props
|
|
136
|
+
}: React$1.ComponentProps<typeof Avatar$1.Root> & {
|
|
137
|
+
size?: "default" | "sm" | "lg";
|
|
138
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
139
|
+
declare function AvatarImage({
|
|
140
|
+
className,
|
|
141
|
+
...props
|
|
142
|
+
}: React$1.ComponentProps<typeof Avatar$1.Image>): react_jsx_runtime0.JSX.Element;
|
|
143
|
+
declare function AvatarFallback({
|
|
144
|
+
className,
|
|
145
|
+
...props
|
|
146
|
+
}: React$1.ComponentProps<typeof Avatar$1.Fallback>): react_jsx_runtime0.JSX.Element;
|
|
147
|
+
declare function AvatarBadge({
|
|
148
|
+
className,
|
|
149
|
+
...props
|
|
150
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
151
|
+
declare function AvatarGroup({
|
|
152
|
+
className,
|
|
153
|
+
...props
|
|
154
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
155
|
+
declare function AvatarGroupCount({
|
|
156
|
+
className,
|
|
157
|
+
...props
|
|
158
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
159
|
+
//#endregion
|
|
160
|
+
//#region src/components/base/badge.d.ts
|
|
161
|
+
declare const badgeVariants: (props?: ({
|
|
162
|
+
variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | "link" | null | undefined;
|
|
163
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
164
|
+
declare function Badge({
|
|
165
|
+
className,
|
|
166
|
+
variant,
|
|
167
|
+
asChild,
|
|
168
|
+
...props
|
|
169
|
+
}: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
170
|
+
asChild?: boolean;
|
|
171
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
172
|
+
//#endregion
|
|
173
|
+
//#region src/components/base/breadcrumb.d.ts
|
|
174
|
+
declare function Breadcrumb({
|
|
175
|
+
...props
|
|
176
|
+
}: React$1.ComponentProps<"nav">): react_jsx_runtime0.JSX.Element;
|
|
177
|
+
declare function BreadcrumbList({
|
|
178
|
+
className,
|
|
179
|
+
...props
|
|
180
|
+
}: React$1.ComponentProps<"ol">): react_jsx_runtime0.JSX.Element;
|
|
181
|
+
declare function BreadcrumbItem({
|
|
182
|
+
className,
|
|
183
|
+
...props
|
|
184
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime0.JSX.Element;
|
|
185
|
+
declare function BreadcrumbLink({
|
|
186
|
+
asChild,
|
|
187
|
+
className,
|
|
188
|
+
...props
|
|
189
|
+
}: React$1.ComponentProps<"a"> & {
|
|
190
|
+
asChild?: boolean;
|
|
191
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
192
|
+
declare function BreadcrumbPage({
|
|
193
|
+
className,
|
|
194
|
+
...props
|
|
195
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
196
|
+
declare function BreadcrumbSeparator({
|
|
197
|
+
children,
|
|
198
|
+
className,
|
|
199
|
+
...props
|
|
200
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime0.JSX.Element;
|
|
201
|
+
declare function BreadcrumbEllipsis({
|
|
202
|
+
className,
|
|
203
|
+
...props
|
|
204
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
205
|
+
//#endregion
|
|
206
|
+
//#region src/components/base/separator.d.ts
|
|
207
|
+
declare function Separator({
|
|
208
|
+
className,
|
|
209
|
+
orientation,
|
|
210
|
+
decorative,
|
|
211
|
+
...props
|
|
212
|
+
}: React$1.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
213
|
+
//#endregion
|
|
214
|
+
//#region src/components/base/button-group.d.ts
|
|
215
|
+
declare const buttonGroupVariants: (props?: ({
|
|
216
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
217
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
218
|
+
declare function ButtonGroup({
|
|
219
|
+
className,
|
|
220
|
+
orientation,
|
|
221
|
+
...props
|
|
222
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime0.JSX.Element;
|
|
223
|
+
declare function ButtonGroupText({
|
|
224
|
+
className,
|
|
225
|
+
asChild,
|
|
226
|
+
...props
|
|
227
|
+
}: React.ComponentProps<"div"> & {
|
|
228
|
+
asChild?: boolean;
|
|
229
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
230
|
+
declare function ButtonGroupSeparator({
|
|
231
|
+
className,
|
|
232
|
+
orientation,
|
|
233
|
+
...props
|
|
234
|
+
}: React.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
|
|
235
|
+
//#endregion
|
|
236
|
+
//#region src/components/base/calendar.d.ts
|
|
237
|
+
declare function Calendar({
|
|
238
|
+
className,
|
|
239
|
+
classNames,
|
|
240
|
+
showOutsideDays,
|
|
241
|
+
captionLayout,
|
|
242
|
+
buttonVariant,
|
|
243
|
+
formatters,
|
|
244
|
+
components,
|
|
245
|
+
...props
|
|
246
|
+
}: React$1.ComponentProps<typeof DayPicker> & {
|
|
247
|
+
buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
248
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
249
|
+
declare function CalendarDayButton({
|
|
250
|
+
className,
|
|
251
|
+
day,
|
|
252
|
+
modifiers,
|
|
253
|
+
...props
|
|
254
|
+
}: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime0.JSX.Element;
|
|
255
|
+
//#endregion
|
|
256
|
+
//#region src/components/base/card.d.ts
|
|
257
|
+
declare function Card({
|
|
258
|
+
className,
|
|
259
|
+
...props
|
|
260
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
261
|
+
declare function CardHeader({
|
|
262
|
+
className,
|
|
263
|
+
...props
|
|
264
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
265
|
+
declare function CardTitle({
|
|
266
|
+
className,
|
|
267
|
+
...props
|
|
268
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
269
|
+
declare function CardDescription({
|
|
270
|
+
className,
|
|
271
|
+
...props
|
|
272
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
273
|
+
declare function CardAction({
|
|
274
|
+
className,
|
|
275
|
+
...props
|
|
276
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
277
|
+
declare function CardContent({
|
|
278
|
+
className,
|
|
279
|
+
...props
|
|
280
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
281
|
+
declare function CardFooter({
|
|
282
|
+
className,
|
|
283
|
+
...props
|
|
284
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
285
|
+
//#endregion
|
|
286
|
+
//#region src/components/base/carousel.d.ts
|
|
287
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
288
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
289
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
290
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
291
|
+
type CarouselProps = {
|
|
292
|
+
opts?: CarouselOptions;
|
|
293
|
+
plugins?: CarouselPlugin;
|
|
294
|
+
orientation?: "horizontal" | "vertical";
|
|
295
|
+
setApi?: (api: CarouselApi) => void;
|
|
296
|
+
};
|
|
297
|
+
declare function Carousel({
|
|
298
|
+
orientation,
|
|
299
|
+
opts,
|
|
300
|
+
setApi,
|
|
301
|
+
plugins,
|
|
302
|
+
className,
|
|
303
|
+
children,
|
|
304
|
+
...props
|
|
305
|
+
}: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime0.JSX.Element;
|
|
306
|
+
declare function CarouselContent({
|
|
307
|
+
className,
|
|
308
|
+
...props
|
|
309
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
310
|
+
declare function CarouselItem({
|
|
311
|
+
className,
|
|
312
|
+
...props
|
|
313
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
314
|
+
declare function CarouselPrevious({
|
|
315
|
+
className,
|
|
316
|
+
variant,
|
|
317
|
+
size,
|
|
318
|
+
...props
|
|
319
|
+
}: React$1.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
|
|
320
|
+
declare function CarouselNext({
|
|
321
|
+
className,
|
|
322
|
+
variant,
|
|
323
|
+
size,
|
|
324
|
+
...props
|
|
325
|
+
}: React$1.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
|
|
326
|
+
//#endregion
|
|
327
|
+
//#region src/components/base/chart.d.ts
|
|
328
|
+
declare const THEMES: {
|
|
329
|
+
readonly light: "";
|
|
330
|
+
readonly dark: ".dark";
|
|
331
|
+
};
|
|
332
|
+
type ChartConfig = { [k in string]: {
|
|
333
|
+
label?: React$1.ReactNode;
|
|
334
|
+
icon?: React$1.ComponentType;
|
|
335
|
+
} & ({
|
|
336
|
+
color?: string;
|
|
337
|
+
theme?: never;
|
|
338
|
+
} | {
|
|
339
|
+
color?: never;
|
|
340
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
341
|
+
}) };
|
|
342
|
+
declare function ChartContainer({
|
|
343
|
+
id,
|
|
344
|
+
className,
|
|
345
|
+
children,
|
|
346
|
+
config,
|
|
347
|
+
...props
|
|
348
|
+
}: React$1.ComponentProps<"div"> & {
|
|
349
|
+
config: ChartConfig;
|
|
350
|
+
children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
351
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
352
|
+
declare const ChartStyle: ({
|
|
353
|
+
id,
|
|
354
|
+
config
|
|
355
|
+
}: {
|
|
356
|
+
id: string;
|
|
357
|
+
config: ChartConfig;
|
|
358
|
+
}) => react_jsx_runtime0.JSX.Element | null;
|
|
359
|
+
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
360
|
+
declare function ChartTooltipContent({
|
|
361
|
+
active,
|
|
362
|
+
payload,
|
|
363
|
+
className,
|
|
364
|
+
indicator,
|
|
365
|
+
hideLabel,
|
|
366
|
+
hideIndicator,
|
|
367
|
+
label,
|
|
368
|
+
labelFormatter,
|
|
369
|
+
labelClassName,
|
|
370
|
+
formatter,
|
|
371
|
+
color,
|
|
372
|
+
nameKey,
|
|
373
|
+
labelKey
|
|
374
|
+
}: React$1.ComponentProps<typeof RechartsPrimitive.Tooltip> & React$1.ComponentProps<"div"> & {
|
|
375
|
+
hideLabel?: boolean;
|
|
376
|
+
hideIndicator?: boolean;
|
|
377
|
+
indicator?: "line" | "dot" | "dashed";
|
|
378
|
+
nameKey?: string;
|
|
379
|
+
labelKey?: string;
|
|
380
|
+
}): react_jsx_runtime0.JSX.Element | null;
|
|
381
|
+
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
382
|
+
declare function ChartLegendContent({
|
|
383
|
+
className,
|
|
384
|
+
hideIcon,
|
|
385
|
+
payload,
|
|
386
|
+
verticalAlign,
|
|
387
|
+
nameKey
|
|
388
|
+
}: React$1.ComponentProps<"div"> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
|
|
389
|
+
hideIcon?: boolean;
|
|
390
|
+
nameKey?: string;
|
|
391
|
+
}): react_jsx_runtime0.JSX.Element | null;
|
|
392
|
+
//#endregion
|
|
393
|
+
//#region src/components/base/checkbox.d.ts
|
|
394
|
+
declare function Checkbox({
|
|
395
|
+
className,
|
|
396
|
+
...props
|
|
397
|
+
}: React$1.ComponentProps<typeof Checkbox$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
398
|
+
//#endregion
|
|
399
|
+
//#region src/components/base/collapsible.d.ts
|
|
400
|
+
declare function Collapsible({
|
|
401
|
+
...props
|
|
402
|
+
}: React.ComponentProps<typeof Collapsible$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
403
|
+
declare function CollapsibleTrigger({
|
|
404
|
+
...props
|
|
405
|
+
}: React.ComponentProps<typeof Collapsible$1.CollapsibleTrigger>): react_jsx_runtime0.JSX.Element;
|
|
406
|
+
declare function CollapsibleContent({
|
|
407
|
+
...props
|
|
408
|
+
}: React.ComponentProps<typeof Collapsible$1.CollapsibleContent>): react_jsx_runtime0.JSX.Element;
|
|
409
|
+
//#endregion
|
|
410
|
+
//#region src/components/base/combobox.d.ts
|
|
411
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
412
|
+
declare function ComboboxValue({
|
|
413
|
+
...props
|
|
414
|
+
}: Combobox$1.Value.Props): react_jsx_runtime0.JSX.Element;
|
|
415
|
+
declare function ComboboxTrigger({
|
|
416
|
+
className,
|
|
417
|
+
children,
|
|
418
|
+
...props
|
|
419
|
+
}: Combobox$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
420
|
+
declare function ComboboxInput({
|
|
421
|
+
className,
|
|
422
|
+
children,
|
|
423
|
+
disabled,
|
|
424
|
+
showTrigger,
|
|
425
|
+
showClear,
|
|
426
|
+
...props
|
|
427
|
+
}: Combobox$1.Input.Props & {
|
|
428
|
+
showTrigger?: boolean;
|
|
429
|
+
showClear?: boolean;
|
|
430
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
431
|
+
declare function ComboboxContent({
|
|
432
|
+
className,
|
|
433
|
+
side,
|
|
434
|
+
sideOffset,
|
|
435
|
+
align,
|
|
436
|
+
alignOffset,
|
|
437
|
+
anchor,
|
|
438
|
+
...props
|
|
439
|
+
}: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime0.JSX.Element;
|
|
440
|
+
declare function ComboboxList({
|
|
441
|
+
className,
|
|
442
|
+
...props
|
|
443
|
+
}: Combobox$1.List.Props): react_jsx_runtime0.JSX.Element;
|
|
444
|
+
declare function ComboboxItem({
|
|
445
|
+
className,
|
|
446
|
+
children,
|
|
447
|
+
...props
|
|
448
|
+
}: Combobox$1.Item.Props): react_jsx_runtime0.JSX.Element;
|
|
449
|
+
declare function ComboboxGroup({
|
|
450
|
+
className,
|
|
451
|
+
...props
|
|
452
|
+
}: Combobox$1.Group.Props): react_jsx_runtime0.JSX.Element;
|
|
453
|
+
declare function ComboboxLabel({
|
|
454
|
+
className,
|
|
455
|
+
...props
|
|
456
|
+
}: Combobox$1.GroupLabel.Props): react_jsx_runtime0.JSX.Element;
|
|
457
|
+
declare function ComboboxCollection({
|
|
458
|
+
...props
|
|
459
|
+
}: Combobox$1.Collection.Props): react_jsx_runtime0.JSX.Element;
|
|
460
|
+
declare function ComboboxEmpty({
|
|
461
|
+
className,
|
|
462
|
+
...props
|
|
463
|
+
}: Combobox$1.Empty.Props): react_jsx_runtime0.JSX.Element;
|
|
464
|
+
declare function ComboboxSeparator({
|
|
465
|
+
className,
|
|
466
|
+
...props
|
|
467
|
+
}: Combobox$1.Separator.Props): react_jsx_runtime0.JSX.Element;
|
|
468
|
+
declare function ComboboxChips({
|
|
469
|
+
className,
|
|
470
|
+
...props
|
|
471
|
+
}: React$1.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props): react_jsx_runtime0.JSX.Element;
|
|
472
|
+
declare function ComboboxChip({
|
|
473
|
+
className,
|
|
474
|
+
children,
|
|
475
|
+
showRemove,
|
|
476
|
+
...props
|
|
477
|
+
}: Combobox$1.Chip.Props & {
|
|
478
|
+
showRemove?: boolean;
|
|
479
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
480
|
+
declare function ComboboxChipsInput({
|
|
481
|
+
className,
|
|
482
|
+
children,
|
|
483
|
+
...props
|
|
484
|
+
}: Combobox$1.Input.Props): react_jsx_runtime0.JSX.Element;
|
|
485
|
+
declare function useComboboxAnchor(): React$1.RefObject<HTMLDivElement | null>;
|
|
486
|
+
//#endregion
|
|
487
|
+
//#region src/components/base/dialog.d.ts
|
|
488
|
+
declare function Dialog({
|
|
489
|
+
...props
|
|
490
|
+
}: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
491
|
+
declare function DialogTrigger({
|
|
492
|
+
...props
|
|
493
|
+
}: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
494
|
+
declare function DialogPortal({
|
|
495
|
+
...props
|
|
496
|
+
}: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime0.JSX.Element;
|
|
497
|
+
declare function DialogClose({
|
|
498
|
+
...props
|
|
499
|
+
}: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime0.JSX.Element;
|
|
500
|
+
declare function DialogOverlay({
|
|
501
|
+
className,
|
|
502
|
+
...props
|
|
503
|
+
}: React$1.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime0.JSX.Element;
|
|
504
|
+
declare function DialogContent({
|
|
505
|
+
className,
|
|
506
|
+
children,
|
|
507
|
+
showCloseButton,
|
|
508
|
+
...props
|
|
509
|
+
}: React$1.ComponentProps<typeof Dialog$1.Content> & {
|
|
510
|
+
showCloseButton?: boolean;
|
|
511
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
512
|
+
declare function DialogHeader({
|
|
513
|
+
className,
|
|
514
|
+
...props
|
|
515
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
516
|
+
declare function DialogFooter({
|
|
517
|
+
className,
|
|
518
|
+
showCloseButton,
|
|
519
|
+
children,
|
|
520
|
+
...props
|
|
521
|
+
}: React$1.ComponentProps<"div"> & {
|
|
522
|
+
showCloseButton?: boolean;
|
|
523
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
524
|
+
declare function DialogTitle({
|
|
525
|
+
className,
|
|
526
|
+
...props
|
|
527
|
+
}: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime0.JSX.Element;
|
|
528
|
+
declare function DialogDescription({
|
|
529
|
+
className,
|
|
530
|
+
...props
|
|
531
|
+
}: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime0.JSX.Element;
|
|
532
|
+
//#endregion
|
|
533
|
+
//#region src/components/base/command.d.ts
|
|
534
|
+
declare function Command({
|
|
535
|
+
className,
|
|
536
|
+
...props
|
|
537
|
+
}: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime0.JSX.Element;
|
|
538
|
+
declare function CommandDialog({
|
|
539
|
+
title,
|
|
540
|
+
description,
|
|
541
|
+
children,
|
|
542
|
+
className,
|
|
543
|
+
showCloseButton,
|
|
544
|
+
...props
|
|
545
|
+
}: React$1.ComponentProps<typeof Dialog> & {
|
|
546
|
+
title?: string;
|
|
547
|
+
description?: string;
|
|
548
|
+
className?: string;
|
|
549
|
+
showCloseButton?: boolean;
|
|
550
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
551
|
+
declare function CommandInput({
|
|
552
|
+
className,
|
|
553
|
+
...props
|
|
554
|
+
}: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime0.JSX.Element;
|
|
555
|
+
declare function CommandList({
|
|
556
|
+
className,
|
|
557
|
+
...props
|
|
558
|
+
}: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime0.JSX.Element;
|
|
559
|
+
declare function CommandEmpty({
|
|
560
|
+
...props
|
|
561
|
+
}: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime0.JSX.Element;
|
|
562
|
+
declare function CommandGroup({
|
|
563
|
+
className,
|
|
564
|
+
...props
|
|
565
|
+
}: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime0.JSX.Element;
|
|
566
|
+
declare function CommandSeparator({
|
|
567
|
+
className,
|
|
568
|
+
...props
|
|
569
|
+
}: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime0.JSX.Element;
|
|
570
|
+
declare function CommandItem({
|
|
571
|
+
className,
|
|
572
|
+
...props
|
|
573
|
+
}: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime0.JSX.Element;
|
|
574
|
+
declare function CommandShortcut({
|
|
575
|
+
className,
|
|
576
|
+
...props
|
|
577
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
578
|
+
//#endregion
|
|
579
|
+
//#region src/components/base/context-menu.d.ts
|
|
580
|
+
declare function ContextMenu({
|
|
581
|
+
...props
|
|
582
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
583
|
+
declare function ContextMenuTrigger({
|
|
584
|
+
...props
|
|
585
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
586
|
+
declare function ContextMenuGroup({
|
|
587
|
+
...props
|
|
588
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Group>): react_jsx_runtime0.JSX.Element;
|
|
589
|
+
declare function ContextMenuPortal({
|
|
590
|
+
...props
|
|
591
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Portal>): react_jsx_runtime0.JSX.Element;
|
|
592
|
+
declare function ContextMenuSub({
|
|
593
|
+
...props
|
|
594
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Sub>): react_jsx_runtime0.JSX.Element;
|
|
595
|
+
declare function ContextMenuRadioGroup({
|
|
596
|
+
...props
|
|
597
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.RadioGroup>): react_jsx_runtime0.JSX.Element;
|
|
598
|
+
declare function ContextMenuSubTrigger({
|
|
599
|
+
className,
|
|
600
|
+
inset,
|
|
601
|
+
children,
|
|
602
|
+
...props
|
|
603
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.SubTrigger> & {
|
|
604
|
+
inset?: boolean;
|
|
605
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
606
|
+
declare function ContextMenuSubContent({
|
|
607
|
+
className,
|
|
608
|
+
...props
|
|
609
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.SubContent>): react_jsx_runtime0.JSX.Element;
|
|
610
|
+
declare function ContextMenuContent({
|
|
611
|
+
className,
|
|
612
|
+
...props
|
|
613
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
614
|
+
declare function ContextMenuItem({
|
|
615
|
+
className,
|
|
616
|
+
inset,
|
|
617
|
+
variant,
|
|
618
|
+
...props
|
|
619
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Item> & {
|
|
620
|
+
inset?: boolean;
|
|
621
|
+
variant?: "default" | "destructive";
|
|
622
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
623
|
+
declare function ContextMenuCheckboxItem({
|
|
624
|
+
className,
|
|
625
|
+
children,
|
|
626
|
+
checked,
|
|
627
|
+
...props
|
|
628
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.CheckboxItem>): react_jsx_runtime0.JSX.Element;
|
|
629
|
+
declare function ContextMenuRadioItem({
|
|
630
|
+
className,
|
|
631
|
+
children,
|
|
632
|
+
...props
|
|
633
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.RadioItem>): react_jsx_runtime0.JSX.Element;
|
|
634
|
+
declare function ContextMenuLabel({
|
|
635
|
+
className,
|
|
636
|
+
inset,
|
|
637
|
+
...props
|
|
638
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Label> & {
|
|
639
|
+
inset?: boolean;
|
|
640
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
641
|
+
declare function ContextMenuSeparator({
|
|
642
|
+
className,
|
|
643
|
+
...props
|
|
644
|
+
}: React$1.ComponentProps<typeof ContextMenu$1.Separator>): react_jsx_runtime0.JSX.Element;
|
|
645
|
+
declare function ContextMenuShortcut({
|
|
646
|
+
className,
|
|
647
|
+
...props
|
|
648
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
649
|
+
//#endregion
|
|
650
|
+
//#region src/components/base/direction.d.ts
|
|
651
|
+
declare function DirectionProvider({
|
|
652
|
+
dir,
|
|
653
|
+
direction,
|
|
654
|
+
children
|
|
655
|
+
}: React$1.ComponentProps<typeof Direction.DirectionProvider> & {
|
|
656
|
+
direction?: React$1.ComponentProps<typeof Direction.DirectionProvider>["dir"];
|
|
657
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
658
|
+
declare const useDirection: typeof Direction.useDirection;
|
|
659
|
+
//#endregion
|
|
660
|
+
//#region src/components/base/drawer.d.ts
|
|
661
|
+
declare function Drawer({
|
|
662
|
+
...props
|
|
663
|
+
}: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
664
|
+
declare function DrawerTrigger({
|
|
665
|
+
...props
|
|
666
|
+
}: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
667
|
+
declare function DrawerPortal({
|
|
668
|
+
...props
|
|
669
|
+
}: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime0.JSX.Element;
|
|
670
|
+
declare function DrawerClose({
|
|
671
|
+
...props
|
|
672
|
+
}: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime0.JSX.Element;
|
|
673
|
+
declare function DrawerOverlay({
|
|
674
|
+
className,
|
|
675
|
+
...props
|
|
676
|
+
}: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime0.JSX.Element;
|
|
677
|
+
declare function DrawerContent({
|
|
678
|
+
className,
|
|
679
|
+
children,
|
|
680
|
+
...props
|
|
681
|
+
}: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
682
|
+
declare function DrawerHeader({
|
|
683
|
+
className,
|
|
684
|
+
...props
|
|
685
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
686
|
+
declare function DrawerFooter({
|
|
687
|
+
className,
|
|
688
|
+
...props
|
|
689
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
690
|
+
declare function DrawerTitle({
|
|
691
|
+
className,
|
|
692
|
+
...props
|
|
693
|
+
}: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime0.JSX.Element;
|
|
694
|
+
declare function DrawerDescription({
|
|
695
|
+
className,
|
|
696
|
+
...props
|
|
697
|
+
}: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime0.JSX.Element;
|
|
698
|
+
//#endregion
|
|
699
|
+
//#region src/components/base/dropdown-menu.d.ts
|
|
700
|
+
declare function DropdownMenu({
|
|
701
|
+
...props
|
|
702
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
703
|
+
declare function DropdownMenuPortal({
|
|
704
|
+
...props
|
|
705
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Portal>): react_jsx_runtime0.JSX.Element;
|
|
706
|
+
declare function DropdownMenuTrigger({
|
|
707
|
+
...props
|
|
708
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
709
|
+
declare function DropdownMenuContent({
|
|
710
|
+
className,
|
|
711
|
+
sideOffset,
|
|
712
|
+
...props
|
|
713
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
714
|
+
declare function DropdownMenuGroup({
|
|
715
|
+
...props
|
|
716
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Group>): react_jsx_runtime0.JSX.Element;
|
|
717
|
+
declare function DropdownMenuItem({
|
|
718
|
+
className,
|
|
719
|
+
inset,
|
|
720
|
+
variant,
|
|
721
|
+
...props
|
|
722
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Item> & {
|
|
723
|
+
inset?: boolean;
|
|
724
|
+
variant?: "default" | "destructive";
|
|
725
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
726
|
+
declare function DropdownMenuCheckboxItem({
|
|
727
|
+
className,
|
|
728
|
+
children,
|
|
729
|
+
checked,
|
|
730
|
+
...props
|
|
731
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.CheckboxItem>): react_jsx_runtime0.JSX.Element;
|
|
732
|
+
declare function DropdownMenuRadioGroup({
|
|
733
|
+
...props
|
|
734
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.RadioGroup>): react_jsx_runtime0.JSX.Element;
|
|
735
|
+
declare function DropdownMenuRadioItem({
|
|
736
|
+
className,
|
|
737
|
+
children,
|
|
738
|
+
...props
|
|
739
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.RadioItem>): react_jsx_runtime0.JSX.Element;
|
|
740
|
+
declare function DropdownMenuLabel({
|
|
741
|
+
className,
|
|
742
|
+
inset,
|
|
743
|
+
...props
|
|
744
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Label> & {
|
|
745
|
+
inset?: boolean;
|
|
746
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
747
|
+
declare function DropdownMenuSeparator({
|
|
748
|
+
className,
|
|
749
|
+
...props
|
|
750
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Separator>): react_jsx_runtime0.JSX.Element;
|
|
751
|
+
declare function DropdownMenuShortcut({
|
|
752
|
+
className,
|
|
753
|
+
...props
|
|
754
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
755
|
+
declare function DropdownMenuSub({
|
|
756
|
+
...props
|
|
757
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.Sub>): react_jsx_runtime0.JSX.Element;
|
|
758
|
+
declare function DropdownMenuSubTrigger({
|
|
759
|
+
className,
|
|
760
|
+
inset,
|
|
761
|
+
children,
|
|
762
|
+
...props
|
|
763
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.SubTrigger> & {
|
|
764
|
+
inset?: boolean;
|
|
765
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
766
|
+
declare function DropdownMenuSubContent({
|
|
767
|
+
className,
|
|
768
|
+
...props
|
|
769
|
+
}: React$1.ComponentProps<typeof DropdownMenu$1.SubContent>): react_jsx_runtime0.JSX.Element;
|
|
770
|
+
//#endregion
|
|
771
|
+
//#region src/components/base/empty.d.ts
|
|
772
|
+
declare function Empty({
|
|
773
|
+
className,
|
|
774
|
+
...props
|
|
775
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
776
|
+
declare function EmptyHeader({
|
|
777
|
+
className,
|
|
778
|
+
...props
|
|
779
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
780
|
+
declare const emptyMediaVariants: (props?: ({
|
|
781
|
+
variant?: "default" | "icon" | null | undefined;
|
|
782
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
783
|
+
declare function EmptyMedia({
|
|
784
|
+
className,
|
|
785
|
+
variant,
|
|
786
|
+
...props
|
|
787
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime0.JSX.Element;
|
|
788
|
+
declare function EmptyTitle({
|
|
789
|
+
className,
|
|
790
|
+
...props
|
|
791
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
792
|
+
declare function EmptyDescription({
|
|
793
|
+
className,
|
|
794
|
+
...props
|
|
795
|
+
}: React.ComponentProps<"p">): react_jsx_runtime0.JSX.Element;
|
|
796
|
+
declare function EmptyContent({
|
|
797
|
+
className,
|
|
798
|
+
...props
|
|
799
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
800
|
+
//#endregion
|
|
801
|
+
//#region src/components/base/label.d.ts
|
|
802
|
+
declare function Label({
|
|
803
|
+
className,
|
|
804
|
+
...props
|
|
805
|
+
}: React$1.ComponentProps<typeof Label$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
806
|
+
//#endregion
|
|
807
|
+
//#region src/components/base/field.d.ts
|
|
808
|
+
declare function FieldSet({
|
|
809
|
+
className,
|
|
810
|
+
...props
|
|
811
|
+
}: React.ComponentProps<"fieldset">): react_jsx_runtime0.JSX.Element;
|
|
812
|
+
declare function FieldLegend({
|
|
813
|
+
className,
|
|
814
|
+
variant,
|
|
815
|
+
...props
|
|
816
|
+
}: React.ComponentProps<"legend"> & {
|
|
817
|
+
variant?: "legend" | "label";
|
|
818
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
819
|
+
declare function FieldGroup({
|
|
820
|
+
className,
|
|
821
|
+
...props
|
|
822
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
823
|
+
declare const fieldVariants: (props?: ({
|
|
824
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
825
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
826
|
+
declare function Field({
|
|
827
|
+
className,
|
|
828
|
+
orientation,
|
|
829
|
+
...props
|
|
830
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime0.JSX.Element;
|
|
831
|
+
declare function FieldContent({
|
|
832
|
+
className,
|
|
833
|
+
...props
|
|
834
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
835
|
+
declare function FieldLabel({
|
|
836
|
+
className,
|
|
837
|
+
...props
|
|
838
|
+
}: React.ComponentProps<typeof Label>): react_jsx_runtime0.JSX.Element;
|
|
839
|
+
declare function FieldTitle({
|
|
840
|
+
className,
|
|
841
|
+
...props
|
|
842
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
843
|
+
declare function FieldDescription({
|
|
844
|
+
className,
|
|
845
|
+
...props
|
|
846
|
+
}: React.ComponentProps<"p">): react_jsx_runtime0.JSX.Element;
|
|
847
|
+
declare function FieldSeparator({
|
|
848
|
+
children,
|
|
849
|
+
className,
|
|
850
|
+
...props
|
|
851
|
+
}: React.ComponentProps<"div"> & {
|
|
852
|
+
children?: React.ReactNode;
|
|
853
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
854
|
+
declare function FieldError({
|
|
855
|
+
className,
|
|
856
|
+
children,
|
|
857
|
+
errors,
|
|
858
|
+
...props
|
|
859
|
+
}: React.ComponentProps<"div"> & {
|
|
860
|
+
errors?: Array<{
|
|
861
|
+
message?: string;
|
|
862
|
+
} | undefined>;
|
|
863
|
+
}): react_jsx_runtime0.JSX.Element | null;
|
|
864
|
+
//#endregion
|
|
865
|
+
//#region src/components/base/hover-card.d.ts
|
|
866
|
+
declare function HoverCard({
|
|
867
|
+
...props
|
|
868
|
+
}: React$1.ComponentProps<typeof HoverCard$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
869
|
+
declare function HoverCardTrigger({
|
|
870
|
+
...props
|
|
871
|
+
}: React$1.ComponentProps<typeof HoverCard$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
872
|
+
declare function HoverCardContent({
|
|
873
|
+
className,
|
|
874
|
+
align,
|
|
875
|
+
sideOffset,
|
|
876
|
+
...props
|
|
877
|
+
}: React$1.ComponentProps<typeof HoverCard$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
878
|
+
//#endregion
|
|
879
|
+
//#region src/components/base/input.d.ts
|
|
880
|
+
declare function Input({
|
|
881
|
+
className,
|
|
882
|
+
type,
|
|
883
|
+
...props
|
|
884
|
+
}: React$1.ComponentProps<"input">): react_jsx_runtime0.JSX.Element;
|
|
885
|
+
//#endregion
|
|
886
|
+
//#region src/components/base/input-group.d.ts
|
|
887
|
+
declare function InputGroup({
|
|
888
|
+
className,
|
|
889
|
+
...props
|
|
890
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
891
|
+
declare const inputGroupAddonVariants: (props?: ({
|
|
892
|
+
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
893
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
894
|
+
declare function InputGroupAddon({
|
|
895
|
+
className,
|
|
896
|
+
align,
|
|
897
|
+
...props
|
|
898
|
+
}: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime0.JSX.Element;
|
|
899
|
+
declare const inputGroupButtonVariants: (props?: ({
|
|
900
|
+
size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
|
|
901
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
902
|
+
declare function InputGroupButton({
|
|
903
|
+
className,
|
|
904
|
+
type,
|
|
905
|
+
variant,
|
|
906
|
+
size,
|
|
907
|
+
...props
|
|
908
|
+
}: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime0.JSX.Element;
|
|
909
|
+
declare function InputGroupText({
|
|
910
|
+
className,
|
|
911
|
+
...props
|
|
912
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
913
|
+
declare function InputGroupInput({
|
|
914
|
+
className,
|
|
915
|
+
...props
|
|
916
|
+
}: React$1.ComponentProps<"input">): react_jsx_runtime0.JSX.Element;
|
|
917
|
+
declare function InputGroupTextarea({
|
|
918
|
+
className,
|
|
919
|
+
...props
|
|
920
|
+
}: React$1.ComponentProps<"textarea">): react_jsx_runtime0.JSX.Element;
|
|
921
|
+
//#endregion
|
|
922
|
+
//#region src/components/base/input-otp.d.ts
|
|
923
|
+
declare function InputOTP({
|
|
924
|
+
className,
|
|
925
|
+
containerClassName,
|
|
926
|
+
...props
|
|
927
|
+
}: React$1.ComponentProps<typeof OTPInput> & {
|
|
928
|
+
containerClassName?: string;
|
|
929
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
930
|
+
declare function InputOTPGroup({
|
|
931
|
+
className,
|
|
932
|
+
...props
|
|
933
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
934
|
+
declare function InputOTPSlot({
|
|
935
|
+
index,
|
|
936
|
+
className,
|
|
937
|
+
...props
|
|
938
|
+
}: React$1.ComponentProps<"div"> & {
|
|
939
|
+
index: number;
|
|
940
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
941
|
+
declare function InputOTPSeparator({
|
|
942
|
+
...props
|
|
943
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
944
|
+
//#endregion
|
|
945
|
+
//#region src/components/base/item.d.ts
|
|
946
|
+
declare function ItemGroup({
|
|
947
|
+
className,
|
|
948
|
+
...props
|
|
949
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
950
|
+
declare function ItemSeparator({
|
|
951
|
+
className,
|
|
952
|
+
...props
|
|
953
|
+
}: React$1.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
|
|
954
|
+
declare const itemVariants: (props?: ({
|
|
955
|
+
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
956
|
+
size?: "default" | "sm" | null | undefined;
|
|
957
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
958
|
+
declare function Item({
|
|
959
|
+
className,
|
|
960
|
+
variant,
|
|
961
|
+
size,
|
|
962
|
+
asChild,
|
|
963
|
+
...props
|
|
964
|
+
}: React$1.ComponentProps<"div"> & VariantProps<typeof itemVariants> & {
|
|
965
|
+
asChild?: boolean;
|
|
966
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
967
|
+
declare const itemMediaVariants: (props?: ({
|
|
968
|
+
variant?: "default" | "icon" | "image" | null | undefined;
|
|
969
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
970
|
+
declare function ItemMedia({
|
|
971
|
+
className,
|
|
972
|
+
variant,
|
|
973
|
+
...props
|
|
974
|
+
}: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime0.JSX.Element;
|
|
975
|
+
declare function ItemContent({
|
|
976
|
+
className,
|
|
977
|
+
...props
|
|
978
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
979
|
+
declare function ItemTitle({
|
|
980
|
+
className,
|
|
981
|
+
...props
|
|
982
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
983
|
+
declare function ItemDescription({
|
|
984
|
+
className,
|
|
985
|
+
...props
|
|
986
|
+
}: React$1.ComponentProps<"p">): react_jsx_runtime0.JSX.Element;
|
|
987
|
+
declare function ItemActions({
|
|
988
|
+
className,
|
|
989
|
+
...props
|
|
990
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
991
|
+
declare function ItemHeader({
|
|
992
|
+
className,
|
|
993
|
+
...props
|
|
994
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
995
|
+
declare function ItemFooter({
|
|
996
|
+
className,
|
|
997
|
+
...props
|
|
998
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
999
|
+
//#endregion
|
|
1000
|
+
//#region src/components/base/kbd.d.ts
|
|
1001
|
+
declare function Kbd({
|
|
1002
|
+
className,
|
|
1003
|
+
...props
|
|
1004
|
+
}: React.ComponentProps<"kbd">): react_jsx_runtime0.JSX.Element;
|
|
1005
|
+
declare function KbdGroup({
|
|
1006
|
+
className,
|
|
1007
|
+
...props
|
|
1008
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1009
|
+
//#endregion
|
|
1010
|
+
//#region src/components/base/menubar.d.ts
|
|
1011
|
+
declare function Menubar({
|
|
1012
|
+
className,
|
|
1013
|
+
...props
|
|
1014
|
+
}: React$1.ComponentProps<typeof Menubar$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1015
|
+
declare function MenubarMenu({
|
|
1016
|
+
...props
|
|
1017
|
+
}: React$1.ComponentProps<typeof Menubar$1.Menu>): react_jsx_runtime0.JSX.Element;
|
|
1018
|
+
declare function MenubarGroup({
|
|
1019
|
+
...props
|
|
1020
|
+
}: React$1.ComponentProps<typeof Menubar$1.Group>): react_jsx_runtime0.JSX.Element;
|
|
1021
|
+
declare function MenubarPortal({
|
|
1022
|
+
...props
|
|
1023
|
+
}: React$1.ComponentProps<typeof Menubar$1.Portal>): react_jsx_runtime0.JSX.Element;
|
|
1024
|
+
declare function MenubarRadioGroup({
|
|
1025
|
+
...props
|
|
1026
|
+
}: React$1.ComponentProps<typeof Menubar$1.RadioGroup>): react_jsx_runtime0.JSX.Element;
|
|
1027
|
+
declare function MenubarTrigger({
|
|
1028
|
+
className,
|
|
1029
|
+
...props
|
|
1030
|
+
}: React$1.ComponentProps<typeof Menubar$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
1031
|
+
declare function MenubarContent({
|
|
1032
|
+
className,
|
|
1033
|
+
align,
|
|
1034
|
+
alignOffset,
|
|
1035
|
+
sideOffset,
|
|
1036
|
+
...props
|
|
1037
|
+
}: React$1.ComponentProps<typeof Menubar$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
1038
|
+
declare function MenubarItem({
|
|
1039
|
+
className,
|
|
1040
|
+
inset,
|
|
1041
|
+
variant,
|
|
1042
|
+
...props
|
|
1043
|
+
}: React$1.ComponentProps<typeof Menubar$1.Item> & {
|
|
1044
|
+
inset?: boolean;
|
|
1045
|
+
variant?: "default" | "destructive";
|
|
1046
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1047
|
+
declare function MenubarCheckboxItem({
|
|
1048
|
+
className,
|
|
1049
|
+
children,
|
|
1050
|
+
checked,
|
|
1051
|
+
...props
|
|
1052
|
+
}: React$1.ComponentProps<typeof Menubar$1.CheckboxItem>): react_jsx_runtime0.JSX.Element;
|
|
1053
|
+
declare function MenubarRadioItem({
|
|
1054
|
+
className,
|
|
1055
|
+
children,
|
|
1056
|
+
...props
|
|
1057
|
+
}: React$1.ComponentProps<typeof Menubar$1.RadioItem>): react_jsx_runtime0.JSX.Element;
|
|
1058
|
+
declare function MenubarLabel({
|
|
1059
|
+
className,
|
|
1060
|
+
inset,
|
|
1061
|
+
...props
|
|
1062
|
+
}: React$1.ComponentProps<typeof Menubar$1.Label> & {
|
|
1063
|
+
inset?: boolean;
|
|
1064
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1065
|
+
declare function MenubarSeparator({
|
|
1066
|
+
className,
|
|
1067
|
+
...props
|
|
1068
|
+
}: React$1.ComponentProps<typeof Menubar$1.Separator>): react_jsx_runtime0.JSX.Element;
|
|
1069
|
+
declare function MenubarShortcut({
|
|
1070
|
+
className,
|
|
1071
|
+
...props
|
|
1072
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
1073
|
+
declare function MenubarSub({
|
|
1074
|
+
...props
|
|
1075
|
+
}: React$1.ComponentProps<typeof Menubar$1.Sub>): react_jsx_runtime0.JSX.Element;
|
|
1076
|
+
declare function MenubarSubTrigger({
|
|
1077
|
+
className,
|
|
1078
|
+
inset,
|
|
1079
|
+
children,
|
|
1080
|
+
...props
|
|
1081
|
+
}: React$1.ComponentProps<typeof Menubar$1.SubTrigger> & {
|
|
1082
|
+
inset?: boolean;
|
|
1083
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1084
|
+
declare function MenubarSubContent({
|
|
1085
|
+
className,
|
|
1086
|
+
...props
|
|
1087
|
+
}: React$1.ComponentProps<typeof Menubar$1.SubContent>): react_jsx_runtime0.JSX.Element;
|
|
1088
|
+
//#endregion
|
|
1089
|
+
//#region src/components/base/multiselect.d.ts
|
|
1090
|
+
interface Option {
|
|
1091
|
+
value: string;
|
|
1092
|
+
label: string;
|
|
1093
|
+
disable?: boolean;
|
|
1094
|
+
/** fixed option that can‘t be removed. */
|
|
1095
|
+
fixed?: boolean;
|
|
1096
|
+
/** Group the options by providing key. */
|
|
1097
|
+
[key: string]: string | boolean | undefined;
|
|
1098
|
+
}
|
|
1099
|
+
interface MultipleSelectorRef {
|
|
1100
|
+
selectedValue: Option[];
|
|
1101
|
+
input: HTMLInputElement;
|
|
1102
|
+
focus: () => void;
|
|
1103
|
+
reset: () => void;
|
|
1104
|
+
}
|
|
1105
|
+
declare function useDebounce<T>(value: T, delay?: number): T;
|
|
1106
|
+
//#endregion
|
|
1107
|
+
//#region src/components/base/native-select.d.ts
|
|
1108
|
+
declare function NativeSelect({
|
|
1109
|
+
className,
|
|
1110
|
+
size,
|
|
1111
|
+
...props
|
|
1112
|
+
}: Omit<React$1.ComponentProps<"select">, "size"> & {
|
|
1113
|
+
size?: "sm" | "default";
|
|
1114
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1115
|
+
declare function NativeSelectOption({
|
|
1116
|
+
...props
|
|
1117
|
+
}: React$1.ComponentProps<"option">): react_jsx_runtime0.JSX.Element;
|
|
1118
|
+
declare function NativeSelectOptGroup({
|
|
1119
|
+
className,
|
|
1120
|
+
...props
|
|
1121
|
+
}: React$1.ComponentProps<"optgroup">): react_jsx_runtime0.JSX.Element;
|
|
1122
|
+
//#endregion
|
|
1123
|
+
//#region src/components/base/navigation-menu.d.ts
|
|
1124
|
+
declare function NavigationMenu({
|
|
1125
|
+
className,
|
|
1126
|
+
children,
|
|
1127
|
+
viewport,
|
|
1128
|
+
...props
|
|
1129
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.Root> & {
|
|
1130
|
+
viewport?: boolean;
|
|
1131
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1132
|
+
declare function NavigationMenuList({
|
|
1133
|
+
className,
|
|
1134
|
+
...props
|
|
1135
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.List>): react_jsx_runtime0.JSX.Element;
|
|
1136
|
+
declare function NavigationMenuItem({
|
|
1137
|
+
className,
|
|
1138
|
+
...props
|
|
1139
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.Item>): react_jsx_runtime0.JSX.Element;
|
|
1140
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types0.ClassProp | undefined) => string;
|
|
1141
|
+
declare function NavigationMenuTrigger({
|
|
1142
|
+
className,
|
|
1143
|
+
children,
|
|
1144
|
+
...props
|
|
1145
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
1146
|
+
declare function NavigationMenuContent({
|
|
1147
|
+
className,
|
|
1148
|
+
...props
|
|
1149
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
1150
|
+
declare function NavigationMenuViewport({
|
|
1151
|
+
className,
|
|
1152
|
+
...props
|
|
1153
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.Viewport>): react_jsx_runtime0.JSX.Element;
|
|
1154
|
+
declare function NavigationMenuLink({
|
|
1155
|
+
className,
|
|
1156
|
+
...props
|
|
1157
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.Link>): react_jsx_runtime0.JSX.Element;
|
|
1158
|
+
declare function NavigationMenuIndicator({
|
|
1159
|
+
className,
|
|
1160
|
+
...props
|
|
1161
|
+
}: React$1.ComponentProps<typeof NavigationMenu$1.Indicator>): react_jsx_runtime0.JSX.Element;
|
|
1162
|
+
//#endregion
|
|
1163
|
+
//#region src/components/base/pagination.d.ts
|
|
1164
|
+
declare function Pagination({
|
|
1165
|
+
className,
|
|
1166
|
+
...props
|
|
1167
|
+
}: React$1.ComponentProps<"nav">): react_jsx_runtime0.JSX.Element;
|
|
1168
|
+
declare function PaginationContent({
|
|
1169
|
+
className,
|
|
1170
|
+
...props
|
|
1171
|
+
}: React$1.ComponentProps<"ul">): react_jsx_runtime0.JSX.Element;
|
|
1172
|
+
declare function PaginationItem({
|
|
1173
|
+
...props
|
|
1174
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime0.JSX.Element;
|
|
1175
|
+
type PaginationLinkProps = {
|
|
1176
|
+
isActive?: boolean;
|
|
1177
|
+
} & Pick<React$1.ComponentProps<typeof Button>, "size"> & React$1.ComponentProps<"a">;
|
|
1178
|
+
declare function PaginationLink({
|
|
1179
|
+
className,
|
|
1180
|
+
isActive,
|
|
1181
|
+
size,
|
|
1182
|
+
...props
|
|
1183
|
+
}: PaginationLinkProps): react_jsx_runtime0.JSX.Element;
|
|
1184
|
+
declare function PaginationPrevious({
|
|
1185
|
+
className,
|
|
1186
|
+
...props
|
|
1187
|
+
}: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime0.JSX.Element;
|
|
1188
|
+
declare function PaginationNext({
|
|
1189
|
+
className,
|
|
1190
|
+
...props
|
|
1191
|
+
}: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime0.JSX.Element;
|
|
1192
|
+
declare function PaginationEllipsis({
|
|
1193
|
+
className,
|
|
1194
|
+
...props
|
|
1195
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
1196
|
+
//#endregion
|
|
1197
|
+
//#region src/components/base/popover.d.ts
|
|
1198
|
+
declare function Popover({
|
|
1199
|
+
...props
|
|
1200
|
+
}: React$1.ComponentProps<typeof Popover$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1201
|
+
declare function PopoverTrigger({
|
|
1202
|
+
...props
|
|
1203
|
+
}: React$1.ComponentProps<typeof Popover$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
1204
|
+
declare function PopoverContent({
|
|
1205
|
+
className,
|
|
1206
|
+
align,
|
|
1207
|
+
sideOffset,
|
|
1208
|
+
...props
|
|
1209
|
+
}: React$1.ComponentProps<typeof Popover$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
1210
|
+
declare function PopoverAnchor({
|
|
1211
|
+
...props
|
|
1212
|
+
}: React$1.ComponentProps<typeof Popover$1.Anchor>): react_jsx_runtime0.JSX.Element;
|
|
1213
|
+
declare function PopoverHeader({
|
|
1214
|
+
className,
|
|
1215
|
+
...props
|
|
1216
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1217
|
+
declare function PopoverTitle({
|
|
1218
|
+
className,
|
|
1219
|
+
...props
|
|
1220
|
+
}: React$1.ComponentProps<"h2">): react_jsx_runtime0.JSX.Element;
|
|
1221
|
+
declare function PopoverDescription({
|
|
1222
|
+
className,
|
|
1223
|
+
...props
|
|
1224
|
+
}: React$1.ComponentProps<"p">): react_jsx_runtime0.JSX.Element;
|
|
1225
|
+
//#endregion
|
|
1226
|
+
//#region src/components/base/progress.d.ts
|
|
1227
|
+
declare function Progress({
|
|
1228
|
+
className,
|
|
1229
|
+
value,
|
|
1230
|
+
...props
|
|
1231
|
+
}: React$1.ComponentProps<typeof Progress$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1232
|
+
//#endregion
|
|
1233
|
+
//#region src/components/base/radio-group.d.ts
|
|
1234
|
+
declare function RadioGroup({
|
|
1235
|
+
className,
|
|
1236
|
+
...props
|
|
1237
|
+
}: React$1.ComponentProps<typeof RadioGroup$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1238
|
+
declare function RadioGroupItem({
|
|
1239
|
+
className,
|
|
1240
|
+
...props
|
|
1241
|
+
}: React$1.ComponentProps<typeof RadioGroup$1.Item>): react_jsx_runtime0.JSX.Element;
|
|
1242
|
+
//#endregion
|
|
1243
|
+
//#region src/components/base/resizable.d.ts
|
|
1244
|
+
declare function ResizablePanelGroup({
|
|
1245
|
+
className,
|
|
1246
|
+
...props
|
|
1247
|
+
}: ResizablePrimitive.GroupProps): react_jsx_runtime0.JSX.Element;
|
|
1248
|
+
declare function ResizablePanel({
|
|
1249
|
+
...props
|
|
1250
|
+
}: ResizablePrimitive.PanelProps): react_jsx_runtime0.JSX.Element;
|
|
1251
|
+
declare function ResizableHandle({
|
|
1252
|
+
withHandle,
|
|
1253
|
+
className,
|
|
1254
|
+
...props
|
|
1255
|
+
}: ResizablePrimitive.SeparatorProps & {
|
|
1256
|
+
withHandle?: boolean;
|
|
1257
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1258
|
+
//#endregion
|
|
1259
|
+
//#region src/components/base/scroll-area.d.ts
|
|
1260
|
+
declare function ScrollArea({
|
|
1261
|
+
className,
|
|
1262
|
+
children,
|
|
1263
|
+
...props
|
|
1264
|
+
}: React$1.ComponentProps<typeof ScrollArea$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1265
|
+
declare function ScrollBar({
|
|
1266
|
+
className,
|
|
1267
|
+
orientation,
|
|
1268
|
+
...props
|
|
1269
|
+
}: React$1.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>): react_jsx_runtime0.JSX.Element;
|
|
1270
|
+
//#endregion
|
|
1271
|
+
//#region src/components/base/select.d.ts
|
|
1272
|
+
declare function Select({
|
|
1273
|
+
...props
|
|
1274
|
+
}: React$1.ComponentProps<typeof Select$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1275
|
+
declare function SelectGroup({
|
|
1276
|
+
...props
|
|
1277
|
+
}: React$1.ComponentProps<typeof Select$1.Group>): react_jsx_runtime0.JSX.Element;
|
|
1278
|
+
declare function SelectValue({
|
|
1279
|
+
...props
|
|
1280
|
+
}: React$1.ComponentProps<typeof Select$1.Value>): react_jsx_runtime0.JSX.Element;
|
|
1281
|
+
declare function SelectTrigger({
|
|
1282
|
+
className,
|
|
1283
|
+
size,
|
|
1284
|
+
children,
|
|
1285
|
+
...props
|
|
1286
|
+
}: React$1.ComponentProps<typeof Select$1.Trigger> & {
|
|
1287
|
+
size?: "sm" | "default";
|
|
1288
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1289
|
+
declare function SelectContent({
|
|
1290
|
+
className,
|
|
1291
|
+
children,
|
|
1292
|
+
position,
|
|
1293
|
+
align,
|
|
1294
|
+
...props
|
|
1295
|
+
}: React$1.ComponentProps<typeof Select$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
1296
|
+
declare function SelectLabel({
|
|
1297
|
+
className,
|
|
1298
|
+
...props
|
|
1299
|
+
}: React$1.ComponentProps<typeof Select$1.Label>): react_jsx_runtime0.JSX.Element;
|
|
1300
|
+
declare function SelectItem({
|
|
1301
|
+
className,
|
|
1302
|
+
children,
|
|
1303
|
+
...props
|
|
1304
|
+
}: React$1.ComponentProps<typeof Select$1.Item>): react_jsx_runtime0.JSX.Element;
|
|
1305
|
+
declare function SelectSeparator({
|
|
1306
|
+
className,
|
|
1307
|
+
...props
|
|
1308
|
+
}: React$1.ComponentProps<typeof Select$1.Separator>): react_jsx_runtime0.JSX.Element;
|
|
1309
|
+
declare function SelectScrollUpButton({
|
|
1310
|
+
className,
|
|
1311
|
+
...props
|
|
1312
|
+
}: React$1.ComponentProps<typeof Select$1.ScrollUpButton>): react_jsx_runtime0.JSX.Element;
|
|
1313
|
+
declare function SelectScrollDownButton({
|
|
1314
|
+
className,
|
|
1315
|
+
...props
|
|
1316
|
+
}: React$1.ComponentProps<typeof Select$1.ScrollDownButton>): react_jsx_runtime0.JSX.Element;
|
|
1317
|
+
//#endregion
|
|
1318
|
+
//#region src/components/base/sheet.d.ts
|
|
1319
|
+
declare function Sheet({
|
|
1320
|
+
...props
|
|
1321
|
+
}: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1322
|
+
declare function SheetTrigger({
|
|
1323
|
+
...props
|
|
1324
|
+
}: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
1325
|
+
declare function SheetClose({
|
|
1326
|
+
...props
|
|
1327
|
+
}: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime0.JSX.Element;
|
|
1328
|
+
declare function SheetContent({
|
|
1329
|
+
className,
|
|
1330
|
+
children,
|
|
1331
|
+
side,
|
|
1332
|
+
showCloseButton,
|
|
1333
|
+
...props
|
|
1334
|
+
}: React$1.ComponentProps<typeof Dialog$1.Content> & {
|
|
1335
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
1336
|
+
showCloseButton?: boolean;
|
|
1337
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1338
|
+
declare function SheetHeader({
|
|
1339
|
+
className,
|
|
1340
|
+
...props
|
|
1341
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1342
|
+
declare function SheetFooter({
|
|
1343
|
+
className,
|
|
1344
|
+
...props
|
|
1345
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1346
|
+
declare function SheetTitle({
|
|
1347
|
+
className,
|
|
1348
|
+
...props
|
|
1349
|
+
}: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime0.JSX.Element;
|
|
1350
|
+
declare function SheetDescription({
|
|
1351
|
+
className,
|
|
1352
|
+
...props
|
|
1353
|
+
}: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime0.JSX.Element;
|
|
1354
|
+
//#endregion
|
|
1355
|
+
//#region src/components/base/tooltip.d.ts
|
|
1356
|
+
declare function TooltipProvider({
|
|
1357
|
+
delayDuration,
|
|
1358
|
+
...props
|
|
1359
|
+
}: React$1.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime0.JSX.Element;
|
|
1360
|
+
declare function Tooltip({
|
|
1361
|
+
...props
|
|
1362
|
+
}: React$1.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1363
|
+
declare function TooltipTrigger({
|
|
1364
|
+
...props
|
|
1365
|
+
}: React$1.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
1366
|
+
declare function TooltipContent({
|
|
1367
|
+
className,
|
|
1368
|
+
sideOffset,
|
|
1369
|
+
children,
|
|
1370
|
+
...props
|
|
1371
|
+
}: React$1.ComponentProps<typeof Tooltip$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
1372
|
+
//#endregion
|
|
1373
|
+
//#region src/components/base/sidebar.d.ts
|
|
1374
|
+
type SidebarContextProps = {
|
|
1375
|
+
state: "expanded" | "collapsed";
|
|
1376
|
+
open: boolean;
|
|
1377
|
+
setOpen: (open: boolean) => void;
|
|
1378
|
+
openMobile: boolean;
|
|
1379
|
+
setOpenMobile: (open: boolean) => void;
|
|
1380
|
+
isMobile: boolean;
|
|
1381
|
+
toggleSidebar: () => void;
|
|
1382
|
+
};
|
|
1383
|
+
declare function useSidebar(): SidebarContextProps;
|
|
1384
|
+
declare function SidebarProvider({
|
|
1385
|
+
defaultOpen,
|
|
1386
|
+
open: openProp,
|
|
1387
|
+
onOpenChange: setOpenProp,
|
|
1388
|
+
className,
|
|
1389
|
+
style,
|
|
1390
|
+
children,
|
|
1391
|
+
...props
|
|
1392
|
+
}: React$1.ComponentProps<"div"> & {
|
|
1393
|
+
defaultOpen?: boolean;
|
|
1394
|
+
open?: boolean;
|
|
1395
|
+
onOpenChange?: (open: boolean) => void;
|
|
1396
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1397
|
+
declare function Sidebar({
|
|
1398
|
+
side,
|
|
1399
|
+
variant,
|
|
1400
|
+
collapsible,
|
|
1401
|
+
className,
|
|
1402
|
+
children,
|
|
1403
|
+
...props
|
|
1404
|
+
}: React$1.ComponentProps<"div"> & {
|
|
1405
|
+
side?: "left" | "right";
|
|
1406
|
+
variant?: "sidebar" | "floating" | "inset";
|
|
1407
|
+
collapsible?: "offcanvas" | "icon" | "none";
|
|
1408
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1409
|
+
declare function SidebarTrigger({
|
|
1410
|
+
className,
|
|
1411
|
+
onClick,
|
|
1412
|
+
...props
|
|
1413
|
+
}: React$1.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
|
|
1414
|
+
declare function SidebarRail({
|
|
1415
|
+
className,
|
|
1416
|
+
...props
|
|
1417
|
+
}: React$1.ComponentProps<"button">): react_jsx_runtime0.JSX.Element;
|
|
1418
|
+
declare function SidebarInset({
|
|
1419
|
+
className,
|
|
1420
|
+
...props
|
|
1421
|
+
}: React$1.ComponentProps<"main">): react_jsx_runtime0.JSX.Element;
|
|
1422
|
+
declare function SidebarInput({
|
|
1423
|
+
className,
|
|
1424
|
+
...props
|
|
1425
|
+
}: React$1.ComponentProps<typeof Input>): react_jsx_runtime0.JSX.Element;
|
|
1426
|
+
declare function SidebarHeader({
|
|
1427
|
+
className,
|
|
1428
|
+
...props
|
|
1429
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1430
|
+
declare function SidebarFooter({
|
|
1431
|
+
className,
|
|
1432
|
+
...props
|
|
1433
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1434
|
+
declare function SidebarSeparator({
|
|
1435
|
+
className,
|
|
1436
|
+
...props
|
|
1437
|
+
}: React$1.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
|
|
1438
|
+
declare function SidebarContent({
|
|
1439
|
+
className,
|
|
1440
|
+
...props
|
|
1441
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1442
|
+
declare function SidebarGroup({
|
|
1443
|
+
className,
|
|
1444
|
+
...props
|
|
1445
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1446
|
+
declare function SidebarGroupLabel({
|
|
1447
|
+
className,
|
|
1448
|
+
asChild,
|
|
1449
|
+
...props
|
|
1450
|
+
}: React$1.ComponentProps<"div"> & {
|
|
1451
|
+
asChild?: boolean;
|
|
1452
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1453
|
+
declare function SidebarGroupAction({
|
|
1454
|
+
className,
|
|
1455
|
+
asChild,
|
|
1456
|
+
...props
|
|
1457
|
+
}: React$1.ComponentProps<"button"> & {
|
|
1458
|
+
asChild?: boolean;
|
|
1459
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1460
|
+
declare function SidebarGroupContent({
|
|
1461
|
+
className,
|
|
1462
|
+
...props
|
|
1463
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1464
|
+
declare function SidebarMenu({
|
|
1465
|
+
className,
|
|
1466
|
+
...props
|
|
1467
|
+
}: React$1.ComponentProps<"ul">): react_jsx_runtime0.JSX.Element;
|
|
1468
|
+
declare function SidebarMenuItem({
|
|
1469
|
+
className,
|
|
1470
|
+
...props
|
|
1471
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime0.JSX.Element;
|
|
1472
|
+
declare const sidebarMenuButtonVariants: (props?: ({
|
|
1473
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1474
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1475
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1476
|
+
declare function SidebarMenuButton({
|
|
1477
|
+
asChild,
|
|
1478
|
+
isActive,
|
|
1479
|
+
variant,
|
|
1480
|
+
size,
|
|
1481
|
+
tooltip,
|
|
1482
|
+
className,
|
|
1483
|
+
...props
|
|
1484
|
+
}: React$1.ComponentProps<"button"> & {
|
|
1485
|
+
asChild?: boolean;
|
|
1486
|
+
isActive?: boolean;
|
|
1487
|
+
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
1488
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime0.JSX.Element;
|
|
1489
|
+
declare function SidebarMenuAction({
|
|
1490
|
+
className,
|
|
1491
|
+
asChild,
|
|
1492
|
+
showOnHover,
|
|
1493
|
+
...props
|
|
1494
|
+
}: React$1.ComponentProps<"button"> & {
|
|
1495
|
+
asChild?: boolean;
|
|
1496
|
+
showOnHover?: boolean;
|
|
1497
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1498
|
+
declare function SidebarMenuBadge({
|
|
1499
|
+
className,
|
|
1500
|
+
...props
|
|
1501
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1502
|
+
declare function SidebarMenuSkeleton({
|
|
1503
|
+
className,
|
|
1504
|
+
showIcon,
|
|
1505
|
+
...props
|
|
1506
|
+
}: React$1.ComponentProps<"div"> & {
|
|
1507
|
+
showIcon?: boolean;
|
|
1508
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1509
|
+
declare function SidebarMenuSub({
|
|
1510
|
+
className,
|
|
1511
|
+
...props
|
|
1512
|
+
}: React$1.ComponentProps<"ul">): react_jsx_runtime0.JSX.Element;
|
|
1513
|
+
declare function SidebarMenuSubItem({
|
|
1514
|
+
className,
|
|
1515
|
+
...props
|
|
1516
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime0.JSX.Element;
|
|
1517
|
+
declare function SidebarMenuSubButton({
|
|
1518
|
+
asChild,
|
|
1519
|
+
size,
|
|
1520
|
+
isActive,
|
|
1521
|
+
className,
|
|
1522
|
+
...props
|
|
1523
|
+
}: React$1.ComponentProps<"a"> & {
|
|
1524
|
+
asChild?: boolean;
|
|
1525
|
+
size?: "sm" | "md";
|
|
1526
|
+
isActive?: boolean;
|
|
1527
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1528
|
+
//#endregion
|
|
1529
|
+
//#region src/components/base/skeleton.d.ts
|
|
1530
|
+
declare function Skeleton({
|
|
1531
|
+
className,
|
|
1532
|
+
...props
|
|
1533
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1534
|
+
//#endregion
|
|
1535
|
+
//#region src/components/base/slider.d.ts
|
|
1536
|
+
declare function Slider({
|
|
1537
|
+
className,
|
|
1538
|
+
defaultValue,
|
|
1539
|
+
value,
|
|
1540
|
+
min,
|
|
1541
|
+
max,
|
|
1542
|
+
...props
|
|
1543
|
+
}: React$1.ComponentProps<typeof Slider$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1544
|
+
//#endregion
|
|
1545
|
+
//#region src/components/base/sonner.d.ts
|
|
1546
|
+
declare const Toaster: ({
|
|
1547
|
+
...props
|
|
1548
|
+
}: ToasterProps) => react_jsx_runtime0.JSX.Element;
|
|
1549
|
+
//#endregion
|
|
1550
|
+
//#region src/components/base/spinner.d.ts
|
|
1551
|
+
declare function Spinner({
|
|
1552
|
+
className,
|
|
1553
|
+
...props
|
|
1554
|
+
}: React.ComponentProps<"svg">): react_jsx_runtime0.JSX.Element;
|
|
1555
|
+
//#endregion
|
|
1556
|
+
//#region src/components/base/switch.d.ts
|
|
1557
|
+
declare function Switch({
|
|
1558
|
+
className,
|
|
1559
|
+
size,
|
|
1560
|
+
...props
|
|
1561
|
+
}: React$1.ComponentProps<typeof Switch$1.Root> & {
|
|
1562
|
+
size?: "sm" | "default";
|
|
1563
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1564
|
+
//#endregion
|
|
1565
|
+
//#region src/components/base/table.d.ts
|
|
1566
|
+
declare function Table({
|
|
1567
|
+
className,
|
|
1568
|
+
...props
|
|
1569
|
+
}: React$1.ComponentProps<"table">): react_jsx_runtime0.JSX.Element;
|
|
1570
|
+
declare function TableHeader({
|
|
1571
|
+
className,
|
|
1572
|
+
...props
|
|
1573
|
+
}: React$1.ComponentProps<"thead">): react_jsx_runtime0.JSX.Element;
|
|
1574
|
+
declare function TableBody({
|
|
1575
|
+
className,
|
|
1576
|
+
...props
|
|
1577
|
+
}: React$1.ComponentProps<"tbody">): react_jsx_runtime0.JSX.Element;
|
|
1578
|
+
declare function TableFooter({
|
|
1579
|
+
className,
|
|
1580
|
+
...props
|
|
1581
|
+
}: React$1.ComponentProps<"tfoot">): react_jsx_runtime0.JSX.Element;
|
|
1582
|
+
declare function TableRow({
|
|
1583
|
+
className,
|
|
1584
|
+
...props
|
|
1585
|
+
}: React$1.ComponentProps<"tr">): react_jsx_runtime0.JSX.Element;
|
|
1586
|
+
declare function TableHead({
|
|
1587
|
+
className,
|
|
1588
|
+
...props
|
|
1589
|
+
}: React$1.ComponentProps<"th">): react_jsx_runtime0.JSX.Element;
|
|
1590
|
+
declare function TableCell({
|
|
1591
|
+
className,
|
|
1592
|
+
...props
|
|
1593
|
+
}: React$1.ComponentProps<"td">): react_jsx_runtime0.JSX.Element;
|
|
1594
|
+
declare function TableCaption({
|
|
1595
|
+
className,
|
|
1596
|
+
...props
|
|
1597
|
+
}: React$1.ComponentProps<"caption">): react_jsx_runtime0.JSX.Element;
|
|
1598
|
+
//#endregion
|
|
1599
|
+
//#region src/components/base/tabs.d.ts
|
|
1600
|
+
declare function Tabs({
|
|
1601
|
+
className,
|
|
1602
|
+
orientation,
|
|
1603
|
+
...props
|
|
1604
|
+
}: React$1.ComponentProps<typeof Tabs$1.Root>): react_jsx_runtime0.JSX.Element;
|
|
1605
|
+
declare const tabsListVariants: (props?: ({
|
|
1606
|
+
variant?: "default" | "line" | null | undefined;
|
|
1607
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1608
|
+
declare function TabsList({
|
|
1609
|
+
className,
|
|
1610
|
+
variant,
|
|
1611
|
+
...props
|
|
1612
|
+
}: React$1.ComponentProps<typeof Tabs$1.List> & VariantProps<typeof tabsListVariants>): react_jsx_runtime0.JSX.Element;
|
|
1613
|
+
declare function TabsTrigger({
|
|
1614
|
+
className,
|
|
1615
|
+
...props
|
|
1616
|
+
}: React$1.ComponentProps<typeof Tabs$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
1617
|
+
declare function TabsContent({
|
|
1618
|
+
className,
|
|
1619
|
+
...props
|
|
1620
|
+
}: React$1.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime0.JSX.Element;
|
|
1621
|
+
//#endregion
|
|
1622
|
+
//#region src/components/base/textarea.d.ts
|
|
1623
|
+
declare function Textarea({
|
|
1624
|
+
className,
|
|
1625
|
+
...props
|
|
1626
|
+
}: React$1.ComponentProps<"textarea">): react_jsx_runtime0.JSX.Element;
|
|
1627
|
+
//#endregion
|
|
1628
|
+
//#region src/components/base/toggle.d.ts
|
|
1629
|
+
declare const toggleVariants: (props?: ({
|
|
1630
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1631
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1632
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1633
|
+
declare function Toggle({
|
|
1634
|
+
className,
|
|
1635
|
+
variant,
|
|
1636
|
+
size,
|
|
1637
|
+
...props
|
|
1638
|
+
}: React$1.ComponentProps<typeof Toggle$1.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime0.JSX.Element;
|
|
1639
|
+
//#endregion
|
|
1640
|
+
//#region src/components/base/toggle-group.d.ts
|
|
1641
|
+
declare function ToggleGroup({
|
|
1642
|
+
className,
|
|
1643
|
+
variant,
|
|
1644
|
+
size,
|
|
1645
|
+
spacing,
|
|
1646
|
+
children,
|
|
1647
|
+
...props
|
|
1648
|
+
}: React$1.ComponentProps<typeof ToggleGroup$1.Root> & VariantProps<typeof toggleVariants> & {
|
|
1649
|
+
spacing?: number;
|
|
1650
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1651
|
+
declare function ToggleGroupItem({
|
|
1652
|
+
className,
|
|
1653
|
+
children,
|
|
1654
|
+
variant,
|
|
1655
|
+
size,
|
|
1656
|
+
...props
|
|
1657
|
+
}: React$1.ComponentProps<typeof ToggleGroup$1.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime0.JSX.Element;
|
|
1658
|
+
//#endregion
|
|
1659
|
+
//#region src/components/blocks/login-form.d.ts
|
|
1660
|
+
type LoginFormValues = {
|
|
1661
|
+
email: string;
|
|
1662
|
+
password: string;
|
|
1663
|
+
};
|
|
1664
|
+
type LoginProvider = 'google' | 'github' | 'apple' | 'microsoft' | 'facebook';
|
|
1665
|
+
interface LoginFormProps {
|
|
1666
|
+
/** Callback when form is submitted with email and password. Can throw an error that will be caught and displayed. */
|
|
1667
|
+
onSubmit?: (email: string, password: string) => void | Promise<void>;
|
|
1668
|
+
/** Callback when a social provider login button is clicked */
|
|
1669
|
+
onProviderLogin?: (provider: LoginProvider) => void;
|
|
1670
|
+
/** Callback when forgot password link is clicked */
|
|
1671
|
+
onForgotPassword?: () => void;
|
|
1672
|
+
/** Callback when sign up link is clicked */
|
|
1673
|
+
onSignUp?: () => void;
|
|
1674
|
+
/** Social login providers to display */
|
|
1675
|
+
providers?: LoginProvider[];
|
|
1676
|
+
/** Show the forgot password link */
|
|
1677
|
+
showForgotPassword?: boolean;
|
|
1678
|
+
/** Show the sign up link */
|
|
1679
|
+
showSignUp?: boolean;
|
|
1680
|
+
/** Custom title for the login form */
|
|
1681
|
+
title?: string;
|
|
1682
|
+
/** Custom description for the login form */
|
|
1683
|
+
description?: string;
|
|
1684
|
+
/** Custom validation schema (overrides default and translated schema) */
|
|
1685
|
+
schema?: z.ZodType<LoginFormValues>;
|
|
1686
|
+
/** Additional class name for the card container */
|
|
1687
|
+
className?: string;
|
|
1688
|
+
}
|
|
1689
|
+
declare function LoginForm({
|
|
1690
|
+
onSubmit,
|
|
1691
|
+
onProviderLogin,
|
|
1692
|
+
onForgotPassword,
|
|
1693
|
+
onSignUp,
|
|
1694
|
+
providers,
|
|
1695
|
+
showForgotPassword,
|
|
1696
|
+
showSignUp,
|
|
1697
|
+
title,
|
|
1698
|
+
description,
|
|
1699
|
+
schema,
|
|
1700
|
+
className
|
|
1701
|
+
}: LoginFormProps): react_jsx_runtime0.JSX.Element;
|
|
1702
|
+
//#endregion
|
|
1703
|
+
//#region src/components/custom/datetime-picker.d.ts
|
|
1704
|
+
interface DateTimePickerProps {
|
|
1705
|
+
/**
|
|
1706
|
+
* The selected date and time
|
|
1707
|
+
*/
|
|
1708
|
+
value?: Date;
|
|
1709
|
+
/**
|
|
1710
|
+
* Callback when the date or time changes
|
|
1711
|
+
*/
|
|
1712
|
+
onChange?: (date: Date | undefined) => void;
|
|
1713
|
+
/**
|
|
1714
|
+
* Label for the picker
|
|
1715
|
+
*/
|
|
1716
|
+
label?: string;
|
|
1717
|
+
/**
|
|
1718
|
+
* Placeholder text when no date is selected
|
|
1719
|
+
*/
|
|
1720
|
+
placeholder?: string;
|
|
1721
|
+
/**
|
|
1722
|
+
* Whether to show the clear button
|
|
1723
|
+
*/
|
|
1724
|
+
showClear?: boolean;
|
|
1725
|
+
/**
|
|
1726
|
+
* Disable the entire picker
|
|
1727
|
+
*/
|
|
1728
|
+
disabled?: boolean;
|
|
1729
|
+
/**
|
|
1730
|
+
* Apply the disabled modifier to matching days.
|
|
1731
|
+
* Supports Date, Date[], DateRange, DateBefore, DateAfter, DateInterval, DayOfWeek, or a function.
|
|
1732
|
+
* @see https://daypicker.dev/selections/disabling-dates
|
|
1733
|
+
*/
|
|
1734
|
+
disabledDates?: React.ComponentProps<typeof DayPicker>['disabled'];
|
|
1735
|
+
/**
|
|
1736
|
+
* Custom className for the container
|
|
1737
|
+
*/
|
|
1738
|
+
className?: string;
|
|
1739
|
+
/**
|
|
1740
|
+
* Date time format function
|
|
1741
|
+
*/
|
|
1742
|
+
formatDateTime?: (date: Date) => string;
|
|
1743
|
+
}
|
|
1744
|
+
declare function DateTimePicker({
|
|
1745
|
+
value,
|
|
1746
|
+
onChange,
|
|
1747
|
+
label,
|
|
1748
|
+
placeholder,
|
|
1749
|
+
showClear,
|
|
1750
|
+
disabled,
|
|
1751
|
+
disabledDates,
|
|
1752
|
+
className,
|
|
1753
|
+
formatDateTime
|
|
1754
|
+
}: DateTimePickerProps): react_jsx_runtime0.JSX.Element;
|
|
1755
|
+
//#endregion
|
|
1756
|
+
//#region src/components/icons/apple-icon.d.ts
|
|
1757
|
+
declare const appleIconVariants: (props?: ({
|
|
1758
|
+
variant?: "default" | "light" | "dark" | "transparent" | null | undefined;
|
|
1759
|
+
shape?: "default" | "rounded" | "square" | null | undefined;
|
|
1760
|
+
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
1761
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1762
|
+
declare function AppleIcon({
|
|
1763
|
+
className,
|
|
1764
|
+
variant,
|
|
1765
|
+
shape,
|
|
1766
|
+
size,
|
|
1767
|
+
...props
|
|
1768
|
+
}: React$1.ComponentProps<'div'> & VariantProps<typeof appleIconVariants>): react_jsx_runtime0.JSX.Element;
|
|
1769
|
+
//#endregion
|
|
1770
|
+
//#region src/components/icons/facebook-icon.d.ts
|
|
1771
|
+
declare const facebookIconVariants: (props?: ({
|
|
1772
|
+
variant?: "default" | "light" | "dark" | "transparent" | null | undefined;
|
|
1773
|
+
shape?: "default" | "rounded" | "square" | null | undefined;
|
|
1774
|
+
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
1775
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1776
|
+
declare function FacebookIcon({
|
|
1777
|
+
className,
|
|
1778
|
+
variant,
|
|
1779
|
+
shape,
|
|
1780
|
+
size,
|
|
1781
|
+
...props
|
|
1782
|
+
}: React$1.ComponentProps<'div'> & VariantProps<typeof facebookIconVariants>): react_jsx_runtime0.JSX.Element;
|
|
1783
|
+
//#endregion
|
|
1784
|
+
//#region src/components/icons/github-icon.d.ts
|
|
1785
|
+
declare const githubIconVariants: (props?: ({
|
|
1786
|
+
variant?: "default" | "light" | "dark" | "transparent" | null | undefined;
|
|
1787
|
+
shape?: "default" | "rounded" | "square" | null | undefined;
|
|
1788
|
+
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
1789
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1790
|
+
declare function GithubIcon({
|
|
1791
|
+
className,
|
|
1792
|
+
variant,
|
|
1793
|
+
shape,
|
|
1794
|
+
size,
|
|
1795
|
+
...props
|
|
1796
|
+
}: React$1.ComponentProps<'div'> & VariantProps<typeof githubIconVariants>): react_jsx_runtime0.JSX.Element;
|
|
1797
|
+
//#endregion
|
|
1798
|
+
//#region src/components/icons/google-icon.d.ts
|
|
1799
|
+
declare const googleIconVariants: (props?: ({
|
|
1800
|
+
variant?: "default" | "light" | "dark" | "transparent" | null | undefined;
|
|
1801
|
+
shape?: "default" | "rounded" | "square" | null | undefined;
|
|
1802
|
+
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
1803
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1804
|
+
declare function GoogleIcon({
|
|
1805
|
+
className,
|
|
1806
|
+
variant,
|
|
1807
|
+
shape,
|
|
1808
|
+
size,
|
|
1809
|
+
...props
|
|
1810
|
+
}: React$1.ComponentProps<'div'> & VariantProps<typeof googleIconVariants>): react_jsx_runtime0.JSX.Element;
|
|
1811
|
+
//#endregion
|
|
1812
|
+
//#region src/components/icons/microsoft-icon.d.ts
|
|
1813
|
+
declare const microsoftIconVariants: (props?: ({
|
|
1814
|
+
variant?: "default" | "light" | "dark" | "transparent" | null | undefined;
|
|
1815
|
+
shape?: "default" | "rounded" | "square" | null | undefined;
|
|
1816
|
+
size?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
1817
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
1818
|
+
declare function MicrosoftIcon({
|
|
1819
|
+
className,
|
|
1820
|
+
variant,
|
|
1821
|
+
shape,
|
|
1822
|
+
size,
|
|
1823
|
+
...props
|
|
1824
|
+
}: React$1.ComponentProps<'div'> & VariantProps<typeof microsoftIconVariants>): react_jsx_runtime0.JSX.Element;
|
|
1825
|
+
//#endregion
|
|
1826
|
+
//#region src/types.d.ts
|
|
1827
|
+
type SupportedLanguage = 'en' | 'fr' | 'nl' | 'es' | 'de' | 'it';
|
|
1828
|
+
//#endregion
|
|
1829
|
+
//#region src/components/providers/ui-kit-provider.d.ts
|
|
1830
|
+
type I18nConfig = {
|
|
1831
|
+
instance: i18n$1;
|
|
1832
|
+
overrides?: Record<string, Record<string, string>>;
|
|
1833
|
+
locale?: never;
|
|
1834
|
+
} | {
|
|
1835
|
+
locale: SupportedLanguage;
|
|
1836
|
+
overrides?: Record<string, string>;
|
|
1837
|
+
instance?: never;
|
|
1838
|
+
};
|
|
1839
|
+
type ProviderProps = {
|
|
1840
|
+
children: ReactNode;
|
|
1841
|
+
hasToaster?: boolean;
|
|
1842
|
+
i18nConfig?: I18nConfig;
|
|
1843
|
+
loadingComponent?: ReactNode;
|
|
1844
|
+
};
|
|
1845
|
+
/**
|
|
1846
|
+
* Provider for UI kit components.
|
|
1847
|
+
*
|
|
1848
|
+
* @example
|
|
1849
|
+
* ```tsx
|
|
1850
|
+
* <UIKitProvider>
|
|
1851
|
+
* <App />
|
|
1852
|
+
* </UIKitProvider>
|
|
1853
|
+
* ```
|
|
1854
|
+
*/
|
|
1855
|
+
declare function UIKitProvider({
|
|
1856
|
+
children,
|
|
1857
|
+
hasToaster,
|
|
1858
|
+
i18nConfig,
|
|
1859
|
+
loadingComponent
|
|
1860
|
+
}: ProviderProps): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null;
|
|
1861
|
+
//#endregion
|
|
1862
|
+
//#region src/lib/utils.d.ts
|
|
1863
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
1864
|
+
//#endregion
|
|
1865
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppleIcon, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DateTimePicker, DateTimePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DirectionProvider, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, FacebookIcon, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, GithubIcon, GoogleIcon, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, LoginForm, type LoginFormProps, type LoginFormValues, type LoginProvider, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MicrosoftIcon, MultipleSelectorRef, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Option, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, 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, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UIKitProvider, appleIconVariants, badgeVariants, buttonGroupVariants, buttonVariants, cn, facebookIconVariants, githubIconVariants, googleIconVariants, microsoftIconVariants, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useComboboxAnchor, useDebounce, useDirection, useSidebar };
|