uilab-core 0.2.13 → 0.2.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2,27 +2,26 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
3
3
  import * as class_variance_authority_types from 'class-variance-authority/types';
4
4
  import * as React$1 from 'react';
5
+ import { ComponentProps } from 'react';
5
6
  import { VariantProps } from 'class-variance-authority';
6
7
  import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
7
- import { Button as Button$1 } from '@/components/button';
8
+ import { Button as Button$1 } from '@base-ui/react/button';
8
9
  import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
9
10
  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';
11
+ import { Separator as Separator$1 } from '@base-ui/react/separator';
12
12
  import { DayPicker, DayButton } from 'react-day-picker';
13
13
  import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
14
14
  import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
15
15
  import { Command as Command$1 } from 'cmdk';
16
- import { Dialog as Dialog$1 } from '@/components/dialog';
16
+ import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
17
17
  import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
18
- import { Dialog as Dialog$2 } from '@base-ui/react/dialog';
19
18
  import { Drawer as Drawer$1 } from 'vaul';
20
19
  import { Menu } from '@base-ui/react/menu';
21
20
  import { Label as Label$1 } from '@/components/label';
22
21
  import { PreviewCard } from '@base-ui/react/preview-card';
23
22
  import { OTPInput } from 'input-otp';
23
+ import { Separator as Separator$2 } from '@/components/separator';
24
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
25
  import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
27
26
  import { Popover as Popover$1 } from '@base-ui/react/popover';
28
27
  import { Progress as Progress$1 } from '@base-ui/react/progress';
@@ -31,16 +30,13 @@ import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
31
30
  import * as ResizablePrimitive from 'react-resizable-panels';
32
31
  import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
33
32
  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';
33
+ import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
37
34
  import { Slider as Slider$1 } from '@base-ui/react/slider';
38
35
  import { Switch as Switch$1 } from '@base-ui/react/switch';
39
36
  import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
40
37
  import { Toggle as Toggle$1 } from '@base-ui/react/toggle';
41
38
  import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
42
39
  import { toggleVariants as toggleVariants$1 } from '@/components/toggle';
43
- import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
44
40
  import { ClassValue } from 'clsx';
45
41
 
46
42
  declare function Accordion({ className, ...props }: Accordion$1.Root.Props): react_jsx_runtime.JSX.Element;
@@ -56,6 +52,12 @@ declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div
56
52
  declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
57
53
  declare function AlertAction({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
58
54
 
55
+ declare const buttonVariants: (props?: ({
56
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
57
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
58
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
59
+ declare function Button({ className, variant, size, ...props }: Button$1.Props & VariantProps<typeof buttonVariants>): react_jsx_runtime.JSX.Element;
60
+
59
61
  declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
60
62
  declare function AlertDialogTrigger({ ...props }: AlertDialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
61
63
  declare function AlertDialogPortal({ ...props }: AlertDialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
@@ -68,8 +70,8 @@ declare function AlertDialogFooter({ className, ...props }: React$1.ComponentPro
68
70
  declare function AlertDialogMedia({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
69
71
  declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
70
72
  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;
73
+ declare function AlertDialogAction({ className, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
74
+ declare function AlertDialogCancel({ className, variant, size, ...props }: AlertDialog$1.Close.Props & Pick<React$1.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime.JSX.Element;
73
75
 
74
76
  declare function AspectRatio({ ratio, className, ...props }: React.ComponentProps<"div"> & {
75
77
  ratio: number;
@@ -85,7 +87,7 @@ declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<"di
85
87
  declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
86
88
 
87
89
  declare const badgeVariants: (props?: ({
88
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
90
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | "success" | "warning" | "info" | null | undefined;
89
91
  } & class_variance_authority_types.ClassProp) | undefined) => string;
90
92
  declare function Badge({ className, variant, render, ...props }: useRender.ComponentProps<"span"> & VariantProps<typeof badgeVariants>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
91
93
 
@@ -97,21 +99,17 @@ declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<
97
99
  declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
98
100
  declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
99
101
 
102
+ declare function Separator({ className, orientation, ...props }: Separator$1.Props): react_jsx_runtime.JSX.Element;
103
+
100
104
  declare const buttonGroupVariants: (props?: ({
101
105
  orientation?: "horizontal" | "vertical" | null | undefined;
102
106
  } & class_variance_authority_types.ClassProp) | undefined) => string;
103
107
  declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime.JSX.Element;
104
108
  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;
106
-
107
- declare const buttonVariants: (props?: ({
108
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
109
- size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
110
- } & class_variance_authority_types.ClassProp) | undefined) => string;
111
- declare function Button({ className, variant, size, ...props }: Button$2.Props & VariantProps<typeof buttonVariants>): react_jsx_runtime.JSX.Element;
109
+ declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
112
110
 
113
111
  declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
114
- buttonVariant?: React$1.ComponentProps<typeof Button$1>["variant"];
112
+ buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
115
113
  }): react_jsx_runtime.JSX.Element;
116
114
  declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
117
115
 
@@ -131,8 +129,23 @@ declare function Collapsible({ ...props }: Collapsible$1.Root.Props): react_jsx_
131
129
  declare function CollapsibleTrigger({ ...props }: Collapsible$1.Trigger.Props): react_jsx_runtime.JSX.Element;
132
130
  declare function CollapsibleContent({ ...props }: Collapsible$1.Panel.Props): react_jsx_runtime.JSX.Element;
133
131
 
132
+ declare function Dialog({ ...props }: Dialog$1.Root.Props): react_jsx_runtime.JSX.Element;
133
+ declare function DialogTrigger({ ...props }: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
134
+ declare function DialogPortal({ ...props }: Dialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
135
+ declare function DialogClose({ ...props }: Dialog$1.Close.Props): react_jsx_runtime.JSX.Element;
136
+ declare function DialogOverlay({ className, ...props }: Dialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
137
+ declare function DialogContent({ className, children, showCloseButton, ...props }: Dialog$1.Popup.Props & {
138
+ showCloseButton?: boolean;
139
+ }): react_jsx_runtime.JSX.Element;
140
+ declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
141
+ declare function DialogFooter({ className, showCloseButton, children, ...props }: React$1.ComponentProps<"div"> & {
142
+ showCloseButton?: boolean;
143
+ }): react_jsx_runtime.JSX.Element;
144
+ declare function DialogTitle({ className, ...props }: Dialog$1.Title.Props): react_jsx_runtime.JSX.Element;
145
+ declare function DialogDescription({ className, ...props }: Dialog$1.Description.Props): react_jsx_runtime.JSX.Element;
146
+
134
147
  declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
135
- declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit<React$1.ComponentProps<typeof Dialog$1>, "children"> & {
148
+ declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit<React$1.ComponentProps<typeof Dialog>, "children"> & {
136
149
  title?: string;
137
150
  description?: string;
138
151
  className?: string;
@@ -170,20 +183,17 @@ declare function ContextMenuRadioItem({ className, children, ...props }: Context
170
183
  declare function ContextMenuSeparator({ className, ...props }: ContextMenu$1.Separator.Props): react_jsx_runtime.JSX.Element;
171
184
  declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
172
185
 
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;
186
+ declare const dataListVariants: (props?: ({
187
+ orientation?: "horizontal" | "vertical" | null | undefined;
188
+ size?: "default" | "sm" | "lg" | null | undefined;
189
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
190
+ declare function DataList({ className, orientation, size, render, ...props }: VariantProps<typeof dataListVariants> & useRender.ComponentProps<"dl">): react_jsx_runtime.JSX.Element;
191
+ interface DataListItemProps extends React.HTMLAttributes<HTMLDivElement> {
192
+ className?: string;
193
+ }
194
+ declare function DataListItem({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
195
+ declare function DataListLabel({ className, ...props }: ComponentProps<"dt">): react_jsx_runtime.JSX.Element;
196
+ declare function DataListValue({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
187
197
 
188
198
  declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
189
199
  declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
@@ -263,7 +273,7 @@ declare function InputGroupAddon({ className, align, ...props }: React$1.Compone
263
273
  declare const inputGroupButtonVariants: (props?: ({
264
274
  size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
265
275
  } & class_variance_authority_types.ClassProp) | undefined) => string;
266
- declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button$1>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
276
+ declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
267
277
  type?: "button" | "submit" | "reset";
268
278
  }): react_jsx_runtime.JSX.Element;
269
279
  declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
@@ -282,7 +292,7 @@ declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">):
282
292
  declare function Input({ className, type, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
283
293
 
284
294
  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;
295
+ declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator$2>): react_jsx_runtime.JSX.Element;
286
296
  declare const itemVariants: (props?: ({
287
297
  variant?: "default" | "outline" | "muted" | null | undefined;
288
298
  size?: "default" | "xs" | "sm" | null | undefined;
@@ -305,23 +315,23 @@ declare function KbdGroup({ className, ...props }: React.ComponentProps<"div">):
305
315
  declare function Label({ className, ...props }: React$1.ComponentProps<"label">): react_jsx_runtime.JSX.Element;
306
316
 
307
317
  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;
318
+ declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenu>): react_jsx_runtime.JSX.Element;
319
+ declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuGroup>): react_jsx_runtime.JSX.Element;
320
+ declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPortal>): react_jsx_runtime.JSX.Element;
321
+ declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuTrigger>): react_jsx_runtime.JSX.Element;
322
+ declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
323
+ declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuItem>): react_jsx_runtime.JSX.Element;
314
324
  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;
325
+ declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuRadioGroup>): react_jsx_runtime.JSX.Element;
316
326
  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> & {
327
+ declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuLabel>): react_jsx_runtime.JSX.Element;
328
+ declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSeparator>): react_jsx_runtime.JSX.Element;
329
+ declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuShortcut>): react_jsx_runtime.JSX.Element;
330
+ declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuSub>): react_jsx_runtime.JSX.Element;
331
+ declare function MenubarSubTrigger({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuSubTrigger> & {
322
332
  inset?: boolean;
323
333
  }): react_jsx_runtime.JSX.Element;
324
- declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSubContent$1>): react_jsx_runtime.JSX.Element;
334
+ declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSubContent>): react_jsx_runtime.JSX.Element;
325
335
 
326
336
  declare function NavigationMenu({ className, children, ...props }: NavigationMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
327
337
  declare function NavigationMenuList({ className, ...props }: NavigationMenu$1.List.Props): react_jsx_runtime.JSX.Element;
@@ -338,7 +348,7 @@ declare function PaginationContent({ className, ...props }: React$1.ComponentPro
338
348
  declare function PaginationItem({ ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
339
349
  type PaginationLinkProps = {
340
350
  isActive?: boolean;
341
- } & Pick<React$1.ComponentProps<typeof Button$1>, "size"> & React$1.ComponentProps<"a">;
351
+ } & Pick<React$1.ComponentProps<typeof Button>, "size"> & React$1.ComponentProps<"a">;
342
352
  declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
343
353
  declare function PaginationPrevious({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
344
354
  declare function PaginationNext({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
@@ -382,19 +392,22 @@ declare function SelectSeparator({ className, ...props }: Select$1.Separator.Pro
382
392
  declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
383
393
  declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
384
394
 
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 & {
395
+ declare function Sheet({ ...props }: Dialog$1.Root.Props): react_jsx_runtime.JSX.Element;
396
+ declare function SheetTrigger({ ...props }: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
397
+ declare function SheetClose({ ...props }: Dialog$1.Close.Props): react_jsx_runtime.JSX.Element;
398
+ declare function SheetContent({ className, children, side, showCloseButton, ...props }: Dialog$1.Popup.Props & {
391
399
  side?: "top" | "right" | "bottom" | "left";
392
400
  showCloseButton?: boolean;
393
401
  }): react_jsx_runtime.JSX.Element;
394
402
  declare function SheetHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
395
403
  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;
404
+ declare function SheetTitle({ className, ...props }: Dialog$1.Title.Props): react_jsx_runtime.JSX.Element;
405
+ declare function SheetDescription({ className, ...props }: Dialog$1.Description.Props): react_jsx_runtime.JSX.Element;
406
+
407
+ declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
408
+ declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
409
+ declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): react_jsx_runtime.JSX.Element;
410
+ 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;
398
411
 
399
412
  type SidebarContextProps = {
400
413
  state: "expanded" | "collapsed";
@@ -416,13 +429,13 @@ declare function Sidebar({ side, variant, collapsible, className, children, ...p
416
429
  variant?: "sidebar" | "floating" | "inset";
417
430
  collapsible?: "offExamples" | "icon" | "none";
418
431
  }): react_jsx_runtime.JSX.Element;
419
- declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button$1>): react_jsx_runtime.JSX.Element;
432
+ declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
420
433
  declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
421
434
  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;
435
+ declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
423
436
  declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
424
437
  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;
438
+ declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
426
439
  declare function SidebarContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
427
440
  declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
428
441
  declare function SidebarGroupLabel({ className, render, ...props }: useRender.ComponentProps<"div"> & React$1.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
@@ -436,7 +449,7 @@ declare const sidebarMenuButtonVariants: (props?: ({
436
449
  } & class_variance_authority_types.ClassProp) | undefined) => string;
437
450
  declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button"> & {
438
451
  isActive?: boolean;
439
- tooltip?: string | React$1.ComponentProps<typeof TooltipContent$1>;
452
+ tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
440
453
  } & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
441
454
  declare function SidebarMenuAction({ className, render, showOnHover, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button"> & {
442
455
  showOnHover?: boolean;
@@ -493,15 +506,11 @@ declare const toggleVariants: (props?: ({
493
506
  } & class_variance_authority_types.ClassProp) | undefined) => string;
494
507
  declare function Toggle({ className, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
495
508
 
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;
500
-
501
509
  declare function useIsMobile(): boolean;
502
510
 
503
511
  declare function cn(...inputs: ClassValue[]): string;
504
512
 
505
513
  declare const _default: {};
506
514
 
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 };
515
+ 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, DataList, DataListItem, DataListLabel, DataListValue, 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, dataListVariants, _default as default, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useIsMobile, useSidebar };
516
+ export type { DataListItemProps };