@una-ui/nuxt 0.67.3 → 0.67.4

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.
Files changed (234) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +1 -1
  3. package/dist/runtime/components/alert-dialog/AlertDialog.d.vue.ts +45 -0
  4. package/dist/runtime/components/alert-dialog/AlertDialogAction.d.vue.ts +16 -0
  5. package/dist/runtime/components/alert-dialog/AlertDialogCancel.d.vue.ts +16 -0
  6. package/dist/runtime/components/alert-dialog/AlertDialogContent.d.vue.ts +29 -0
  7. package/dist/runtime/components/alert-dialog/AlertDialogDescription.d.vue.ts +13 -0
  8. package/dist/runtime/components/alert-dialog/AlertDialogFooter.d.vue.ts +13 -0
  9. package/dist/runtime/components/alert-dialog/AlertDialogHeader.d.vue.ts +13 -0
  10. package/dist/runtime/components/alert-dialog/AlertDialogOverlay.d.vue.ts +13 -0
  11. package/dist/runtime/components/alert-dialog/AlertDialogTitle.d.vue.ts +13 -0
  12. package/dist/runtime/components/alert-dialog/AlertDialogTrigger.d.vue.ts +13 -0
  13. package/dist/runtime/components/aspect-ratio/AspectRatio.d.vue.ts +18 -0
  14. package/dist/runtime/components/combobox/Combobox.d.vue.ts +91 -0
  15. package/dist/runtime/components/combobox/Combobox.vue +0 -1
  16. package/dist/runtime/components/combobox/ComboboxAnchor.d.vue.ts +13 -0
  17. package/dist/runtime/components/combobox/ComboboxEmpty.d.vue.ts +15 -0
  18. package/dist/runtime/components/combobox/ComboboxGroup.d.vue.ts +17 -0
  19. package/dist/runtime/components/combobox/ComboboxInput.d.vue.ts +38 -0
  20. package/dist/runtime/components/combobox/ComboboxItem.d.vue.ts +18 -0
  21. package/dist/runtime/components/combobox/ComboboxItemIndicator.d.vue.ts +15 -0
  22. package/dist/runtime/components/combobox/ComboboxLabel.d.vue.ts +13 -0
  23. package/dist/runtime/components/combobox/ComboboxList.d.vue.ts +27 -0
  24. package/dist/runtime/components/combobox/ComboboxSeparator.d.vue.ts +13 -0
  25. package/dist/runtime/components/combobox/ComboboxTrigger.d.vue.ts +17 -0
  26. package/dist/runtime/components/combobox/ComboboxViewport.d.vue.ts +16 -0
  27. package/dist/runtime/components/data/table/Table.d.vue.ts +184 -0
  28. package/dist/runtime/components/data/table/TableBody.d.vue.ts +34 -0
  29. package/dist/runtime/components/data/table/TableCaption.d.vue.ts +34 -0
  30. package/dist/runtime/components/data/table/TableCell.d.vue.ts +34 -0
  31. package/dist/runtime/components/data/table/TableEmpty.d.vue.ts +38 -0
  32. package/dist/runtime/components/data/table/TableFooter.d.vue.ts +34 -0
  33. package/dist/runtime/components/data/table/TableHead.d.vue.ts +34 -0
  34. package/dist/runtime/components/data/table/TableHeader.d.vue.ts +34 -0
  35. package/dist/runtime/components/data/table/TableLoading.d.vue.ts +34 -0
  36. package/dist/runtime/components/data/table/TableRow.d.vue.ts +34 -0
  37. package/dist/runtime/components/drawer/Drawer.d.vue.ts +47 -0
  38. package/dist/runtime/components/drawer/DrawerClose.d.vue.ts +13 -0
  39. package/dist/runtime/components/drawer/DrawerContent.d.vue.ts +29 -0
  40. package/dist/runtime/components/drawer/DrawerDescription.d.vue.ts +13 -0
  41. package/dist/runtime/components/drawer/DrawerFooter.d.vue.ts +13 -0
  42. package/dist/runtime/components/drawer/DrawerHeader.d.vue.ts +13 -0
  43. package/dist/runtime/components/drawer/DrawerOverlay.d.vue.ts +3 -0
  44. package/dist/runtime/components/drawer/DrawerTitle.d.vue.ts +13 -0
  45. package/dist/runtime/components/drawer/DrawerTrigger.d.vue.ts +13 -0
  46. package/dist/runtime/components/elements/Alert.d.vue.ts +18 -0
  47. package/dist/runtime/components/elements/AvatarGroup.d.vue.ts +11 -0
  48. package/dist/runtime/components/elements/Badge.d.vue.ts +22 -0
  49. package/dist/runtime/components/elements/Button.d.vue.ts +34 -0
  50. package/dist/runtime/components/elements/Icon.d.vue.ts +3 -0
  51. package/dist/runtime/components/elements/Indicator.d.vue.ts +19 -0
  52. package/dist/runtime/components/elements/Kbd.d.vue.ts +13 -0
  53. package/dist/runtime/components/elements/Label.d.vue.ts +13 -0
  54. package/dist/runtime/components/elements/Link.d.vue.ts +20 -0
  55. package/dist/runtime/components/elements/Progress.d.vue.ts +18 -0
  56. package/dist/runtime/components/elements/Separator.d.vue.ts +15 -0
  57. package/dist/runtime/components/elements/Skeleton.d.vue.ts +13 -0
  58. package/dist/runtime/components/elements/Toggle.d.vue.ts +22 -0
  59. package/dist/runtime/components/elements/accordion/Accordion.d.vue.ts +71 -0
  60. package/dist/runtime/components/elements/accordion/AccordionContent.d.vue.ts +13 -0
  61. package/dist/runtime/components/elements/accordion/AccordionHeader.d.vue.ts +13 -0
  62. package/dist/runtime/components/elements/accordion/AccordionItem.d.vue.ts +27 -0
  63. package/dist/runtime/components/elements/accordion/AccordionTrigger.d.vue.ts +16 -0
  64. package/dist/runtime/components/elements/avatar/Avatar.d.vue.ts +21 -0
  65. package/dist/runtime/components/elements/avatar/AvatarFallback.d.vue.ts +13 -0
  66. package/dist/runtime/components/elements/avatar/AvatarImage.d.vue.ts +3 -0
  67. package/dist/runtime/components/elements/card/Card.d.vue.ts +25 -0
  68. package/dist/runtime/components/elements/card/CardContent.d.vue.ts +13 -0
  69. package/dist/runtime/components/elements/card/CardDescription.d.vue.ts +13 -0
  70. package/dist/runtime/components/elements/card/CardFooter.d.vue.ts +13 -0
  71. package/dist/runtime/components/elements/card/CardHeader.d.vue.ts +13 -0
  72. package/dist/runtime/components/elements/card/CardTitle.d.vue.ts +13 -0
  73. package/dist/runtime/components/elements/collapsible/Collapsible.d.vue.ts +25 -0
  74. package/dist/runtime/components/elements/collapsible/CollapsibleContent.d.vue.ts +13 -0
  75. package/dist/runtime/components/elements/collapsible/CollapsibleTrigger.d.vue.ts +13 -0
  76. package/dist/runtime/components/elements/dialog/Dialog.d.vue.ts +34 -0
  77. package/dist/runtime/components/elements/dialog/DialogClose.d.vue.ts +18 -0
  78. package/dist/runtime/components/elements/dialog/DialogContent.d.vue.ts +30 -0
  79. package/dist/runtime/components/elements/dialog/DialogDescription.d.vue.ts +13 -0
  80. package/dist/runtime/components/elements/dialog/DialogFooter.d.vue.ts +13 -0
  81. package/dist/runtime/components/elements/dialog/DialogHeader.d.vue.ts +13 -0
  82. package/dist/runtime/components/elements/dialog/DialogOverlay.d.vue.ts +13 -0
  83. package/dist/runtime/components/elements/dialog/DialogScrollContent.d.vue.ts +30 -0
  84. package/dist/runtime/components/elements/dialog/DialogTitle.d.vue.ts +13 -0
  85. package/dist/runtime/components/elements/dropdown-menu/DropdownMenu.d.vue.ts +45 -0
  86. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuContent.d.vue.ts +27 -0
  87. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuGroup.d.vue.ts +13 -0
  88. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.d.vue.ts +14 -0
  89. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuLabel.d.vue.ts +13 -0
  90. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuRoot.d.vue.ts +17 -0
  91. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSeparator.d.vue.ts +3 -0
  92. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuShortcut.d.vue.ts +13 -0
  93. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSub.d.vue.ts +17 -0
  94. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubContent.d.vue.ts +29 -0
  95. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubTrigger.d.vue.ts +16 -0
  96. package/dist/runtime/components/elements/dropdown-menu/DropdownMenuTrigger.d.vue.ts +13 -0
  97. package/dist/runtime/components/elements/pagination/Pagination.d.vue.ts +38 -0
  98. package/dist/runtime/components/elements/pagination/PaginationEllipsis.d.vue.ts +15 -0
  99. package/dist/runtime/components/elements/pagination/PaginationFirst.d.vue.ts +18 -0
  100. package/dist/runtime/components/elements/pagination/PaginationLast.d.vue.ts +18 -0
  101. package/dist/runtime/components/elements/pagination/PaginationListItem.d.vue.ts +17 -0
  102. package/dist/runtime/components/elements/pagination/PaginationNext.d.vue.ts +18 -0
  103. package/dist/runtime/components/elements/pagination/PaginationPrev.d.vue.ts +18 -0
  104. package/dist/runtime/components/elements/popover/Popover.d.vue.ts +21 -0
  105. package/dist/runtime/components/elements/popover/PopoverContent.d.vue.ts +30 -0
  106. package/dist/runtime/components/elements/tabs/Tabs.d.vue.ts +32 -0
  107. package/dist/runtime/components/elements/tabs/TabsContent.d.vue.ts +13 -0
  108. package/dist/runtime/components/elements/tabs/TabsList.d.vue.ts +15 -0
  109. package/dist/runtime/components/elements/tabs/TabsTrigger.d.vue.ts +16 -0
  110. package/dist/runtime/components/elements/tooltip/Tooltip.d.vue.ts +19 -0
  111. package/dist/runtime/components/elements/tooltip/TooltipContent.d.vue.ts +22 -0
  112. package/dist/runtime/components/elements/tooltip/TooltipProvider.d.vue.ts +15 -0
  113. package/dist/runtime/components/elements/tooltip/TooltipRoot.d.vue.ts +17 -0
  114. package/dist/runtime/components/elements/tooltip/TooltipTrigger.d.vue.ts +13 -0
  115. package/dist/runtime/components/forms/Checkbox.d.vue.ts +21 -0
  116. package/dist/runtime/components/forms/FormGroup.d.vue.ts +27 -0
  117. package/dist/runtime/components/forms/Input.d.vue.ts +28 -0
  118. package/dist/runtime/components/forms/Slider.d.vue.ts +25 -0
  119. package/dist/runtime/components/forms/Switch.d.vue.ts +27 -0
  120. package/dist/runtime/components/forms/form/FormControl.d.vue.ts +12 -0
  121. package/dist/runtime/components/forms/form/FormDescription.d.vue.ts +13 -0
  122. package/dist/runtime/components/forms/form/FormField.d.vue.ts +25 -0
  123. package/dist/runtime/components/forms/form/FormItem.d.vue.ts +13 -0
  124. package/dist/runtime/components/forms/form/FormLabel.d.vue.ts +13 -0
  125. package/dist/runtime/components/forms/form/FormMessage.d.vue.ts +3 -0
  126. package/dist/runtime/components/forms/radio-group/RadioGroup.d.vue.ts +29 -0
  127. package/dist/runtime/components/forms/radio-group/RadioGroupItem.d.vue.ts +23 -0
  128. package/dist/runtime/components/forms/select/Select.d.vue.ts +70 -0
  129. package/dist/runtime/components/forms/select/Select.vue +1 -1
  130. package/dist/runtime/components/forms/select/Select.vue.d.ts +3 -3
  131. package/dist/runtime/components/forms/select/SelectContent.d.vue.ts +23 -0
  132. package/dist/runtime/components/forms/select/SelectGroup.d.vue.ts +13 -0
  133. package/dist/runtime/components/forms/select/SelectItem.d.vue.ts +17 -0
  134. package/dist/runtime/components/forms/select/SelectItemIndicator.d.vue.ts +13 -0
  135. package/dist/runtime/components/forms/select/SelectItemText.d.vue.ts +13 -0
  136. package/dist/runtime/components/forms/select/SelectLabel.d.vue.ts +13 -0
  137. package/dist/runtime/components/forms/select/SelectScrollDownButton.d.vue.ts +13 -0
  138. package/dist/runtime/components/forms/select/SelectScrollUpButton.d.vue.ts +13 -0
  139. package/dist/runtime/components/forms/select/SelectSeparator.d.vue.ts +3 -0
  140. package/dist/runtime/components/forms/select/SelectTrigger.d.vue.ts +15 -0
  141. package/dist/runtime/components/forms/select/SelectValue.d.vue.ts +13 -0
  142. package/dist/runtime/components/hover-card/HoverCard.d.vue.ts +25 -0
  143. package/dist/runtime/components/hover-card/HoverCardArrow.d.vue.ts +6 -0
  144. package/dist/runtime/components/hover-card/HoverCardContent.d.vue.ts +15 -0
  145. package/dist/runtime/components/hover-card/HoverCardTrigger.d.vue.ts +13 -0
  146. package/dist/runtime/components/misc/ThemeSwitcher.d.vue.ts +16 -0
  147. package/dist/runtime/components/navigation/breadcrumb/Breadcrumb.d.vue.ts +35 -0
  148. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.d.vue.ts +16 -0
  149. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbItem.d.vue.ts +13 -0
  150. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbLink.d.vue.ts +18 -0
  151. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbList.d.vue.ts +13 -0
  152. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbPage.d.vue.ts +16 -0
  153. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbRoot.d.vue.ts +13 -0
  154. package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.d.vue.ts +16 -0
  155. package/dist/runtime/components/navigation-menu/NavigationMenu.d.vue.ts +46 -0
  156. package/dist/runtime/components/navigation-menu/NavigationMenuContent.d.vue.ts +23 -0
  157. package/dist/runtime/components/navigation-menu/NavigationMenuContentItem.d.vue.ts +21 -0
  158. package/dist/runtime/components/navigation-menu/NavigationMenuIndicator.d.vue.ts +13 -0
  159. package/dist/runtime/components/navigation-menu/NavigationMenuItem.d.vue.ts +13 -0
  160. package/dist/runtime/components/navigation-menu/NavigationMenuLink.d.vue.ts +27 -0
  161. package/dist/runtime/components/navigation-menu/NavigationMenuList.d.vue.ts +13 -0
  162. package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.d.vue.ts +18 -0
  163. package/dist/runtime/components/navigation-menu/NavigationMenuViewport.d.vue.ts +3 -0
  164. package/dist/runtime/components/number-field/NumberField.d.vue.ts +28 -0
  165. package/dist/runtime/components/number-field/NumberFieldContent.d.vue.ts +13 -0
  166. package/dist/runtime/components/number-field/NumberFieldDecrement.d.vue.ts +16 -0
  167. package/dist/runtime/components/number-field/NumberFieldIncrement.d.vue.ts +16 -0
  168. package/dist/runtime/components/number-field/NumberFieldInput.d.vue.ts +5 -0
  169. package/dist/runtime/components/overlays/Toaster.d.vue.ts +13 -0
  170. package/dist/runtime/components/overlays/Toaster.vue +0 -1
  171. package/dist/runtime/components/overlays/toast/Toast.d.vue.ts +112 -0
  172. package/dist/runtime/components/overlays/toast/ToastAction.d.vue.ts +16 -0
  173. package/dist/runtime/components/overlays/toast/ToastClose.d.vue.ts +3 -0
  174. package/dist/runtime/components/overlays/toast/ToastDescription.d.vue.ts +13 -0
  175. package/dist/runtime/components/overlays/toast/ToastInfo.d.vue.ts +13 -0
  176. package/dist/runtime/components/overlays/toast/ToastProvider.d.vue.ts +15 -0
  177. package/dist/runtime/components/overlays/toast/ToastProvider.vue +0 -1
  178. package/dist/runtime/components/overlays/toast/ToastTitle.d.vue.ts +13 -0
  179. package/dist/runtime/components/overlays/toast/ToastViewport.d.vue.ts +3 -0
  180. package/dist/runtime/components/pin-input/PinInput.d.vue.ts +33 -0
  181. package/dist/runtime/components/pin-input/PinInputGroup.d.vue.ts +13 -0
  182. package/dist/runtime/components/pin-input/PinInputSeparator.d.vue.ts +15 -0
  183. package/dist/runtime/components/pin-input/PinInputSlot.d.vue.ts +5 -0
  184. package/dist/runtime/components/resizable/ResizableHandle.d.vue.ts +21 -0
  185. package/dist/runtime/components/resizable/ResizablePanel.d.vue.ts +21 -0
  186. package/dist/runtime/components/resizable/ResizablePanelGroup.d.vue.ts +17 -0
  187. package/dist/runtime/components/scroll-area/ScrollArea.d.vue.ts +17 -0
  188. package/dist/runtime/components/scroll-area/ScrollBar.d.vue.ts +6 -0
  189. package/dist/runtime/components/sheet/Sheet.d.vue.ts +36 -0
  190. package/dist/runtime/components/sheet/SheetClose.d.vue.ts +42 -0
  191. package/dist/runtime/components/sheet/SheetContent.d.vue.ts +52 -0
  192. package/dist/runtime/components/sheet/SheetDescription.d.vue.ts +12 -0
  193. package/dist/runtime/components/sheet/SheetFooter.d.vue.ts +12 -0
  194. package/dist/runtime/components/sheet/SheetHeader.d.vue.ts +12 -0
  195. package/dist/runtime/components/sheet/SheetTitle.d.vue.ts +12 -0
  196. package/dist/runtime/components/sheet/SheetTrigger.d.vue.ts +15 -0
  197. package/dist/runtime/components/sidebar/Sidebar.d.vue.ts +24 -0
  198. package/dist/runtime/components/sidebar/SidebarContent.d.vue.ts +12 -0
  199. package/dist/runtime/components/sidebar/SidebarFooter.d.vue.ts +12 -0
  200. package/dist/runtime/components/sidebar/SidebarGroup.d.vue.ts +16 -0
  201. package/dist/runtime/components/sidebar/SidebarGroupAction.d.vue.ts +36 -0
  202. package/dist/runtime/components/sidebar/SidebarGroupContent.d.vue.ts +12 -0
  203. package/dist/runtime/components/sidebar/SidebarGroupLabel.d.vue.ts +36 -0
  204. package/dist/runtime/components/sidebar/SidebarHeader.d.vue.ts +12 -0
  205. package/dist/runtime/components/sidebar/SidebarInput.d.vue.ts +12 -0
  206. package/dist/runtime/components/sidebar/SidebarInset.d.vue.ts +12 -0
  207. package/dist/runtime/components/sidebar/SidebarMenu.d.vue.ts +22 -0
  208. package/dist/runtime/components/sidebar/SidebarMenuAction.d.vue.ts +34 -0
  209. package/dist/runtime/components/sidebar/SidebarMenuBadge.d.vue.ts +12 -0
  210. package/dist/runtime/components/sidebar/SidebarMenuButton.d.vue.ts +19 -0
  211. package/dist/runtime/components/sidebar/SidebarMenuButtonChild.d.vue.ts +31 -0
  212. package/dist/runtime/components/sidebar/SidebarMenuItem.d.vue.ts +12 -0
  213. package/dist/runtime/components/sidebar/SidebarMenuSkeleton.d.vue.ts +12 -0
  214. package/dist/runtime/components/sidebar/SidebarMenuSub.d.vue.ts +12 -0
  215. package/dist/runtime/components/sidebar/SidebarMenuSubButton.d.vue.ts +16 -0
  216. package/dist/runtime/components/sidebar/SidebarMenuSubItem.d.vue.ts +12 -0
  217. package/dist/runtime/components/sidebar/SidebarProvider.d.vue.ts +20 -0
  218. package/dist/runtime/components/sidebar/SidebarRail.d.vue.ts +12 -0
  219. package/dist/runtime/components/sidebar/SidebarSeparator.d.vue.ts +12 -0
  220. package/dist/runtime/components/sidebar/SidebarTrigger.d.vue.ts +30 -0
  221. package/dist/runtime/components/stepper/Stepper.d.vue.ts +62 -0
  222. package/dist/runtime/components/stepper/StepperContainer.d.vue.ts +15 -0
  223. package/dist/runtime/components/stepper/StepperDescription.d.vue.ts +13 -0
  224. package/dist/runtime/components/stepper/StepperHeader.d.vue.ts +15 -0
  225. package/dist/runtime/components/stepper/StepperIndicator.d.vue.ts +15 -0
  226. package/dist/runtime/components/stepper/StepperItem.d.vue.ts +15 -0
  227. package/dist/runtime/components/stepper/StepperSeparator.d.vue.ts +6 -0
  228. package/dist/runtime/components/stepper/StepperTitle.d.vue.ts +13 -0
  229. package/dist/runtime/components/stepper/StepperTrigger.d.vue.ts +15 -0
  230. package/dist/runtime/components/stepper/StepperWrapper.d.vue.ts +15 -0
  231. package/dist/runtime/components/toggle-group/ToggleGroup.d.vue.ts +23 -0
  232. package/dist/runtime/components/toggle-group/ToggleGroupItem.d.vue.ts +18 -0
  233. package/dist/runtime/types/select.d.ts +4 -4
  234. package/package.json +5 -5
@@ -0,0 +1,13 @@
1
+ import type { NToasterProps } from '../../types/index.js';
2
+ declare var __VLS_9: any, __VLS_10: any;
3
+ type __VLS_Slots = {} & {
4
+ [K in NonNullable<typeof __VLS_9>]?: (props: typeof __VLS_10) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NToasterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToasterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -13,7 +13,6 @@ const props = defineProps({
13
13
  class: { type: null, required: false },
14
14
  label: { type: String, required: false },
15
15
  duration: { type: Number, required: false },
16
- disableSwipe: { type: Boolean, required: false },
17
16
  swipeDirection: { type: String, required: false },
18
17
  swipeThreshold: { type: Number, required: false }
19
18
  });
@@ -0,0 +1,112 @@
1
+ import type { NToastProps } from '../../../types/index.js';
2
+ declare var __VLS_10: {}, __VLS_15: {}, __VLS_20: {}, __VLS_25: {}, __VLS_30: {}, __VLS_32: {
3
+ actions: any;
4
+ }, __VLS_40: {};
5
+ type __VLS_Slots = {} & {
6
+ leading?: (props: typeof __VLS_10) => any;
7
+ } & {
8
+ default?: (props: typeof __VLS_15) => any;
9
+ } & {
10
+ info?: (props: typeof __VLS_20) => any;
11
+ } & {
12
+ title?: (props: typeof __VLS_25) => any;
13
+ } & {
14
+ description?: (props: typeof __VLS_30) => any;
15
+ } & {
16
+ actions?: (props: typeof __VLS_32) => any;
17
+ } & {
18
+ closeIcon?: (props: typeof __VLS_40) => any;
19
+ };
20
+ declare const __VLS_component: import("vue").DefineComponent<NToastProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
+ pause: () => any;
22
+ escapeKeyDown: (event: KeyboardEvent) => any;
23
+ "update:open": (value: boolean) => any;
24
+ resume: () => any;
25
+ swipeStart: (event: {
26
+ currentTarget: EventTarget & HTMLElement;
27
+ } & Omit<CustomEvent<{
28
+ originalEvent: PointerEvent;
29
+ delta: {
30
+ x: number;
31
+ y: number;
32
+ };
33
+ }>, "currentTarget">) => any;
34
+ swipeMove: (event: {
35
+ currentTarget: EventTarget & HTMLElement;
36
+ } & Omit<CustomEvent<{
37
+ originalEvent: PointerEvent;
38
+ delta: {
39
+ x: number;
40
+ y: number;
41
+ };
42
+ }>, "currentTarget">) => any;
43
+ swipeCancel: (event: {
44
+ currentTarget: EventTarget & HTMLElement;
45
+ } & Omit<CustomEvent<{
46
+ originalEvent: PointerEvent;
47
+ delta: {
48
+ x: number;
49
+ y: number;
50
+ };
51
+ }>, "currentTarget">) => any;
52
+ swipeEnd: (event: {
53
+ currentTarget: EventTarget & HTMLElement;
54
+ } & Omit<CustomEvent<{
55
+ originalEvent: PointerEvent;
56
+ delta: {
57
+ x: number;
58
+ y: number;
59
+ };
60
+ }>, "currentTarget">) => any;
61
+ }, string, import("vue").PublicProps, Readonly<NToastProps> & Readonly<{
62
+ onPause?: (() => any) | undefined;
63
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
64
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
65
+ onResume?: (() => any) | undefined;
66
+ onSwipeStart?: ((event: {
67
+ currentTarget: EventTarget & HTMLElement;
68
+ } & Omit<CustomEvent<{
69
+ originalEvent: PointerEvent;
70
+ delta: {
71
+ x: number;
72
+ y: number;
73
+ };
74
+ }>, "currentTarget">) => any) | undefined;
75
+ onSwipeMove?: ((event: {
76
+ currentTarget: EventTarget & HTMLElement;
77
+ } & Omit<CustomEvent<{
78
+ originalEvent: PointerEvent;
79
+ delta: {
80
+ x: number;
81
+ y: number;
82
+ };
83
+ }>, "currentTarget">) => any) | undefined;
84
+ onSwipeCancel?: ((event: {
85
+ currentTarget: EventTarget & HTMLElement;
86
+ } & Omit<CustomEvent<{
87
+ originalEvent: PointerEvent;
88
+ delta: {
89
+ x: number;
90
+ y: number;
91
+ };
92
+ }>, "currentTarget">) => any) | undefined;
93
+ onSwipeEnd?: ((event: {
94
+ currentTarget: EventTarget & HTMLElement;
95
+ } & Omit<CustomEvent<{
96
+ originalEvent: PointerEvent;
97
+ delta: {
98
+ x: number;
99
+ y: number;
100
+ };
101
+ }>, "currentTarget">) => any) | undefined;
102
+ }>, {
103
+ toast: import("vue").HTMLAttributes["class"];
104
+ closable: boolean;
105
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
106
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
107
+ export default _default;
108
+ type __VLS_WithSlots<T, S> = T & {
109
+ new (): {
110
+ $slots: S;
111
+ };
112
+ };
@@ -0,0 +1,16 @@
1
+ import type { NToastActionProps } from '../../../types/index.js';
2
+ declare var __VLS_10: any, __VLS_11: any;
3
+ type __VLS_Slots = {} & {
4
+ [K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NToastActionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastActionProps> & Readonly<{}>, {
7
+ size: string;
8
+ btn: string;
9
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,3 @@
1
+ import type { NToastCloseProps } from '../../../types/index.js';
2
+ declare const _default: import("vue").DefineComponent<NToastCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import type { NToastDescriptionProps } from '../../../types/index.js';
2
+ declare var __VLS_6: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NToastDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -0,0 +1,13 @@
1
+ import type { NToastInfoProps } from '../../../types/index.js';
2
+ declare var __VLS_1: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_1) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NToastInfoProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastInfoProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -0,0 +1,15 @@
1
+ import type { NToastProviderProps } from '../../../types/index.js';
2
+ declare var __VLS_6: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NToastProviderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastProviderProps> & Readonly<{}>, {
7
+ duration: number;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
10
+ export default _default;
11
+ type __VLS_WithSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -3,7 +3,6 @@ import { ToastProvider } from "reka-ui";
3
3
  const props = defineProps({
4
4
  label: { type: String, required: false },
5
5
  duration: { type: Number, required: false, default: 5e3 },
6
- disableSwipe: { type: Boolean, required: false },
7
6
  swipeDirection: { type: String, required: false },
8
7
  swipeThreshold: { type: Number, required: false }
9
8
  });
@@ -0,0 +1,13 @@
1
+ import type { NToastTitleProps } from '../../../types/index.js';
2
+ declare var __VLS_6: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NToastTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -0,0 +1,3 @@
1
+ import type { NToastViewportProps } from '../../../types/index.js';
2
+ declare const _default: import("vue").DefineComponent<NToastViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
@@ -0,0 +1,33 @@
1
+ import type { NPinInputProps, PinInputType } from '../../types/index.js';
2
+ declare const _default: <T extends PinInputType = "text">(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
4
+ readonly "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
5
+ readonly onComplete?: ((value: string[]) => any) | undefined;
6
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onComplete"> & NPinInputProps<T> & Partial<{}>> & import("vue").PublicProps;
7
+ expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
8
+ attrs: any;
9
+ slots: {
10
+ default?: (props: {}) => any;
11
+ } & {
12
+ group?: (props: {}) => any;
13
+ } & {
14
+ slot?: (props: {
15
+ index: number;
16
+ }) => any;
17
+ } & {
18
+ group?: (props: {}) => any;
19
+ } & {
20
+ slot?: (props: {
21
+ index: number;
22
+ }) => any;
23
+ } & {
24
+ separator?: (props: {}) => any;
25
+ };
26
+ emit: ((evt: "update:modelValue", value: string[]) => void) & ((evt: "complete", value: string[]) => void);
27
+ }>) => import("vue").VNode & {
28
+ __ctx?: Awaited<typeof __VLS_setup>;
29
+ };
30
+ export default _default;
31
+ type __VLS_PrettifyLocal<T> = {
32
+ [K in keyof T]: T[K];
33
+ } & {};
@@ -0,0 +1,13 @@
1
+ import type { NPinInputGroupProps } from '../../types/index.js';
2
+ declare var __VLS_6: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NPinInputGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPinInputGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -0,0 +1,15 @@
1
+ import type { NPinInputSeparatorProps } from '../../types/index.js';
2
+ declare var __VLS_6: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NPinInputSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPinInputSeparatorProps> & Readonly<{}>, {
7
+ icon: string;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
10
+ export default _default;
11
+ type __VLS_WithSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -0,0 +1,5 @@
1
+ import type { NPinInputSlotProps } from '../../types/index.js';
2
+ declare const _default: import("vue").DefineComponent<NPinInputSlotProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPinInputSlotProps> & Readonly<{}>, {
3
+ pinInput: import("vue").HTMLAttributes["class"];
4
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ export default _default;
@@ -0,0 +1,21 @@
1
+ import type { NResizableHandleProps } from '../../types/index.js';
2
+ declare var __VLS_6: {}, __VLS_8: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ } & {
6
+ icon?: (props: typeof __VLS_8) => any;
7
+ };
8
+ declare const __VLS_component: import("vue").DefineComponent<NResizableHandleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ dragging: (isDragging: boolean) => any;
10
+ }, string, import("vue").PublicProps, Readonly<NResizableHandleProps> & Readonly<{
11
+ onDragging?: ((isDragging: boolean) => any) | undefined;
12
+ }>, {
13
+ resizableHandle: string;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,21 @@
1
+ import type { NResizablePanelProps } from '../../types/index.js';
2
+ declare var __VLS_6: any;
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NResizablePanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ resize: (size: number, prevSize: number | undefined) => any;
8
+ expand: () => any;
9
+ collapse: () => any;
10
+ }, string, import("vue").PublicProps, Readonly<NResizablePanelProps> & Readonly<{
11
+ onResize?: ((size: number, prevSize: number | undefined) => any) | undefined;
12
+ onExpand?: (() => any) | undefined;
13
+ onCollapse?: (() => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,17 @@
1
+ import type { NResizablePanelGroupProps } from '../../types/index.js';
2
+ declare var __VLS_6: any;
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NResizablePanelGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ layout: (val: number[]) => any;
8
+ }, string, import("vue").PublicProps, Readonly<NResizablePanelGroupProps> & Readonly<{
9
+ onLayout?: ((val: number[]) => any) | undefined;
10
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ import type { NScrollAreaProps } from '../../types/index.js';
2
+ declare var __VLS_10: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_10) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NScrollAreaProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NScrollAreaProps> & Readonly<{}>, {
7
+ rounded: import("vue").HTMLAttributes["class"];
8
+ size: import("vue").HTMLAttributes["class"];
9
+ scrollArea: import("vue").HTMLAttributes["class"];
10
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,6 @@
1
+ import type { NScrollAreaScrollbarProps } from '../../types/index.js';
2
+ declare const _default: import("vue").DefineComponent<NScrollAreaScrollbarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NScrollAreaScrollbarProps> & Readonly<{}>, {
3
+ rounded: import("vue").HTMLAttributes["class"];
4
+ orientation: "vertical" | "horizontal";
5
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
@@ -0,0 +1,36 @@
1
+ import type { NSheetProps } from '../../types/index.js';
2
+ declare var __VLS_6: {}, __VLS_11: {
3
+ open: any;
4
+ }, __VLS_26: {}, __VLS_31: {}, __VLS_36: {}, __VLS_41: {}, __VLS_43: {}, __VLS_48: {};
5
+ type __VLS_Slots = {} & {
6
+ root?: (props: typeof __VLS_6) => any;
7
+ } & {
8
+ trigger?: (props: typeof __VLS_11) => any;
9
+ } & {
10
+ content?: (props: typeof __VLS_26) => any;
11
+ } & {
12
+ header?: (props: typeof __VLS_31) => any;
13
+ } & {
14
+ title?: (props: typeof __VLS_36) => any;
15
+ } & {
16
+ description?: (props: typeof __VLS_41) => any;
17
+ } & {
18
+ default?: (props: typeof __VLS_43) => any;
19
+ } & {
20
+ footer?: (props: typeof __VLS_48) => any;
21
+ };
22
+ declare const __VLS_component: import("vue").DefineComponent<NSheetProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
+ "update:open": (value: boolean) => any;
24
+ }, string, import("vue").PublicProps, Readonly<NSheetProps> & Readonly<{
25
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
26
+ }>, {
27
+ overlay: boolean;
28
+ showClose: boolean;
29
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
31
+ export default _default;
32
+ type __VLS_WithSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -0,0 +1,42 @@
1
+ import type { NSheetCloseProps } from '../../types/index.js';
2
+ declare var __VLS_6: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetCloseProps>, {
7
+ btn: string;
8
+ label: string;
9
+ square: string;
10
+ icon: boolean;
11
+ ariaLabel: string;
12
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetCloseProps>, {
13
+ btn: string;
14
+ label: string;
15
+ square: string;
16
+ icon: boolean;
17
+ ariaLabel: string;
18
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
20
+ export default _default;
21
+ type __VLS_WithDefaults<P, D> = {
22
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
23
+ default: D[K];
24
+ }> : P[K];
25
+ };
26
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
27
+ type __VLS_TypePropsToOption<T> = {
28
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
29
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
30
+ } : {
31
+ type: import('vue').PropType<T[K]>;
32
+ required: true;
33
+ };
34
+ };
35
+ type __VLS_WithSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
40
+ type __VLS_PrettifyLocal<T> = {
41
+ [K in keyof T]: T[K];
42
+ } & {};
@@ -0,0 +1,52 @@
1
+ import type { NSheetContentProps } from '../../types/index.js';
2
+ declare var __VLS_14: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_14) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetContentProps>, {
7
+ sheet: string;
8
+ overlay: boolean;
9
+ showClose: boolean;
10
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ escapeKeyDown: (event: KeyboardEvent) => any;
12
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
13
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
14
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
15
+ openAutoFocus: (event: Event) => any;
16
+ closeAutoFocus: (event: Event) => any;
17
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetContentProps>, {
18
+ sheet: string;
19
+ overlay: boolean;
20
+ showClose: boolean;
21
+ }>>> & Readonly<{
22
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
23
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
24
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
25
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
26
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
27
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
28
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
+ export default _default;
31
+ type __VLS_WithDefaults<P, D> = {
32
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
33
+ default: D[K];
34
+ }> : P[K];
35
+ };
36
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
37
+ type __VLS_TypePropsToOption<T> = {
38
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
39
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
40
+ } : {
41
+ type: import('vue').PropType<T[K]>;
42
+ required: true;
43
+ };
44
+ };
45
+ type __VLS_WithSlots<T, S> = T & {
46
+ new (): {
47
+ $slots: S;
48
+ };
49
+ };
50
+ type __VLS_PrettifyLocal<T> = {
51
+ [K in keyof T]: T[K];
52
+ } & {};
@@ -0,0 +1,12 @@
1
+ declare var __VLS_6: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_6) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
+ export default _default;
8
+ type __VLS_WithSlots<T, S> = T & {
9
+ new (): {
10
+ $slots: S;
11
+ };
12
+ };
@@ -0,0 +1,12 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
+ export default _default;
8
+ type __VLS_WithSlots<T, S> = T & {
9
+ new (): {
10
+ $slots: S;
11
+ };
12
+ };
@@ -0,0 +1,12 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
+ export default _default;
8
+ type __VLS_WithSlots<T, S> = T & {
9
+ new (): {
10
+ $slots: S;
11
+ };
12
+ };
@@ -0,0 +1,12 @@
1
+ declare var __VLS_6: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_6) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
+ export default _default;
8
+ type __VLS_WithSlots<T, S> = T & {
9
+ new (): {
10
+ $slots: S;
11
+ };
12
+ };
@@ -0,0 +1,15 @@
1
+ import type { NSheetTriggerProps } from '../../types/index.js';
2
+ declare var __VLS_6: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_6) => any;
5
+ };
6
+ declare const __VLS_component: import("vue").DefineComponent<NSheetTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSheetTriggerProps> & Readonly<{}>, {
7
+ asChild: boolean;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
10
+ export default _default;
11
+ type __VLS_WithSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -0,0 +1,24 @@
1
+ import type { NSidebarProps } from '../../types/index.js';
2
+ declare var __VLS_5: {}, __VLS_10: {}, __VLS_15: {}, __VLS_20: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_5) => any;
5
+ } & {
6
+ header?: (props: typeof __VLS_10) => any;
7
+ } & {
8
+ content?: (props: typeof __VLS_15) => any;
9
+ } & {
10
+ footer?: (props: typeof __VLS_20) => any;
11
+ };
12
+ declare const __VLS_component: import("vue").DefineComponent<NSidebarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarProps> & Readonly<{}>, {
13
+ collapsible: "offcanvas" | "icon" | "none";
14
+ sheet: "left" | "right";
15
+ sidebar: "sidebar" | "floating" | "inset";
16
+ rail: boolean;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
19
+ export default _default;
20
+ type __VLS_WithSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -0,0 +1,12 @@
1
+ declare var __VLS_4: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_4) => any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
+ export default _default;
8
+ type __VLS_WithSlots<T, S> = T & {
9
+ new (): {
10
+ $slots: S;
11
+ };
12
+ };