@gv-tech/ui-native 2.23.3 → 2.25.0
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/__contracts.d.ts +2 -0
- package/dist/__contracts.d.ts.map +1 -0
- package/dist/accordion.d.ts +4 -4
- package/dist/accordion.d.ts.map +1 -1
- package/dist/alert-dialog.d.ts +6 -6
- package/dist/alert-dialog.d.ts.map +1 -1
- package/dist/avatar.d.ts +3 -3
- package/dist/avatar.d.ts.map +1 -1
- package/dist/button.d.ts +2 -2
- package/dist/button.d.ts.map +1 -1
- package/dist/calendar.d.ts +111 -1
- package/dist/calendar.d.ts.map +1 -1
- package/dist/combobox.d.ts +17 -10
- package/dist/combobox.d.ts.map +1 -1
- package/dist/dialog.d.ts +4 -4
- package/dist/dialog.d.ts.map +1 -1
- package/dist/drawer.d.ts +1 -1
- package/dist/drawer.d.ts.map +1 -1
- package/dist/form.d.ts +3 -1
- package/dist/form.d.ts.map +1 -1
- package/dist/hooks/use-theme.d.ts +1 -1
- package/dist/sheet.d.ts +4 -4
- package/dist/sheet.d.ts.map +1 -1
- package/dist/theme-toggle.d.ts.map +1 -1
- package/dist/tooltip.d.ts +1 -1
- package/dist/tooltip.d.ts.map +1 -1
- package/dist/ui-native.cjs +2 -2
- package/dist/ui-native.esm.js +1086 -945
- package/package.json +2 -1
- package/src/__contracts.ts +880 -0
- package/src/accordion.tsx +10 -10
- package/src/alert-dialog.tsx +12 -12
- package/src/alert.tsx +3 -3
- package/src/avatar.tsx +6 -6
- package/src/button.tsx +5 -1
- package/src/calendar.tsx +52 -3
- package/src/card.tsx +6 -6
- package/src/carousel.tsx +2 -2
- package/src/checkbox.tsx +1 -1
- package/src/combobox.tsx +190 -27
- package/src/context-menu.tsx +9 -9
- package/src/dialog.tsx +76 -29
- package/src/drawer.tsx +12 -12
- package/src/dropdown-menu.tsx +11 -11
- package/src/form.tsx +6 -6
- package/src/hover-card.tsx +1 -1
- package/src/input.tsx +1 -1
- package/src/label.tsx +1 -1
- package/src/menubar.tsx +17 -17
- package/src/navigation-menu.tsx +8 -8
- package/src/popover.tsx +4 -4
- package/src/progress.tsx +1 -1
- package/src/radio-group.tsx +2 -2
- package/src/search.tsx +1 -1
- package/src/select.tsx +7 -7
- package/src/separator.tsx +1 -1
- package/src/sheet.tsx +4 -4
- package/src/switch.tsx +1 -1
- package/src/table.tsx +8 -8
- package/src/tabs.tsx +4 -4
- package/src/text.tsx +1 -1
- package/src/textarea.tsx +1 -1
- package/src/theme-toggle.tsx +16 -13
- package/src/toast.tsx +5 -5
- package/src/toggle-group.tsx +2 -2
- package/src/toggle.tsx +1 -1
- package/src/tooltip.tsx +2 -2
|
@@ -0,0 +1,880 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
// These components and their base props are imported to verify that
|
|
4
|
+
// the platform-specific implementations correctly satisfy the ui-core contracts.
|
|
5
|
+
import {
|
|
6
|
+
Accordion,
|
|
7
|
+
AccordionContent,
|
|
8
|
+
AccordionItem,
|
|
9
|
+
AccordionTrigger,
|
|
10
|
+
Alert,
|
|
11
|
+
AlertDescription,
|
|
12
|
+
AlertDialog,
|
|
13
|
+
AlertDialogAction,
|
|
14
|
+
AlertDialogCancel,
|
|
15
|
+
AlertDialogContent,
|
|
16
|
+
AlertDialogDescription,
|
|
17
|
+
AlertDialogFooter,
|
|
18
|
+
AlertDialogHeader,
|
|
19
|
+
AlertDialogTitle,
|
|
20
|
+
AlertDialogTrigger,
|
|
21
|
+
AlertTitle,
|
|
22
|
+
AspectRatio,
|
|
23
|
+
Avatar,
|
|
24
|
+
AvatarFallback,
|
|
25
|
+
AvatarImage,
|
|
26
|
+
Badge,
|
|
27
|
+
Breadcrumb,
|
|
28
|
+
BreadcrumbEllipsis,
|
|
29
|
+
BreadcrumbItem,
|
|
30
|
+
BreadcrumbLink,
|
|
31
|
+
BreadcrumbList,
|
|
32
|
+
BreadcrumbPage,
|
|
33
|
+
BreadcrumbSeparator,
|
|
34
|
+
Button,
|
|
35
|
+
ButtonGroup,
|
|
36
|
+
ButtonGroupSeparator,
|
|
37
|
+
ButtonGroupText,
|
|
38
|
+
Calendar,
|
|
39
|
+
Card,
|
|
40
|
+
Carousel,
|
|
41
|
+
CarouselContent,
|
|
42
|
+
CarouselItem,
|
|
43
|
+
CarouselNext,
|
|
44
|
+
CarouselPrevious,
|
|
45
|
+
ChartContainer,
|
|
46
|
+
ChartLegendContent,
|
|
47
|
+
ChartTooltipContent,
|
|
48
|
+
Checkbox,
|
|
49
|
+
Collapsible,
|
|
50
|
+
CollapsibleContent,
|
|
51
|
+
CollapsibleTrigger,
|
|
52
|
+
ComboboxChip,
|
|
53
|
+
ComboboxChips,
|
|
54
|
+
ComboboxChipsInput,
|
|
55
|
+
ComboboxClear,
|
|
56
|
+
ComboboxCollection,
|
|
57
|
+
ComboboxContent,
|
|
58
|
+
ComboboxEmpty,
|
|
59
|
+
ComboboxGroup,
|
|
60
|
+
ComboboxInput,
|
|
61
|
+
ComboboxItem,
|
|
62
|
+
ComboboxLabel,
|
|
63
|
+
ComboboxList,
|
|
64
|
+
ComboboxSeparator,
|
|
65
|
+
ComboboxTrigger,
|
|
66
|
+
ComboboxValue,
|
|
67
|
+
Command,
|
|
68
|
+
CommandEmpty,
|
|
69
|
+
CommandGroup,
|
|
70
|
+
CommandInput,
|
|
71
|
+
CommandItem,
|
|
72
|
+
CommandList,
|
|
73
|
+
CommandSeparator,
|
|
74
|
+
CommandShortcut,
|
|
75
|
+
ContextMenu,
|
|
76
|
+
ContextMenuCheckboxItem,
|
|
77
|
+
ContextMenuContent,
|
|
78
|
+
ContextMenuGroup,
|
|
79
|
+
ContextMenuItem,
|
|
80
|
+
ContextMenuLabel,
|
|
81
|
+
ContextMenuRadioGroup,
|
|
82
|
+
ContextMenuRadioItem,
|
|
83
|
+
ContextMenuSeparator,
|
|
84
|
+
ContextMenuShortcut,
|
|
85
|
+
ContextMenuSub,
|
|
86
|
+
ContextMenuSubContent,
|
|
87
|
+
ContextMenuSubTrigger,
|
|
88
|
+
ContextMenuTrigger,
|
|
89
|
+
Dialog,
|
|
90
|
+
DialogContent,
|
|
91
|
+
DirectionProvider,
|
|
92
|
+
Drawer,
|
|
93
|
+
DrawerClose,
|
|
94
|
+
DrawerContent,
|
|
95
|
+
DrawerDescription,
|
|
96
|
+
DrawerFooter,
|
|
97
|
+
DrawerHeader,
|
|
98
|
+
DrawerTitle,
|
|
99
|
+
DrawerTrigger,
|
|
100
|
+
DropdownMenu,
|
|
101
|
+
DropdownMenuCheckboxItem,
|
|
102
|
+
DropdownMenuContent,
|
|
103
|
+
DropdownMenuGroup,
|
|
104
|
+
DropdownMenuItem,
|
|
105
|
+
DropdownMenuLabel,
|
|
106
|
+
DropdownMenuRadioGroup,
|
|
107
|
+
DropdownMenuRadioItem,
|
|
108
|
+
DropdownMenuSeparator,
|
|
109
|
+
DropdownMenuShortcut,
|
|
110
|
+
DropdownMenuSub,
|
|
111
|
+
DropdownMenuSubContent,
|
|
112
|
+
DropdownMenuSubTrigger,
|
|
113
|
+
DropdownMenuTrigger,
|
|
114
|
+
Empty,
|
|
115
|
+
EmptyMedia,
|
|
116
|
+
Field,
|
|
117
|
+
FieldContent,
|
|
118
|
+
FieldDescription,
|
|
119
|
+
FieldError,
|
|
120
|
+
FieldGroup,
|
|
121
|
+
FieldLabel,
|
|
122
|
+
FieldLegend,
|
|
123
|
+
FieldSeparator,
|
|
124
|
+
FieldSet,
|
|
125
|
+
FieldTitle,
|
|
126
|
+
Form,
|
|
127
|
+
FormDescription,
|
|
128
|
+
FormItem,
|
|
129
|
+
FormLabel,
|
|
130
|
+
FormMessage,
|
|
131
|
+
HoverCard,
|
|
132
|
+
HoverCardContent,
|
|
133
|
+
HoverCardTrigger,
|
|
134
|
+
Input,
|
|
135
|
+
InputGroup,
|
|
136
|
+
InputGroupAddon,
|
|
137
|
+
InputGroupButton,
|
|
138
|
+
InputGroupInput,
|
|
139
|
+
InputGroupText,
|
|
140
|
+
InputGroupTextarea,
|
|
141
|
+
InputOTP,
|
|
142
|
+
InputOTPGroup,
|
|
143
|
+
InputOTPSeparator,
|
|
144
|
+
InputOTPSlot,
|
|
145
|
+
Item,
|
|
146
|
+
ItemActions,
|
|
147
|
+
ItemContent,
|
|
148
|
+
ItemDescription,
|
|
149
|
+
ItemFooter,
|
|
150
|
+
ItemGroup,
|
|
151
|
+
ItemHeader,
|
|
152
|
+
ItemMedia,
|
|
153
|
+
ItemSeparator,
|
|
154
|
+
ItemTitle,
|
|
155
|
+
Kbd,
|
|
156
|
+
KbdGroup,
|
|
157
|
+
Label,
|
|
158
|
+
Menubar,
|
|
159
|
+
MenubarCheckboxItem,
|
|
160
|
+
MenubarContent,
|
|
161
|
+
MenubarItem,
|
|
162
|
+
MenubarLabel,
|
|
163
|
+
MenubarMenu,
|
|
164
|
+
MenubarRadioItem,
|
|
165
|
+
MenubarSeparator,
|
|
166
|
+
MenubarShortcut,
|
|
167
|
+
MenubarSub,
|
|
168
|
+
MenubarSubContent,
|
|
169
|
+
MenubarSubTrigger,
|
|
170
|
+
MenubarTrigger,
|
|
171
|
+
NativeSelect,
|
|
172
|
+
NativeSelectOptGroup,
|
|
173
|
+
NativeSelectOption,
|
|
174
|
+
NavigationMenu,
|
|
175
|
+
NavigationMenuContent,
|
|
176
|
+
NavigationMenuIndicator,
|
|
177
|
+
NavigationMenuItem,
|
|
178
|
+
NavigationMenuLink,
|
|
179
|
+
NavigationMenuList,
|
|
180
|
+
NavigationMenuTrigger,
|
|
181
|
+
NavigationMenuViewport,
|
|
182
|
+
Pagination,
|
|
183
|
+
PaginationContent,
|
|
184
|
+
PaginationEllipsis,
|
|
185
|
+
PaginationItem,
|
|
186
|
+
PaginationLink,
|
|
187
|
+
PaginationNext,
|
|
188
|
+
PaginationPrevious,
|
|
189
|
+
Popover,
|
|
190
|
+
PopoverAnchor,
|
|
191
|
+
PopoverContent,
|
|
192
|
+
PopoverTrigger,
|
|
193
|
+
Progress,
|
|
194
|
+
RadioGroup,
|
|
195
|
+
RadioGroupItem,
|
|
196
|
+
ResizableHandle,
|
|
197
|
+
ResizablePanel,
|
|
198
|
+
ResizablePanelGroup,
|
|
199
|
+
ScrollArea,
|
|
200
|
+
ScrollToTop,
|
|
201
|
+
Search,
|
|
202
|
+
Select,
|
|
203
|
+
SelectContent,
|
|
204
|
+
SelectGroup,
|
|
205
|
+
SelectItem,
|
|
206
|
+
SelectLabel,
|
|
207
|
+
SelectScrollDownButton,
|
|
208
|
+
SelectScrollUpButton,
|
|
209
|
+
SelectSeparator,
|
|
210
|
+
SelectTrigger,
|
|
211
|
+
SelectValue,
|
|
212
|
+
Separator,
|
|
213
|
+
Sheet,
|
|
214
|
+
SheetClose,
|
|
215
|
+
SheetContent,
|
|
216
|
+
SheetDescription,
|
|
217
|
+
SheetFooter,
|
|
218
|
+
SheetHeader,
|
|
219
|
+
SheetOverlay,
|
|
220
|
+
SheetPortal,
|
|
221
|
+
SheetTitle,
|
|
222
|
+
SheetTrigger,
|
|
223
|
+
Sidebar,
|
|
224
|
+
SidebarContent,
|
|
225
|
+
SidebarFooter,
|
|
226
|
+
SidebarGroup,
|
|
227
|
+
SidebarGroupAction,
|
|
228
|
+
SidebarGroupContent,
|
|
229
|
+
SidebarGroupLabel,
|
|
230
|
+
SidebarHeader,
|
|
231
|
+
SidebarInput,
|
|
232
|
+
SidebarInset,
|
|
233
|
+
SidebarMenu,
|
|
234
|
+
SidebarMenuAction,
|
|
235
|
+
SidebarMenuBadge,
|
|
236
|
+
SidebarMenuButton,
|
|
237
|
+
SidebarMenuItem,
|
|
238
|
+
SidebarMenuSkeleton,
|
|
239
|
+
SidebarMenuSub,
|
|
240
|
+
SidebarMenuSubButton,
|
|
241
|
+
SidebarMenuSubItem,
|
|
242
|
+
SidebarProvider,
|
|
243
|
+
SidebarRail,
|
|
244
|
+
SidebarSeparator,
|
|
245
|
+
SidebarTrigger,
|
|
246
|
+
Skeleton,
|
|
247
|
+
Slider,
|
|
248
|
+
Spinner,
|
|
249
|
+
Switch,
|
|
250
|
+
Table,
|
|
251
|
+
TableBody,
|
|
252
|
+
TableCaption,
|
|
253
|
+
TableCell,
|
|
254
|
+
TableFooter,
|
|
255
|
+
TableHead,
|
|
256
|
+
TableHeader,
|
|
257
|
+
TableOfContents,
|
|
258
|
+
TableOfContentsContent,
|
|
259
|
+
TableOfContentsList,
|
|
260
|
+
TableRow,
|
|
261
|
+
Tabs,
|
|
262
|
+
TabsContent,
|
|
263
|
+
TabsList,
|
|
264
|
+
TabsTrigger,
|
|
265
|
+
Text,
|
|
266
|
+
Textarea,
|
|
267
|
+
ThemeProvider,
|
|
268
|
+
ThemeToggle,
|
|
269
|
+
Toast,
|
|
270
|
+
Toaster,
|
|
271
|
+
Toggle,
|
|
272
|
+
ToggleGroup,
|
|
273
|
+
ToggleGroupItem,
|
|
274
|
+
Tooltip,
|
|
275
|
+
TooltipContent,
|
|
276
|
+
TooltipProvider,
|
|
277
|
+
TooltipTrigger,
|
|
278
|
+
} from './index';
|
|
279
|
+
|
|
280
|
+
import type {
|
|
281
|
+
AccordionBaseProps,
|
|
282
|
+
AccordionContentBaseProps,
|
|
283
|
+
AccordionItemBaseProps,
|
|
284
|
+
AccordionTriggerBaseProps,
|
|
285
|
+
AlertBaseProps,
|
|
286
|
+
AlertDescriptionBaseProps,
|
|
287
|
+
AlertDialogActionBaseProps,
|
|
288
|
+
AlertDialogBaseProps,
|
|
289
|
+
AlertDialogCancelBaseProps,
|
|
290
|
+
AlertDialogContentBaseProps,
|
|
291
|
+
AlertDialogDescriptionBaseProps,
|
|
292
|
+
AlertDialogFooterBaseProps,
|
|
293
|
+
AlertDialogHeaderBaseProps,
|
|
294
|
+
AlertDialogTitleBaseProps,
|
|
295
|
+
AlertDialogTriggerBaseProps,
|
|
296
|
+
AlertTitleBaseProps,
|
|
297
|
+
AspectRatioBaseProps,
|
|
298
|
+
AvatarBaseProps,
|
|
299
|
+
AvatarFallbackBaseProps,
|
|
300
|
+
AvatarImageBaseProps,
|
|
301
|
+
BadgeBaseProps,
|
|
302
|
+
BreadcrumbBaseProps,
|
|
303
|
+
BreadcrumbEllipsisBaseProps,
|
|
304
|
+
BreadcrumbItemBaseProps,
|
|
305
|
+
BreadcrumbLinkBaseProps,
|
|
306
|
+
BreadcrumbListBaseProps,
|
|
307
|
+
BreadcrumbPageBaseProps,
|
|
308
|
+
BreadcrumbSeparatorBaseProps,
|
|
309
|
+
ButtonBaseProps,
|
|
310
|
+
ButtonGroupBaseProps,
|
|
311
|
+
ButtonGroupSeparatorBaseProps,
|
|
312
|
+
ButtonGroupTextBaseProps,
|
|
313
|
+
CalendarBaseProps,
|
|
314
|
+
CardBaseProps,
|
|
315
|
+
CarouselBaseProps,
|
|
316
|
+
CarouselContentBaseProps,
|
|
317
|
+
CarouselItemBaseProps,
|
|
318
|
+
CarouselNextBaseProps,
|
|
319
|
+
CarouselPreviousBaseProps,
|
|
320
|
+
ChartContainerBaseProps,
|
|
321
|
+
ChartLegendContentBaseProps,
|
|
322
|
+
ChartTooltipContentBaseProps,
|
|
323
|
+
CheckboxBaseProps,
|
|
324
|
+
CollapsibleBaseProps,
|
|
325
|
+
CollapsibleContentBaseProps,
|
|
326
|
+
CollapsibleTriggerBaseProps,
|
|
327
|
+
ComboboxChipBaseProps,
|
|
328
|
+
ComboboxChipsBaseProps,
|
|
329
|
+
ComboboxChipsInputBaseProps,
|
|
330
|
+
ComboboxClearBaseProps,
|
|
331
|
+
ComboboxCollectionBaseProps,
|
|
332
|
+
ComboboxContentBaseProps,
|
|
333
|
+
ComboboxEmptyBaseProps,
|
|
334
|
+
ComboboxGroupBaseProps,
|
|
335
|
+
ComboboxInputBaseProps,
|
|
336
|
+
ComboboxItemBaseProps,
|
|
337
|
+
ComboboxLabelBaseProps,
|
|
338
|
+
ComboboxListBaseProps,
|
|
339
|
+
ComboboxSeparatorBaseProps,
|
|
340
|
+
ComboboxTriggerBaseProps,
|
|
341
|
+
ComboboxValueBaseProps,
|
|
342
|
+
CommandBaseProps,
|
|
343
|
+
CommandEmptyBaseProps,
|
|
344
|
+
CommandGroupBaseProps,
|
|
345
|
+
CommandInputBaseProps,
|
|
346
|
+
CommandItemBaseProps,
|
|
347
|
+
CommandListBaseProps,
|
|
348
|
+
CommandSeparatorBaseProps,
|
|
349
|
+
CommandShortcutBaseProps,
|
|
350
|
+
ContextMenuBaseProps,
|
|
351
|
+
ContextMenuCheckboxItemBaseProps,
|
|
352
|
+
ContextMenuContentBaseProps,
|
|
353
|
+
ContextMenuGroupBaseProps,
|
|
354
|
+
ContextMenuItemBaseProps,
|
|
355
|
+
ContextMenuLabelBaseProps,
|
|
356
|
+
ContextMenuRadioGroupBaseProps,
|
|
357
|
+
ContextMenuRadioItemBaseProps,
|
|
358
|
+
ContextMenuSeparatorBaseProps,
|
|
359
|
+
ContextMenuShortcutBaseProps,
|
|
360
|
+
ContextMenuSubBaseProps,
|
|
361
|
+
ContextMenuSubContentBaseProps,
|
|
362
|
+
ContextMenuSubTriggerBaseProps,
|
|
363
|
+
ContextMenuTriggerBaseProps,
|
|
364
|
+
DialogBaseProps,
|
|
365
|
+
DialogContentBaseProps,
|
|
366
|
+
DirectionProviderBaseProps,
|
|
367
|
+
DrawerBaseProps,
|
|
368
|
+
DrawerCloseBaseProps,
|
|
369
|
+
DrawerContentBaseProps,
|
|
370
|
+
DrawerDescriptionBaseProps,
|
|
371
|
+
DrawerFooterBaseProps,
|
|
372
|
+
DrawerHeaderBaseProps,
|
|
373
|
+
DrawerTitleBaseProps,
|
|
374
|
+
DrawerTriggerBaseProps,
|
|
375
|
+
DropdownMenuBaseProps,
|
|
376
|
+
DropdownMenuCheckboxItemBaseProps,
|
|
377
|
+
DropdownMenuContentBaseProps,
|
|
378
|
+
DropdownMenuGroupBaseProps,
|
|
379
|
+
DropdownMenuItemBaseProps,
|
|
380
|
+
DropdownMenuLabelBaseProps,
|
|
381
|
+
DropdownMenuRadioGroupBaseProps,
|
|
382
|
+
DropdownMenuRadioItemBaseProps,
|
|
383
|
+
DropdownMenuSeparatorBaseProps,
|
|
384
|
+
DropdownMenuShortcutBaseProps,
|
|
385
|
+
DropdownMenuSubBaseProps,
|
|
386
|
+
DropdownMenuSubContentBaseProps,
|
|
387
|
+
DropdownMenuSubTriggerBaseProps,
|
|
388
|
+
DropdownMenuTriggerBaseProps,
|
|
389
|
+
EmptyBaseProps,
|
|
390
|
+
EmptyMediaBaseProps,
|
|
391
|
+
FieldBaseProps,
|
|
392
|
+
FieldContentBaseProps,
|
|
393
|
+
FieldDescriptionBaseProps,
|
|
394
|
+
FieldErrorBaseProps,
|
|
395
|
+
FieldGroupBaseProps,
|
|
396
|
+
FieldLabelBaseProps,
|
|
397
|
+
FieldLegendBaseProps,
|
|
398
|
+
FieldSeparatorBaseProps,
|
|
399
|
+
FieldSetBaseProps,
|
|
400
|
+
FieldTitleBaseProps,
|
|
401
|
+
FormBaseProps,
|
|
402
|
+
FormDescriptionBaseProps,
|
|
403
|
+
FormItemBaseProps,
|
|
404
|
+
FormLabelBaseProps,
|
|
405
|
+
FormMessageBaseProps,
|
|
406
|
+
HoverCardBaseProps,
|
|
407
|
+
HoverCardContentBaseProps,
|
|
408
|
+
HoverCardTriggerBaseProps,
|
|
409
|
+
InputBaseProps,
|
|
410
|
+
InputGroupAddonBaseProps,
|
|
411
|
+
InputGroupBaseProps,
|
|
412
|
+
InputGroupButtonBaseProps,
|
|
413
|
+
InputGroupInputBaseProps,
|
|
414
|
+
InputGroupTextBaseProps,
|
|
415
|
+
InputGroupTextareaBaseProps,
|
|
416
|
+
InputOTPBaseProps,
|
|
417
|
+
InputOTPGroupBaseProps,
|
|
418
|
+
InputOTPSeparatorBaseProps,
|
|
419
|
+
InputOTPSlotBaseProps,
|
|
420
|
+
ItemActionsBaseProps,
|
|
421
|
+
ItemBaseProps,
|
|
422
|
+
ItemContentBaseProps,
|
|
423
|
+
ItemDescriptionBaseProps,
|
|
424
|
+
ItemFooterBaseProps,
|
|
425
|
+
ItemGroupBaseProps,
|
|
426
|
+
ItemHeaderBaseProps,
|
|
427
|
+
ItemMediaBaseProps,
|
|
428
|
+
ItemSeparatorBaseProps,
|
|
429
|
+
ItemTitleBaseProps,
|
|
430
|
+
KbdBaseProps,
|
|
431
|
+
KbdGroupBaseProps,
|
|
432
|
+
LabelBaseProps,
|
|
433
|
+
MenubarBaseProps,
|
|
434
|
+
MenubarCheckboxItemBaseProps,
|
|
435
|
+
MenubarContentBaseProps,
|
|
436
|
+
MenubarItemBaseProps,
|
|
437
|
+
MenubarLabelBaseProps,
|
|
438
|
+
MenubarMenuBaseProps,
|
|
439
|
+
MenubarRadioItemBaseProps,
|
|
440
|
+
MenubarSeparatorBaseProps,
|
|
441
|
+
MenubarShortcutBaseProps,
|
|
442
|
+
MenubarSubBaseProps,
|
|
443
|
+
MenubarSubContentBaseProps,
|
|
444
|
+
MenubarSubTriggerBaseProps,
|
|
445
|
+
MenubarTriggerBaseProps,
|
|
446
|
+
NativeSelectBaseProps,
|
|
447
|
+
NativeSelectOptGroupBaseProps,
|
|
448
|
+
NativeSelectOptionBaseProps,
|
|
449
|
+
NavigationMenuBaseProps,
|
|
450
|
+
NavigationMenuContentBaseProps,
|
|
451
|
+
NavigationMenuIndicatorBaseProps,
|
|
452
|
+
NavigationMenuItemBaseProps,
|
|
453
|
+
NavigationMenuLinkBaseProps,
|
|
454
|
+
NavigationMenuListBaseProps,
|
|
455
|
+
NavigationMenuTriggerBaseProps,
|
|
456
|
+
NavigationMenuViewportBaseProps,
|
|
457
|
+
PaginationBaseProps,
|
|
458
|
+
PaginationContentBaseProps,
|
|
459
|
+
PaginationEllipsisBaseProps,
|
|
460
|
+
PaginationItemBaseProps,
|
|
461
|
+
PaginationLinkBaseProps,
|
|
462
|
+
PaginationNextBaseProps,
|
|
463
|
+
PaginationPreviousBaseProps,
|
|
464
|
+
PopoverAnchorBaseProps,
|
|
465
|
+
PopoverBaseProps,
|
|
466
|
+
PopoverContentBaseProps,
|
|
467
|
+
PopoverTriggerBaseProps,
|
|
468
|
+
ProgressBaseProps,
|
|
469
|
+
RadioGroupBaseProps,
|
|
470
|
+
RadioGroupItemBaseProps,
|
|
471
|
+
ResizableHandleBaseProps,
|
|
472
|
+
ResizablePanelBaseProps,
|
|
473
|
+
ResizablePanelGroupBaseProps,
|
|
474
|
+
ScrollAreaBaseProps,
|
|
475
|
+
ScrollToTopBaseProps,
|
|
476
|
+
SearchBaseProps,
|
|
477
|
+
SelectBaseProps,
|
|
478
|
+
SelectContentBaseProps,
|
|
479
|
+
SelectGroupBaseProps,
|
|
480
|
+
SelectItemBaseProps,
|
|
481
|
+
SelectLabelBaseProps,
|
|
482
|
+
SelectScrollDownButtonBaseProps,
|
|
483
|
+
SelectScrollUpButtonBaseProps,
|
|
484
|
+
SelectSeparatorBaseProps,
|
|
485
|
+
SelectTriggerBaseProps,
|
|
486
|
+
SelectValueBaseProps,
|
|
487
|
+
SeparatorBaseProps,
|
|
488
|
+
SheetBaseProps,
|
|
489
|
+
SheetCloseBaseProps,
|
|
490
|
+
SheetContentBaseProps,
|
|
491
|
+
SheetDescriptionBaseProps,
|
|
492
|
+
SheetFooterBaseProps,
|
|
493
|
+
SheetHeaderBaseProps,
|
|
494
|
+
SheetOverlayBaseProps,
|
|
495
|
+
SheetPortalBaseProps,
|
|
496
|
+
SheetTitleBaseProps,
|
|
497
|
+
SheetTriggerBaseProps,
|
|
498
|
+
SidebarBaseProps,
|
|
499
|
+
SidebarContentBaseProps,
|
|
500
|
+
SidebarFooterBaseProps,
|
|
501
|
+
SidebarGroupActionBaseProps,
|
|
502
|
+
SidebarGroupBaseProps,
|
|
503
|
+
SidebarGroupContentBaseProps,
|
|
504
|
+
SidebarGroupLabelBaseProps,
|
|
505
|
+
SidebarHeaderBaseProps,
|
|
506
|
+
SidebarInputBaseProps,
|
|
507
|
+
SidebarInsetBaseProps,
|
|
508
|
+
SidebarMenuActionBaseProps,
|
|
509
|
+
SidebarMenuBadgeBaseProps,
|
|
510
|
+
SidebarMenuBaseProps,
|
|
511
|
+
SidebarMenuButtonBaseProps,
|
|
512
|
+
SidebarMenuItemBaseProps,
|
|
513
|
+
SidebarMenuSkeletonBaseProps,
|
|
514
|
+
SidebarMenuSubBaseProps,
|
|
515
|
+
SidebarMenuSubButtonBaseProps,
|
|
516
|
+
SidebarMenuSubItemBaseProps,
|
|
517
|
+
SidebarProviderBaseProps,
|
|
518
|
+
SidebarRailBaseProps,
|
|
519
|
+
SidebarSeparatorBaseProps,
|
|
520
|
+
SidebarTriggerBaseProps,
|
|
521
|
+
SkeletonBaseProps,
|
|
522
|
+
SliderBaseProps,
|
|
523
|
+
SpinnerBaseProps,
|
|
524
|
+
SwitchBaseProps,
|
|
525
|
+
TableBaseProps,
|
|
526
|
+
TableBodyBaseProps,
|
|
527
|
+
TableCaptionBaseProps,
|
|
528
|
+
TableCellBaseProps,
|
|
529
|
+
TableFooterBaseProps,
|
|
530
|
+
TableHeadBaseProps,
|
|
531
|
+
TableHeaderBaseProps,
|
|
532
|
+
TableOfContentsBaseProps,
|
|
533
|
+
TableOfContentsContentBaseProps,
|
|
534
|
+
TableOfContentsListBaseProps,
|
|
535
|
+
TableRowBaseProps,
|
|
536
|
+
TabsBaseProps,
|
|
537
|
+
TabsContentBaseProps,
|
|
538
|
+
TabsListBaseProps,
|
|
539
|
+
TabsTriggerBaseProps,
|
|
540
|
+
TextBaseProps,
|
|
541
|
+
TextareaBaseProps,
|
|
542
|
+
ThemeProviderBaseProps,
|
|
543
|
+
ThemeToggleBaseProps,
|
|
544
|
+
ToastBaseProps,
|
|
545
|
+
ToasterBaseProps,
|
|
546
|
+
ToggleBaseProps,
|
|
547
|
+
ToggleGroupBaseProps,
|
|
548
|
+
ToggleGroupItemBaseProps,
|
|
549
|
+
TooltipBaseProps,
|
|
550
|
+
TooltipContentBaseProps,
|
|
551
|
+
TooltipProviderBaseProps,
|
|
552
|
+
TooltipTriggerBaseProps,
|
|
553
|
+
} from '@gv-tech/ui-core';
|
|
554
|
+
|
|
555
|
+
// This file is auto-generated by scripts/generate-contract-tests.ts
|
|
556
|
+
// Do not edit manually.
|
|
557
|
+
// It uses variable assignments to verify that implementations extend the base contracts.
|
|
558
|
+
|
|
559
|
+
const _test_Accordion: AccordionBaseProps = {} as React.ComponentProps<typeof Accordion>;
|
|
560
|
+
const _test_AccordionContent: AccordionContentBaseProps = {} as React.ComponentProps<typeof AccordionContent>;
|
|
561
|
+
const _test_AccordionItem: AccordionItemBaseProps = {} as React.ComponentProps<typeof AccordionItem>;
|
|
562
|
+
const _test_AccordionTrigger: AccordionTriggerBaseProps = {} as React.ComponentProps<typeof AccordionTrigger>;
|
|
563
|
+
const _test_Alert: AlertBaseProps = {} as React.ComponentProps<typeof Alert>;
|
|
564
|
+
const _test_AlertDescription: AlertDescriptionBaseProps = {} as React.ComponentProps<typeof AlertDescription>;
|
|
565
|
+
const _test_AlertTitle: AlertTitleBaseProps = {} as React.ComponentProps<typeof AlertTitle>;
|
|
566
|
+
const _test_AlertDialogAction: AlertDialogActionBaseProps = {} as React.ComponentProps<typeof AlertDialogAction>;
|
|
567
|
+
const _test_AlertDialog: AlertDialogBaseProps = {} as React.ComponentProps<typeof AlertDialog>;
|
|
568
|
+
const _test_AlertDialogCancel: AlertDialogCancelBaseProps = {} as React.ComponentProps<typeof AlertDialogCancel>;
|
|
569
|
+
const _test_AlertDialogContent: AlertDialogContentBaseProps = {} as React.ComponentProps<typeof AlertDialogContent>;
|
|
570
|
+
const _test_AlertDialogDescription: AlertDialogDescriptionBaseProps = {} as React.ComponentProps<
|
|
571
|
+
typeof AlertDialogDescription
|
|
572
|
+
>;
|
|
573
|
+
const _test_AlertDialogFooter: AlertDialogFooterBaseProps = {} as React.ComponentProps<typeof AlertDialogFooter>;
|
|
574
|
+
const _test_AlertDialogHeader: AlertDialogHeaderBaseProps = {} as React.ComponentProps<typeof AlertDialogHeader>;
|
|
575
|
+
const _test_AlertDialogTitle: AlertDialogTitleBaseProps = {} as React.ComponentProps<typeof AlertDialogTitle>;
|
|
576
|
+
const _test_AlertDialogTrigger: AlertDialogTriggerBaseProps = {} as React.ComponentProps<typeof AlertDialogTrigger>;
|
|
577
|
+
const _test_AspectRatio: AspectRatioBaseProps = {} as React.ComponentProps<typeof AspectRatio>;
|
|
578
|
+
const _test_Avatar: AvatarBaseProps = {} as React.ComponentProps<typeof Avatar>;
|
|
579
|
+
const _test_AvatarFallback: AvatarFallbackBaseProps = {} as React.ComponentProps<typeof AvatarFallback>;
|
|
580
|
+
const _test_AvatarImage: AvatarImageBaseProps = {} as React.ComponentProps<typeof AvatarImage>;
|
|
581
|
+
const _test_Badge: BadgeBaseProps = {} as React.ComponentProps<typeof Badge>;
|
|
582
|
+
const _test_Breadcrumb: BreadcrumbBaseProps = {} as React.ComponentProps<typeof Breadcrumb>;
|
|
583
|
+
const _test_BreadcrumbEllipsis: BreadcrumbEllipsisBaseProps = {} as React.ComponentProps<typeof BreadcrumbEllipsis>;
|
|
584
|
+
const _test_BreadcrumbItem: BreadcrumbItemBaseProps = {} as React.ComponentProps<typeof BreadcrumbItem>;
|
|
585
|
+
const _test_BreadcrumbLink: BreadcrumbLinkBaseProps = {} as React.ComponentProps<typeof BreadcrumbLink>;
|
|
586
|
+
const _test_BreadcrumbList: BreadcrumbListBaseProps = {} as React.ComponentProps<typeof BreadcrumbList>;
|
|
587
|
+
const _test_BreadcrumbPage: BreadcrumbPageBaseProps = {} as React.ComponentProps<typeof BreadcrumbPage>;
|
|
588
|
+
const _test_BreadcrumbSeparator: BreadcrumbSeparatorBaseProps = {} as React.ComponentProps<typeof BreadcrumbSeparator>;
|
|
589
|
+
const _test_Button: ButtonBaseProps = {} as React.ComponentProps<typeof Button>;
|
|
590
|
+
const _test_Calendar: CalendarBaseProps = {} as React.ComponentProps<typeof Calendar>;
|
|
591
|
+
const _test_Card: CardBaseProps = {} as React.ComponentProps<typeof Card>;
|
|
592
|
+
const _test_Carousel: CarouselBaseProps = {} as React.ComponentProps<typeof Carousel>;
|
|
593
|
+
const _test_CarouselContent: CarouselContentBaseProps = {} as React.ComponentProps<typeof CarouselContent>;
|
|
594
|
+
const _test_CarouselItem: CarouselItemBaseProps = {} as React.ComponentProps<typeof CarouselItem>;
|
|
595
|
+
const _test_CarouselNext: CarouselNextBaseProps = {} as React.ComponentProps<typeof CarouselNext>;
|
|
596
|
+
const _test_CarouselPrevious: CarouselPreviousBaseProps = {} as React.ComponentProps<typeof CarouselPrevious>;
|
|
597
|
+
const _test_ChartContainer: ChartContainerBaseProps = {} as React.ComponentProps<typeof ChartContainer>;
|
|
598
|
+
const _test_ChartLegendContent: ChartLegendContentBaseProps = {} as React.ComponentProps<typeof ChartLegendContent>;
|
|
599
|
+
const _test_ChartTooltipContent: ChartTooltipContentBaseProps = {} as React.ComponentProps<typeof ChartTooltipContent>;
|
|
600
|
+
const _test_Checkbox: CheckboxBaseProps = {} as React.ComponentProps<typeof Checkbox>;
|
|
601
|
+
const _test_Collapsible: CollapsibleBaseProps = {} as React.ComponentProps<typeof Collapsible>;
|
|
602
|
+
const _test_CollapsibleContent: CollapsibleContentBaseProps = {} as React.ComponentProps<typeof CollapsibleContent>;
|
|
603
|
+
const _test_CollapsibleTrigger: CollapsibleTriggerBaseProps = {} as React.ComponentProps<typeof CollapsibleTrigger>;
|
|
604
|
+
const _test_Command: CommandBaseProps = {} as React.ComponentProps<typeof Command>;
|
|
605
|
+
const _test_CommandEmpty: CommandEmptyBaseProps = {} as React.ComponentProps<typeof CommandEmpty>;
|
|
606
|
+
const _test_CommandGroup: CommandGroupBaseProps = {} as React.ComponentProps<typeof CommandGroup>;
|
|
607
|
+
const _test_CommandInput: CommandInputBaseProps = {} as React.ComponentProps<typeof CommandInput>;
|
|
608
|
+
const _test_CommandItem: CommandItemBaseProps = {} as React.ComponentProps<typeof CommandItem>;
|
|
609
|
+
const _test_CommandList: CommandListBaseProps = {} as React.ComponentProps<typeof CommandList>;
|
|
610
|
+
const _test_CommandSeparator: CommandSeparatorBaseProps = {} as React.ComponentProps<typeof CommandSeparator>;
|
|
611
|
+
const _test_CommandShortcut: CommandShortcutBaseProps = {} as React.ComponentProps<typeof CommandShortcut>;
|
|
612
|
+
const _test_ContextMenu: ContextMenuBaseProps = {} as React.ComponentProps<typeof ContextMenu>;
|
|
613
|
+
const _test_ContextMenuCheckboxItem: ContextMenuCheckboxItemBaseProps = {} as React.ComponentProps<
|
|
614
|
+
typeof ContextMenuCheckboxItem
|
|
615
|
+
>;
|
|
616
|
+
const _test_ContextMenuContent: ContextMenuContentBaseProps = {} as React.ComponentProps<typeof ContextMenuContent>;
|
|
617
|
+
const _test_ContextMenuGroup: ContextMenuGroupBaseProps = {} as React.ComponentProps<typeof ContextMenuGroup>;
|
|
618
|
+
const _test_ContextMenuItem: ContextMenuItemBaseProps = {} as React.ComponentProps<typeof ContextMenuItem>;
|
|
619
|
+
const _test_ContextMenuLabel: ContextMenuLabelBaseProps = {} as React.ComponentProps<typeof ContextMenuLabel>;
|
|
620
|
+
const _test_ContextMenuRadioGroup: ContextMenuRadioGroupBaseProps = {} as React.ComponentProps<
|
|
621
|
+
typeof ContextMenuRadioGroup
|
|
622
|
+
>;
|
|
623
|
+
const _test_ContextMenuRadioItem: ContextMenuRadioItemBaseProps = {} as React.ComponentProps<
|
|
624
|
+
typeof ContextMenuRadioItem
|
|
625
|
+
>;
|
|
626
|
+
const _test_ContextMenuSeparator: ContextMenuSeparatorBaseProps = {} as React.ComponentProps<
|
|
627
|
+
typeof ContextMenuSeparator
|
|
628
|
+
>;
|
|
629
|
+
const _test_ContextMenuShortcut: ContextMenuShortcutBaseProps = {} as React.ComponentProps<typeof ContextMenuShortcut>;
|
|
630
|
+
const _test_ContextMenuSub: ContextMenuSubBaseProps = {} as React.ComponentProps<typeof ContextMenuSub>;
|
|
631
|
+
const _test_ContextMenuSubContent: ContextMenuSubContentBaseProps = {} as React.ComponentProps<
|
|
632
|
+
typeof ContextMenuSubContent
|
|
633
|
+
>;
|
|
634
|
+
const _test_ContextMenuSubTrigger: ContextMenuSubTriggerBaseProps = {} as React.ComponentProps<
|
|
635
|
+
typeof ContextMenuSubTrigger
|
|
636
|
+
>;
|
|
637
|
+
const _test_ContextMenuTrigger: ContextMenuTriggerBaseProps = {} as React.ComponentProps<typeof ContextMenuTrigger>;
|
|
638
|
+
const _test_Dialog: DialogBaseProps = {} as React.ComponentProps<typeof Dialog>;
|
|
639
|
+
const _test_DialogContent: DialogContentBaseProps = {} as React.ComponentProps<typeof DialogContent>;
|
|
640
|
+
const _test_Drawer: DrawerBaseProps = {} as React.ComponentProps<typeof Drawer>;
|
|
641
|
+
const _test_DrawerClose: DrawerCloseBaseProps = {} as React.ComponentProps<typeof DrawerClose>;
|
|
642
|
+
const _test_DrawerContent: DrawerContentBaseProps = {} as React.ComponentProps<typeof DrawerContent>;
|
|
643
|
+
const _test_DrawerDescription: DrawerDescriptionBaseProps = {} as React.ComponentProps<typeof DrawerDescription>;
|
|
644
|
+
const _test_DrawerFooter: DrawerFooterBaseProps = {} as React.ComponentProps<typeof DrawerFooter>;
|
|
645
|
+
const _test_DrawerHeader: DrawerHeaderBaseProps = {} as React.ComponentProps<typeof DrawerHeader>;
|
|
646
|
+
const _test_DrawerTitle: DrawerTitleBaseProps = {} as React.ComponentProps<typeof DrawerTitle>;
|
|
647
|
+
const _test_DrawerTrigger: DrawerTriggerBaseProps = {} as React.ComponentProps<typeof DrawerTrigger>;
|
|
648
|
+
const _test_DropdownMenu: DropdownMenuBaseProps = {} as React.ComponentProps<typeof DropdownMenu>;
|
|
649
|
+
const _test_DropdownMenuCheckboxItem: DropdownMenuCheckboxItemBaseProps = {} as React.ComponentProps<
|
|
650
|
+
typeof DropdownMenuCheckboxItem
|
|
651
|
+
>;
|
|
652
|
+
const _test_DropdownMenuContent: DropdownMenuContentBaseProps = {} as React.ComponentProps<typeof DropdownMenuContent>;
|
|
653
|
+
const _test_DropdownMenuGroup: DropdownMenuGroupBaseProps = {} as React.ComponentProps<typeof DropdownMenuGroup>;
|
|
654
|
+
const _test_DropdownMenuItem: DropdownMenuItemBaseProps = {} as React.ComponentProps<typeof DropdownMenuItem>;
|
|
655
|
+
const _test_DropdownMenuLabel: DropdownMenuLabelBaseProps = {} as React.ComponentProps<typeof DropdownMenuLabel>;
|
|
656
|
+
const _test_DropdownMenuRadioGroup: DropdownMenuRadioGroupBaseProps = {} as React.ComponentProps<
|
|
657
|
+
typeof DropdownMenuRadioGroup
|
|
658
|
+
>;
|
|
659
|
+
const _test_DropdownMenuRadioItem: DropdownMenuRadioItemBaseProps = {} as React.ComponentProps<
|
|
660
|
+
typeof DropdownMenuRadioItem
|
|
661
|
+
>;
|
|
662
|
+
const _test_DropdownMenuSeparator: DropdownMenuSeparatorBaseProps = {} as React.ComponentProps<
|
|
663
|
+
typeof DropdownMenuSeparator
|
|
664
|
+
>;
|
|
665
|
+
const _test_DropdownMenuShortcut: DropdownMenuShortcutBaseProps = {} as React.ComponentProps<
|
|
666
|
+
typeof DropdownMenuShortcut
|
|
667
|
+
>;
|
|
668
|
+
const _test_DropdownMenuSub: DropdownMenuSubBaseProps = {} as React.ComponentProps<typeof DropdownMenuSub>;
|
|
669
|
+
const _test_DropdownMenuSubContent: DropdownMenuSubContentBaseProps = {} as React.ComponentProps<
|
|
670
|
+
typeof DropdownMenuSubContent
|
|
671
|
+
>;
|
|
672
|
+
const _test_DropdownMenuSubTrigger: DropdownMenuSubTriggerBaseProps = {} as React.ComponentProps<
|
|
673
|
+
typeof DropdownMenuSubTrigger
|
|
674
|
+
>;
|
|
675
|
+
const _test_DropdownMenuTrigger: DropdownMenuTriggerBaseProps = {} as React.ComponentProps<typeof DropdownMenuTrigger>;
|
|
676
|
+
const _test_Form: FormBaseProps = {} as React.ComponentProps<typeof Form>;
|
|
677
|
+
const _test_FormDescription: FormDescriptionBaseProps = {} as React.ComponentProps<typeof FormDescription>;
|
|
678
|
+
const _test_FormItem: FormItemBaseProps = {} as React.ComponentProps<typeof FormItem>;
|
|
679
|
+
const _test_FormLabel: FormLabelBaseProps = {} as React.ComponentProps<typeof FormLabel>;
|
|
680
|
+
const _test_FormMessage: FormMessageBaseProps = {} as React.ComponentProps<typeof FormMessage>;
|
|
681
|
+
const _test_HoverCard: HoverCardBaseProps = {} as React.ComponentProps<typeof HoverCard>;
|
|
682
|
+
const _test_HoverCardContent: HoverCardContentBaseProps = {} as React.ComponentProps<typeof HoverCardContent>;
|
|
683
|
+
const _test_HoverCardTrigger: HoverCardTriggerBaseProps = {} as React.ComponentProps<typeof HoverCardTrigger>;
|
|
684
|
+
const _test_Input: InputBaseProps = {} as React.ComponentProps<typeof Input>;
|
|
685
|
+
const _test_Label: LabelBaseProps = {} as React.ComponentProps<typeof Label>;
|
|
686
|
+
const _test_Menubar: MenubarBaseProps = {} as React.ComponentProps<typeof Menubar>;
|
|
687
|
+
const _test_MenubarCheckboxItem: MenubarCheckboxItemBaseProps = {} as React.ComponentProps<typeof MenubarCheckboxItem>;
|
|
688
|
+
const _test_MenubarContent: MenubarContentBaseProps = {} as React.ComponentProps<typeof MenubarContent>;
|
|
689
|
+
const _test_MenubarItem: MenubarItemBaseProps = {} as React.ComponentProps<typeof MenubarItem>;
|
|
690
|
+
const _test_MenubarLabel: MenubarLabelBaseProps = {} as React.ComponentProps<typeof MenubarLabel>;
|
|
691
|
+
const _test_MenubarMenu: MenubarMenuBaseProps = {} as React.ComponentProps<typeof MenubarMenu>;
|
|
692
|
+
const _test_MenubarRadioItem: MenubarRadioItemBaseProps = {} as React.ComponentProps<typeof MenubarRadioItem>;
|
|
693
|
+
const _test_MenubarSeparator: MenubarSeparatorBaseProps = {} as React.ComponentProps<typeof MenubarSeparator>;
|
|
694
|
+
const _test_MenubarShortcut: MenubarShortcutBaseProps = {} as React.ComponentProps<typeof MenubarShortcut>;
|
|
695
|
+
const _test_MenubarSub: MenubarSubBaseProps = {} as React.ComponentProps<typeof MenubarSub>;
|
|
696
|
+
const _test_MenubarSubContent: MenubarSubContentBaseProps = {} as React.ComponentProps<typeof MenubarSubContent>;
|
|
697
|
+
const _test_MenubarSubTrigger: MenubarSubTriggerBaseProps = {} as React.ComponentProps<typeof MenubarSubTrigger>;
|
|
698
|
+
const _test_MenubarTrigger: MenubarTriggerBaseProps = {} as React.ComponentProps<typeof MenubarTrigger>;
|
|
699
|
+
const _test_NavigationMenu: NavigationMenuBaseProps = {} as React.ComponentProps<typeof NavigationMenu>;
|
|
700
|
+
const _test_NavigationMenuContent: NavigationMenuContentBaseProps = {} as React.ComponentProps<
|
|
701
|
+
typeof NavigationMenuContent
|
|
702
|
+
>;
|
|
703
|
+
const _test_NavigationMenuIndicator: NavigationMenuIndicatorBaseProps = {} as React.ComponentProps<
|
|
704
|
+
typeof NavigationMenuIndicator
|
|
705
|
+
>;
|
|
706
|
+
const _test_NavigationMenuItem: NavigationMenuItemBaseProps = {} as React.ComponentProps<typeof NavigationMenuItem>;
|
|
707
|
+
const _test_NavigationMenuLink: NavigationMenuLinkBaseProps = {} as React.ComponentProps<typeof NavigationMenuLink>;
|
|
708
|
+
const _test_NavigationMenuList: NavigationMenuListBaseProps = {} as React.ComponentProps<typeof NavigationMenuList>;
|
|
709
|
+
const _test_NavigationMenuTrigger: NavigationMenuTriggerBaseProps = {} as React.ComponentProps<
|
|
710
|
+
typeof NavigationMenuTrigger
|
|
711
|
+
>;
|
|
712
|
+
const _test_NavigationMenuViewport: NavigationMenuViewportBaseProps = {} as React.ComponentProps<
|
|
713
|
+
typeof NavigationMenuViewport
|
|
714
|
+
>;
|
|
715
|
+
const _test_Pagination: PaginationBaseProps = {} as React.ComponentProps<typeof Pagination>;
|
|
716
|
+
const _test_PaginationContent: PaginationContentBaseProps = {} as React.ComponentProps<typeof PaginationContent>;
|
|
717
|
+
const _test_PaginationEllipsis: PaginationEllipsisBaseProps = {} as React.ComponentProps<typeof PaginationEllipsis>;
|
|
718
|
+
const _test_PaginationItem: PaginationItemBaseProps = {} as React.ComponentProps<typeof PaginationItem>;
|
|
719
|
+
const _test_PaginationLink: PaginationLinkBaseProps = {} as React.ComponentProps<typeof PaginationLink>;
|
|
720
|
+
const _test_PaginationNext: PaginationNextBaseProps = {} as React.ComponentProps<typeof PaginationNext>;
|
|
721
|
+
const _test_PaginationPrevious: PaginationPreviousBaseProps = {} as React.ComponentProps<typeof PaginationPrevious>;
|
|
722
|
+
const _test_PopoverAnchor: PopoverAnchorBaseProps = {} as React.ComponentProps<typeof PopoverAnchor>;
|
|
723
|
+
const _test_Popover: PopoverBaseProps = {} as React.ComponentProps<typeof Popover>;
|
|
724
|
+
const _test_PopoverContent: PopoverContentBaseProps = {} as React.ComponentProps<typeof PopoverContent>;
|
|
725
|
+
const _test_PopoverTrigger: PopoverTriggerBaseProps = {} as React.ComponentProps<typeof PopoverTrigger>;
|
|
726
|
+
const _test_Progress: ProgressBaseProps = {} as React.ComponentProps<typeof Progress>;
|
|
727
|
+
const _test_RadioGroup: RadioGroupBaseProps = {} as React.ComponentProps<typeof RadioGroup>;
|
|
728
|
+
const _test_RadioGroupItem: RadioGroupItemBaseProps = {} as React.ComponentProps<typeof RadioGroupItem>;
|
|
729
|
+
const _test_ResizableHandle: ResizableHandleBaseProps = {} as React.ComponentProps<typeof ResizableHandle>;
|
|
730
|
+
const _test_ResizablePanel: ResizablePanelBaseProps = {} as React.ComponentProps<typeof ResizablePanel>;
|
|
731
|
+
const _test_ResizablePanelGroup: ResizablePanelGroupBaseProps = {} as React.ComponentProps<typeof ResizablePanelGroup>;
|
|
732
|
+
const _test_ScrollArea: ScrollAreaBaseProps = {} as React.ComponentProps<typeof ScrollArea>;
|
|
733
|
+
const _test_ScrollToTop: ScrollToTopBaseProps = {} as React.ComponentProps<typeof ScrollToTop>;
|
|
734
|
+
const _test_Search: SearchBaseProps = {} as React.ComponentProps<typeof Search>;
|
|
735
|
+
const _test_Select: SelectBaseProps = {} as React.ComponentProps<typeof Select>;
|
|
736
|
+
const _test_SelectContent: SelectContentBaseProps = {} as React.ComponentProps<typeof SelectContent>;
|
|
737
|
+
const _test_SelectGroup: SelectGroupBaseProps = {} as React.ComponentProps<typeof SelectGroup>;
|
|
738
|
+
const _test_SelectItem: SelectItemBaseProps = {} as React.ComponentProps<typeof SelectItem>;
|
|
739
|
+
const _test_SelectLabel: SelectLabelBaseProps = {} as React.ComponentProps<typeof SelectLabel>;
|
|
740
|
+
const _test_SelectScrollDownButton: SelectScrollDownButtonBaseProps = {} as React.ComponentProps<
|
|
741
|
+
typeof SelectScrollDownButton
|
|
742
|
+
>;
|
|
743
|
+
const _test_SelectScrollUpButton: SelectScrollUpButtonBaseProps = {} as React.ComponentProps<
|
|
744
|
+
typeof SelectScrollUpButton
|
|
745
|
+
>;
|
|
746
|
+
const _test_SelectSeparator: SelectSeparatorBaseProps = {} as React.ComponentProps<typeof SelectSeparator>;
|
|
747
|
+
const _test_SelectTrigger: SelectTriggerBaseProps = {} as React.ComponentProps<typeof SelectTrigger>;
|
|
748
|
+
const _test_SelectValue: SelectValueBaseProps = {} as React.ComponentProps<typeof SelectValue>;
|
|
749
|
+
const _test_Separator: SeparatorBaseProps = {} as React.ComponentProps<typeof Separator>;
|
|
750
|
+
const _test_Sheet: SheetBaseProps = {} as React.ComponentProps<typeof Sheet>;
|
|
751
|
+
const _test_SheetClose: SheetCloseBaseProps = {} as React.ComponentProps<typeof SheetClose>;
|
|
752
|
+
const _test_SheetContent: SheetContentBaseProps = {} as React.ComponentProps<typeof SheetContent>;
|
|
753
|
+
const _test_SheetDescription: SheetDescriptionBaseProps = {} as React.ComponentProps<typeof SheetDescription>;
|
|
754
|
+
const _test_SheetFooter: SheetFooterBaseProps = {} as React.ComponentProps<typeof SheetFooter>;
|
|
755
|
+
const _test_SheetHeader: SheetHeaderBaseProps = {} as React.ComponentProps<typeof SheetHeader>;
|
|
756
|
+
const _test_SheetOverlay: SheetOverlayBaseProps = {} as React.ComponentProps<typeof SheetOverlay>;
|
|
757
|
+
const _test_SheetPortal: SheetPortalBaseProps = {} as React.ComponentProps<typeof SheetPortal>;
|
|
758
|
+
const _test_SheetTitle: SheetTitleBaseProps = {} as React.ComponentProps<typeof SheetTitle>;
|
|
759
|
+
const _test_SheetTrigger: SheetTriggerBaseProps = {} as React.ComponentProps<typeof SheetTrigger>;
|
|
760
|
+
const _test_Skeleton: SkeletonBaseProps = {} as React.ComponentProps<typeof Skeleton>;
|
|
761
|
+
const _test_Slider: SliderBaseProps = {} as React.ComponentProps<typeof Slider>;
|
|
762
|
+
const _test_Switch: SwitchBaseProps = {} as React.ComponentProps<typeof Switch>;
|
|
763
|
+
const _test_Table: TableBaseProps = {} as React.ComponentProps<typeof Table>;
|
|
764
|
+
const _test_TableBody: TableBodyBaseProps = {} as React.ComponentProps<typeof TableBody>;
|
|
765
|
+
const _test_TableCaption: TableCaptionBaseProps = {} as React.ComponentProps<typeof TableCaption>;
|
|
766
|
+
const _test_TableCell: TableCellBaseProps = {} as React.ComponentProps<typeof TableCell>;
|
|
767
|
+
const _test_TableFooter: TableFooterBaseProps = {} as React.ComponentProps<typeof TableFooter>;
|
|
768
|
+
const _test_TableHead: TableHeadBaseProps = {} as React.ComponentProps<typeof TableHead>;
|
|
769
|
+
const _test_TableHeader: TableHeaderBaseProps = {} as React.ComponentProps<typeof TableHeader>;
|
|
770
|
+
const _test_TableRow: TableRowBaseProps = {} as React.ComponentProps<typeof TableRow>;
|
|
771
|
+
const _test_Tabs: TabsBaseProps = {} as React.ComponentProps<typeof Tabs>;
|
|
772
|
+
const _test_TabsContent: TabsContentBaseProps = {} as React.ComponentProps<typeof TabsContent>;
|
|
773
|
+
const _test_TabsList: TabsListBaseProps = {} as React.ComponentProps<typeof TabsList>;
|
|
774
|
+
const _test_TabsTrigger: TabsTriggerBaseProps = {} as React.ComponentProps<typeof TabsTrigger>;
|
|
775
|
+
const _test_Text: TextBaseProps = {} as React.ComponentProps<typeof Text>;
|
|
776
|
+
const _test_Textarea: TextareaBaseProps = {} as React.ComponentProps<typeof Textarea>;
|
|
777
|
+
const _test_Toggle: ToggleBaseProps = {} as React.ComponentProps<typeof Toggle>;
|
|
778
|
+
const _test_ToggleGroup: ToggleGroupBaseProps = {} as React.ComponentProps<typeof ToggleGroup>;
|
|
779
|
+
const _test_ToggleGroupItem: ToggleGroupItemBaseProps = {} as React.ComponentProps<typeof ToggleGroupItem>;
|
|
780
|
+
const _test_Tooltip: TooltipBaseProps = {} as React.ComponentProps<typeof Tooltip>;
|
|
781
|
+
const _test_TooltipContent: TooltipContentBaseProps = {} as React.ComponentProps<typeof TooltipContent>;
|
|
782
|
+
const _test_TooltipProvider: TooltipProviderBaseProps = {} as React.ComponentProps<typeof TooltipProvider>;
|
|
783
|
+
const _test_TooltipTrigger: TooltipTriggerBaseProps = {} as React.ComponentProps<typeof TooltipTrigger>;
|
|
784
|
+
const _test_Toast: ToastBaseProps = {} as React.ComponentProps<typeof Toast>;
|
|
785
|
+
const _test_ThemeProvider: ThemeProviderBaseProps = {} as React.ComponentProps<typeof ThemeProvider>;
|
|
786
|
+
const _test_ThemeToggle: ThemeToggleBaseProps = {} as React.ComponentProps<typeof ThemeToggle>;
|
|
787
|
+
const _test_Toaster: ToasterBaseProps = {} as React.ComponentProps<typeof Toaster>;
|
|
788
|
+
const _test_TableOfContents: TableOfContentsBaseProps = {} as React.ComponentProps<typeof TableOfContents>;
|
|
789
|
+
const _test_TableOfContentsContent: TableOfContentsContentBaseProps = {} as React.ComponentProps<
|
|
790
|
+
typeof TableOfContentsContent
|
|
791
|
+
>;
|
|
792
|
+
const _test_TableOfContentsList: TableOfContentsListBaseProps = {} as React.ComponentProps<typeof TableOfContentsList>;
|
|
793
|
+
const _test_ButtonGroup: ButtonGroupBaseProps = {} as React.ComponentProps<typeof ButtonGroup>;
|
|
794
|
+
const _test_ButtonGroupSeparator: ButtonGroupSeparatorBaseProps = {} as React.ComponentProps<
|
|
795
|
+
typeof ButtonGroupSeparator
|
|
796
|
+
>;
|
|
797
|
+
const _test_ButtonGroupText: ButtonGroupTextBaseProps = {} as React.ComponentProps<typeof ButtonGroupText>;
|
|
798
|
+
const _test_DirectionProvider: DirectionProviderBaseProps = {} as React.ComponentProps<typeof DirectionProvider>;
|
|
799
|
+
const _test_Empty: EmptyBaseProps = {} as React.ComponentProps<typeof Empty>;
|
|
800
|
+
const _test_EmptyMedia: EmptyMediaBaseProps = {} as React.ComponentProps<typeof EmptyMedia>;
|
|
801
|
+
const _test_Spinner: SpinnerBaseProps = {} as React.ComponentProps<typeof Spinner>;
|
|
802
|
+
const _test_Field: FieldBaseProps = {} as React.ComponentProps<typeof Field>;
|
|
803
|
+
const _test_FieldContent: FieldContentBaseProps = {} as React.ComponentProps<typeof FieldContent>;
|
|
804
|
+
const _test_FieldDescription: FieldDescriptionBaseProps = {} as React.ComponentProps<typeof FieldDescription>;
|
|
805
|
+
const _test_FieldError: FieldErrorBaseProps = {} as React.ComponentProps<typeof FieldError>;
|
|
806
|
+
const _test_FieldGroup: FieldGroupBaseProps = {} as React.ComponentProps<typeof FieldGroup>;
|
|
807
|
+
const _test_FieldLabel: FieldLabelBaseProps = {} as React.ComponentProps<typeof FieldLabel>;
|
|
808
|
+
const _test_FieldLegend: FieldLegendBaseProps = {} as React.ComponentProps<typeof FieldLegend>;
|
|
809
|
+
const _test_FieldSeparator: FieldSeparatorBaseProps = {} as React.ComponentProps<typeof FieldSeparator>;
|
|
810
|
+
const _test_FieldSet: FieldSetBaseProps = {} as React.ComponentProps<typeof FieldSet>;
|
|
811
|
+
const _test_FieldTitle: FieldTitleBaseProps = {} as React.ComponentProps<typeof FieldTitle>;
|
|
812
|
+
const _test_InputGroupAddon: InputGroupAddonBaseProps = {} as React.ComponentProps<typeof InputGroupAddon>;
|
|
813
|
+
const _test_InputGroup: InputGroupBaseProps = {} as React.ComponentProps<typeof InputGroup>;
|
|
814
|
+
const _test_InputGroupButton: InputGroupButtonBaseProps = {} as React.ComponentProps<typeof InputGroupButton>;
|
|
815
|
+
const _test_InputGroupInput: InputGroupInputBaseProps = {} as React.ComponentProps<typeof InputGroupInput>;
|
|
816
|
+
const _test_InputGroupText: InputGroupTextBaseProps = {} as React.ComponentProps<typeof InputGroupText>;
|
|
817
|
+
const _test_InputGroupTextarea: InputGroupTextareaBaseProps = {} as React.ComponentProps<typeof InputGroupTextarea>;
|
|
818
|
+
const _test_NativeSelect: NativeSelectBaseProps = {} as React.ComponentProps<typeof NativeSelect>;
|
|
819
|
+
const _test_NativeSelectOptGroup: NativeSelectOptGroupBaseProps = {} as React.ComponentProps<
|
|
820
|
+
typeof NativeSelectOptGroup
|
|
821
|
+
>;
|
|
822
|
+
const _test_NativeSelectOption: NativeSelectOptionBaseProps = {} as React.ComponentProps<typeof NativeSelectOption>;
|
|
823
|
+
const _test_Kbd: KbdBaseProps = {} as React.ComponentProps<typeof Kbd>;
|
|
824
|
+
const _test_KbdGroup: KbdGroupBaseProps = {} as React.ComponentProps<typeof KbdGroup>;
|
|
825
|
+
const _test_ItemActions: ItemActionsBaseProps = {} as React.ComponentProps<typeof ItemActions>;
|
|
826
|
+
const _test_Item: ItemBaseProps = {} as React.ComponentProps<typeof Item>;
|
|
827
|
+
const _test_ItemContent: ItemContentBaseProps = {} as React.ComponentProps<typeof ItemContent>;
|
|
828
|
+
const _test_ItemDescription: ItemDescriptionBaseProps = {} as React.ComponentProps<typeof ItemDescription>;
|
|
829
|
+
const _test_ItemFooter: ItemFooterBaseProps = {} as React.ComponentProps<typeof ItemFooter>;
|
|
830
|
+
const _test_ItemGroup: ItemGroupBaseProps = {} as React.ComponentProps<typeof ItemGroup>;
|
|
831
|
+
const _test_ItemHeader: ItemHeaderBaseProps = {} as React.ComponentProps<typeof ItemHeader>;
|
|
832
|
+
const _test_ItemMedia: ItemMediaBaseProps = {} as React.ComponentProps<typeof ItemMedia>;
|
|
833
|
+
const _test_ItemSeparator: ItemSeparatorBaseProps = {} as React.ComponentProps<typeof ItemSeparator>;
|
|
834
|
+
const _test_ItemTitle: ItemTitleBaseProps = {} as React.ComponentProps<typeof ItemTitle>;
|
|
835
|
+
const _test_ComboboxChip: ComboboxChipBaseProps = {} as React.ComponentProps<typeof ComboboxChip>;
|
|
836
|
+
const _test_ComboboxChips: ComboboxChipsBaseProps = {} as React.ComponentProps<typeof ComboboxChips>;
|
|
837
|
+
const _test_ComboboxChipsInput: ComboboxChipsInputBaseProps = {} as React.ComponentProps<typeof ComboboxChipsInput>;
|
|
838
|
+
const _test_ComboboxClear: ComboboxClearBaseProps = {} as React.ComponentProps<typeof ComboboxClear>;
|
|
839
|
+
const _test_ComboboxCollection: ComboboxCollectionBaseProps = {} as React.ComponentProps<typeof ComboboxCollection>;
|
|
840
|
+
const _test_ComboboxContent: ComboboxContentBaseProps = {} as React.ComponentProps<typeof ComboboxContent>;
|
|
841
|
+
const _test_ComboboxEmpty: ComboboxEmptyBaseProps = {} as React.ComponentProps<typeof ComboboxEmpty>;
|
|
842
|
+
const _test_ComboboxGroup: ComboboxGroupBaseProps = {} as React.ComponentProps<typeof ComboboxGroup>;
|
|
843
|
+
const _test_ComboboxInput: ComboboxInputBaseProps = {} as React.ComponentProps<typeof ComboboxInput>;
|
|
844
|
+
const _test_ComboboxItem: ComboboxItemBaseProps = {} as React.ComponentProps<typeof ComboboxItem>;
|
|
845
|
+
const _test_ComboboxLabel: ComboboxLabelBaseProps = {} as React.ComponentProps<typeof ComboboxLabel>;
|
|
846
|
+
const _test_ComboboxList: ComboboxListBaseProps = {} as React.ComponentProps<typeof ComboboxList>;
|
|
847
|
+
const _test_ComboboxSeparator: ComboboxSeparatorBaseProps = {} as React.ComponentProps<typeof ComboboxSeparator>;
|
|
848
|
+
const _test_ComboboxTrigger: ComboboxTriggerBaseProps = {} as React.ComponentProps<typeof ComboboxTrigger>;
|
|
849
|
+
const _test_ComboboxValue: ComboboxValueBaseProps = {} as React.ComponentProps<typeof ComboboxValue>;
|
|
850
|
+
const _test_InputOTP: InputOTPBaseProps = {} as React.ComponentProps<typeof InputOTP>;
|
|
851
|
+
const _test_InputOTPGroup: InputOTPGroupBaseProps = {} as React.ComponentProps<typeof InputOTPGroup>;
|
|
852
|
+
const _test_InputOTPSeparator: InputOTPSeparatorBaseProps = {} as React.ComponentProps<typeof InputOTPSeparator>;
|
|
853
|
+
const _test_InputOTPSlot: InputOTPSlotBaseProps = {} as React.ComponentProps<typeof InputOTPSlot>;
|
|
854
|
+
const _test_Sidebar: SidebarBaseProps = {} as React.ComponentProps<typeof Sidebar>;
|
|
855
|
+
const _test_SidebarContent: SidebarContentBaseProps = {} as React.ComponentProps<typeof SidebarContent>;
|
|
856
|
+
const _test_SidebarFooter: SidebarFooterBaseProps = {} as React.ComponentProps<typeof SidebarFooter>;
|
|
857
|
+
const _test_SidebarGroupAction: SidebarGroupActionBaseProps = {} as React.ComponentProps<typeof SidebarGroupAction>;
|
|
858
|
+
const _test_SidebarGroup: SidebarGroupBaseProps = {} as React.ComponentProps<typeof SidebarGroup>;
|
|
859
|
+
const _test_SidebarGroupContent: SidebarGroupContentBaseProps = {} as React.ComponentProps<typeof SidebarGroupContent>;
|
|
860
|
+
const _test_SidebarGroupLabel: SidebarGroupLabelBaseProps = {} as React.ComponentProps<typeof SidebarGroupLabel>;
|
|
861
|
+
const _test_SidebarHeader: SidebarHeaderBaseProps = {} as React.ComponentProps<typeof SidebarHeader>;
|
|
862
|
+
const _test_SidebarInput: SidebarInputBaseProps = {} as React.ComponentProps<typeof SidebarInput>;
|
|
863
|
+
const _test_SidebarInset: SidebarInsetBaseProps = {} as React.ComponentProps<typeof SidebarInset>;
|
|
864
|
+
const _test_SidebarMenuAction: SidebarMenuActionBaseProps = {} as React.ComponentProps<typeof SidebarMenuAction>;
|
|
865
|
+
const _test_SidebarMenuBadge: SidebarMenuBadgeBaseProps = {} as React.ComponentProps<typeof SidebarMenuBadge>;
|
|
866
|
+
const _test_SidebarMenu: SidebarMenuBaseProps = {} as React.ComponentProps<typeof SidebarMenu>;
|
|
867
|
+
const _test_SidebarMenuButton: SidebarMenuButtonBaseProps = {} as React.ComponentProps<typeof SidebarMenuButton>;
|
|
868
|
+
const _test_SidebarMenuItem: SidebarMenuItemBaseProps = {} as React.ComponentProps<typeof SidebarMenuItem>;
|
|
869
|
+
const _test_SidebarMenuSkeleton: SidebarMenuSkeletonBaseProps = {} as React.ComponentProps<typeof SidebarMenuSkeleton>;
|
|
870
|
+
const _test_SidebarMenuSub: SidebarMenuSubBaseProps = {} as React.ComponentProps<typeof SidebarMenuSub>;
|
|
871
|
+
const _test_SidebarMenuSubButton: SidebarMenuSubButtonBaseProps = {} as React.ComponentProps<
|
|
872
|
+
typeof SidebarMenuSubButton
|
|
873
|
+
>;
|
|
874
|
+
const _test_SidebarMenuSubItem: SidebarMenuSubItemBaseProps = {} as React.ComponentProps<typeof SidebarMenuSubItem>;
|
|
875
|
+
const _test_SidebarProvider: SidebarProviderBaseProps = {} as React.ComponentProps<typeof SidebarProvider>;
|
|
876
|
+
const _test_SidebarRail: SidebarRailBaseProps = {} as React.ComponentProps<typeof SidebarRail>;
|
|
877
|
+
const _test_SidebarSeparator: SidebarSeparatorBaseProps = {} as React.ComponentProps<typeof SidebarSeparator>;
|
|
878
|
+
const _test_SidebarTrigger: SidebarTriggerBaseProps = {} as React.ComponentProps<typeof SidebarTrigger>;
|
|
879
|
+
|
|
880
|
+
export {};
|