reykit 1.0.108 → 1.0.110
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.css +1 -1
- package/dist/index.js +35689 -19311
- package/dist/src/components/Table.d.ts +58 -0
- package/dist/src/components/index.d.ts +4 -7
- package/dist/src/components/ui/accordion.d.ts +6 -0
- package/dist/src/components/ui/alert-dialog.d.ts +18 -0
- package/dist/src/components/ui/alert.d.ts +10 -0
- package/dist/src/components/ui/aspect-ratio.d.ts +4 -0
- package/dist/src/components/ui/avatar.d.ts +11 -0
- package/dist/src/components/ui/badge.d.ts +7 -0
- package/dist/src/components/ui/breadcrumb.d.ts +10 -0
- package/dist/src/components/ui/button-group.d.ts +10 -0
- package/dist/src/components/ui/button.d.ts +8 -0
- package/dist/src/components/ui/calendar.d.ts +10 -0
- package/dist/src/components/ui/card.d.ts +11 -0
- package/dist/src/components/ui/carousel.d.ts +28 -0
- package/dist/src/components/ui/chart.d.ts +40 -0
- package/dist/src/components/ui/checkbox.d.ts +3 -0
- package/dist/src/components/ui/collapsible.d.ts +5 -0
- package/dist/src/components/ui/combobox.d.ts +24 -0
- package/dist/src/components/ui/command.d.ts +19 -0
- package/dist/src/components/ui/context-menu.d.ts +29 -0
- package/dist/src/components/ui/dialog.d.ts +17 -0
- package/dist/src/components/ui/direction.d.ts +1 -0
- package/dist/src/components/ui/drawer.d.ts +13 -0
- package/dist/src/components/ui/dropdown-menu.d.ts +29 -0
- package/dist/src/components/ui/empty.d.ts +11 -0
- package/dist/src/components/ui/field.d.ts +24 -0
- package/dist/src/components/ui/hover-card.d.ts +5 -0
- package/dist/src/components/ui/index.d.ts +309 -0
- package/dist/src/components/ui/input-group.d.ts +18 -0
- package/dist/src/components/ui/input-otp.d.ts +11 -0
- package/dist/src/components/ui/input.d.ts +3 -0
- package/dist/src/components/ui/item.d.ts +22 -0
- package/dist/src/components/ui/kbd.d.ts +3 -0
- package/dist/src/components/ui/label.d.ts +3 -0
- package/dist/src/components/ui/menubar.d.ts +29 -0
- package/dist/src/components/ui/native-select.d.ts +8 -0
- package/dist/src/components/ui/navigation-menu.d.ts +11 -0
- package/dist/src/components/ui/pagination.d.ts +17 -0
- package/dist/src/components/ui/popover.d.ts +9 -0
- package/dist/src/components/ui/progress.d.ts +7 -0
- package/dist/src/components/ui/radio-group.d.ts +5 -0
- package/dist/src/components/ui/resizable.d.ts +7 -0
- package/dist/src/components/ui/scroll-area.d.ts +4 -0
- package/dist/src/components/ui/select.d.ts +15 -0
- package/dist/src/components/ui/separator.d.ts +3 -0
- package/dist/src/components/ui/sheet.d.ts +14 -0
- package/dist/src/components/ui/skeleton.d.ts +2 -0
- package/dist/src/components/ui/slider.d.ts +3 -0
- package/dist/src/components/ui/sonner.d.ts +3 -0
- package/dist/src/components/ui/spinner.d.ts +2 -0
- package/dist/src/components/ui/switch.d.ts +5 -0
- package/dist/src/components/ui/table.d.ts +10 -0
- package/dist/src/components/ui/tabs.d.ts +10 -0
- package/dist/src/components/ui/textarea.d.ts +3 -0
- package/dist/src/components/ui/toggle-group.d.ts +10 -0
- package/dist/src/components/ui/toggle.d.ts +8 -0
- package/dist/src/components/ui/tooltip.d.ts +6 -0
- package/dist/src/data.d.ts +8 -1
- package/dist/src/net.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
import { Button } from './button';
|
|
2
|
+
import { Badge } from './badge';
|
|
3
|
+
import { Label } from './label';
|
|
4
|
+
import { Input } from './input';
|
|
5
|
+
import { Textarea } from './textarea';
|
|
6
|
+
import { Checkbox } from './checkbox';
|
|
7
|
+
import { RadioGroup, RadioGroupItem } from './radio-group';
|
|
8
|
+
import { Switch } from './switch';
|
|
9
|
+
import { Toggle } from './toggle';
|
|
10
|
+
import { Kbd } from './kbd';
|
|
11
|
+
import { Progress } from './progress';
|
|
12
|
+
import { Slider } from './slider';
|
|
13
|
+
import { Calendar } from './calendar';
|
|
14
|
+
import { Spinner } from './spinner';
|
|
15
|
+
import { Separator } from './separator';
|
|
16
|
+
import { Skeleton } from './skeleton';
|
|
17
|
+
import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea } from './input-group';
|
|
18
|
+
import { ButtonGroup, ButtonGroupSeparator, ButtonGroupText } from './button-group';
|
|
19
|
+
import { ToggleGroup, ToggleGroupItem } from './toggle-group';
|
|
20
|
+
import { SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue } from './select';
|
|
21
|
+
import { ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator } from './combobox';
|
|
22
|
+
import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from './dropdown-menu';
|
|
23
|
+
import { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot } from './input-otp';
|
|
24
|
+
import { Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage } from './avatar';
|
|
25
|
+
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from './collapsible';
|
|
26
|
+
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './accordion';
|
|
27
|
+
import { Alert, AlertDescription, AlertTitle } from './alert';
|
|
28
|
+
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from './card';
|
|
29
|
+
import { HoverCard, HoverCardContent, HoverCardTrigger } from './hover-card';
|
|
30
|
+
import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator } from './command';
|
|
31
|
+
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from './carousel';
|
|
32
|
+
import { Popover, PopoverContent, PopoverTrigger } from './popover';
|
|
33
|
+
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './tooltip';
|
|
34
|
+
import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogTitle, DialogTrigger } from './dialog';
|
|
35
|
+
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogTitle, AlertDialogTrigger } from './alert-dialog';
|
|
36
|
+
import { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from './sheet';
|
|
37
|
+
import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerTitle, DrawerTrigger } from './drawer';
|
|
38
|
+
import { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from './table';
|
|
39
|
+
import { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from './menubar';
|
|
40
|
+
import { NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger } from './navigation-menu';
|
|
41
|
+
import { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator } from './breadcrumb';
|
|
42
|
+
import { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from './pagination';
|
|
43
|
+
import { Tabs, TabsContent, TabsList, TabsTrigger } from './tabs';
|
|
44
|
+
import { ScrollArea, ScrollBar } from './scroll-area';
|
|
45
|
+
import { AspectRatio } from './aspect-ratio';
|
|
46
|
+
import { ResizableHandle, ResizablePanel, ResizablePanelGroup } from './resizable';
|
|
47
|
+
import { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from './context-menu';
|
|
48
|
+
import { Item, ItemActions, ItemContent, ItemDescription, ItemGroup, ItemMedia, ItemSeparator, ItemTitle } from './item';
|
|
49
|
+
import { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from './field';
|
|
50
|
+
import { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from './empty';
|
|
51
|
+
/**
|
|
52
|
+
* Hook of return popup box component dictionary by media inquiries.
|
|
53
|
+
*
|
|
54
|
+
* @returns Popup box component dictionary.
|
|
55
|
+
*/
|
|
56
|
+
declare function usePopupBox(): {
|
|
57
|
+
PopupBox: typeof Popover;
|
|
58
|
+
PopupBoxTrigger: typeof PopoverTrigger;
|
|
59
|
+
PopupBoxContent: typeof PopoverContent;
|
|
60
|
+
} | {
|
|
61
|
+
PopupBox: typeof HoverCard;
|
|
62
|
+
PopupBoxTrigger: typeof HoverCardTrigger;
|
|
63
|
+
PopupBoxContent: typeof HoverCardContent;
|
|
64
|
+
};
|
|
65
|
+
declare const _default: {
|
|
66
|
+
icon: Record<string, import('react').ComponentType<any>>;
|
|
67
|
+
Link: import('react').ForwardRefExoticComponent<import('react-router-dom').LinkProps & import('react').RefAttributes<HTMLAnchorElement>>;
|
|
68
|
+
Button: typeof Button;
|
|
69
|
+
Badge: typeof Badge;
|
|
70
|
+
Label: typeof Label;
|
|
71
|
+
Input: typeof Input;
|
|
72
|
+
Textarea: typeof Textarea;
|
|
73
|
+
Checkbox: typeof Checkbox;
|
|
74
|
+
RadioGroup: typeof RadioGroup;
|
|
75
|
+
RadioGroupItem: typeof RadioGroupItem;
|
|
76
|
+
Switch: typeof Switch;
|
|
77
|
+
Toggle: typeof Toggle;
|
|
78
|
+
Kbd: typeof Kbd;
|
|
79
|
+
Progress: typeof Progress;
|
|
80
|
+
Slider: typeof Slider;
|
|
81
|
+
Calendar: typeof Calendar;
|
|
82
|
+
Spinner: typeof Spinner;
|
|
83
|
+
Separator: typeof Separator;
|
|
84
|
+
Skeleton: typeof Skeleton;
|
|
85
|
+
InputGroup: typeof InputGroup;
|
|
86
|
+
InputGroupAddon: typeof InputGroupAddon;
|
|
87
|
+
InputGroupButton: typeof InputGroupButton;
|
|
88
|
+
InputGroupInput: typeof InputGroupInput;
|
|
89
|
+
InputGroupText: typeof InputGroupText;
|
|
90
|
+
InputGroupTextarea: typeof InputGroupTextarea;
|
|
91
|
+
ButtonGroup: typeof ButtonGroup;
|
|
92
|
+
ButtonGroupSeparator: typeof ButtonGroupSeparator;
|
|
93
|
+
ButtonGroupText: typeof ButtonGroupText;
|
|
94
|
+
ToggleGroup: typeof ToggleGroup;
|
|
95
|
+
ToggleGroupItem: typeof ToggleGroupItem;
|
|
96
|
+
Select: typeof import('@base-ui/react').SelectRoot;
|
|
97
|
+
SelectContent: typeof SelectContent;
|
|
98
|
+
SelectGroup: typeof SelectGroup;
|
|
99
|
+
SelectItem: typeof SelectItem;
|
|
100
|
+
SelectLabel: typeof SelectLabel;
|
|
101
|
+
SelectSeparator: typeof SelectSeparator;
|
|
102
|
+
SelectTrigger: typeof SelectTrigger;
|
|
103
|
+
SelectValue: typeof SelectValue;
|
|
104
|
+
Combobox: typeof import('@base-ui/react').ComboboxRoot;
|
|
105
|
+
ComboboxChip: typeof ComboboxChip;
|
|
106
|
+
ComboboxChips: typeof ComboboxChips;
|
|
107
|
+
ComboboxChipsInput: typeof ComboboxChipsInput;
|
|
108
|
+
ComboboxCollection: typeof ComboboxCollection;
|
|
109
|
+
ComboboxContent: typeof ComboboxContent;
|
|
110
|
+
ComboboxEmpty: typeof ComboboxEmpty;
|
|
111
|
+
ComboboxGroup: typeof ComboboxGroup;
|
|
112
|
+
ComboboxInput: typeof ComboboxInput;
|
|
113
|
+
ComboboxItem: typeof ComboboxItem;
|
|
114
|
+
ComboboxLabel: typeof ComboboxLabel;
|
|
115
|
+
ComboboxList: typeof ComboboxList;
|
|
116
|
+
ComboboxSeparator: typeof ComboboxSeparator;
|
|
117
|
+
DropdownMenu: typeof DropdownMenu;
|
|
118
|
+
DropdownMenuCheckboxItem: typeof DropdownMenuCheckboxItem;
|
|
119
|
+
DropdownMenuContent: typeof DropdownMenuContent;
|
|
120
|
+
DropdownMenuGroup: typeof DropdownMenuGroup;
|
|
121
|
+
DropdownMenuItem: typeof DropdownMenuItem;
|
|
122
|
+
DropdownMenuLabel: typeof DropdownMenuLabel;
|
|
123
|
+
DropdownMenuPortal: typeof DropdownMenuPortal;
|
|
124
|
+
DropdownMenuRadioGroup: typeof DropdownMenuRadioGroup;
|
|
125
|
+
DropdownMenuRadioItem: typeof DropdownMenuRadioItem;
|
|
126
|
+
DropdownMenuSeparator: typeof DropdownMenuSeparator;
|
|
127
|
+
DropdownMenuSub: typeof DropdownMenuSub;
|
|
128
|
+
DropdownMenuSubContent: typeof DropdownMenuSubContent;
|
|
129
|
+
DropdownMenuSubTrigger: typeof DropdownMenuSubTrigger;
|
|
130
|
+
DropdownMenuTrigger: typeof DropdownMenuTrigger;
|
|
131
|
+
InputOTP: typeof InputOTP;
|
|
132
|
+
InputOTPGroup: typeof InputOTPGroup;
|
|
133
|
+
InputOTPSeparator: typeof InputOTPSeparator;
|
|
134
|
+
InputOTPSlot: typeof InputOTPSlot;
|
|
135
|
+
Avatar: typeof Avatar;
|
|
136
|
+
AvatarBadge: typeof AvatarBadge;
|
|
137
|
+
AvatarFallback: typeof AvatarFallback;
|
|
138
|
+
AvatarGroup: typeof AvatarGroup;
|
|
139
|
+
AvatarGroupCount: typeof AvatarGroupCount;
|
|
140
|
+
AvatarImage: typeof AvatarImage;
|
|
141
|
+
Collapsible: typeof Collapsible;
|
|
142
|
+
CollapsibleContent: typeof CollapsibleContent;
|
|
143
|
+
CollapsibleTrigger: typeof CollapsibleTrigger;
|
|
144
|
+
Accordion: typeof Accordion;
|
|
145
|
+
AccordionContent: typeof AccordionContent;
|
|
146
|
+
AccordionItem: typeof AccordionItem;
|
|
147
|
+
AccordionTrigger: typeof AccordionTrigger;
|
|
148
|
+
Alert: typeof Alert;
|
|
149
|
+
AlertDescription: typeof AlertDescription;
|
|
150
|
+
AlertTitle: typeof AlertTitle;
|
|
151
|
+
Card: typeof Card;
|
|
152
|
+
CardContent: typeof CardContent;
|
|
153
|
+
CardDescription: typeof CardDescription;
|
|
154
|
+
CardFooter: typeof CardFooter;
|
|
155
|
+
CardHeader: typeof CardHeader;
|
|
156
|
+
CardTitle: typeof CardTitle;
|
|
157
|
+
HoverCard: typeof HoverCard;
|
|
158
|
+
HoverCardContent: typeof HoverCardContent;
|
|
159
|
+
HoverCardTrigger: typeof HoverCardTrigger;
|
|
160
|
+
Command: typeof Command;
|
|
161
|
+
CommandDialog: typeof CommandDialog;
|
|
162
|
+
CommandEmpty: typeof CommandEmpty;
|
|
163
|
+
CommandGroup: typeof CommandGroup;
|
|
164
|
+
CommandInput: typeof CommandInput;
|
|
165
|
+
CommandItem: typeof CommandItem;
|
|
166
|
+
CommandList: typeof CommandList;
|
|
167
|
+
CommandSeparator: typeof CommandSeparator;
|
|
168
|
+
Carousel: typeof Carousel;
|
|
169
|
+
CarouselContent: typeof CarouselContent;
|
|
170
|
+
CarouselItem: typeof CarouselItem;
|
|
171
|
+
CarouselNext: typeof CarouselNext;
|
|
172
|
+
CarouselPrevious: typeof CarouselPrevious;
|
|
173
|
+
Popover: typeof Popover;
|
|
174
|
+
PopoverContent: typeof PopoverContent;
|
|
175
|
+
PopoverTrigger: typeof PopoverTrigger;
|
|
176
|
+
Tooltip: typeof Tooltip;
|
|
177
|
+
TooltipContent: typeof TooltipContent;
|
|
178
|
+
TooltipProvider: typeof TooltipProvider;
|
|
179
|
+
TooltipTrigger: typeof TooltipTrigger;
|
|
180
|
+
Dialog: typeof Dialog;
|
|
181
|
+
DialogClose: typeof DialogClose;
|
|
182
|
+
DialogContent: typeof DialogContent;
|
|
183
|
+
DialogDescription: typeof DialogDescription;
|
|
184
|
+
DialogFooter: typeof DialogFooter;
|
|
185
|
+
DialogHeader: typeof DialogHeader;
|
|
186
|
+
DialogOverlay: typeof DialogOverlay;
|
|
187
|
+
DialogTitle: typeof DialogTitle;
|
|
188
|
+
DialogTrigger: typeof DialogTrigger;
|
|
189
|
+
AlertDialog: typeof AlertDialog;
|
|
190
|
+
AlertDialogAction: typeof AlertDialogAction;
|
|
191
|
+
AlertDialogCancel: typeof AlertDialogCancel;
|
|
192
|
+
AlertDialogContent: typeof AlertDialogContent;
|
|
193
|
+
AlertDialogDescription: typeof AlertDialogDescription;
|
|
194
|
+
AlertDialogFooter: typeof AlertDialogFooter;
|
|
195
|
+
AlertDialogHeader: typeof AlertDialogHeader;
|
|
196
|
+
AlertDialogOverlay: typeof AlertDialogOverlay;
|
|
197
|
+
AlertDialogTitle: typeof AlertDialogTitle;
|
|
198
|
+
AlertDialogTrigger: typeof AlertDialogTrigger;
|
|
199
|
+
Sheet: typeof Sheet;
|
|
200
|
+
SheetClose: typeof SheetClose;
|
|
201
|
+
SheetContent: typeof SheetContent;
|
|
202
|
+
SheetDescription: typeof SheetDescription;
|
|
203
|
+
SheetFooter: typeof SheetFooter;
|
|
204
|
+
SheetHeader: typeof SheetHeader;
|
|
205
|
+
SheetTitle: typeof SheetTitle;
|
|
206
|
+
SheetTrigger: typeof SheetTrigger;
|
|
207
|
+
Drawer: typeof Drawer;
|
|
208
|
+
DrawerClose: typeof DrawerClose;
|
|
209
|
+
DrawerContent: typeof DrawerContent;
|
|
210
|
+
DrawerDescription: typeof DrawerDescription;
|
|
211
|
+
DrawerFooter: typeof DrawerFooter;
|
|
212
|
+
DrawerHeader: typeof DrawerHeader;
|
|
213
|
+
DrawerOverlay: typeof DrawerOverlay;
|
|
214
|
+
DrawerTitle: typeof DrawerTitle;
|
|
215
|
+
DrawerTrigger: typeof DrawerTrigger;
|
|
216
|
+
Table: typeof Table;
|
|
217
|
+
TableBody: typeof TableBody;
|
|
218
|
+
TableCaption: typeof TableCaption;
|
|
219
|
+
TableCell: typeof TableCell;
|
|
220
|
+
TableFooter: typeof TableFooter;
|
|
221
|
+
TableHead: typeof TableHead;
|
|
222
|
+
TableHeader: typeof TableHeader;
|
|
223
|
+
TableRow: typeof TableRow;
|
|
224
|
+
Toaster: ({ ...props }: import('sonner').ToasterProps) => import("react/jsx-runtime").JSX.Element;
|
|
225
|
+
Menubar: typeof Menubar;
|
|
226
|
+
MenubarCheckboxItem: typeof MenubarCheckboxItem;
|
|
227
|
+
MenubarContent: typeof MenubarContent;
|
|
228
|
+
MenubarGroup: typeof MenubarGroup;
|
|
229
|
+
MenubarItem: typeof MenubarItem;
|
|
230
|
+
MenubarLabel: typeof MenubarLabel;
|
|
231
|
+
MenubarMenu: typeof MenubarMenu;
|
|
232
|
+
MenubarPortal: typeof MenubarPortal;
|
|
233
|
+
MenubarRadioGroup: typeof MenubarRadioGroup;
|
|
234
|
+
MenubarRadioItem: typeof MenubarRadioItem;
|
|
235
|
+
MenubarSeparator: typeof MenubarSeparator;
|
|
236
|
+
MenubarSub: typeof MenubarSub;
|
|
237
|
+
MenubarSubContent: typeof MenubarSubContent;
|
|
238
|
+
MenubarSubTrigger: typeof MenubarSubTrigger;
|
|
239
|
+
MenubarTrigger: typeof MenubarTrigger;
|
|
240
|
+
NavigationMenu: typeof NavigationMenu;
|
|
241
|
+
NavigationMenuContent: typeof NavigationMenuContent;
|
|
242
|
+
NavigationMenuItem: typeof NavigationMenuItem;
|
|
243
|
+
NavigationMenuLink: typeof NavigationMenuLink;
|
|
244
|
+
NavigationMenuList: typeof NavigationMenuList;
|
|
245
|
+
NavigationMenuTrigger: typeof NavigationMenuTrigger;
|
|
246
|
+
Breadcrumb: typeof Breadcrumb;
|
|
247
|
+
BreadcrumbEllipsis: typeof BreadcrumbEllipsis;
|
|
248
|
+
BreadcrumbItem: typeof BreadcrumbItem;
|
|
249
|
+
BreadcrumbLink: typeof BreadcrumbLink;
|
|
250
|
+
BreadcrumbList: typeof BreadcrumbList;
|
|
251
|
+
BreadcrumbPage: typeof BreadcrumbPage;
|
|
252
|
+
BreadcrumbSeparator: typeof BreadcrumbSeparator;
|
|
253
|
+
Pagination: typeof Pagination;
|
|
254
|
+
PaginationContent: typeof PaginationContent;
|
|
255
|
+
PaginationEllipsis: typeof PaginationEllipsis;
|
|
256
|
+
PaginationItem: typeof PaginationItem;
|
|
257
|
+
PaginationLink: typeof PaginationLink;
|
|
258
|
+
PaginationNext: typeof PaginationNext;
|
|
259
|
+
PaginationPrevious: typeof PaginationPrevious;
|
|
260
|
+
Tabs: typeof Tabs;
|
|
261
|
+
TabsContent: typeof TabsContent;
|
|
262
|
+
TabsList: typeof TabsList;
|
|
263
|
+
TabsTrigger: typeof TabsTrigger;
|
|
264
|
+
ScrollArea: typeof ScrollArea;
|
|
265
|
+
ScrollBar: typeof ScrollBar;
|
|
266
|
+
AspectRatio: typeof AspectRatio;
|
|
267
|
+
ResizableHandle: typeof ResizableHandle;
|
|
268
|
+
ResizablePanel: typeof ResizablePanel;
|
|
269
|
+
ResizablePanelGroup: typeof ResizablePanelGroup;
|
|
270
|
+
ContextMenu: typeof ContextMenu;
|
|
271
|
+
ContextMenuCheckboxItem: typeof ContextMenuCheckboxItem;
|
|
272
|
+
ContextMenuContent: typeof ContextMenuContent;
|
|
273
|
+
ContextMenuGroup: typeof ContextMenuGroup;
|
|
274
|
+
ContextMenuItem: typeof ContextMenuItem;
|
|
275
|
+
ContextMenuLabel: typeof ContextMenuLabel;
|
|
276
|
+
ContextMenuRadioGroup: typeof ContextMenuRadioGroup;
|
|
277
|
+
ContextMenuRadioItem: typeof ContextMenuRadioItem;
|
|
278
|
+
ContextMenuSeparator: typeof ContextMenuSeparator;
|
|
279
|
+
ContextMenuSub: typeof ContextMenuSub;
|
|
280
|
+
ContextMenuSubContent: typeof ContextMenuSubContent;
|
|
281
|
+
ContextMenuSubTrigger: typeof ContextMenuSubTrigger;
|
|
282
|
+
ContextMenuTrigger: typeof ContextMenuTrigger;
|
|
283
|
+
Item: typeof Item;
|
|
284
|
+
ItemActions: typeof ItemActions;
|
|
285
|
+
ItemContent: typeof ItemContent;
|
|
286
|
+
ItemDescription: typeof ItemDescription;
|
|
287
|
+
ItemGroup: typeof ItemGroup;
|
|
288
|
+
ItemMedia: typeof ItemMedia;
|
|
289
|
+
ItemSeparator: typeof ItemSeparator;
|
|
290
|
+
ItemTitle: typeof ItemTitle;
|
|
291
|
+
Field: typeof Field;
|
|
292
|
+
FieldContent: typeof FieldContent;
|
|
293
|
+
FieldDescription: typeof FieldDescription;
|
|
294
|
+
FieldError: typeof FieldError;
|
|
295
|
+
FieldGroup: typeof FieldGroup;
|
|
296
|
+
FieldLabel: typeof FieldLabel;
|
|
297
|
+
FieldLegend: typeof FieldLegend;
|
|
298
|
+
FieldSeparator: typeof FieldSeparator;
|
|
299
|
+
FieldSet: typeof FieldSet;
|
|
300
|
+
FieldTitle: typeof FieldTitle;
|
|
301
|
+
Empty: typeof Empty;
|
|
302
|
+
EmptyContent: typeof EmptyContent;
|
|
303
|
+
EmptyDescription: typeof EmptyDescription;
|
|
304
|
+
EmptyHeader: typeof EmptyHeader;
|
|
305
|
+
EmptyMedia: typeof EmptyMedia;
|
|
306
|
+
EmptyTitle: typeof EmptyTitle;
|
|
307
|
+
usePopupBox: typeof usePopupBox;
|
|
308
|
+
};
|
|
309
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { Button } from '../../../components/ui/button';
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
declare function InputGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const inputGroupAddonVariants: (props?: ({
|
|
6
|
+
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
7
|
+
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
8
|
+
declare function InputGroupAddon({ className, align, ...props }: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare const inputGroupButtonVariants: (props?: ({
|
|
10
|
+
size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
|
|
11
|
+
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
12
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React.ComponentProps<typeof Button>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
|
|
13
|
+
type?: "button" | "submit" | "reset";
|
|
14
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
declare function InputGroupText({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare function InputGroupInput({ className, ...props }: React.ComponentProps<"input">): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare function InputGroupTextarea({ className, ...props }: React.ComponentProps<"textarea">): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea, };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OTPInput } from 'input-otp';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps<typeof OTPInput> & {
|
|
4
|
+
containerClassName?: string;
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & {
|
|
8
|
+
index: number;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { useRender } from '@base-ui/react/use-render';
|
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
|
3
|
+
import { Separator } from '../../../components/ui/separator';
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
declare function ItemGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function ItemSeparator({ className, ...props }: React.ComponentProps<typeof Separator>): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare const itemVariants: (props?: ({
|
|
8
|
+
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
9
|
+
size?: "default" | "xs" | "sm" | null | undefined;
|
|
10
|
+
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
11
|
+
declare function Item({ className, variant, size, render, ...props }: useRender.ComponentProps<"div"> & VariantProps<typeof itemVariants>): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
|
|
12
|
+
declare const itemMediaVariants: (props?: ({
|
|
13
|
+
variant?: "default" | "icon" | "image" | null | undefined;
|
|
14
|
+
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
15
|
+
declare function ItemMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare function ItemContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare function ItemTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
declare function ItemDescription({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
declare function ItemActions({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
declare function ItemHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
declare function ItemFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export { Item, ItemMedia, ItemContent, ItemActions, ItemGroup, ItemSeparator, ItemTitle, ItemDescription, ItemHeader, ItemFooter, };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Menu as MenuPrimitive } from '@base-ui/react/menu';
|
|
2
|
+
import { Menubar as MenubarPrimitive } from '@base-ui/react/menubar';
|
|
3
|
+
import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../../components/ui/dropdown-menu';
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
declare function Menubar({ className, ...props }: MenubarPrimitive.Props): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function MenubarMenu({ ...props }: React.ComponentProps<typeof DropdownMenu>): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function MenubarGroup({ ...props }: React.ComponentProps<typeof DropdownMenuGroup>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function MenubarPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPortal>): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function MenubarTrigger({ className, ...props }: React.ComponentProps<typeof DropdownMenuTrigger>): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuContent>): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare function MenubarItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenuItem>): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare function MenubarCheckboxItem({ className, children, checked, inset, ...props }: MenuPrimitive.CheckboxItem.Props & {
|
|
13
|
+
inset?: boolean;
|
|
14
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
declare function MenubarRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuRadioGroup>): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare function MenubarRadioItem({ className, children, inset, ...props }: MenuPrimitive.RadioItem.Props & {
|
|
17
|
+
inset?: boolean;
|
|
18
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
declare function MenubarLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuLabel> & {
|
|
20
|
+
inset?: boolean;
|
|
21
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
declare function MenubarSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenuSeparator>): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
declare function MenubarShortcut({ className, ...props }: React.ComponentProps<typeof DropdownMenuShortcut>): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
declare function MenubarSub({ ...props }: React.ComponentProps<typeof DropdownMenuSub>): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
declare function MenubarSubTrigger({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuSubTrigger> & {
|
|
26
|
+
inset?: boolean;
|
|
27
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
declare function MenubarSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuSubContent>): import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
export { Menubar, MenubarPortal, MenubarMenu, MenubarTrigger, MenubarContent, MenubarGroup, MenubarSeparator, MenubarLabel, MenubarItem, MenubarShortcut, MenubarCheckboxItem, MenubarRadioGroup, MenubarRadioItem, MenubarSub, MenubarSubTrigger, MenubarSubContent, };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
type NativeSelectProps = Omit<React.ComponentProps<"select">, "size"> & {
|
|
3
|
+
size?: "sm" | "default";
|
|
4
|
+
};
|
|
5
|
+
declare function NativeSelect({ className, size, ...props }: NativeSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function NativeSelectOption({ ...props }: React.ComponentProps<"option">): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function NativeSelectOptGroup({ className, ...props }: React.ComponentProps<"optgroup">): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export { NativeSelect, NativeSelectOptGroup, NativeSelectOption };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { NavigationMenu as NavigationMenuPrimitive } from '@base-ui/react/navigation-menu';
|
|
2
|
+
declare function NavigationMenu({ align, className, children, ...props }: NavigationMenuPrimitive.Root.Props & Pick<NavigationMenuPrimitive.Positioner.Props, "align">): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function NavigationMenuList({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenuPrimitive.List>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function NavigationMenuItem({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenuPrimitive.Item>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const navigationMenuTriggerStyle: (props?: import('class-variance-authority/dist/types').ClassProp | undefined) => string;
|
|
6
|
+
declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenuPrimitive.Trigger.Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function NavigationMenuContent({ className, ...props }: NavigationMenuPrimitive.Content.Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function NavigationMenuPositioner({ className, side, sideOffset, align, alignOffset, ...props }: NavigationMenuPrimitive.Positioner.Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function NavigationMenuLink({ className, ...props }: NavigationMenuPrimitive.Link.Props): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function NavigationMenuIndicator({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenuPrimitive.Icon>): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, navigationMenuTriggerStyle, NavigationMenuPositioner, };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Button } from '../../../components/ui/button';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare function Pagination({ className, ...props }: React.ComponentProps<"nav">): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function PaginationContent({ className, ...props }: React.ComponentProps<"ul">): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function PaginationItem({ ...props }: React.ComponentProps<"li">): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
type PaginationLinkProps = {
|
|
7
|
+
isActive?: boolean;
|
|
8
|
+
} & Pick<React.ComponentProps<typeof Button>, "size"> & React.ComponentProps<"a">;
|
|
9
|
+
declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function PaginationPrevious({ className, text, ...props }: React.ComponentProps<typeof PaginationLink> & {
|
|
11
|
+
text?: string;
|
|
12
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare function PaginationNext({ className, text, ...props }: React.ComponentProps<typeof PaginationLink> & {
|
|
14
|
+
text?: string;
|
|
15
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare function PaginationEllipsis({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Popover as PopoverPrimitive } from '@base-ui/react/popover';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare function Popover({ ...props }: PopoverPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function PopoverTrigger({ ...props }: PopoverPrimitive.Trigger.Props): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function PopoverContent({ className, align, alignOffset, side, sideOffset, ...props }: PopoverPrimitive.Popup.Props & Pick<PopoverPrimitive.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function PopoverHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function PopoverTitle({ className, ...props }: PopoverPrimitive.Title.Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function PopoverDescription({ className, ...props }: PopoverPrimitive.Description.Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export { Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Progress as ProgressPrimitive } from '@base-ui/react/progress';
|
|
2
|
+
declare function Progress({ className, children, value, ...props }: ProgressPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function ProgressTrack({ className, ...props }: ProgressPrimitive.Track.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function ProgressIndicator({ className, ...props }: ProgressPrimitive.Indicator.Props): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function ProgressLabel({ className, ...props }: ProgressPrimitive.Label.Props): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function ProgressValue({ className, ...props }: ProgressPrimitive.Value.Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { Progress, ProgressTrack, ProgressIndicator, ProgressLabel, ProgressValue, };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Radio as RadioPrimitive } from '@base-ui/react/radio';
|
|
2
|
+
import { RadioGroup as RadioGroupPrimitive } from '@base-ui/react/radio-group';
|
|
3
|
+
declare function RadioGroup({ className, ...props }: RadioGroupPrimitive.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function RadioGroupItem({ className, ...props }: RadioPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export { RadioGroup, RadioGroupItem };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as ResizablePrimitive from "react-resizable-panels";
|
|
2
|
+
declare function ResizablePanelGroup({ className, ...props }: ResizablePrimitive.GroupProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function ResizablePanel({ ...props }: ResizablePrimitive.PanelProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function ResizableHandle({ withHandle, className, ...props }: ResizablePrimitive.SeparatorProps & {
|
|
5
|
+
withHandle?: boolean;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ScrollArea as ScrollAreaPrimitive } from '@base-ui/react/scroll-area';
|
|
2
|
+
declare function ScrollArea({ className, children, ...props }: ScrollAreaPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function ScrollBar({ className, orientation, ...props }: ScrollAreaPrimitive.Scrollbar.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export { ScrollArea, ScrollBar };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Select as SelectPrimitive } from '@base-ui/react/select';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare const Select: typeof SelectPrimitive.Root;
|
|
4
|
+
declare function SelectGroup({ className, ...props }: SelectPrimitive.Group.Props): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function SelectValue({ className, ...props }: SelectPrimitive.Value.Props): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function SelectTrigger({ className, size, children, ...props }: SelectPrimitive.Trigger.Props & {
|
|
7
|
+
size?: "sm" | "default";
|
|
8
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, ...props }: SelectPrimitive.Popup.Props & Pick<SelectPrimitive.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset" | "alignItemWithTrigger">): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function SelectLabel({ className, ...props }: SelectPrimitive.GroupLabel.Props): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare function SelectItem({ className, children, ...props }: SelectPrimitive.Item.Props): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare function SelectSeparator({ className, ...props }: SelectPrimitive.Separator.Props): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare function SelectScrollUpButton({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollUpArrow>): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
declare function SelectScrollDownButton({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollDownArrow>): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Dialog as SheetPrimitive } from '@base-ui/react/dialog';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare function Sheet({ ...props }: SheetPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function SheetTrigger({ ...props }: SheetPrimitive.Trigger.Props): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function SheetClose({ ...props }: SheetPrimitive.Close.Props): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function SheetContent({ className, children, side, showCloseButton, ...props }: SheetPrimitive.Popup.Props & {
|
|
7
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
8
|
+
showCloseButton?: boolean;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare function SheetFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare function SheetTitle({ className, ...props }: SheetPrimitive.Title.Props): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare function SheetDescription({ className, ...props }: SheetPrimitive.Description.Props): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
declare function Table({ className, ...props }: React.ComponentProps<"table">): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function TableHeader({ className, ...props }: React.ComponentProps<"thead">): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function TableBody({ className, ...props }: React.ComponentProps<"tbody">): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function TableRow({ className, ...props }: React.ComponentProps<"tr">): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function TableHead({ className, ...props }: React.ComponentProps<"th">): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function TableCell({ className, ...props }: React.ComponentProps<"td">): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function TableCaption({ className, ...props }: React.ComponentProps<"caption">): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Tabs as TabsPrimitive } from '@base-ui/react/tabs';
|
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
|
3
|
+
declare function Tabs({ className, orientation, ...props }: TabsPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare const tabsListVariants: (props?: ({
|
|
5
|
+
variant?: "default" | "line" | null | undefined;
|
|
6
|
+
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
7
|
+
declare function TabsList({ className, variant, ...props }: TabsPrimitive.List.Props & VariantProps<typeof tabsListVariants>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function TabsTrigger({ className, ...props }: TabsPrimitive.Tab.Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function TabsContent({ className, ...props }: TabsPrimitive.Panel.Props): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Toggle as TogglePrimitive } from '@base-ui/react/toggle';
|
|
2
|
+
import { ToggleGroup as ToggleGroupPrimitive } from '@base-ui/react/toggle-group';
|
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
|
4
|
+
import { toggleVariants } from '../../../components/ui/toggle';
|
|
5
|
+
declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: ToggleGroupPrimitive.Props & VariantProps<typeof toggleVariants> & {
|
|
6
|
+
spacing?: number;
|
|
7
|
+
orientation?: "horizontal" | "vertical";
|
|
8
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: TogglePrimitive.Props & VariantProps<typeof toggleVariants>): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export { ToggleGroup, ToggleGroupItem };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Toggle as TogglePrimitive } from '@base-ui/react/toggle';
|
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
|
3
|
+
declare const toggleVariants: (props?: ({
|
|
4
|
+
variant?: "default" | "outline" | null | undefined;
|
|
5
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
6
|
+
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
7
|
+
declare function Toggle({ className, variant, size, ...props }: TogglePrimitive.Props & VariantProps<typeof toggleVariants>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export { Toggle, toggleVariants };
|