mblabs-roccato-frontend-commons 0.2.26 → 0.2.28
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 +223 -223
- package/dist/mblabs-roccato-frontend-commons.css +1 -1
- package/dist/mblabs-roccato-frontend-commons.js +30889 -24873
- package/package.json +6 -6
- package/src/components/molecules/AlertDialog/alert-dialog.tsx +5 -1
- package/src/components/molecules/Dialog/dialog.tsx +5 -0
- package/src/components/molecules/Drawer/drawer.tsx +13 -8
- package/src/components/molecules/Sheet/sheet.tsx +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ import { FileUploadProps } from './file';
|
|
|
30
30
|
import { ForwardRefExoticComponent } from 'react';
|
|
31
31
|
import { GroupBase } from 'react-select';
|
|
32
32
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
33
|
-
import { JSX } from 'react
|
|
33
|
+
import { JSX } from 'react';
|
|
34
34
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
35
35
|
import { MemoExoticComponent } from 'react';
|
|
36
36
|
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
@@ -64,13 +64,13 @@ import { UseFormReturn } from 'react-hook-form';
|
|
|
64
64
|
import { VariantProps } from 'class-variance-authority';
|
|
65
65
|
import * as z from 'zod';
|
|
66
66
|
|
|
67
|
-
export declare function Accordion({ ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Root>): JSX.Element;
|
|
67
|
+
export declare function Accordion({ ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Root>): React_2.JSX.Element;
|
|
68
68
|
|
|
69
|
-
export declare function AccordionContent({ className, children, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Content>): JSX.Element;
|
|
69
|
+
export declare function AccordionContent({ className, children, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Content>): React_2.JSX.Element;
|
|
70
70
|
|
|
71
|
-
export declare function AccordionItem({ className, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Item>): JSX.Element;
|
|
71
|
+
export declare function AccordionItem({ className, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Item>): React_2.JSX.Element;
|
|
72
72
|
|
|
73
|
-
export declare function AccordionTrigger({ className, children, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Trigger>): JSX.Element;
|
|
73
|
+
export declare function AccordionTrigger({ className, children, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Trigger>): React_2.JSX.Element;
|
|
74
74
|
|
|
75
75
|
declare interface ActiveMarks {
|
|
76
76
|
bold: boolean;
|
|
@@ -82,14 +82,14 @@ declare interface ActiveMarks {
|
|
|
82
82
|
|
|
83
83
|
export declare function addMonth(date: DateTime, month: number): DateTime;
|
|
84
84
|
|
|
85
|
-
export declare function Alert({ className, variant, ...props }: React_2.ComponentProps<'div'> & VariantProps<typeof alertVariants>): JSX.Element;
|
|
85
|
+
export declare function Alert({ className, variant, ...props }: React_2.ComponentProps<'div'> & VariantProps<typeof alertVariants>): React_2.JSX.Element;
|
|
86
86
|
|
|
87
87
|
export declare function AlertCircle({ ...props }: ComponentProps<'svg'>): JSX.Element;
|
|
88
88
|
|
|
89
|
-
export declare function AlertDescription({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
89
|
+
export declare function AlertDescription({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
90
90
|
|
|
91
91
|
export declare const AlertDialog: {
|
|
92
|
-
({ children, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Root>): JSX.Element;
|
|
92
|
+
({ children, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Root>): React_2.JSX.Element;
|
|
93
93
|
displayName: string | undefined;
|
|
94
94
|
};
|
|
95
95
|
|
|
@@ -104,30 +104,30 @@ export declare const AlertDialogContent: React_2.ForwardRefExoticComponent<Omit<
|
|
|
104
104
|
export declare const AlertDialogDescription: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React_2.RefAttributes<HTMLParagraphElement>, "ref"> & React_2.RefAttributes<HTMLParagraphElement>>;
|
|
105
105
|
|
|
106
106
|
export declare const AlertDialogFooter: {
|
|
107
|
-
({ className, ...props }: React_2.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
107
|
+
({ className, ...props }: React_2.HTMLAttributes<HTMLDivElement>): React_2.JSX.Element;
|
|
108
108
|
displayName: string;
|
|
109
109
|
};
|
|
110
110
|
|
|
111
111
|
export declare const AlertDialogHeader: {
|
|
112
|
-
({ className, ...props }: React_2.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
112
|
+
({ className, ...props }: React_2.HTMLAttributes<HTMLDivElement>): React_2.JSX.Element;
|
|
113
113
|
displayName: string;
|
|
114
114
|
};
|
|
115
115
|
|
|
116
116
|
export declare const AlertDialogOverlay: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
117
117
|
|
|
118
118
|
export declare const AlertDialogPortal: {
|
|
119
|
-
({ children, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Portal>): JSX.Element;
|
|
119
|
+
({ children, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Portal>): React_2.JSX.Element;
|
|
120
120
|
displayName: string | undefined;
|
|
121
121
|
};
|
|
122
122
|
|
|
123
123
|
export declare const AlertDialogTitle: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React_2.RefAttributes<HTMLHeadingElement>, "ref"> & React_2.RefAttributes<HTMLHeadingElement>>;
|
|
124
124
|
|
|
125
125
|
export declare const AlertDialogTrigger: {
|
|
126
|
-
({ children, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Trigger>): JSX.Element;
|
|
126
|
+
({ children, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Trigger>): React_2.JSX.Element;
|
|
127
127
|
displayName: string | undefined;
|
|
128
128
|
};
|
|
129
129
|
|
|
130
|
-
export declare function AlertTitle({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
130
|
+
export declare function AlertTitle({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
131
131
|
|
|
132
132
|
declare const alertVariants: (props?: ({
|
|
133
133
|
variant?: "default" | "destructive" | null | undefined;
|
|
@@ -166,11 +166,11 @@ export declare function AudioPlayer({ audioUrl, className }: {
|
|
|
166
166
|
className?: string;
|
|
167
167
|
}): JSX.Element;
|
|
168
168
|
|
|
169
|
-
export declare function Avatar({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Root>): JSX.Element;
|
|
169
|
+
export declare function Avatar({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Root>): React_2.JSX.Element;
|
|
170
170
|
|
|
171
|
-
export declare function AvatarFallback({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Fallback>): JSX.Element;
|
|
171
|
+
export declare function AvatarFallback({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Fallback>): React_2.JSX.Element;
|
|
172
172
|
|
|
173
|
-
export declare function AvatarImage({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Image>): JSX.Element;
|
|
173
|
+
export declare function AvatarImage({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Image>): React_2.JSX.Element;
|
|
174
174
|
|
|
175
175
|
export declare function Award01(props: ComponentProps<'svg'>): JSX.Element;
|
|
176
176
|
|
|
@@ -178,7 +178,7 @@ export declare function Award03(props: ComponentProps<'svg'>): JSX.Element;
|
|
|
178
178
|
|
|
179
179
|
export declare function Badge({ className, variant, asChild, ...props }: React_2.ComponentProps<'span'> & VariantProps<typeof badgeVariants> & {
|
|
180
180
|
asChild?: boolean;
|
|
181
|
-
}): JSX.Element;
|
|
181
|
+
}): React_2.JSX.Element;
|
|
182
182
|
|
|
183
183
|
export declare const badgeVariants: (props?: ({
|
|
184
184
|
variant?: "default" | "secondary" | "destructive" | "outline" | null | undefined;
|
|
@@ -223,21 +223,21 @@ export declare const brazilianStates: {
|
|
|
223
223
|
value: string;
|
|
224
224
|
}[];
|
|
225
225
|
|
|
226
|
-
export declare function Breadcrumb({ ...props }: React_2.ComponentProps<'nav'>): JSX.Element;
|
|
226
|
+
export declare function Breadcrumb({ ...props }: React_2.ComponentProps<'nav'>): React_2.JSX.Element;
|
|
227
227
|
|
|
228
|
-
export declare function BreadcrumbEllipsis({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
228
|
+
export declare function BreadcrumbEllipsis({ className, ...props }: React_2.ComponentProps<'span'>): React_2.JSX.Element;
|
|
229
229
|
|
|
230
|
-
export declare function BreadcrumbItem({ className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
230
|
+
export declare function BreadcrumbItem({ className, ...props }: React_2.ComponentProps<'li'>): React_2.JSX.Element;
|
|
231
231
|
|
|
232
232
|
export declare function BreadcrumbLink({ asChild, className, ...props }: React_2.ComponentProps<'a'> & {
|
|
233
233
|
asChild?: boolean;
|
|
234
|
-
}): JSX.Element;
|
|
234
|
+
}): React_2.JSX.Element;
|
|
235
235
|
|
|
236
|
-
export declare function BreadcrumbList({ className, ...props }: React_2.ComponentProps<'ol'>): JSX.Element;
|
|
236
|
+
export declare function BreadcrumbList({ className, ...props }: React_2.ComponentProps<'ol'>): React_2.JSX.Element;
|
|
237
237
|
|
|
238
|
-
export declare function BreadcrumbPage({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
238
|
+
export declare function BreadcrumbPage({ className, ...props }: React_2.ComponentProps<'span'>): React_2.JSX.Element;
|
|
239
239
|
|
|
240
|
-
export declare function BreadcrumbSeparator({ children, className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
240
|
+
export declare function BreadcrumbSeparator({ children, className, ...props }: React_2.ComponentProps<'li'>): React_2.JSX.Element;
|
|
241
241
|
|
|
242
242
|
export declare function BrIcon(props: ComponentProps<'svg'>): JSX.Element;
|
|
243
243
|
|
|
@@ -253,7 +253,7 @@ export declare function Button({ className, variant, size, asChild, isLoading, d
|
|
|
253
253
|
asChild?: boolean;
|
|
254
254
|
isLoading?: boolean;
|
|
255
255
|
disabled?: boolean;
|
|
256
|
-
}): JSX.Element;
|
|
256
|
+
}): React_2.JSX.Element;
|
|
257
257
|
|
|
258
258
|
export declare const ButtonUpload: ForwardRefExoticComponent<Omit<ButtonUploadProps, "ref"> & RefAttributes<HTMLInputElement>>;
|
|
259
259
|
|
|
@@ -299,7 +299,7 @@ export declare const buttonVariants: (props?: ({
|
|
|
299
299
|
size?: "sm" | "md" | "lg" | "icon" | null | undefined;
|
|
300
300
|
} & ClassProp) | undefined) => string;
|
|
301
301
|
|
|
302
|
-
export declare function Calendar({ className, showOutsideDays, formatLocale, size, eventDates, ...props }: CalendarProps): JSX.Element;
|
|
302
|
+
export declare function Calendar({ className, showOutsideDays, formatLocale, size, eventDates, ...props }: CalendarProps): React_2.JSX.Element;
|
|
303
303
|
|
|
304
304
|
export declare function CalendarCheck01(props: ComponentProps<'svg'>): JSX.Element;
|
|
305
305
|
|
|
@@ -315,27 +315,27 @@ declare type CalendarProps = React_2.ComponentProps<typeof DayPicker> & {
|
|
|
315
315
|
|
|
316
316
|
export declare const capitalizeFirst: (value: string) => string;
|
|
317
317
|
|
|
318
|
-
export declare function Card({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
318
|
+
export declare function Card({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
319
319
|
|
|
320
|
-
export declare function CardAction({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
320
|
+
export declare function CardAction({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
321
321
|
|
|
322
|
-
export declare function CardContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
322
|
+
export declare function CardContent({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
323
323
|
|
|
324
|
-
export declare function CardDescription({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
324
|
+
export declare function CardDescription({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
325
325
|
|
|
326
|
-
export declare function CardFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
326
|
+
export declare function CardFooter({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
327
327
|
|
|
328
|
-
export declare function CardHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
328
|
+
export declare function CardHeader({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
329
329
|
|
|
330
|
-
export declare function CardTitle({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
330
|
+
export declare function CardTitle({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
331
331
|
|
|
332
|
-
export declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React_2.ComponentProps<'div'> & CarouselProps): JSX.Element;
|
|
332
|
+
export declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React_2.ComponentProps<'div'> & CarouselProps): React_2.JSX.Element;
|
|
333
333
|
|
|
334
334
|
export declare type CarouselApi = UseEmblaCarouselType[1];
|
|
335
335
|
|
|
336
|
-
export declare function CarouselContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
336
|
+
export declare function CarouselContent({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
337
337
|
|
|
338
|
-
export declare function CarouselControls({ className, showPrev, showNext, showDots, gapClassName, prevProps, nextProps, dotsProps, variant, ...props }: CarouselControlsProps): JSX.Element;
|
|
338
|
+
export declare function CarouselControls({ className, showPrev, showNext, showDots, gapClassName, prevProps, nextProps, dotsProps, variant, ...props }: CarouselControlsProps): React_2.JSX.Element;
|
|
339
339
|
|
|
340
340
|
declare type CarouselControlsProps = React_2.ComponentProps<'div'> & {
|
|
341
341
|
showPrev?: boolean;
|
|
@@ -351,27 +351,27 @@ declare type CarouselControlsProps = React_2.ComponentProps<'div'> & {
|
|
|
351
351
|
export declare function CarouselDots({ className, dotClassName, activeDotClassName, 'aria-label': ariaLabel, ...props }: React_2.ComponentProps<'div'> & {
|
|
352
352
|
dotClassName?: string;
|
|
353
353
|
activeDotClassName?: string;
|
|
354
|
-
}): JSX.Element | null;
|
|
354
|
+
}): React_2.JSX.Element | null;
|
|
355
355
|
|
|
356
|
-
export declare function CarouselItem({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
356
|
+
export declare function CarouselItem({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
357
357
|
|
|
358
358
|
export declare function CarouselNext({ className, variant, placement, ...props }: Omit<React_2.ComponentProps<typeof Button>, 'children' | 'variant' | 'size'> & {
|
|
359
359
|
placement?: 'floating' | 'inline';
|
|
360
360
|
variant?: 'overlay' | 'outline';
|
|
361
|
-
}): JSX.Element;
|
|
361
|
+
}): React_2.JSX.Element;
|
|
362
362
|
|
|
363
363
|
declare type CarouselOptions = UseCarouselParameters[0];
|
|
364
364
|
|
|
365
365
|
export declare function CarouselOverlay({ position, className, children, ...props }: React_2.ComponentProps<'div'> & {
|
|
366
366
|
position?: OverlayPosition;
|
|
367
|
-
}): JSX.Element;
|
|
367
|
+
}): React_2.JSX.Element;
|
|
368
368
|
|
|
369
369
|
declare type CarouselPlugin = UseCarouselParameters[1];
|
|
370
370
|
|
|
371
371
|
export declare function CarouselPrevious({ className, variant, placement, ...props }: Omit<React_2.ComponentProps<typeof Button>, 'children' | 'variant' | 'size'> & {
|
|
372
372
|
placement?: 'floating' | 'inline';
|
|
373
373
|
variant?: 'overlay' | 'outline';
|
|
374
|
-
}): JSX.Element;
|
|
374
|
+
}): React_2.JSX.Element;
|
|
375
375
|
|
|
376
376
|
declare type CarouselProps = {
|
|
377
377
|
opts?: CarouselOptions;
|
|
@@ -400,19 +400,19 @@ export declare type ChartConfig = {
|
|
|
400
400
|
export declare function ChartContainer({ id, className, children, config, ...props }: React_2.ComponentProps<'div'> & {
|
|
401
401
|
config: ChartConfig;
|
|
402
402
|
children: React_2.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>['children'];
|
|
403
|
-
}): JSX.Element;
|
|
403
|
+
}): React_2.JSX.Element;
|
|
404
404
|
|
|
405
405
|
export declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
406
406
|
|
|
407
407
|
export declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React_2.ComponentProps<'div'> & Pick<RechartsPrimitive.LegendProps, 'payload' | 'verticalAlign'> & {
|
|
408
408
|
hideIcon?: boolean;
|
|
409
409
|
nameKey?: string;
|
|
410
|
-
}): JSX.Element | null;
|
|
410
|
+
}): React_2.JSX.Element | null;
|
|
411
411
|
|
|
412
412
|
export declare const ChartStyle: ({ id, config }: {
|
|
413
413
|
id: string;
|
|
414
414
|
config: ChartConfig;
|
|
415
|
-
}) => JSX.Element | null;
|
|
415
|
+
}) => React_2.JSX.Element | null;
|
|
416
416
|
|
|
417
417
|
export declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
418
418
|
|
|
@@ -422,11 +422,11 @@ export declare function ChartTooltipContent({ active, payload, className, indica
|
|
|
422
422
|
indicator?: 'line' | 'dot' | 'dashed';
|
|
423
423
|
nameKey?: string;
|
|
424
424
|
labelKey?: string;
|
|
425
|
-
}): JSX.Element | null;
|
|
425
|
+
}): React_2.JSX.Element | null;
|
|
426
426
|
|
|
427
427
|
export declare function Check(props: ComponentProps<'svg'>): JSX.Element;
|
|
428
428
|
|
|
429
|
-
export declare function Checkbox({ className, ...props }: React_2.ComponentProps<typeof CheckboxPrimitive.Root>): JSX.Element;
|
|
429
|
+
export declare function Checkbox({ className, ...props }: React_2.ComponentProps<typeof CheckboxPrimitive.Root>): React_2.JSX.Element;
|
|
430
430
|
|
|
431
431
|
export declare function CheckCircle(props: ComponentProps<'svg'>): JSX.Element;
|
|
432
432
|
|
|
@@ -517,65 +517,65 @@ declare type ColorScaleProps = {
|
|
|
517
517
|
copiedLabel: string;
|
|
518
518
|
};
|
|
519
519
|
|
|
520
|
-
export declare function Command({ className, ...props }: React_2.ComponentProps<typeof Command_2>): JSX.Element;
|
|
520
|
+
export declare function Command({ className, ...props }: React_2.ComponentProps<typeof Command_2>): React_2.JSX.Element;
|
|
521
521
|
|
|
522
522
|
export declare function CommandDialog({ title, description, children, ...props }: React_2.ComponentProps<typeof Dialog> & {
|
|
523
523
|
title?: string;
|
|
524
524
|
description?: string;
|
|
525
|
-
}): JSX.Element;
|
|
525
|
+
}): React_2.JSX.Element;
|
|
526
526
|
|
|
527
|
-
export declare function CommandEmpty({ ...props }: React_2.ComponentProps<typeof Command_2.Empty>): JSX.Element;
|
|
527
|
+
export declare function CommandEmpty({ ...props }: React_2.ComponentProps<typeof Command_2.Empty>): React_2.JSX.Element;
|
|
528
528
|
|
|
529
|
-
export declare function CommandGroup({ className, ...props }: React_2.ComponentProps<typeof Command_2.Group>): JSX.Element;
|
|
529
|
+
export declare function CommandGroup({ className, ...props }: React_2.ComponentProps<typeof Command_2.Group>): React_2.JSX.Element;
|
|
530
530
|
|
|
531
|
-
export declare function CommandInput({ className, ...props }: React_2.ComponentProps<typeof Command_2.Input>): JSX.Element;
|
|
531
|
+
export declare function CommandInput({ className, ...props }: React_2.ComponentProps<typeof Command_2.Input>): React_2.JSX.Element;
|
|
532
532
|
|
|
533
|
-
export declare function CommandItem({ className, ...props }: React_2.ComponentProps<typeof Command_2.Item>): JSX.Element;
|
|
533
|
+
export declare function CommandItem({ className, ...props }: React_2.ComponentProps<typeof Command_2.Item>): React_2.JSX.Element;
|
|
534
534
|
|
|
535
|
-
export declare function CommandList({ className, ...props }: React_2.ComponentProps<typeof Command_2.List>): JSX.Element;
|
|
535
|
+
export declare function CommandList({ className, ...props }: React_2.ComponentProps<typeof Command_2.List>): React_2.JSX.Element;
|
|
536
536
|
|
|
537
|
-
export declare function CommandSeparator({ className, ...props }: React_2.ComponentProps<typeof Command_2.Separator>): JSX.Element;
|
|
537
|
+
export declare function CommandSeparator({ className, ...props }: React_2.ComponentProps<typeof Command_2.Separator>): React_2.JSX.Element;
|
|
538
538
|
|
|
539
|
-
export declare function CommandShortcut({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
539
|
+
export declare function CommandShortcut({ className, ...props }: React_2.ComponentProps<'span'>): React_2.JSX.Element;
|
|
540
540
|
|
|
541
541
|
export declare function Container(props: ComponentProps<'svg'>): JSX.Element;
|
|
542
542
|
|
|
543
|
-
export declare function ContextMenu({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Root>): JSX.Element;
|
|
543
|
+
export declare function ContextMenu({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Root>): React_2.JSX.Element;
|
|
544
544
|
|
|
545
|
-
export declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): JSX.Element;
|
|
545
|
+
export declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): React_2.JSX.Element;
|
|
546
546
|
|
|
547
|
-
export declare function ContextMenuContent({ className, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Content>): JSX.Element;
|
|
547
|
+
export declare function ContextMenuContent({ className, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Content>): React_2.JSX.Element;
|
|
548
548
|
|
|
549
|
-
export declare function ContextMenuGroup({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Group>): JSX.Element;
|
|
549
|
+
export declare function ContextMenuGroup({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Group>): React_2.JSX.Element;
|
|
550
550
|
|
|
551
551
|
export declare function ContextMenuItem({ className, inset, variant, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Item> & {
|
|
552
552
|
inset?: boolean;
|
|
553
553
|
variant?: 'default' | 'destructive';
|
|
554
|
-
}): JSX.Element;
|
|
554
|
+
}): React_2.JSX.Element;
|
|
555
555
|
|
|
556
556
|
export declare function ContextMenuLabel({ className, inset, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Label> & {
|
|
557
557
|
inset?: boolean;
|
|
558
|
-
}): JSX.Element;
|
|
558
|
+
}): React_2.JSX.Element;
|
|
559
559
|
|
|
560
|
-
export declare function ContextMenuPortal({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Portal>): JSX.Element;
|
|
560
|
+
export declare function ContextMenuPortal({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Portal>): React_2.JSX.Element;
|
|
561
561
|
|
|
562
|
-
export declare function ContextMenuRadioGroup({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): JSX.Element;
|
|
562
|
+
export declare function ContextMenuRadioGroup({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): React_2.JSX.Element;
|
|
563
563
|
|
|
564
|
-
export declare function ContextMenuRadioItem({ className, children, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): JSX.Element;
|
|
564
|
+
export declare function ContextMenuRadioItem({ className, children, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): React_2.JSX.Element;
|
|
565
565
|
|
|
566
|
-
export declare function ContextMenuSeparator({ className, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Separator>): JSX.Element;
|
|
566
|
+
export declare function ContextMenuSeparator({ className, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Separator>): React_2.JSX.Element;
|
|
567
567
|
|
|
568
|
-
export declare function ContextMenuShortcut({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
568
|
+
export declare function ContextMenuShortcut({ className, ...props }: React_2.ComponentProps<'span'>): React_2.JSX.Element;
|
|
569
569
|
|
|
570
|
-
export declare function ContextMenuSub({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Sub>): JSX.Element;
|
|
570
|
+
export declare function ContextMenuSub({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Sub>): React_2.JSX.Element;
|
|
571
571
|
|
|
572
|
-
export declare function ContextMenuSubContent({ className, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.SubContent>): JSX.Element;
|
|
572
|
+
export declare function ContextMenuSubContent({ className, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.SubContent>): React_2.JSX.Element;
|
|
573
573
|
|
|
574
574
|
export declare function ContextMenuSubTrigger({ className, inset, children, ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
|
|
575
575
|
inset?: boolean;
|
|
576
|
-
}): JSX.Element;
|
|
576
|
+
}): React_2.JSX.Element;
|
|
577
577
|
|
|
578
|
-
export declare function ContextMenuTrigger({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Trigger>): JSX.Element;
|
|
578
|
+
export declare function ContextMenuTrigger({ ...props }: React_2.ComponentProps<typeof ContextMenuPrimitive.Trigger>): React_2.JSX.Element;
|
|
579
579
|
|
|
580
580
|
export declare function convertFromCents(value: string): number;
|
|
581
581
|
|
|
@@ -827,27 +827,27 @@ export declare function DatePicker({ value, onChange, placeholder, disabled, cla
|
|
|
827
827
|
|
|
828
828
|
declare type DatePickerProps = SingleDatePickerProps | MultipleDatePickerProps | RangeDatePickerProps | MonthDatePickerProps;
|
|
829
829
|
|
|
830
|
-
export declare function Dialog({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): JSX.Element;
|
|
830
|
+
export declare function Dialog({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): React_2.JSX.Element;
|
|
831
831
|
|
|
832
|
-
export declare function DialogClose({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Close>): JSX.Element;
|
|
832
|
+
export declare function DialogClose({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Close>): React_2.JSX.Element;
|
|
833
833
|
|
|
834
|
-
export declare function DialogContent({ className, children, showCloseButton, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
834
|
+
export declare function DialogContent({ className, children, showCloseButton, onCloseAutoFocus, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
835
835
|
showCloseButton?: boolean;
|
|
836
|
-
}): JSX.Element;
|
|
836
|
+
}): React_2.JSX.Element;
|
|
837
837
|
|
|
838
|
-
export declare function DialogDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): JSX.Element;
|
|
838
|
+
export declare function DialogDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): React_2.JSX.Element;
|
|
839
839
|
|
|
840
|
-
export declare function DialogFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
840
|
+
export declare function DialogFooter({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
841
841
|
|
|
842
|
-
export declare function DialogHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
842
|
+
export declare function DialogHeader({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
843
843
|
|
|
844
|
-
export declare function DialogOverlay({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Overlay>): JSX.Element;
|
|
844
|
+
export declare function DialogOverlay({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Overlay>): React_2.JSX.Element;
|
|
845
845
|
|
|
846
|
-
export declare function DialogPortal({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Portal>): JSX.Element;
|
|
846
|
+
export declare function DialogPortal({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Portal>): React_2.JSX.Element;
|
|
847
847
|
|
|
848
|
-
export declare function DialogTitle({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Title>): JSX.Element;
|
|
848
|
+
export declare function DialogTitle({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Title>): React_2.JSX.Element;
|
|
849
849
|
|
|
850
|
-
export declare function DialogTrigger({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Trigger>): JSX.Element;
|
|
850
|
+
export declare function DialogTrigger({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Trigger>): React_2.JSX.Element;
|
|
851
851
|
|
|
852
852
|
export declare function displayAmount(amount: number, limit?: number): string;
|
|
853
853
|
|
|
@@ -861,89 +861,89 @@ export declare const DownloadCloud02: (props: ComponentProps<"svg">) => JSX.Elem
|
|
|
861
861
|
|
|
862
862
|
export declare function Drag(props: ComponentProps<'svg'>): JSX.Element;
|
|
863
863
|
|
|
864
|
-
export declare function Drawer({ variant, ...props }: DrawerProps): JSX.Element;
|
|
864
|
+
export declare function Drawer({ variant, ...props }: DrawerProps): React_2.JSX.Element;
|
|
865
865
|
|
|
866
|
-
export declare function DrawerClose({ ...props }: React_2.ComponentProps<typeof Drawer_2.Close>): JSX.Element;
|
|
866
|
+
export declare function DrawerClose({ ...props }: React_2.ComponentProps<typeof Drawer_2.Close>): React_2.JSX.Element;
|
|
867
867
|
|
|
868
|
-
export declare function DrawerCloseButton(): JSX.Element;
|
|
868
|
+
export declare function DrawerCloseButton(): React_2.JSX.Element;
|
|
869
869
|
|
|
870
|
-
export declare function DrawerContent({ className, children, variant, ...props }: DrawerContentProps): JSX.Element;
|
|
870
|
+
export declare function DrawerContent({ className, children, variant, onCloseAutoFocus, ...props }: DrawerContentProps): React_2.JSX.Element;
|
|
871
871
|
|
|
872
872
|
declare type DrawerContentProps = React_2.ComponentProps<typeof Drawer_2.Content> & {
|
|
873
873
|
variant?: DrawerVariant;
|
|
874
874
|
};
|
|
875
875
|
|
|
876
|
-
export declare function DrawerDescription({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Description>): JSX.Element;
|
|
876
|
+
export declare function DrawerDescription({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Description>): React_2.JSX.Element;
|
|
877
877
|
|
|
878
|
-
export declare function DrawerFooter({ className, variant, ...props }: DrawerFooterProps): JSX.Element;
|
|
878
|
+
export declare function DrawerFooter({ className, variant, ...props }: DrawerFooterProps): React_2.JSX.Element;
|
|
879
879
|
|
|
880
880
|
declare type DrawerFooterProps = React_2.ComponentProps<'div'> & {
|
|
881
881
|
variant?: DrawerVariant;
|
|
882
882
|
};
|
|
883
883
|
|
|
884
|
-
export declare function DrawerHeader({ className, variant, ...props }: DrawerHeaderProps): JSX.Element;
|
|
884
|
+
export declare function DrawerHeader({ className, variant, ...props }: DrawerHeaderProps): React_2.JSX.Element;
|
|
885
885
|
|
|
886
886
|
declare type DrawerHeaderProps = React_2.ComponentProps<'div'> & {
|
|
887
887
|
variant?: DrawerVariant;
|
|
888
888
|
};
|
|
889
889
|
|
|
890
|
-
export declare function DrawerOverlay({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Overlay>): JSX.Element;
|
|
890
|
+
export declare function DrawerOverlay({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Overlay>): React_2.JSX.Element;
|
|
891
891
|
|
|
892
|
-
export declare function DrawerPortal({ ...props }: React_2.ComponentProps<typeof Drawer_2.Portal>): JSX.Element;
|
|
892
|
+
export declare function DrawerPortal({ ...props }: React_2.ComponentProps<typeof Drawer_2.Portal>): React_2.JSX.Element;
|
|
893
893
|
|
|
894
894
|
declare type DrawerProps = React_2.ComponentProps<typeof Drawer_2.Root> & {
|
|
895
895
|
variant?: DrawerVariant;
|
|
896
896
|
};
|
|
897
897
|
|
|
898
|
-
export declare function DrawerTitle({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Title>): JSX.Element;
|
|
898
|
+
export declare function DrawerTitle({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Title>): React_2.JSX.Element;
|
|
899
899
|
|
|
900
|
-
export declare function DrawerTrigger({ ...props }: React_2.ComponentProps<typeof Drawer_2.Trigger>): JSX.Element;
|
|
900
|
+
export declare function DrawerTrigger({ ...props }: React_2.ComponentProps<typeof Drawer_2.Trigger>): React_2.JSX.Element;
|
|
901
901
|
|
|
902
902
|
declare type DrawerVariant = 'default' | 'edge';
|
|
903
903
|
|
|
904
|
-
export declare const Dropdown: <OptionType extends OptionsType, IsMulti extends boolean = false, Group extends GroupBase<OptionType> = GroupBase<OptionType>>({ classNames, components: customComponents, placeholder, creatable, showSearchIcon, size, icon, rounded, createLabel, ...props }: DropdownProps<OptionType, IsMulti, Group>) => JSX.Element;
|
|
904
|
+
export declare const Dropdown: <OptionType extends OptionsType, IsMulti extends boolean = false, Group extends GroupBase<OptionType> = GroupBase<OptionType>>({ classNames, components: customComponents, placeholder, creatable, showSearchIcon, size, icon, rounded, createLabel, ...props }: DropdownProps<OptionType, IsMulti, Group>) => default_2.JSX.Element;
|
|
905
905
|
|
|
906
906
|
export declare const DropdownAsync: <OptionType extends OptionsType, IsMulti extends boolean = false, Additional = {
|
|
907
907
|
page: number;
|
|
908
|
-
}, Group extends GroupBase<OptionType> = GroupBase<OptionType>>({ classNames, components: customComponents, showSearchIcon, size, icon, rounded, placeholder, ...props }: AsyncPaginateCreatableProps<OptionType, IsMulti, Additional, Group>) => JSX.Element;
|
|
908
|
+
}, Group extends GroupBase<OptionType> = GroupBase<OptionType>>({ classNames, components: customComponents, showSearchIcon, size, icon, rounded, placeholder, ...props }: AsyncPaginateCreatableProps<OptionType, IsMulti, Additional, Group>) => default_2.JSX.Element;
|
|
909
909
|
|
|
910
|
-
export declare function DropdownMenu({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Root>): JSX.Element;
|
|
910
|
+
export declare function DropdownMenu({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Root>): React_2.JSX.Element;
|
|
911
911
|
|
|
912
|
-
export declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): JSX.Element;
|
|
912
|
+
export declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): React_2.JSX.Element;
|
|
913
913
|
|
|
914
|
-
export declare function DropdownMenuContent({ className, sideOffset, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Content>): JSX.Element;
|
|
914
|
+
export declare function DropdownMenuContent({ className, sideOffset, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Content>): React_2.JSX.Element;
|
|
915
915
|
|
|
916
|
-
export declare function DropdownMenuGroup({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Group>): JSX.Element;
|
|
916
|
+
export declare function DropdownMenuGroup({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Group>): React_2.JSX.Element;
|
|
917
917
|
|
|
918
918
|
export declare function DropdownMenuItem({ className, inset, variant, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
919
919
|
inset?: boolean;
|
|
920
920
|
variant?: 'default' | 'light' | 'error' | 'success';
|
|
921
|
-
}): JSX.Element;
|
|
921
|
+
}): React_2.JSX.Element;
|
|
922
922
|
|
|
923
923
|
export declare function DropdownMenuLabel({ className, inset, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
924
924
|
inset?: boolean;
|
|
925
|
-
}): JSX.Element;
|
|
925
|
+
}): React_2.JSX.Element;
|
|
926
926
|
|
|
927
|
-
export declare function DropdownMenuPortal({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Portal>): JSX.Element;
|
|
927
|
+
export declare function DropdownMenuPortal({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Portal>): React_2.JSX.Element;
|
|
928
928
|
|
|
929
|
-
export declare function DropdownMenuRadioGroup({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): JSX.Element;
|
|
929
|
+
export declare function DropdownMenuRadioGroup({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): React_2.JSX.Element;
|
|
930
930
|
|
|
931
|
-
export declare function DropdownMenuRadioItem({ className, children, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): JSX.Element;
|
|
931
|
+
export declare function DropdownMenuRadioItem({ className, children, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): React_2.JSX.Element;
|
|
932
932
|
|
|
933
|
-
export declare function DropdownMenuSeparator({ className, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Separator>): JSX.Element;
|
|
933
|
+
export declare function DropdownMenuSeparator({ className, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Separator>): React_2.JSX.Element;
|
|
934
934
|
|
|
935
|
-
export declare function DropdownMenuShortcut({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
935
|
+
export declare function DropdownMenuShortcut({ className, ...props }: React_2.ComponentProps<'span'>): React_2.JSX.Element;
|
|
936
936
|
|
|
937
|
-
export declare function DropdownMenuSub({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Sub>): JSX.Element;
|
|
937
|
+
export declare function DropdownMenuSub({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Sub>): React_2.JSX.Element;
|
|
938
938
|
|
|
939
|
-
export declare function DropdownMenuSubContent({ className, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): JSX.Element;
|
|
939
|
+
export declare function DropdownMenuSubContent({ className, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): React_2.JSX.Element;
|
|
940
940
|
|
|
941
941
|
export declare function DropdownMenuSubTrigger({ className, inset, children, variant, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
942
942
|
inset?: boolean;
|
|
943
943
|
variant?: 'default' | 'light' | 'error' | 'success';
|
|
944
|
-
}): JSX.Element;
|
|
944
|
+
}): React_2.JSX.Element;
|
|
945
945
|
|
|
946
|
-
export declare function DropdownMenuTrigger({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): JSX.Element;
|
|
946
|
+
export declare function DropdownMenuTrigger({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): React_2.JSX.Element;
|
|
947
947
|
|
|
948
948
|
declare type DropdownProps<OptionType extends OptionsType, IsMulti extends boolean = false, Group extends GroupBase<OptionType> = GroupBase<OptionType>> = Props<OptionType, IsMulti, Group> & {
|
|
949
949
|
creatable?: boolean;
|
|
@@ -995,7 +995,7 @@ export declare function Flex({ className, ...props }: React.ComponentProps<'div'
|
|
|
995
995
|
|
|
996
996
|
export declare function Folder(props: ComponentProps<'svg'>): JSX.Element;
|
|
997
997
|
|
|
998
|
-
export declare function Form<T extends FieldValues>({ methods, onValid, onInvalid, className, children, ...props }: FormProps<T>): JSX.Element;
|
|
998
|
+
export declare function Form<T extends FieldValues>({ methods, onValid, onInvalid, className, children, ...props }: FormProps<T>): React_2.JSX.Element;
|
|
999
999
|
|
|
1000
1000
|
export declare function formatCurrency(value: number, currency?: string, decimalPlaces?: number, locale?: string): string;
|
|
1001
1001
|
|
|
@@ -1015,11 +1015,11 @@ export declare function formatMinorUnitsToNumberString(valueInMinorUnits: number
|
|
|
1015
1015
|
|
|
1016
1016
|
export declare function formatNumberToKOrM(value: number): string;
|
|
1017
1017
|
|
|
1018
|
-
export declare function FormControl({ ...props }: React_2.ComponentProps<typeof Slot>): JSX.Element;
|
|
1018
|
+
export declare function FormControl({ ...props }: React_2.ComponentProps<typeof Slot>): React_2.JSX.Element;
|
|
1019
1019
|
|
|
1020
|
-
export declare function FormDescription({ className, ...props }: React_2.ComponentProps<'p'>): JSX.Element;
|
|
1020
|
+
export declare function FormDescription({ className, ...props }: React_2.ComponentProps<'p'>): React_2.JSX.Element;
|
|
1021
1021
|
|
|
1022
|
-
export declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => JSX.Element;
|
|
1022
|
+
export declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => React_2.JSX.Element;
|
|
1023
1023
|
|
|
1024
1024
|
export declare const FormFieldContext: default_2.Context<FormFieldContextValue<FieldValues, string>>;
|
|
1025
1025
|
|
|
@@ -1027,7 +1027,7 @@ declare type FormFieldContextValue<TFieldValues extends FieldValues = FieldValue
|
|
|
1027
1027
|
name: TName;
|
|
1028
1028
|
};
|
|
1029
1029
|
|
|
1030
|
-
export declare function FormItem({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1030
|
+
export declare function FormItem({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1031
1031
|
|
|
1032
1032
|
export declare const FormItemContext: default_2.Context<FormItemContextValue>;
|
|
1033
1033
|
|
|
@@ -1038,9 +1038,9 @@ declare type FormItemContextValue = {
|
|
|
1038
1038
|
export declare function FormLabel({ className, required, helpText, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root> & {
|
|
1039
1039
|
required?: boolean;
|
|
1040
1040
|
helpText?: string;
|
|
1041
|
-
}): JSX.Element;
|
|
1041
|
+
}): React_2.JSX.Element;
|
|
1042
1042
|
|
|
1043
|
-
export declare function FormMessage({ className, ...props }: React_2.ComponentProps<'p'>): JSX.Element | null;
|
|
1043
|
+
export declare function FormMessage({ className, ...props }: React_2.ComponentProps<'p'>): React_2.JSX.Element | null;
|
|
1044
1044
|
|
|
1045
1045
|
declare interface FormProps<T extends FieldValues = FieldValues> extends Omit<React_2.ComponentProps<'form'>, 'onSubmit' | 'onInvalid'> {
|
|
1046
1046
|
methods: UseFormReturn<T>;
|
|
@@ -1086,11 +1086,11 @@ export declare function hexToHsl(hex: string): [number, number, number];
|
|
|
1086
1086
|
|
|
1087
1087
|
export declare function HomeLine(props: ComponentProps<'svg'>): JSX.Element;
|
|
1088
1088
|
|
|
1089
|
-
export declare function HoverCard({ ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Root>): JSX.Element;
|
|
1089
|
+
export declare function HoverCard({ ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Root>): React_2.JSX.Element;
|
|
1090
1090
|
|
|
1091
|
-
export declare function HoverCardContent({ className, align, sideOffset, ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Content>): JSX.Element;
|
|
1091
|
+
export declare function HoverCardContent({ className, align, sideOffset, ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Content>): React_2.JSX.Element;
|
|
1092
1092
|
|
|
1093
|
-
export declare function HoverCardTrigger({ ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Trigger>): JSX.Element;
|
|
1093
|
+
export declare function HoverCardTrigger({ ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Trigger>): React_2.JSX.Element;
|
|
1094
1094
|
|
|
1095
1095
|
export declare function hslToHex(h: number, s: number, l: number, alpha?: number): string;
|
|
1096
1096
|
|
|
@@ -1137,15 +1137,15 @@ export declare interface InputMoneyProps extends Omit<ComponentProps<'input'>, '
|
|
|
1137
1137
|
|
|
1138
1138
|
export declare function InputOTP({ className, containerClassName, ...props }: React_2.ComponentProps<typeof OTPInput> & {
|
|
1139
1139
|
containerClassName?: string;
|
|
1140
|
-
}): JSX.Element;
|
|
1140
|
+
}): React_2.JSX.Element;
|
|
1141
1141
|
|
|
1142
|
-
export declare function InputOTPGroup({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1142
|
+
export declare function InputOTPGroup({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1143
1143
|
|
|
1144
|
-
export declare function InputOTPSeparator({ ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1144
|
+
export declare function InputOTPSeparator({ ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1145
1145
|
|
|
1146
1146
|
export declare function InputOTPSlot({ index, className, ...props }: React_2.ComponentProps<'div'> & {
|
|
1147
1147
|
index: number;
|
|
1148
|
-
}): JSX.Element;
|
|
1148
|
+
}): React_2.JSX.Element;
|
|
1149
1149
|
|
|
1150
1150
|
export declare const InputPhone: ForwardRefExoticComponent<Omit<InputPhoneProps, "ref"> & RefAttributes<HTMLInputElement>>;
|
|
1151
1151
|
|
|
@@ -1295,7 +1295,7 @@ export declare function Italic01(props: ComponentProps<'svg'>): JSX.Element;
|
|
|
1295
1295
|
|
|
1296
1296
|
export declare function keepOnlyNumber(text: string): string;
|
|
1297
1297
|
|
|
1298
|
-
export declare function Label({ className, required, helpText, error, ...props }: LabelProps): JSX.Element;
|
|
1298
|
+
export declare function Label({ className, required, helpText, error, ...props }: LabelProps): React_2.JSX.Element;
|
|
1299
1299
|
|
|
1300
1300
|
declare interface LabelProps extends React_2.ComponentProps<typeof LabelPrimitive.Root> {
|
|
1301
1301
|
required?: boolean;
|
|
@@ -1380,44 +1380,44 @@ export declare const MAX_ZOOM = 3;
|
|
|
1380
1380
|
|
|
1381
1381
|
export declare function Menu01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1382
1382
|
|
|
1383
|
-
export declare function Menubar({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Root>): JSX.Element;
|
|
1383
|
+
export declare function Menubar({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Root>): React_2.JSX.Element;
|
|
1384
1384
|
|
|
1385
|
-
export declare function MenubarCheckboxItem({ className, children, checked, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): JSX.Element;
|
|
1385
|
+
export declare function MenubarCheckboxItem({ className, children, checked, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): React_2.JSX.Element;
|
|
1386
1386
|
|
|
1387
|
-
export declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Content>): JSX.Element;
|
|
1387
|
+
export declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Content>): React_2.JSX.Element;
|
|
1388
1388
|
|
|
1389
|
-
export declare function MenubarGroup({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Group>): JSX.Element;
|
|
1389
|
+
export declare function MenubarGroup({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Group>): React_2.JSX.Element;
|
|
1390
1390
|
|
|
1391
1391
|
export declare function MenubarItem({ className, inset, variant, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Item> & {
|
|
1392
1392
|
inset?: boolean;
|
|
1393
1393
|
variant?: 'default' | 'destructive';
|
|
1394
|
-
}): JSX.Element;
|
|
1394
|
+
}): React_2.JSX.Element;
|
|
1395
1395
|
|
|
1396
1396
|
export declare function MenubarLabel({ className, inset, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Label> & {
|
|
1397
1397
|
inset?: boolean;
|
|
1398
|
-
}): JSX.Element;
|
|
1398
|
+
}): React_2.JSX.Element;
|
|
1399
1399
|
|
|
1400
|
-
export declare function MenubarMenu({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Menu>): JSX.Element;
|
|
1400
|
+
export declare function MenubarMenu({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Menu>): React_2.JSX.Element;
|
|
1401
1401
|
|
|
1402
|
-
export declare function MenubarPortal({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Portal>): JSX.Element;
|
|
1402
|
+
export declare function MenubarPortal({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Portal>): React_2.JSX.Element;
|
|
1403
1403
|
|
|
1404
|
-
export declare function MenubarRadioGroup({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.RadioGroup>): JSX.Element;
|
|
1404
|
+
export declare function MenubarRadioGroup({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.RadioGroup>): React_2.JSX.Element;
|
|
1405
1405
|
|
|
1406
|
-
export declare function MenubarRadioItem({ className, children, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.RadioItem>): JSX.Element;
|
|
1406
|
+
export declare function MenubarRadioItem({ className, children, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.RadioItem>): React_2.JSX.Element;
|
|
1407
1407
|
|
|
1408
|
-
export declare function MenubarSeparator({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Separator>): JSX.Element;
|
|
1408
|
+
export declare function MenubarSeparator({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Separator>): React_2.JSX.Element;
|
|
1409
1409
|
|
|
1410
|
-
export declare function MenubarShortcut({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
1410
|
+
export declare function MenubarShortcut({ className, ...props }: React_2.ComponentProps<'span'>): React_2.JSX.Element;
|
|
1411
1411
|
|
|
1412
|
-
export declare function MenubarSub({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Sub>): JSX.Element;
|
|
1412
|
+
export declare function MenubarSub({ ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Sub>): React_2.JSX.Element;
|
|
1413
1413
|
|
|
1414
|
-
export declare function MenubarSubContent({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.SubContent>): JSX.Element;
|
|
1414
|
+
export declare function MenubarSubContent({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.SubContent>): React_2.JSX.Element;
|
|
1415
1415
|
|
|
1416
1416
|
export declare function MenubarSubTrigger({ className, inset, children, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
|
|
1417
1417
|
inset?: boolean;
|
|
1418
|
-
}): JSX.Element;
|
|
1418
|
+
}): React_2.JSX.Element;
|
|
1419
1419
|
|
|
1420
|
-
export declare function MenubarTrigger({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Trigger>): JSX.Element;
|
|
1420
|
+
export declare function MenubarTrigger({ className, ...props }: React_2.ComponentProps<typeof MenubarPrimitive.Trigger>): React_2.JSX.Element;
|
|
1421
1421
|
|
|
1422
1422
|
export declare function MiddleCategory(props: ComponentProps<'svg'>): JSX.Element;
|
|
1423
1423
|
|
|
@@ -1441,23 +1441,23 @@ declare interface MultipleDatePickerProps extends BaseDatePickerProps {
|
|
|
1441
1441
|
|
|
1442
1442
|
export declare function NavigationMenu({ className, children, viewport, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
|
|
1443
1443
|
viewport?: boolean;
|
|
1444
|
-
}): JSX.Element;
|
|
1444
|
+
}): React_2.JSX.Element;
|
|
1445
1445
|
|
|
1446
|
-
export declare function NavigationMenuContent({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Content>): JSX.Element;
|
|
1446
|
+
export declare function NavigationMenuContent({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Content>): React_2.JSX.Element;
|
|
1447
1447
|
|
|
1448
|
-
export declare function NavigationMenuIndicator({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): JSX.Element;
|
|
1448
|
+
export declare function NavigationMenuIndicator({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): React_2.JSX.Element;
|
|
1449
1449
|
|
|
1450
|
-
export declare function NavigationMenuItem({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Item>): JSX.Element;
|
|
1450
|
+
export declare function NavigationMenuItem({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Item>): React_2.JSX.Element;
|
|
1451
1451
|
|
|
1452
|
-
export declare function NavigationMenuLink({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Link>): JSX.Element;
|
|
1452
|
+
export declare function NavigationMenuLink({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Link>): React_2.JSX.Element;
|
|
1453
1453
|
|
|
1454
|
-
export declare function NavigationMenuList({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.List>): JSX.Element;
|
|
1454
|
+
export declare function NavigationMenuList({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.List>): React_2.JSX.Element;
|
|
1455
1455
|
|
|
1456
|
-
export declare function NavigationMenuTrigger({ className, children, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): JSX.Element;
|
|
1456
|
+
export declare function NavigationMenuTrigger({ className, children, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): React_2.JSX.Element;
|
|
1457
1457
|
|
|
1458
1458
|
export declare const navigationMenuTriggerStyle: (props?: ClassProp | undefined) => string;
|
|
1459
1459
|
|
|
1460
|
-
export declare function NavigationMenuViewport({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): JSX.Element;
|
|
1460
|
+
export declare function NavigationMenuViewport({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): React_2.JSX.Element;
|
|
1461
1461
|
|
|
1462
1462
|
export declare function normalizeCurrency(str: string): string;
|
|
1463
1463
|
|
|
@@ -1507,7 +1507,7 @@ export declare function parseCurrencyToMinorUnits(formatted: string): number;
|
|
|
1507
1507
|
|
|
1508
1508
|
export declare const PDFViewer: default_2.MemoExoticComponent<typeof PDFViewerComponent>;
|
|
1509
1509
|
|
|
1510
|
-
declare function PDFViewerComponent({ fileUrl, fileTitle, className, texts }: PDFViewerProps): JSX.Element;
|
|
1510
|
+
declare function PDFViewerComponent({ fileUrl, fileTitle, className, texts }: PDFViewerProps): default_2.JSX.Element;
|
|
1511
1511
|
|
|
1512
1512
|
declare interface PDFViewerProps {
|
|
1513
1513
|
fileUrl: string;
|
|
@@ -1552,7 +1552,7 @@ export declare function PortalLogo({ ...props }: ComponentProps<'svg'>): JSX.Ele
|
|
|
1552
1552
|
|
|
1553
1553
|
export declare function PresentationChart02(props: ComponentProps<'svg'>): JSX.Element;
|
|
1554
1554
|
|
|
1555
|
-
export declare function Progress({ className, value, ...props }: React_2.ComponentProps<typeof ProgressPrimitive.Root>): JSX.Element;
|
|
1555
|
+
export declare function Progress({ className, value, ...props }: React_2.ComponentProps<typeof ProgressPrimitive.Root>): React_2.JSX.Element;
|
|
1556
1556
|
|
|
1557
1557
|
export declare const ProgressSteps: MemoExoticComponent<({ steps }: ProgressStepsProps) => JSX.Element | null>;
|
|
1558
1558
|
|
|
@@ -1565,11 +1565,11 @@ export declare interface ProgressStepsProps {
|
|
|
1565
1565
|
}>;
|
|
1566
1566
|
}
|
|
1567
1567
|
|
|
1568
|
-
export declare function RadioGroup({ className, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Root>): JSX.Element;
|
|
1568
|
+
export declare function RadioGroup({ className, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Root>): React_2.JSX.Element;
|
|
1569
1569
|
|
|
1570
1570
|
export declare function RadioGroupItem({ className, variant, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Item> & {
|
|
1571
1571
|
variant?: 'primary' | 'secondary';
|
|
1572
|
-
}): JSX.Element;
|
|
1572
|
+
}): React_2.JSX.Element;
|
|
1573
1573
|
|
|
1574
1574
|
declare interface RangeDatePickerProps extends BaseDatePickerProps {
|
|
1575
1575
|
mode: 'range';
|
|
@@ -1603,11 +1603,11 @@ export declare const renderHighlightedText: (label: string, queryText: string) =
|
|
|
1603
1603
|
|
|
1604
1604
|
export declare function ResizableHandle({ withHandle, className, ...props }: React_2.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
1605
1605
|
withHandle?: boolean;
|
|
1606
|
-
}): JSX.Element;
|
|
1606
|
+
}): React_2.JSX.Element;
|
|
1607
1607
|
|
|
1608
|
-
export declare function ResizablePanel({ ...props }: React_2.ComponentProps<typeof ResizablePrimitive.Panel>): JSX.Element;
|
|
1608
|
+
export declare function ResizablePanel({ ...props }: React_2.ComponentProps<typeof ResizablePrimitive.Panel>): React_2.JSX.Element;
|
|
1609
1609
|
|
|
1610
|
-
export declare function ResizablePanelGroup({ className, ...props }: React_2.ComponentProps<typeof ResizablePrimitive.PanelGroup>): JSX.Element;
|
|
1610
|
+
export declare function ResizablePanelGroup({ className, ...props }: React_2.ComponentProps<typeof ResizablePrimitive.PanelGroup>): React_2.JSX.Element;
|
|
1611
1611
|
|
|
1612
1612
|
export declare const RichTextEditor: MemoExoticComponent<({ editorContent, onChange, label, placeholder, isDisabled, isRequired, isResizable, }: RichTextEditorProps) => JSX.Element | null>;
|
|
1613
1613
|
|
|
@@ -1640,39 +1640,39 @@ declare interface ScreenSizes {
|
|
|
1640
1640
|
width: number;
|
|
1641
1641
|
}
|
|
1642
1642
|
|
|
1643
|
-
export declare function ScrollArea({ className, children, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.Root>): JSX.Element;
|
|
1643
|
+
export declare function ScrollArea({ className, children, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.Root>): React_2.JSX.Element;
|
|
1644
1644
|
|
|
1645
|
-
export declare function ScrollBar({ className, orientation, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): JSX.Element;
|
|
1645
|
+
export declare function ScrollBar({ className, orientation, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): React_2.JSX.Element;
|
|
1646
1646
|
|
|
1647
1647
|
export declare function SearchLg(props: ComponentProps<'svg'>): JSX.Element;
|
|
1648
1648
|
|
|
1649
1649
|
export declare function SearchSm(props: ComponentProps<'svg'>): JSX.Element;
|
|
1650
1650
|
|
|
1651
|
-
export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;
|
|
1651
|
+
export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): React_2.JSX.Element;
|
|
1652
1652
|
|
|
1653
|
-
export declare function SelectContent({ className, children, position, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Content>): JSX.Element;
|
|
1653
|
+
export declare function SelectContent({ className, children, position, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Content>): React_2.JSX.Element;
|
|
1654
1654
|
|
|
1655
|
-
export declare function SelectGroup({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Group>): JSX.Element;
|
|
1655
|
+
export declare function SelectGroup({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Group>): React_2.JSX.Element;
|
|
1656
1656
|
|
|
1657
|
-
export declare function SelectItem({ className, children, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Item>): JSX.Element;
|
|
1657
|
+
export declare function SelectItem({ className, children, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Item>): React_2.JSX.Element;
|
|
1658
1658
|
|
|
1659
|
-
export declare function SelectLabel({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Label>): JSX.Element;
|
|
1659
|
+
export declare function SelectLabel({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Label>): React_2.JSX.Element;
|
|
1660
1660
|
|
|
1661
|
-
export declare function SelectScrollDownButton({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): JSX.Element;
|
|
1661
|
+
export declare function SelectScrollDownButton({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): React_2.JSX.Element;
|
|
1662
1662
|
|
|
1663
|
-
export declare function SelectScrollUpButton({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): JSX.Element;
|
|
1663
|
+
export declare function SelectScrollUpButton({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): React_2.JSX.Element;
|
|
1664
1664
|
|
|
1665
|
-
export declare function SelectSeparator({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Separator>): JSX.Element;
|
|
1665
|
+
export declare function SelectSeparator({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Separator>): React_2.JSX.Element;
|
|
1666
1666
|
|
|
1667
1667
|
export declare function SelectTrigger({ className, size, children, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
1668
1668
|
size?: 'sm' | 'md' | 'lg';
|
|
1669
|
-
}): JSX.Element;
|
|
1669
|
+
}): React_2.JSX.Element;
|
|
1670
1670
|
|
|
1671
|
-
export declare function SelectValue({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Value>): JSX.Element;
|
|
1671
|
+
export declare function SelectValue({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Value>): React_2.JSX.Element;
|
|
1672
1672
|
|
|
1673
1673
|
export declare function Send03(props: ComponentProps<'svg'>): JSX.Element;
|
|
1674
1674
|
|
|
1675
|
-
export declare function Separator({ className, orientation, decorative, ...props }: React_2.ComponentProps<typeof SeparatorPrimitive.Root>): JSX.Element;
|
|
1675
|
+
export declare function Separator({ className, orientation, decorative, ...props }: React_2.ComponentProps<typeof SeparatorPrimitive.Root>): React_2.JSX.Element;
|
|
1676
1676
|
|
|
1677
1677
|
export declare function Settings01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1678
1678
|
|
|
@@ -1682,31 +1682,31 @@ export declare function Share05(props: ComponentProps<'svg'>): JSX.Element;
|
|
|
1682
1682
|
|
|
1683
1683
|
export declare function Share06(props: ComponentProps<'svg'>): JSX.Element;
|
|
1684
1684
|
|
|
1685
|
-
export declare function Sheet({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): JSX.Element;
|
|
1685
|
+
export declare function Sheet({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): React_2.JSX.Element;
|
|
1686
1686
|
|
|
1687
|
-
export declare function SheetClose({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Close>): JSX.Element;
|
|
1687
|
+
export declare function SheetClose({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Close>): React_2.JSX.Element;
|
|
1688
1688
|
|
|
1689
|
-
export declare function SheetContent({ className, children, side, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
1689
|
+
export declare function SheetContent({ className, children, side, onCloseAutoFocus, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
1690
1690
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
1691
|
-
}): JSX.Element;
|
|
1691
|
+
}): React_2.JSX.Element;
|
|
1692
1692
|
|
|
1693
|
-
export declare function SheetDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): JSX.Element;
|
|
1693
|
+
export declare function SheetDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): React_2.JSX.Element;
|
|
1694
1694
|
|
|
1695
|
-
export declare function SheetFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1695
|
+
export declare function SheetFooter({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1696
1696
|
|
|
1697
|
-
export declare function SheetHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1697
|
+
export declare function SheetHeader({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1698
1698
|
|
|
1699
|
-
export declare function SheetTitle({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Title>): JSX.Element;
|
|
1699
|
+
export declare function SheetTitle({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Title>): React_2.JSX.Element;
|
|
1700
1700
|
|
|
1701
|
-
export declare function SheetTrigger({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Trigger>): JSX.Element;
|
|
1701
|
+
export declare function SheetTrigger({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Trigger>): React_2.JSX.Element;
|
|
1702
1702
|
|
|
1703
1703
|
export declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React_2.ComponentProps<'div'> & {
|
|
1704
1704
|
side?: 'left' | 'right';
|
|
1705
1705
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
1706
1706
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
1707
|
-
}): JSX.Element;
|
|
1707
|
+
}): React_2.JSX.Element;
|
|
1708
1708
|
|
|
1709
|
-
export declare function SidebarContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1709
|
+
export declare function SidebarContent({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1710
1710
|
|
|
1711
1711
|
export declare const SidebarContext: default_2.Context<SidebarContextProps | null>;
|
|
1712
1712
|
|
|
@@ -1720,73 +1720,73 @@ export declare type SidebarContextProps = {
|
|
|
1720
1720
|
toggleSidebar: () => void;
|
|
1721
1721
|
};
|
|
1722
1722
|
|
|
1723
|
-
export declare function SidebarFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1723
|
+
export declare function SidebarFooter({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1724
1724
|
|
|
1725
|
-
export declare function SidebarGroup({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1725
|
+
export declare function SidebarGroup({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1726
1726
|
|
|
1727
1727
|
export declare function SidebarGroupAction({ className, asChild, ...props }: React_2.ComponentProps<'button'> & {
|
|
1728
1728
|
asChild?: boolean;
|
|
1729
|
-
}): JSX.Element;
|
|
1729
|
+
}): React_2.JSX.Element;
|
|
1730
1730
|
|
|
1731
|
-
export declare function SidebarGroupContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1731
|
+
export declare function SidebarGroupContent({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1732
1732
|
|
|
1733
1733
|
export declare function SidebarGroupLabel({ className, asChild, ...props }: React_2.ComponentProps<'div'> & {
|
|
1734
1734
|
asChild?: boolean;
|
|
1735
|
-
}): JSX.Element;
|
|
1735
|
+
}): React_2.JSX.Element;
|
|
1736
1736
|
|
|
1737
|
-
export declare function SidebarHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1737
|
+
export declare function SidebarHeader({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1738
1738
|
|
|
1739
|
-
export declare function SidebarInput({ className, ...props }: React_2.ComponentProps<typeof Input>): JSX.Element;
|
|
1739
|
+
export declare function SidebarInput({ className, ...props }: React_2.ComponentProps<typeof Input>): React_2.JSX.Element;
|
|
1740
1740
|
|
|
1741
|
-
export declare function SidebarInset({ className, ...props }: React_2.ComponentProps<'main'>): JSX.Element;
|
|
1741
|
+
export declare function SidebarInset({ className, ...props }: React_2.ComponentProps<'main'>): React_2.JSX.Element;
|
|
1742
1742
|
|
|
1743
|
-
export declare function SidebarMenu({ className, ...props }: React_2.ComponentProps<'ul'>): JSX.Element;
|
|
1743
|
+
export declare function SidebarMenu({ className, ...props }: React_2.ComponentProps<'ul'>): React_2.JSX.Element;
|
|
1744
1744
|
|
|
1745
1745
|
export declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React_2.ComponentProps<'button'> & {
|
|
1746
1746
|
asChild?: boolean;
|
|
1747
1747
|
showOnHover?: boolean;
|
|
1748
|
-
}): JSX.Element;
|
|
1748
|
+
}): React_2.JSX.Element;
|
|
1749
1749
|
|
|
1750
|
-
export declare function SidebarMenuBadge({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1750
|
+
export declare function SidebarMenuBadge({ className, ...props }: React_2.ComponentProps<'div'>): React_2.JSX.Element;
|
|
1751
1751
|
|
|
1752
1752
|
export declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React_2.ComponentProps<'button'> & {
|
|
1753
1753
|
asChild?: boolean;
|
|
1754
1754
|
isActive?: boolean;
|
|
1755
1755
|
tooltip?: string | React_2.ComponentProps<typeof TooltipContent>;
|
|
1756
|
-
} & VariantProps<typeof sidebarMenuButtonVariants>): JSX.Element;
|
|
1756
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): React_2.JSX.Element;
|
|
1757
1757
|
|
|
1758
1758
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
1759
1759
|
variant?: "default" | "outline" | null | undefined;
|
|
1760
1760
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1761
1761
|
} & ClassProp) | undefined) => string;
|
|
1762
1762
|
|
|
1763
|
-
export declare function SidebarMenuItem({ className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
1763
|
+
export declare function SidebarMenuItem({ className, ...props }: React_2.ComponentProps<'li'>): React_2.JSX.Element;
|
|
1764
1764
|
|
|
1765
1765
|
export declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React_2.ComponentProps<'div'> & {
|
|
1766
1766
|
showIcon?: boolean;
|
|
1767
|
-
}): JSX.Element;
|
|
1767
|
+
}): React_2.JSX.Element;
|
|
1768
1768
|
|
|
1769
|
-
export declare function SidebarMenuSub({ className, ...props }: React_2.ComponentProps<'ul'>): JSX.Element;
|
|
1769
|
+
export declare function SidebarMenuSub({ className, ...props }: React_2.ComponentProps<'ul'>): React_2.JSX.Element;
|
|
1770
1770
|
|
|
1771
1771
|
export declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React_2.ComponentProps<'a'> & {
|
|
1772
1772
|
asChild?: boolean;
|
|
1773
1773
|
size?: 'sm' | 'md';
|
|
1774
1774
|
isActive?: boolean;
|
|
1775
|
-
}): JSX.Element;
|
|
1775
|
+
}): React_2.JSX.Element;
|
|
1776
1776
|
|
|
1777
|
-
export declare function SidebarMenuSubItem({ className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
1777
|
+
export declare function SidebarMenuSubItem({ className, ...props }: React_2.ComponentProps<'li'>): React_2.JSX.Element;
|
|
1778
1778
|
|
|
1779
1779
|
export declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React_2.ComponentProps<'div'> & {
|
|
1780
1780
|
defaultOpen?: boolean;
|
|
1781
1781
|
open?: boolean;
|
|
1782
1782
|
onOpenChange?: (open: boolean) => void;
|
|
1783
|
-
}): JSX.Element;
|
|
1783
|
+
}): React_2.JSX.Element;
|
|
1784
1784
|
|
|
1785
|
-
export declare function SidebarRail({ className, ...props }: React_2.ComponentProps<'button'>): JSX.Element;
|
|
1785
|
+
export declare function SidebarRail({ className, ...props }: React_2.ComponentProps<'button'>): React_2.JSX.Element;
|
|
1786
1786
|
|
|
1787
|
-
export declare function SidebarSeparator({ className, ...props }: React_2.ComponentProps<typeof Separator>): JSX.Element;
|
|
1787
|
+
export declare function SidebarSeparator({ className, ...props }: React_2.ComponentProps<typeof Separator>): React_2.JSX.Element;
|
|
1788
1788
|
|
|
1789
|
-
export declare function SidebarTrigger({ className, onClick, ...props }: React_2.ComponentProps<typeof Button>): JSX.Element;
|
|
1789
|
+
export declare function SidebarTrigger({ className, onClick, ...props }: React_2.ComponentProps<typeof Button>): React_2.JSX.Element;
|
|
1790
1790
|
|
|
1791
1791
|
declare interface SingleDatePickerProps extends BaseDatePickerProps {
|
|
1792
1792
|
mode?: 'single';
|
|
@@ -1822,7 +1822,7 @@ export declare function Skeleton({ className, ...props }: React.ComponentProps<'
|
|
|
1822
1822
|
|
|
1823
1823
|
export declare function SlashCircle01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1824
1824
|
|
|
1825
|
-
export declare function Slider({ className, defaultValue, value, min, max, ...props }: React_2.ComponentProps<typeof SliderPrimitive.Root>): JSX.Element;
|
|
1825
|
+
export declare function Slider({ className, defaultValue, value, min, max, ...props }: React_2.ComponentProps<typeof SliderPrimitive.Root>): React_2.JSX.Element;
|
|
1826
1826
|
|
|
1827
1827
|
export declare const sortAscByKey: <T extends Record<string, unknown>>(array: T[], key: keyof T) => T[];
|
|
1828
1828
|
|
|
@@ -1840,51 +1840,51 @@ export declare function stringToNumber(value: string): string;
|
|
|
1840
1840
|
|
|
1841
1841
|
export declare function Switch({ className, alwaysOn, ...props }: React_2.ComponentProps<typeof SwitchPrimitive.Root> & {
|
|
1842
1842
|
alwaysOn?: boolean;
|
|
1843
|
-
}): JSX.Element;
|
|
1843
|
+
}): React_2.JSX.Element;
|
|
1844
1844
|
|
|
1845
1845
|
export declare function SwitchHorizontal01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1846
1846
|
|
|
1847
|
-
export declare function Table({ className, ...props }: React_2.ComponentProps<'table'>): JSX.Element;
|
|
1847
|
+
export declare function Table({ className, ...props }: React_2.ComponentProps<'table'>): React_2.JSX.Element;
|
|
1848
1848
|
|
|
1849
1849
|
export declare function Table01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1850
1850
|
|
|
1851
|
-
export declare function TableBody({ className, ...props }: React_2.ComponentProps<'tbody'>): JSX.Element;
|
|
1851
|
+
export declare function TableBody({ className, ...props }: React_2.ComponentProps<'tbody'>): React_2.JSX.Element;
|
|
1852
1852
|
|
|
1853
|
-
export declare function TableCaption({ className, ...props }: React_2.ComponentProps<'caption'>): JSX.Element;
|
|
1853
|
+
export declare function TableCaption({ className, ...props }: React_2.ComponentProps<'caption'>): React_2.JSX.Element;
|
|
1854
1854
|
|
|
1855
|
-
export declare function TableCell({ className, ...props }: React_2.ComponentProps<'td'>): JSX.Element;
|
|
1855
|
+
export declare function TableCell({ className, ...props }: React_2.ComponentProps<'td'>): React_2.JSX.Element;
|
|
1856
1856
|
|
|
1857
|
-
export declare function TableContainer({ className, children, hasRoundedTop, ...props }: TableContainerProps): JSX.Element;
|
|
1857
|
+
export declare function TableContainer({ className, children, hasRoundedTop, ...props }: TableContainerProps): React_2.JSX.Element;
|
|
1858
1858
|
|
|
1859
1859
|
declare interface TableContainerProps extends React_2.ComponentProps<'div'> {
|
|
1860
1860
|
hasRoundedTop?: boolean;
|
|
1861
1861
|
}
|
|
1862
1862
|
|
|
1863
|
-
export declare function TableFooter({ className, ...props }: React_2.ComponentProps<'tfoot'>): JSX.Element;
|
|
1863
|
+
export declare function TableFooter({ className, ...props }: React_2.ComponentProps<'tfoot'>): React_2.JSX.Element;
|
|
1864
1864
|
|
|
1865
|
-
export declare function TableHead({ className, ...props }: React_2.ComponentProps<'th'>): JSX.Element;
|
|
1865
|
+
export declare function TableHead({ className, ...props }: React_2.ComponentProps<'th'>): React_2.JSX.Element;
|
|
1866
1866
|
|
|
1867
|
-
export declare function TableHeader({ className, ...props }: React_2.ComponentProps<'thead'>): JSX.Element;
|
|
1867
|
+
export declare function TableHeader({ className, ...props }: React_2.ComponentProps<'thead'>): React_2.JSX.Element;
|
|
1868
1868
|
|
|
1869
|
-
export declare function TableRow({ className, ...props }: React_2.ComponentProps<'tr'>): JSX.Element;
|
|
1869
|
+
export declare function TableRow({ className, ...props }: React_2.ComponentProps<'tr'>): React_2.JSX.Element;
|
|
1870
1870
|
|
|
1871
|
-
export declare function Tabs({ className, variant, ...props }: TabsProps): JSX.Element;
|
|
1871
|
+
export declare function Tabs({ className, variant, ...props }: TabsProps): React_2.JSX.Element;
|
|
1872
1872
|
|
|
1873
|
-
export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): JSX.Element;
|
|
1873
|
+
export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): React_2.JSX.Element;
|
|
1874
1874
|
|
|
1875
|
-
export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): JSX.Element;
|
|
1875
|
+
export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): React_2.JSX.Element;
|
|
1876
1876
|
|
|
1877
1877
|
export declare interface TabsProps extends React_2.ComponentProps<typeof TabsPrimitive.Root> {
|
|
1878
1878
|
variant?: 'primary' | 'secondary' | 'square' | 'outlined';
|
|
1879
1879
|
}
|
|
1880
1880
|
|
|
1881
|
-
export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX.Element;
|
|
1881
|
+
export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): React_2.JSX.Element;
|
|
1882
1882
|
|
|
1883
1883
|
export declare function Tag01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1884
1884
|
|
|
1885
1885
|
export declare const Tag03: (props: ComponentProps<"svg">) => JSX.Element;
|
|
1886
1886
|
|
|
1887
|
-
export declare function Textarea({ className, ...props }: React_2.ComponentProps<'textarea'>): JSX.Element;
|
|
1887
|
+
export declare function Textarea({ className, ...props }: React_2.ComponentProps<'textarea'>): React_2.JSX.Element;
|
|
1888
1888
|
|
|
1889
1889
|
declare const THEMES: {
|
|
1890
1890
|
readonly light: "";
|
|
@@ -1899,11 +1899,11 @@ export declare function toCurrentTimezone(date: string | undefined | null, forma
|
|
|
1899
1899
|
|
|
1900
1900
|
export declare function toCurrentTimezoneWithSeconds(date: string | undefined | null): string;
|
|
1901
1901
|
|
|
1902
|
-
export declare function Toggle({ className, variant, size, ...props }: React_2.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): JSX.Element;
|
|
1902
|
+
export declare function Toggle({ className, variant, size, ...props }: React_2.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): React_2.JSX.Element;
|
|
1903
1903
|
|
|
1904
|
-
export declare function ToggleGroup({ className, variant, size, children, ...props }: React_2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): JSX.Element;
|
|
1904
|
+
export declare function ToggleGroup({ className, variant, size, children, ...props }: React_2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): React_2.JSX.Element;
|
|
1905
1905
|
|
|
1906
|
-
export declare function ToggleGroupItem({ className, children, variant, size, ...props }: React_2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): JSX.Element;
|
|
1906
|
+
export declare function ToggleGroupItem({ className, children, variant, size, ...props }: React_2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): React_2.JSX.Element;
|
|
1907
1907
|
|
|
1908
1908
|
export declare const toggleVariants: (props?: ({
|
|
1909
1909
|
variant?: "default" | "outline" | null | undefined;
|
|
@@ -1916,13 +1916,13 @@ export declare function toMinorUnits(majorUnits: number): number;
|
|
|
1916
1916
|
|
|
1917
1917
|
export declare function Tool02(props: ComponentProps<'svg'>): JSX.Element;
|
|
1918
1918
|
|
|
1919
|
-
export declare function Tooltip({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Root>): JSX.Element;
|
|
1919
|
+
export declare function Tooltip({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Root>): React_2.JSX.Element;
|
|
1920
1920
|
|
|
1921
|
-
export declare function TooltipContent({ className, sideOffset, children, ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Content>): JSX.Element;
|
|
1921
|
+
export declare function TooltipContent({ className, sideOffset, children, ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Content>): React_2.JSX.Element;
|
|
1922
1922
|
|
|
1923
|
-
export declare function TooltipProvider({ delayDuration, ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Provider>): JSX.Element;
|
|
1923
|
+
export declare function TooltipProvider({ delayDuration, ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Provider>): React_2.JSX.Element;
|
|
1924
1924
|
|
|
1925
|
-
export declare function TooltipTrigger({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Trigger>): JSX.Element;
|
|
1925
|
+
export declare function TooltipTrigger({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Trigger>): React_2.JSX.Element;
|
|
1926
1926
|
|
|
1927
1927
|
export declare function Trash01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1928
1928
|
|