@aircall/ds 0.2.2 → 0.2.3

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