uilab-core 0.2.11 → 0.2.13
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/components/accordion.d.ts +5 -10
- package/dist/components/alert-dialog.d.ts +18 -25
- package/dist/components/alert.d.ts +7 -9
- package/dist/components/aspect-ratio.d.ts +3 -3
- package/dist/components/avatar.d.ts +11 -9
- package/dist/components/badge.d.ts +2 -4
- package/dist/components/breadcrumb.d.ts +9 -10
- package/dist/components/button-group.d.ts +5 -6
- package/dist/components/button.d.ts +2 -4
- package/dist/components/calendar.d.ts +3 -3
- package/dist/components/checkbox.d.ts +2 -3
- package/dist/components/collapsible.d.ts +4 -4
- package/dist/components/command.d.ts +8 -7
- package/dist/components/context-menu.d.ts +18 -18
- package/dist/components/dialog.d.ts +14 -12
- package/dist/components/drawer.d.ts +4 -4
- package/dist/components/dropdown-menu.d.ts +17 -17
- package/dist/components/empty.d.ts +7 -7
- package/dist/components/field.d.ts +12 -12
- package/dist/components/hover-card.d.ts +4 -5
- package/dist/components/index.d.ts +0 -1
- package/dist/components/input-group.d.ts +5 -3
- package/dist/components/input-otp.d.ts +5 -5
- package/dist/components/input.d.ts +2 -2
- package/dist/components/item.d.ts +14 -15
- package/dist/components/kbd.d.ts +2 -2
- package/dist/components/label.d.ts +2 -3
- package/dist/components/menubar.d.ts +20 -23
- package/dist/components/navigation-menu.d.ts +10 -13
- package/dist/components/pagination.d.ts +9 -9
- package/dist/components/popover.d.ts +9 -7
- package/dist/components/progress.d.ts +7 -4
- package/dist/components/radio-group.d.ts +4 -4
- package/dist/components/resizable.d.ts +2 -2
- package/dist/components/scroll-area.d.ts +3 -4
- package/dist/components/select.d.ts +13 -13
- package/dist/components/separator.d.ts +2 -3
- package/dist/components/sheet.d.ts +12 -11
- package/dist/components/sidebar.d.ts +34 -40
- package/dist/components/skeleton.d.ts +1 -1
- package/dist/components/slider.d.ts +2 -3
- package/dist/components/spinner.d.ts +1 -2
- package/dist/components/switch.d.ts +4 -3
- package/dist/components/table.d.ts +9 -9
- package/dist/components/tabs.d.ts +10 -7
- package/dist/components/textarea.d.ts +2 -2
- package/dist/components/toggle-group.d.ts +9 -6
- package/dist/components/toggle.d.ts +3 -4
- package/dist/components/tooltip.d.ts +5 -6
- package/dist/index.cjs +1 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +324 -355
- package/dist/index.js +1 -10
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/theme.css +1 -1
- package/package.json +6 -30
- package/dist/components/form.d.ts +0 -24
package/dist/index.d.ts
CHANGED
|
@@ -1,135 +1,119 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import
|
|
3
|
-
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
2
|
+
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
4
3
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
4
|
+
import * as React$1 from 'react';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
6
|
+
import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
|
|
7
|
+
import { Button as Button$1 } from '@/components/button';
|
|
8
|
+
import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
|
|
9
|
+
import { useRender } from '@base-ui/react/use-render';
|
|
10
|
+
import { Separator as Separator$1 } from '@/components/separator';
|
|
11
|
+
import { Button as Button$2 } from '@base-ui/react/button';
|
|
10
12
|
import { DayPicker, DayButton } from 'react-day-picker';
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
+
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
14
|
+
import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
|
|
13
15
|
import { Command as Command$1 } from 'cmdk';
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
+
import { Dialog as Dialog$1 } from '@/components/dialog';
|
|
17
|
+
import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
|
|
18
|
+
import { Dialog as Dialog$2 } from '@base-ui/react/dialog';
|
|
16
19
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
17
|
-
import {
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import { FieldValues, FieldPath, ControllerProps, FormProviderProps } from 'react-hook-form';
|
|
21
|
-
import { Slot } from '@radix-ui/react-slot';
|
|
22
|
-
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
20
|
+
import { Menu } from '@base-ui/react/menu';
|
|
21
|
+
import { Label as Label$1 } from '@/components/label';
|
|
22
|
+
import { PreviewCard } from '@base-ui/react/preview-card';
|
|
23
23
|
import { OTPInput } from 'input-otp';
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
24
|
+
import { Menubar as Menubar$1 } from '@base-ui/react/menubar';
|
|
25
|
+
import { DropdownMenuPortal as DropdownMenuPortal$1, DropdownMenu as DropdownMenu$1, DropdownMenuTrigger as DropdownMenuTrigger$1, DropdownMenuContent as DropdownMenuContent$1, DropdownMenuGroup as DropdownMenuGroup$1, DropdownMenuSeparator as DropdownMenuSeparator$1, DropdownMenuLabel as DropdownMenuLabel$1, DropdownMenuItem as DropdownMenuItem$1, DropdownMenuShortcut as DropdownMenuShortcut$1, DropdownMenuRadioGroup as DropdownMenuRadioGroup$1, DropdownMenuSub as DropdownMenuSub$1, DropdownMenuSubTrigger as DropdownMenuSubTrigger$1, DropdownMenuSubContent as DropdownMenuSubContent$1 } from '@/components/dropdown-menu';
|
|
26
|
+
import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
|
|
27
|
+
import { Popover as Popover$1 } from '@base-ui/react/popover';
|
|
28
|
+
import { Progress as Progress$1 } from '@base-ui/react/progress';
|
|
29
|
+
import { Radio } from '@base-ui/react/radio';
|
|
30
|
+
import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
|
|
29
31
|
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import {
|
|
35
|
-
import
|
|
36
|
-
import
|
|
37
|
-
import
|
|
38
|
-
import
|
|
32
|
+
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
33
|
+
import { Select as Select$1 } from '@base-ui/react/select';
|
|
34
|
+
import { Separator as Separator$2 } from '@base-ui/react/separator';
|
|
35
|
+
import { Input as Input$1 } from '@/components/input';
|
|
36
|
+
import { TooltipContent as TooltipContent$1 } from '@/components/tooltip';
|
|
37
|
+
import { Slider as Slider$1 } from '@base-ui/react/slider';
|
|
38
|
+
import { Switch as Switch$1 } from '@base-ui/react/switch';
|
|
39
|
+
import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
|
|
40
|
+
import { Toggle as Toggle$1 } from '@base-ui/react/toggle';
|
|
41
|
+
import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
|
|
42
|
+
import { toggleVariants as toggleVariants$1 } from '@/components/toggle';
|
|
43
|
+
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
39
44
|
import { ClassValue } from 'clsx';
|
|
40
45
|
|
|
41
|
-
|
|
42
|
-
declare function
|
|
43
|
-
|
|
44
|
-
declare function
|
|
45
|
-
type AccordionTriggerProps = React$1.ComponentProps<typeof AccordionPrimitive.Trigger>;
|
|
46
|
-
declare function AccordionTrigger({ className, children, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
|
|
47
|
-
type AccordionContentProps = React$1.ComponentProps<typeof AccordionPrimitive.Content>;
|
|
48
|
-
declare function AccordionContent({ className, children, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element;
|
|
46
|
+
declare function Accordion({ className, ...props }: Accordion$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
47
|
+
declare function AccordionItem({ className, ...props }: Accordion$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
48
|
+
declare function AccordionTrigger({ className, children, ...props }: Accordion$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
49
|
+
declare function AccordionContent({ className, children, ...props }: Accordion$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
49
50
|
|
|
50
51
|
declare const alertVariants: (props?: ({
|
|
51
52
|
variant?: "default" | "destructive" | null | undefined;
|
|
52
53
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
53
|
-
|
|
54
|
-
declare function
|
|
55
|
-
|
|
56
|
-
declare function
|
|
57
|
-
|
|
58
|
-
declare function
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
declare function
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
declare function
|
|
66
|
-
|
|
67
|
-
declare function
|
|
68
|
-
|
|
69
|
-
declare function
|
|
70
|
-
|
|
71
|
-
declare function
|
|
72
|
-
type AlertDialogFooterProps = React$1.ComponentProps<'div'>;
|
|
73
|
-
declare function AlertDialogFooter({ className, ...props }: AlertDialogFooterProps): react_jsx_runtime.JSX.Element;
|
|
74
|
-
type AlertDialogTitleProps = React$1.ComponentProps<typeof AlertDialogPrimitive.Title>;
|
|
75
|
-
declare function AlertDialogTitle({ className, ...props }: AlertDialogTitleProps): react_jsx_runtime.JSX.Element;
|
|
76
|
-
type AlertDialogDescriptionProps = React$1.ComponentProps<typeof AlertDialogPrimitive.Description>;
|
|
77
|
-
declare function AlertDialogDescription({ className, ...props }: AlertDialogDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
78
|
-
type AlertDialogActionProps = React$1.ComponentProps<typeof AlertDialogPrimitive.Action>;
|
|
79
|
-
declare function AlertDialogAction({ className, ...props }: AlertDialogActionProps): react_jsx_runtime.JSX.Element;
|
|
80
|
-
type AlertDialogCancelProps = React$1.ComponentProps<typeof AlertDialogPrimitive.Cancel>;
|
|
81
|
-
declare function AlertDialogCancel({ className, ...props }: AlertDialogCancelProps): react_jsx_runtime.JSX.Element;
|
|
82
|
-
|
|
83
|
-
type AspectRatioProps = React.ComponentProps<typeof AspectRatioPrimitive.Root>;
|
|
84
|
-
declare function AspectRatio({ ...props }: AspectRatioProps): react_jsx_runtime.JSX.Element;
|
|
85
|
-
|
|
86
|
-
type AvatarProps = React$1.ComponentProps<typeof AvatarPrimitive.Root>;
|
|
87
|
-
declare function Avatar({ className, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
88
|
-
type AvatarImageProps = React$1.ComponentProps<typeof AvatarPrimitive.Image>;
|
|
89
|
-
declare function AvatarImage({ className, ...props }: AvatarImageProps): react_jsx_runtime.JSX.Element;
|
|
90
|
-
type AvatarFallbackProps = React$1.ComponentProps<typeof AvatarPrimitive.Fallback>;
|
|
91
|
-
declare function AvatarFallback({ className, ...props }: AvatarFallbackProps): react_jsx_runtime.JSX.Element;
|
|
54
|
+
declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
|
|
55
|
+
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
56
|
+
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
57
|
+
declare function AlertAction({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
58
|
+
|
|
59
|
+
declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
60
|
+
declare function AlertDialogTrigger({ ...props }: AlertDialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
61
|
+
declare function AlertDialogPortal({ ...props }: AlertDialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
62
|
+
declare function AlertDialogOverlay({ className, ...props }: AlertDialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
63
|
+
declare function AlertDialogContent({ className, size, ...props }: AlertDialog$1.Popup.Props & {
|
|
64
|
+
size?: "default" | "sm";
|
|
65
|
+
}): react_jsx_runtime.JSX.Element;
|
|
66
|
+
declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
67
|
+
declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
68
|
+
declare function AlertDialogMedia({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
69
|
+
declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
71
|
+
declare function AlertDialogAction({ className, ...props }: React$1.ComponentProps<typeof Button$1>): react_jsx_runtime.JSX.Element;
|
|
72
|
+
declare function AlertDialogCancel({ className, variant, size, ...props }: AlertDialog$1.Close.Props & Pick<React$1.ComponentProps<typeof Button$1>, "variant" | "size">): react_jsx_runtime.JSX.Element;
|
|
92
73
|
|
|
93
|
-
declare
|
|
94
|
-
|
|
95
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
96
|
-
declare function Badge({ className, variant, asChild, ...props }: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
97
|
-
asChild?: boolean;
|
|
74
|
+
declare function AspectRatio({ ratio, className, ...props }: React.ComponentProps<"div"> & {
|
|
75
|
+
ratio: number;
|
|
98
76
|
}): react_jsx_runtime.JSX.Element;
|
|
99
77
|
|
|
100
|
-
declare function
|
|
101
|
-
|
|
102
|
-
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
103
|
-
declare function BreadcrumbLink({ asChild, className, ...props }: React$1.ComponentProps<'a'> & {
|
|
104
|
-
asChild?: boolean;
|
|
78
|
+
declare function Avatar({ className, size, ...props }: Avatar$1.Root.Props & {
|
|
79
|
+
size?: "default" | "sm" | "lg";
|
|
105
80
|
}): react_jsx_runtime.JSX.Element;
|
|
106
|
-
declare function
|
|
107
|
-
declare function
|
|
108
|
-
declare function
|
|
81
|
+
declare function AvatarImage({ className, ...props }: Avatar$1.Image.Props): react_jsx_runtime.JSX.Element;
|
|
82
|
+
declare function AvatarFallback({ className, ...props }: Avatar$1.Fallback.Props): react_jsx_runtime.JSX.Element;
|
|
83
|
+
declare function AvatarBadge({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
84
|
+
declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
85
|
+
declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
86
|
+
|
|
87
|
+
declare const badgeVariants: (props?: ({
|
|
88
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
89
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
90
|
+
declare function Badge({ className, variant, render, ...props }: useRender.ComponentProps<"span"> & VariantProps<typeof badgeVariants>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
109
91
|
|
|
110
|
-
declare function
|
|
92
|
+
declare function Breadcrumb({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
94
|
+
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
95
|
+
declare function BreadcrumbLink({ className, render, ...props }: useRender.ComponentProps<"a">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
96
|
+
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
97
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
98
|
+
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
111
99
|
|
|
112
100
|
declare const buttonGroupVariants: (props?: ({
|
|
113
101
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
114
102
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
115
|
-
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<
|
|
116
|
-
declare function ButtonGroupText({ className,
|
|
117
|
-
|
|
118
|
-
}): react_jsx_runtime.JSX.Element;
|
|
119
|
-
declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
103
|
+
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime.JSX.Element;
|
|
104
|
+
declare function ButtonGroupText({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
105
|
+
declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator$1>): react_jsx_runtime.JSX.Element;
|
|
120
106
|
|
|
121
107
|
declare const buttonVariants: (props?: ({
|
|
122
108
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
123
109
|
size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
124
110
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
125
|
-
declare function Button({ className, variant, size,
|
|
126
|
-
asChild?: boolean;
|
|
127
|
-
}): react_jsx_runtime.JSX.Element;
|
|
111
|
+
declare function Button({ className, variant, size, ...props }: Button$2.Props & VariantProps<typeof buttonVariants>): react_jsx_runtime.JSX.Element;
|
|
128
112
|
|
|
129
113
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
130
|
-
buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
114
|
+
buttonVariant?: React$1.ComponentProps<typeof Button$1>["variant"];
|
|
131
115
|
}): react_jsx_runtime.JSX.Element;
|
|
132
|
-
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>
|
|
116
|
+
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
133
117
|
|
|
134
118
|
declare function Card({ className, size, ...props }: React$1.ComponentProps<"div"> & {
|
|
135
119
|
size?: "default" | "sm";
|
|
@@ -141,62 +125,65 @@ declare function CardAction({ className, ...props }: React$1.ComponentProps<"div
|
|
|
141
125
|
declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
142
126
|
declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
143
127
|
|
|
144
|
-
declare function Checkbox({ className, ...props }:
|
|
145
|
-
|
|
146
|
-
declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
147
|
-
declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
148
|
-
declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
128
|
+
declare function Checkbox({ className, ...props }: Checkbox$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
149
129
|
|
|
150
|
-
declare function
|
|
151
|
-
declare function
|
|
152
|
-
declare function
|
|
153
|
-
declare function DialogClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
154
|
-
declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
|
|
155
|
-
declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
156
|
-
showCloseButton?: boolean;
|
|
157
|
-
}): react_jsx_runtime.JSX.Element;
|
|
158
|
-
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
159
|
-
declare function DialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
160
|
-
declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
161
|
-
declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
130
|
+
declare function Collapsible({ ...props }: Collapsible$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
131
|
+
declare function CollapsibleTrigger({ ...props }: Collapsible$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
132
|
+
declare function CollapsibleContent({ ...props }: Collapsible$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
162
133
|
|
|
163
134
|
declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
|
|
164
|
-
declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog> & {
|
|
135
|
+
declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit<React$1.ComponentProps<typeof Dialog$1>, "children"> & {
|
|
165
136
|
title?: string;
|
|
166
137
|
description?: string;
|
|
167
138
|
className?: string;
|
|
168
139
|
showCloseButton?: boolean;
|
|
140
|
+
children: React$1.ReactNode;
|
|
169
141
|
}): react_jsx_runtime.JSX.Element;
|
|
170
142
|
declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
|
|
171
143
|
declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
|
|
172
|
-
declare function CommandEmpty({ ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
|
|
144
|
+
declare function CommandEmpty({ className, ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
|
|
173
145
|
declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
|
|
174
146
|
declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
175
|
-
declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
|
|
176
|
-
declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<
|
|
177
|
-
|
|
178
|
-
declare function ContextMenu({ ...props }:
|
|
179
|
-
declare function
|
|
180
|
-
declare function
|
|
181
|
-
declare function
|
|
182
|
-
declare function
|
|
183
|
-
declare function
|
|
184
|
-
declare function ContextMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
|
|
147
|
+
declare function CommandItem({ className, children, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
|
|
148
|
+
declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
150
|
+
declare function ContextMenu({ ...props }: ContextMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
151
|
+
declare function ContextMenuPortal({ ...props }: ContextMenu$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
152
|
+
declare function ContextMenuTrigger({ className, ...props }: ContextMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
153
|
+
declare function ContextMenuContent({ className, align, alignOffset, side, sideOffset, ...props }: ContextMenu$1.Popup.Props & Pick<ContextMenu$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
154
|
+
declare function ContextMenuGroup({ ...props }: ContextMenu$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
155
|
+
declare function ContextMenuLabel({ className, inset, ...props }: ContextMenu$1.GroupLabel.Props & {
|
|
185
156
|
inset?: boolean;
|
|
186
157
|
}): react_jsx_runtime.JSX.Element;
|
|
187
|
-
declare function
|
|
188
|
-
declare function ContextMenuContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
189
|
-
declare function ContextMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Item> & {
|
|
158
|
+
declare function ContextMenuItem({ className, inset, variant, ...props }: ContextMenu$1.Item.Props & {
|
|
190
159
|
inset?: boolean;
|
|
191
|
-
variant?:
|
|
160
|
+
variant?: "default" | "destructive";
|
|
192
161
|
}): react_jsx_runtime.JSX.Element;
|
|
193
|
-
declare function
|
|
194
|
-
declare function
|
|
195
|
-
declare function ContextMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Label> & {
|
|
162
|
+
declare function ContextMenuSub({ ...props }: ContextMenu$1.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
|
|
163
|
+
declare function ContextMenuSubTrigger({ className, inset, children, ...props }: ContextMenu$1.SubmenuTrigger.Props & {
|
|
196
164
|
inset?: boolean;
|
|
197
165
|
}): react_jsx_runtime.JSX.Element;
|
|
198
|
-
declare function
|
|
199
|
-
declare function
|
|
166
|
+
declare function ContextMenuSubContent({ ...props }: React$1.ComponentProps<typeof ContextMenuContent>): react_jsx_runtime.JSX.Element;
|
|
167
|
+
declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: ContextMenu$1.CheckboxItem.Props): react_jsx_runtime.JSX.Element;
|
|
168
|
+
declare function ContextMenuRadioGroup({ ...props }: ContextMenu$1.RadioGroup.Props): react_jsx_runtime.JSX.Element;
|
|
169
|
+
declare function ContextMenuRadioItem({ className, children, ...props }: ContextMenu$1.RadioItem.Props): react_jsx_runtime.JSX.Element;
|
|
170
|
+
declare function ContextMenuSeparator({ className, ...props }: ContextMenu$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
171
|
+
declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
172
|
+
|
|
173
|
+
declare function Dialog({ ...props }: Dialog$2.Root.Props): react_jsx_runtime.JSX.Element;
|
|
174
|
+
declare function DialogTrigger({ ...props }: Dialog$2.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
175
|
+
declare function DialogPortal({ ...props }: Dialog$2.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
176
|
+
declare function DialogClose({ ...props }: Dialog$2.Close.Props): react_jsx_runtime.JSX.Element;
|
|
177
|
+
declare function DialogOverlay({ className, ...props }: Dialog$2.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
178
|
+
declare function DialogContent({ className, children, showCloseButton, ...props }: Dialog$2.Popup.Props & {
|
|
179
|
+
showCloseButton?: boolean;
|
|
180
|
+
}): react_jsx_runtime.JSX.Element;
|
|
181
|
+
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
182
|
+
declare function DialogFooter({ className, showCloseButton, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
183
|
+
showCloseButton?: boolean;
|
|
184
|
+
}): react_jsx_runtime.JSX.Element;
|
|
185
|
+
declare function DialogTitle({ className, ...props }: Dialog$2.Title.Props): react_jsx_runtime.JSX.Element;
|
|
186
|
+
declare function DialogDescription({ className, ...props }: Dialog$2.Description.Props): react_jsx_runtime.JSX.Element;
|
|
200
187
|
|
|
201
188
|
declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
202
189
|
declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -204,101 +191,81 @@ declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Drawer
|
|
|
204
191
|
declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
|
|
205
192
|
declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
206
193
|
declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
|
|
207
|
-
declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<
|
|
208
|
-
declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<
|
|
194
|
+
declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
209
196
|
declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
|
|
210
197
|
declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
|
|
211
198
|
|
|
212
|
-
declare function DropdownMenu({ ...props }:
|
|
213
|
-
declare function DropdownMenuPortal({ ...props }:
|
|
214
|
-
declare function DropdownMenuTrigger({ ...props }:
|
|
215
|
-
declare function DropdownMenuContent({
|
|
216
|
-
declare function DropdownMenuGroup({ ...props }:
|
|
217
|
-
declare function
|
|
199
|
+
declare function DropdownMenu({ ...props }: Menu.Root.Props): react_jsx_runtime.JSX.Element;
|
|
200
|
+
declare function DropdownMenuPortal({ ...props }: Menu.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
201
|
+
declare function DropdownMenuTrigger({ ...props }: Menu.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
202
|
+
declare function DropdownMenuContent({ align, alignOffset, side, sideOffset, className, ...props }: Menu.Popup.Props & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
203
|
+
declare function DropdownMenuGroup({ ...props }: Menu.Group.Props): react_jsx_runtime.JSX.Element;
|
|
204
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: Menu.GroupLabel.Props & {
|
|
218
205
|
inset?: boolean;
|
|
219
|
-
variant?: "default" | "destructive";
|
|
220
206
|
}): react_jsx_runtime.JSX.Element;
|
|
221
|
-
declare function
|
|
222
|
-
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
223
|
-
declare function DropdownMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
224
|
-
declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Label> & {
|
|
207
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: Menu.Item.Props & {
|
|
225
208
|
inset?: boolean;
|
|
209
|
+
variant?: "default" | "destructive";
|
|
226
210
|
}): react_jsx_runtime.JSX.Element;
|
|
227
|
-
declare function
|
|
228
|
-
declare function
|
|
229
|
-
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Sub>): react_jsx_runtime.JSX.Element;
|
|
230
|
-
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.SubTrigger> & {
|
|
211
|
+
declare function DropdownMenuSub({ ...props }: Menu.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
|
|
212
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: Menu.SubmenuTrigger.Props & {
|
|
231
213
|
inset?: boolean;
|
|
232
214
|
}): react_jsx_runtime.JSX.Element;
|
|
233
|
-
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof
|
|
215
|
+
declare function DropdownMenuSubContent({ align, alignOffset, side, sideOffset, className, ...props }: React$1.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
|
|
216
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: Menu.CheckboxItem.Props): react_jsx_runtime.JSX.Element;
|
|
217
|
+
declare function DropdownMenuRadioGroup({ ...props }: Menu.RadioGroup.Props): react_jsx_runtime.JSX.Element;
|
|
218
|
+
declare function DropdownMenuRadioItem({ className, children, ...props }: Menu.RadioItem.Props): react_jsx_runtime.JSX.Element;
|
|
219
|
+
declare function DropdownMenuSeparator({ className, ...props }: Menu.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
220
|
+
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
234
221
|
|
|
235
|
-
declare function Empty({ className, ...props }: React.ComponentProps<
|
|
236
|
-
declare function EmptyHeader({ className, ...props }: React.ComponentProps<
|
|
222
|
+
declare function Empty({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
223
|
+
declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
237
224
|
declare const emptyMediaVariants: (props?: ({
|
|
238
225
|
variant?: "default" | "icon" | null | undefined;
|
|
239
226
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
240
|
-
declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<
|
|
241
|
-
declare function EmptyTitle({ className, ...props }: React.ComponentProps<
|
|
242
|
-
declare function EmptyDescription({ className, ...props }: React.ComponentProps<
|
|
243
|
-
declare function EmptyContent({ className, ...props }: React.ComponentProps<
|
|
244
|
-
|
|
245
|
-
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
227
|
+
declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
228
|
+
declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
229
|
+
declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
230
|
+
declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
246
231
|
|
|
247
|
-
declare function FieldSet({ className, ...props }: React.ComponentProps<
|
|
248
|
-
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<
|
|
249
|
-
variant?:
|
|
232
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
233
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
234
|
+
variant?: "legend" | "label";
|
|
250
235
|
}): react_jsx_runtime.JSX.Element;
|
|
251
|
-
declare function FieldGroup({ className, ...props }: React.ComponentProps<
|
|
236
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
252
237
|
declare const fieldVariants: (props?: ({
|
|
253
238
|
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
254
239
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
255
|
-
declare function Field({ className, orientation, ...props }: React.ComponentProps<
|
|
256
|
-
declare function FieldContent({ className, ...props }: React.ComponentProps<
|
|
257
|
-
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
258
|
-
declare function FieldTitle({ className, ...props }: React.ComponentProps<
|
|
259
|
-
declare function FieldDescription({ className, ...props }: React.ComponentProps<
|
|
260
|
-
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<
|
|
240
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
241
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
242
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label$1>): react_jsx_runtime.JSX.Element;
|
|
243
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
244
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
245
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
|
|
261
246
|
children?: React.ReactNode;
|
|
262
247
|
}): react_jsx_runtime.JSX.Element;
|
|
263
|
-
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<
|
|
248
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
|
|
264
249
|
errors?: Array<{
|
|
265
250
|
message?: string;
|
|
266
251
|
} | undefined>;
|
|
267
252
|
}): react_jsx_runtime.JSX.Element | null;
|
|
268
253
|
|
|
269
|
-
declare
|
|
270
|
-
declare
|
|
271
|
-
declare
|
|
272
|
-
invalid: boolean;
|
|
273
|
-
isDirty: boolean;
|
|
274
|
-
isTouched: boolean;
|
|
275
|
-
isValidating: boolean;
|
|
276
|
-
error?: react_hook_form.FieldError;
|
|
277
|
-
id: string;
|
|
278
|
-
name: string;
|
|
279
|
-
formItemId: string;
|
|
280
|
-
formDescriptionId: string;
|
|
281
|
-
formMessageId: string;
|
|
282
|
-
};
|
|
283
|
-
declare function FormItem({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
284
|
-
declare function FormLabel({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
285
|
-
declare function FormControl({ ...props }: React$1.ComponentProps<typeof Slot>): react_jsx_runtime.JSX.Element;
|
|
286
|
-
declare function FormDescription({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
287
|
-
declare function FormMessage({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element | null;
|
|
288
|
-
|
|
289
|
-
declare function HoverCard({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
290
|
-
declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
291
|
-
declare function HoverCardContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
254
|
+
declare function HoverCard({ ...props }: PreviewCard.Root.Props): react_jsx_runtime.JSX.Element;
|
|
255
|
+
declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
256
|
+
declare function HoverCardContent({ className, side, sideOffset, align, alignOffset, ...props }: PreviewCard.Popup.Props & Pick<PreviewCard.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
292
257
|
|
|
293
258
|
declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
294
259
|
declare const inputGroupAddonVariants: (props?: ({
|
|
295
|
-
align?: "inline-
|
|
260
|
+
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
296
261
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
297
262
|
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
|
|
298
263
|
declare const inputGroupButtonVariants: (props?: ({
|
|
299
264
|
size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
|
|
300
265
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
301
|
-
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>
|
|
266
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button$1>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
|
|
267
|
+
type?: "button" | "submit" | "reset";
|
|
268
|
+
}): react_jsx_runtime.JSX.Element;
|
|
302
269
|
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
303
270
|
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
304
271
|
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
@@ -306,93 +273,92 @@ declare function InputGroupTextarea({ className, ...props }: React$1.ComponentPr
|
|
|
306
273
|
declare function InputOTP({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
307
274
|
containerClassName?: string;
|
|
308
275
|
}): react_jsx_runtime.JSX.Element;
|
|
309
|
-
declare function InputOTPGroup({ className, ...props }: React$1.ComponentProps<
|
|
310
|
-
declare function InputOTPSlot({ index, className, ...props }: React$1.ComponentProps<
|
|
276
|
+
declare function InputOTPGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
277
|
+
declare function InputOTPSlot({ index, className, ...props }: React$1.ComponentProps<"div"> & {
|
|
311
278
|
index: number;
|
|
312
279
|
}): react_jsx_runtime.JSX.Element;
|
|
313
|
-
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<
|
|
280
|
+
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
314
281
|
|
|
315
|
-
declare function Input({ className, type, ...props }: React$1.ComponentProps<
|
|
282
|
+
declare function Input({ className, type, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
316
283
|
|
|
317
|
-
declare function ItemGroup({ className, ...props }: React$1.ComponentProps<
|
|
318
|
-
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
284
|
+
declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
285
|
+
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator$1>): react_jsx_runtime.JSX.Element;
|
|
319
286
|
declare const itemVariants: (props?: ({
|
|
320
287
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
321
|
-
size?: "default" | "sm" | null | undefined;
|
|
288
|
+
size?: "default" | "xs" | "sm" | null | undefined;
|
|
322
289
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
323
|
-
declare function Item({ className, variant, size,
|
|
324
|
-
asChild?: boolean;
|
|
325
|
-
}): react_jsx_runtime.JSX.Element;
|
|
290
|
+
declare function Item({ className, variant, size, render, ...props }: useRender.ComponentProps<"div"> & VariantProps<typeof itemVariants>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
326
291
|
declare const itemMediaVariants: (props?: ({
|
|
327
292
|
variant?: "image" | "default" | "icon" | null | undefined;
|
|
328
293
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
329
|
-
declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<
|
|
330
|
-
declare function ItemContent({ className, ...props }: React$1.ComponentProps<
|
|
331
|
-
declare function ItemTitle({ className, ...props }: React$1.ComponentProps<
|
|
332
|
-
declare function ItemDescription({ className, ...props }: React$1.ComponentProps<
|
|
333
|
-
declare function ItemActions({ className, ...props }: React$1.ComponentProps<
|
|
334
|
-
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<
|
|
335
|
-
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<
|
|
336
|
-
|
|
337
|
-
declare function Kbd({ className, ...props }: React.ComponentProps<
|
|
338
|
-
declare function KbdGroup({ className, ...props }: React.ComponentProps<
|
|
339
|
-
|
|
340
|
-
declare function
|
|
341
|
-
|
|
342
|
-
declare function
|
|
343
|
-
declare function
|
|
344
|
-
declare function
|
|
345
|
-
declare function
|
|
346
|
-
declare function
|
|
347
|
-
declare function
|
|
294
|
+
declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
295
|
+
declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
296
|
+
declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
297
|
+
declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
298
|
+
declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
299
|
+
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
300
|
+
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
301
|
+
|
|
302
|
+
declare function Kbd({ className, ...props }: React.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
|
|
303
|
+
declare function KbdGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
304
|
+
|
|
305
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<"label">): react_jsx_runtime.JSX.Element;
|
|
306
|
+
|
|
307
|
+
declare function Menubar({ className, ...props }: Menubar$1.Props): react_jsx_runtime.JSX.Element;
|
|
308
|
+
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1>): react_jsx_runtime.JSX.Element;
|
|
309
|
+
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuGroup$1>): react_jsx_runtime.JSX.Element;
|
|
310
|
+
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPortal$1>): react_jsx_runtime.JSX.Element;
|
|
311
|
+
declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuTrigger$1>): react_jsx_runtime.JSX.Element;
|
|
312
|
+
declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuContent$1>): react_jsx_runtime.JSX.Element;
|
|
313
|
+
declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuItem$1>): react_jsx_runtime.JSX.Element;
|
|
314
|
+
declare function MenubarCheckboxItem({ className, children, checked, ...props }: Menu.CheckboxItem.Props): react_jsx_runtime.JSX.Element;
|
|
315
|
+
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuRadioGroup$1>): react_jsx_runtime.JSX.Element;
|
|
316
|
+
declare function MenubarRadioItem({ className, children, ...props }: Menu.RadioItem.Props): react_jsx_runtime.JSX.Element;
|
|
317
|
+
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuLabel$1>): react_jsx_runtime.JSX.Element;
|
|
318
|
+
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSeparator$1>): react_jsx_runtime.JSX.Element;
|
|
319
|
+
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuShortcut$1>): react_jsx_runtime.JSX.Element;
|
|
320
|
+
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuSub$1>): react_jsx_runtime.JSX.Element;
|
|
321
|
+
declare function MenubarSubTrigger({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuSubTrigger$1> & {
|
|
348
322
|
inset?: boolean;
|
|
349
|
-
variant?: 'default' | 'destructive';
|
|
350
323
|
}): react_jsx_runtime.JSX.Element;
|
|
351
|
-
declare function
|
|
352
|
-
declare function MenubarRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
353
|
-
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Label> & {
|
|
354
|
-
inset?: boolean;
|
|
355
|
-
}): react_jsx_runtime.JSX.Element;
|
|
356
|
-
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
357
|
-
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
358
|
-
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
359
|
-
declare function MenubarSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
|
|
360
|
-
inset?: boolean;
|
|
361
|
-
}): react_jsx_runtime.JSX.Element;
|
|
362
|
-
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
324
|
+
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSubContent$1>): react_jsx_runtime.JSX.Element;
|
|
363
325
|
|
|
364
|
-
declare function NavigationMenu({ className, children,
|
|
365
|
-
|
|
366
|
-
}): react_jsx_runtime.JSX.Element;
|
|
367
|
-
declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.List>): react_jsx_runtime.JSX.Element;
|
|
368
|
-
declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
326
|
+
declare function NavigationMenu({ className, children, ...props }: NavigationMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
327
|
+
declare function NavigationMenuList({ className, ...props }: NavigationMenu$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
328
|
+
declare function NavigationMenuItem({ className, ...props }: NavigationMenu$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
369
329
|
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
370
|
-
declare function NavigationMenuTrigger({ className, children, ...props }:
|
|
371
|
-
declare function NavigationMenuContent({ className, ...props }:
|
|
372
|
-
declare function
|
|
373
|
-
declare function NavigationMenuLink({ className, ...props }:
|
|
374
|
-
declare function NavigationMenuIndicator({ className, ...props }:
|
|
375
|
-
|
|
376
|
-
declare function Pagination({ className, ...props }: React$1.ComponentProps<
|
|
377
|
-
declare function PaginationContent({ className, ...props }: React$1.ComponentProps<
|
|
378
|
-
declare function PaginationItem({ ...props }: React$1.ComponentProps<
|
|
330
|
+
declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
331
|
+
declare function NavigationMenuContent({ className, ...props }: NavigationMenu$1.Content.Props): react_jsx_runtime.JSX.Element;
|
|
332
|
+
declare function NavigationMenuPositioner({ className, side, sideOffset, align, alignOffset, ...props }: NavigationMenu$1.Positioner.Props): react_jsx_runtime.JSX.Element;
|
|
333
|
+
declare function NavigationMenuLink({ className, ...props }: NavigationMenu$1.Link.Props): react_jsx_runtime.JSX.Element;
|
|
334
|
+
declare function NavigationMenuIndicator({ className, ...props }: NavigationMenu$1.Icon.Props): react_jsx_runtime.JSX.Element;
|
|
335
|
+
|
|
336
|
+
declare function Pagination({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
337
|
+
declare function PaginationContent({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
338
|
+
declare function PaginationItem({ ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
379
339
|
type PaginationLinkProps = {
|
|
380
340
|
isActive?: boolean;
|
|
381
|
-
} & Pick<React$1.ComponentProps<typeof Button>,
|
|
341
|
+
} & Pick<React$1.ComponentProps<typeof Button$1>, "size"> & React$1.ComponentProps<"a">;
|
|
382
342
|
declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
383
343
|
declare function PaginationPrevious({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
384
344
|
declare function PaginationNext({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
385
|
-
declare function PaginationEllipsis({ className, ...props }: React$1.ComponentProps<
|
|
345
|
+
declare function PaginationEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
386
346
|
|
|
387
|
-
declare function Popover({ ...props }:
|
|
388
|
-
declare function PopoverTrigger({ ...props }:
|
|
389
|
-
declare function PopoverContent({ className, align, sideOffset, ...props }:
|
|
390
|
-
declare function
|
|
347
|
+
declare function Popover({ ...props }: Popover$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
348
|
+
declare function PopoverTrigger({ ...props }: Popover$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
349
|
+
declare function PopoverContent({ className, align, alignOffset, side, sideOffset, ...props }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
350
|
+
declare function PopoverHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
351
|
+
declare function PopoverTitle({ className, ...props }: Popover$1.Title.Props): react_jsx_runtime.JSX.Element;
|
|
352
|
+
declare function PopoverDescription({ className, ...props }: Popover$1.Description.Props): react_jsx_runtime.JSX.Element;
|
|
391
353
|
|
|
392
|
-
declare function Progress({ className, value, ...props }:
|
|
354
|
+
declare function Progress({ className, children, value, ...props }: Progress$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
355
|
+
declare function ProgressTrack({ className, ...props }: Progress$1.Track.Props): react_jsx_runtime.JSX.Element;
|
|
356
|
+
declare function ProgressIndicator({ className, ...props }: Progress$1.Indicator.Props): react_jsx_runtime.JSX.Element;
|
|
357
|
+
declare function ProgressLabel({ className, ...props }: Progress$1.Label.Props): react_jsx_runtime.JSX.Element;
|
|
358
|
+
declare function ProgressValue({ className, ...props }: Progress$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
393
359
|
|
|
394
|
-
declare function RadioGroup({ className, ...props }:
|
|
395
|
-
declare function RadioGroupItem({ className, ...props }:
|
|
360
|
+
declare function RadioGroup({ className, ...props }: RadioGroup$1.Props): react_jsx_runtime.JSX.Element;
|
|
361
|
+
declare function RadioGroupItem({ className, ...props }: Radio.Root.Props): react_jsx_runtime.JSX.Element;
|
|
396
362
|
|
|
397
363
|
declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element;
|
|
398
364
|
declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
|
|
@@ -400,40 +366,38 @@ declare function ResizableHandle({ withHandle, className, ...props }: React$1.Co
|
|
|
400
366
|
withHandle?: boolean;
|
|
401
367
|
}): react_jsx_runtime.JSX.Element;
|
|
402
368
|
|
|
403
|
-
declare function ScrollArea({ className, children, ...props }:
|
|
404
|
-
declare function ScrollBar({ className, orientation, ...props }:
|
|
369
|
+
declare function ScrollArea({ className, children, ...props }: ScrollArea$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
370
|
+
declare function ScrollBar({ className, orientation, ...props }: ScrollArea$1.Scrollbar.Props): react_jsx_runtime.JSX.Element;
|
|
405
371
|
|
|
406
|
-
declare
|
|
407
|
-
declare function SelectGroup({ ...props }:
|
|
408
|
-
declare function SelectValue({ ...props }:
|
|
409
|
-
declare function SelectTrigger({ className, size, children, ...props }:
|
|
410
|
-
size?:
|
|
411
|
-
}): react_jsx_runtime.JSX.Element;
|
|
412
|
-
declare function SelectContent({ className, children, position, align, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
413
|
-
declare function SelectLabel({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime.JSX.Element;
|
|
414
|
-
declare function SelectItem({ className, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
415
|
-
declare function SelectSeparator({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
416
|
-
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime.JSX.Element;
|
|
417
|
-
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
|
|
418
|
-
|
|
419
|
-
declare function Sheet({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
420
|
-
declare function SheetTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
421
|
-
declare function SheetClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
422
|
-
declare function SheetContent({ className, children, side, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
423
|
-
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
372
|
+
declare const Select: typeof Select$1.Root;
|
|
373
|
+
declare function SelectGroup({ className, ...props }: Select$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
374
|
+
declare function SelectValue({ className, ...props }: Select$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
375
|
+
declare function SelectTrigger({ className, size, children, ...props }: Select$1.Trigger.Props & {
|
|
376
|
+
size?: "sm" | "default";
|
|
424
377
|
}): react_jsx_runtime.JSX.Element;
|
|
425
|
-
declare function
|
|
426
|
-
declare function
|
|
427
|
-
declare function
|
|
428
|
-
declare function
|
|
378
|
+
declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, ...props }: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset" | "alignItemWithTrigger">): react_jsx_runtime.JSX.Element;
|
|
379
|
+
declare function SelectLabel({ className, ...props }: Select$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
380
|
+
declare function SelectItem({ className, children, ...props }: Select$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
381
|
+
declare function SelectSeparator({ className, ...props }: Select$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
382
|
+
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
|
|
383
|
+
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
|
|
429
384
|
|
|
430
|
-
declare function
|
|
431
|
-
|
|
432
|
-
declare function
|
|
433
|
-
declare function
|
|
385
|
+
declare function Separator({ className, orientation, ...props }: Separator$2.Props): react_jsx_runtime.JSX.Element;
|
|
386
|
+
|
|
387
|
+
declare function Sheet({ ...props }: Dialog$2.Root.Props): react_jsx_runtime.JSX.Element;
|
|
388
|
+
declare function SheetTrigger({ ...props }: Dialog$2.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
389
|
+
declare function SheetClose({ ...props }: Dialog$2.Close.Props): react_jsx_runtime.JSX.Element;
|
|
390
|
+
declare function SheetContent({ className, children, side, showCloseButton, ...props }: Dialog$2.Popup.Props & {
|
|
391
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
392
|
+
showCloseButton?: boolean;
|
|
393
|
+
}): react_jsx_runtime.JSX.Element;
|
|
394
|
+
declare function SheetHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
395
|
+
declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
396
|
+
declare function SheetTitle({ className, ...props }: Dialog$2.Title.Props): react_jsx_runtime.JSX.Element;
|
|
397
|
+
declare function SheetDescription({ className, ...props }: Dialog$2.Description.Props): react_jsx_runtime.JSX.Element;
|
|
434
398
|
|
|
435
399
|
type SidebarContextProps = {
|
|
436
|
-
state:
|
|
400
|
+
state: "expanded" | "collapsed";
|
|
437
401
|
open: boolean;
|
|
438
402
|
setOpen: (open: boolean) => void;
|
|
439
403
|
openMobile: boolean;
|
|
@@ -442,91 +406,97 @@ type SidebarContextProps = {
|
|
|
442
406
|
toggleSidebar: () => void;
|
|
443
407
|
};
|
|
444
408
|
declare function useSidebar(): SidebarContextProps;
|
|
445
|
-
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React$1.ComponentProps<
|
|
409
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
446
410
|
defaultOpen?: boolean;
|
|
447
411
|
open?: boolean;
|
|
448
412
|
onOpenChange?: (open: boolean) => void;
|
|
449
413
|
}): react_jsx_runtime.JSX.Element;
|
|
450
|
-
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React$1.ComponentProps<
|
|
451
|
-
side?:
|
|
452
|
-
variant?:
|
|
453
|
-
collapsible?:
|
|
454
|
-
}): react_jsx_runtime.JSX.Element;
|
|
455
|
-
declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
456
|
-
declare function SidebarRail({ className, ...props }: React$1.ComponentProps<
|
|
457
|
-
declare function SidebarInset({ className, ...props }: React$1.ComponentProps<
|
|
458
|
-
declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
459
|
-
declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<
|
|
460
|
-
declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<
|
|
461
|
-
declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
462
|
-
declare function SidebarContent({ className, ...props }: React$1.ComponentProps<
|
|
463
|
-
declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<
|
|
464
|
-
declare function SidebarGroupLabel({ className,
|
|
465
|
-
|
|
466
|
-
}): react_jsx_runtime.JSX.Element;
|
|
467
|
-
declare function
|
|
468
|
-
|
|
469
|
-
}): react_jsx_runtime.JSX.Element;
|
|
470
|
-
declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
471
|
-
declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
472
|
-
declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
414
|
+
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
415
|
+
side?: "left" | "right";
|
|
416
|
+
variant?: "sidebar" | "floating" | "inset";
|
|
417
|
+
collapsible?: "offExamples" | "icon" | "none";
|
|
418
|
+
}): react_jsx_runtime.JSX.Element;
|
|
419
|
+
declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button$1>): react_jsx_runtime.JSX.Element;
|
|
420
|
+
declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
421
|
+
declare function SidebarInset({ className, ...props }: React$1.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
|
|
422
|
+
declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input$1>): react_jsx_runtime.JSX.Element;
|
|
423
|
+
declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
424
|
+
declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
425
|
+
declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator$1>): react_jsx_runtime.JSX.Element;
|
|
426
|
+
declare function SidebarContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
427
|
+
declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
428
|
+
declare function SidebarGroupLabel({ className, render, ...props }: useRender.ComponentProps<"div"> & React$1.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
429
|
+
declare function SidebarGroupAction({ className, render, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
430
|
+
declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
431
|
+
declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
432
|
+
declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
473
433
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
474
434
|
variant?: "default" | "outline" | null | undefined;
|
|
475
435
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
476
436
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
477
|
-
declare function SidebarMenuButton({
|
|
478
|
-
asChild?: boolean;
|
|
437
|
+
declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button"> & {
|
|
479
438
|
isActive?: boolean;
|
|
480
|
-
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
439
|
+
tooltip?: string | React$1.ComponentProps<typeof TooltipContent$1>;
|
|
481
440
|
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
482
|
-
declare function SidebarMenuAction({ className,
|
|
483
|
-
asChild?: boolean;
|
|
441
|
+
declare function SidebarMenuAction({ className, render, showOnHover, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button"> & {
|
|
484
442
|
showOnHover?: boolean;
|
|
485
|
-
}):
|
|
486
|
-
declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<
|
|
487
|
-
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<
|
|
443
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
444
|
+
declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
445
|
+
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<"div"> & {
|
|
488
446
|
showIcon?: boolean;
|
|
489
447
|
}): react_jsx_runtime.JSX.Element;
|
|
490
|
-
declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<
|
|
491
|
-
declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<
|
|
492
|
-
declare function SidebarMenuSubButton({
|
|
493
|
-
|
|
494
|
-
size?: 'sm' | 'md';
|
|
448
|
+
declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
449
|
+
declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
450
|
+
declare function SidebarMenuSubButton({ render, size, isActive, className, ...props }: useRender.ComponentProps<"a"> & React$1.ComponentProps<"a"> & {
|
|
451
|
+
size?: "sm" | "md";
|
|
495
452
|
isActive?: boolean;
|
|
496
|
-
}):
|
|
453
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
454
|
+
|
|
455
|
+
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
497
456
|
|
|
498
|
-
declare function
|
|
457
|
+
declare function Slider({ className, defaultValue, value, min, max, ...props }: Slider$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
499
458
|
|
|
500
|
-
declare function
|
|
459
|
+
declare function Spinner({ className, ...props }: React.ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
501
460
|
|
|
502
|
-
declare function
|
|
461
|
+
declare function Switch({ className, size, ...props }: Switch$1.Root.Props & {
|
|
462
|
+
size?: "sm" | "default";
|
|
463
|
+
}): react_jsx_runtime.JSX.Element;
|
|
503
464
|
|
|
504
|
-
declare function
|
|
465
|
+
declare function Table({ className, ...props }: React$1.ComponentProps<"table">): react_jsx_runtime.JSX.Element;
|
|
466
|
+
declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
|
|
467
|
+
declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): react_jsx_runtime.JSX.Element;
|
|
468
|
+
declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): react_jsx_runtime.JSX.Element;
|
|
469
|
+
declare function TableRow({ className, ...props }: React$1.ComponentProps<"tr">): react_jsx_runtime.JSX.Element;
|
|
470
|
+
declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
|
|
471
|
+
declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
|
|
472
|
+
declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
|
|
505
473
|
|
|
506
|
-
declare function
|
|
507
|
-
declare
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
declare function
|
|
511
|
-
declare function
|
|
512
|
-
declare function
|
|
513
|
-
declare function TableCaption({ className, ...props }: React$1.ComponentProps<'caption'>): react_jsx_runtime.JSX.Element;
|
|
474
|
+
declare function Tabs({ className, orientation, ...props }: Tabs$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
475
|
+
declare const tabsListVariants: (props?: ({
|
|
476
|
+
variant?: "line" | "default" | null | undefined;
|
|
477
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
478
|
+
declare function TabsList({ className, variant, ...props }: Tabs$1.List.Props & VariantProps<typeof tabsListVariants>): react_jsx_runtime.JSX.Element;
|
|
479
|
+
declare function TabsTrigger({ className, ...props }: Tabs$1.Tab.Props): react_jsx_runtime.JSX.Element;
|
|
480
|
+
declare function TabsContent({ className, ...props }: Tabs$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
514
481
|
|
|
515
|
-
declare function
|
|
516
|
-
declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime.JSX.Element;
|
|
517
|
-
declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
518
|
-
declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
482
|
+
declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
519
483
|
|
|
520
|
-
declare function
|
|
484
|
+
declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: ToggleGroup$1.Props & VariantProps<typeof toggleVariants$1> & {
|
|
485
|
+
spacing?: number;
|
|
486
|
+
orientation?: "horizontal" | "vertical";
|
|
487
|
+
}): react_jsx_runtime.JSX.Element;
|
|
488
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants$1>): react_jsx_runtime.JSX.Element;
|
|
521
489
|
|
|
522
490
|
declare const toggleVariants: (props?: ({
|
|
523
491
|
variant?: "default" | "outline" | null | undefined;
|
|
524
492
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
525
493
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
526
|
-
declare function Toggle({ className, variant, size, ...props }:
|
|
494
|
+
declare function Toggle({ className, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
527
495
|
|
|
528
|
-
declare function
|
|
529
|
-
declare function
|
|
496
|
+
declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
|
|
497
|
+
declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
498
|
+
declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
499
|
+
declare function TooltipContent({ className, side, sideOffset, align, alignOffset, children, ...props }: Tooltip$1.Popup.Props & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
530
500
|
|
|
531
501
|
declare function useIsMobile(): boolean;
|
|
532
502
|
|
|
@@ -534,5 +504,4 @@ declare function cn(...inputs: ClassValue[]): string;
|
|
|
534
504
|
|
|
535
505
|
declare const _default: {};
|
|
536
506
|
|
|
537
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle,
|
|
538
|
-
export type { AccordionContentProps, AccordionItemProps, AccordionProps, AccordionTriggerProps, AlertDescriptionProps, AlertDialogActionProps, AlertDialogCancelProps, AlertDialogContentProps, AlertDialogDescriptionProps, AlertDialogFooterProps, AlertDialogHeaderProps, AlertDialogOverlayProps, AlertDialogPortalProps, AlertDialogProps, AlertDialogTitleProps, AlertDialogTriggerProps, AlertProps, AlertTitleProps, AspectRatioProps, AvatarFallbackProps, AvatarImageProps, AvatarProps, PaginationLinkProps };
|
|
507
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, _default as default, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useIsMobile, useSidebar };
|