@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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/alert-dialog/AlertDialog.d.vue.ts +45 -0
- package/dist/runtime/components/alert-dialog/AlertDialogAction.d.vue.ts +16 -0
- package/dist/runtime/components/alert-dialog/AlertDialogCancel.d.vue.ts +16 -0
- package/dist/runtime/components/alert-dialog/AlertDialogContent.d.vue.ts +29 -0
- package/dist/runtime/components/alert-dialog/AlertDialogDescription.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogFooter.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogHeader.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogOverlay.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogTitle.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/aspect-ratio/AspectRatio.d.vue.ts +18 -0
- package/dist/runtime/components/combobox/Combobox.d.vue.ts +91 -0
- package/dist/runtime/components/combobox/Combobox.vue +0 -1
- package/dist/runtime/components/combobox/ComboboxAnchor.d.vue.ts +13 -0
- package/dist/runtime/components/combobox/ComboboxEmpty.d.vue.ts +15 -0
- package/dist/runtime/components/combobox/ComboboxGroup.d.vue.ts +17 -0
- package/dist/runtime/components/combobox/ComboboxInput.d.vue.ts +38 -0
- package/dist/runtime/components/combobox/ComboboxItem.d.vue.ts +18 -0
- package/dist/runtime/components/combobox/ComboboxItemIndicator.d.vue.ts +15 -0
- package/dist/runtime/components/combobox/ComboboxLabel.d.vue.ts +13 -0
- package/dist/runtime/components/combobox/ComboboxList.d.vue.ts +27 -0
- package/dist/runtime/components/combobox/ComboboxSeparator.d.vue.ts +13 -0
- package/dist/runtime/components/combobox/ComboboxTrigger.d.vue.ts +17 -0
- package/dist/runtime/components/combobox/ComboboxViewport.d.vue.ts +16 -0
- package/dist/runtime/components/data/table/Table.d.vue.ts +184 -0
- package/dist/runtime/components/data/table/TableBody.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableCaption.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableCell.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableEmpty.d.vue.ts +38 -0
- package/dist/runtime/components/data/table/TableFooter.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableHead.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableHeader.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableLoading.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableRow.d.vue.ts +34 -0
- package/dist/runtime/components/drawer/Drawer.d.vue.ts +47 -0
- package/dist/runtime/components/drawer/DrawerClose.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerContent.d.vue.ts +29 -0
- package/dist/runtime/components/drawer/DrawerDescription.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerFooter.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerHeader.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerOverlay.d.vue.ts +3 -0
- package/dist/runtime/components/drawer/DrawerTitle.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Alert.d.vue.ts +18 -0
- package/dist/runtime/components/elements/AvatarGroup.d.vue.ts +11 -0
- package/dist/runtime/components/elements/Badge.d.vue.ts +22 -0
- package/dist/runtime/components/elements/Button.d.vue.ts +34 -0
- package/dist/runtime/components/elements/Icon.d.vue.ts +3 -0
- package/dist/runtime/components/elements/Indicator.d.vue.ts +19 -0
- package/dist/runtime/components/elements/Kbd.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Label.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Link.d.vue.ts +20 -0
- package/dist/runtime/components/elements/Progress.d.vue.ts +18 -0
- package/dist/runtime/components/elements/Separator.d.vue.ts +15 -0
- package/dist/runtime/components/elements/Skeleton.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Toggle.d.vue.ts +22 -0
- package/dist/runtime/components/elements/accordion/Accordion.d.vue.ts +71 -0
- package/dist/runtime/components/elements/accordion/AccordionContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/accordion/AccordionHeader.d.vue.ts +13 -0
- package/dist/runtime/components/elements/accordion/AccordionItem.d.vue.ts +27 -0
- package/dist/runtime/components/elements/accordion/AccordionTrigger.d.vue.ts +16 -0
- package/dist/runtime/components/elements/avatar/Avatar.d.vue.ts +21 -0
- package/dist/runtime/components/elements/avatar/AvatarFallback.d.vue.ts +13 -0
- package/dist/runtime/components/elements/avatar/AvatarImage.d.vue.ts +3 -0
- package/dist/runtime/components/elements/card/Card.d.vue.ts +25 -0
- package/dist/runtime/components/elements/card/CardContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardDescription.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardFooter.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardHeader.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardTitle.d.vue.ts +13 -0
- package/dist/runtime/components/elements/collapsible/Collapsible.d.vue.ts +25 -0
- package/dist/runtime/components/elements/collapsible/CollapsibleContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/collapsible/CollapsibleTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/Dialog.d.vue.ts +34 -0
- package/dist/runtime/components/elements/dialog/DialogClose.d.vue.ts +18 -0
- package/dist/runtime/components/elements/dialog/DialogContent.d.vue.ts +30 -0
- package/dist/runtime/components/elements/dialog/DialogDescription.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogFooter.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogHeader.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogOverlay.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogScrollContent.d.vue.ts +30 -0
- package/dist/runtime/components/elements/dialog/DialogTitle.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenu.d.vue.ts +45 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuContent.d.vue.ts +27 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuGroup.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.d.vue.ts +14 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuLabel.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuRoot.d.vue.ts +17 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSeparator.d.vue.ts +3 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuShortcut.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSub.d.vue.ts +17 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubContent.d.vue.ts +29 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubTrigger.d.vue.ts +16 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/elements/pagination/Pagination.d.vue.ts +38 -0
- package/dist/runtime/components/elements/pagination/PaginationEllipsis.d.vue.ts +15 -0
- package/dist/runtime/components/elements/pagination/PaginationFirst.d.vue.ts +18 -0
- package/dist/runtime/components/elements/pagination/PaginationLast.d.vue.ts +18 -0
- package/dist/runtime/components/elements/pagination/PaginationListItem.d.vue.ts +17 -0
- package/dist/runtime/components/elements/pagination/PaginationNext.d.vue.ts +18 -0
- package/dist/runtime/components/elements/pagination/PaginationPrev.d.vue.ts +18 -0
- package/dist/runtime/components/elements/popover/Popover.d.vue.ts +21 -0
- package/dist/runtime/components/elements/popover/PopoverContent.d.vue.ts +30 -0
- package/dist/runtime/components/elements/tabs/Tabs.d.vue.ts +32 -0
- package/dist/runtime/components/elements/tabs/TabsContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/tabs/TabsList.d.vue.ts +15 -0
- package/dist/runtime/components/elements/tabs/TabsTrigger.d.vue.ts +16 -0
- package/dist/runtime/components/elements/tooltip/Tooltip.d.vue.ts +19 -0
- package/dist/runtime/components/elements/tooltip/TooltipContent.d.vue.ts +22 -0
- package/dist/runtime/components/elements/tooltip/TooltipProvider.d.vue.ts +15 -0
- package/dist/runtime/components/elements/tooltip/TooltipRoot.d.vue.ts +17 -0
- package/dist/runtime/components/elements/tooltip/TooltipTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/forms/Checkbox.d.vue.ts +21 -0
- package/dist/runtime/components/forms/FormGroup.d.vue.ts +27 -0
- package/dist/runtime/components/forms/Input.d.vue.ts +28 -0
- package/dist/runtime/components/forms/Slider.d.vue.ts +25 -0
- package/dist/runtime/components/forms/Switch.d.vue.ts +27 -0
- package/dist/runtime/components/forms/form/FormControl.d.vue.ts +12 -0
- package/dist/runtime/components/forms/form/FormDescription.d.vue.ts +13 -0
- package/dist/runtime/components/forms/form/FormField.d.vue.ts +25 -0
- package/dist/runtime/components/forms/form/FormItem.d.vue.ts +13 -0
- package/dist/runtime/components/forms/form/FormLabel.d.vue.ts +13 -0
- package/dist/runtime/components/forms/form/FormMessage.d.vue.ts +3 -0
- package/dist/runtime/components/forms/radio-group/RadioGroup.d.vue.ts +29 -0
- package/dist/runtime/components/forms/radio-group/RadioGroupItem.d.vue.ts +23 -0
- package/dist/runtime/components/forms/select/Select.d.vue.ts +70 -0
- package/dist/runtime/components/forms/select/Select.vue +1 -1
- package/dist/runtime/components/forms/select/Select.vue.d.ts +3 -3
- package/dist/runtime/components/forms/select/SelectContent.d.vue.ts +23 -0
- package/dist/runtime/components/forms/select/SelectGroup.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectItem.d.vue.ts +17 -0
- package/dist/runtime/components/forms/select/SelectItemIndicator.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectItemText.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectLabel.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectScrollDownButton.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectScrollUpButton.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectSeparator.d.vue.ts +3 -0
- package/dist/runtime/components/forms/select/SelectTrigger.d.vue.ts +15 -0
- package/dist/runtime/components/forms/select/SelectValue.d.vue.ts +13 -0
- package/dist/runtime/components/hover-card/HoverCard.d.vue.ts +25 -0
- package/dist/runtime/components/hover-card/HoverCardArrow.d.vue.ts +6 -0
- package/dist/runtime/components/hover-card/HoverCardContent.d.vue.ts +15 -0
- package/dist/runtime/components/hover-card/HoverCardTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/misc/ThemeSwitcher.d.vue.ts +16 -0
- package/dist/runtime/components/navigation/breadcrumb/Breadcrumb.d.vue.ts +35 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.d.vue.ts +16 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbItem.d.vue.ts +13 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbLink.d.vue.ts +18 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbList.d.vue.ts +13 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbPage.d.vue.ts +16 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbRoot.d.vue.ts +13 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.d.vue.ts +16 -0
- package/dist/runtime/components/navigation-menu/NavigationMenu.d.vue.ts +46 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuContent.d.vue.ts +23 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuContentItem.d.vue.ts +21 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuIndicator.d.vue.ts +13 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuItem.d.vue.ts +13 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuLink.d.vue.ts +27 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuList.d.vue.ts +13 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.d.vue.ts +18 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuViewport.d.vue.ts +3 -0
- package/dist/runtime/components/number-field/NumberField.d.vue.ts +28 -0
- package/dist/runtime/components/number-field/NumberFieldContent.d.vue.ts +13 -0
- package/dist/runtime/components/number-field/NumberFieldDecrement.d.vue.ts +16 -0
- package/dist/runtime/components/number-field/NumberFieldIncrement.d.vue.ts +16 -0
- package/dist/runtime/components/number-field/NumberFieldInput.d.vue.ts +5 -0
- package/dist/runtime/components/overlays/Toaster.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/Toaster.vue +0 -1
- package/dist/runtime/components/overlays/toast/Toast.d.vue.ts +112 -0
- package/dist/runtime/components/overlays/toast/ToastAction.d.vue.ts +16 -0
- package/dist/runtime/components/overlays/toast/ToastClose.d.vue.ts +3 -0
- package/dist/runtime/components/overlays/toast/ToastDescription.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/toast/ToastInfo.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/toast/ToastProvider.d.vue.ts +15 -0
- package/dist/runtime/components/overlays/toast/ToastProvider.vue +0 -1
- package/dist/runtime/components/overlays/toast/ToastTitle.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/toast/ToastViewport.d.vue.ts +3 -0
- package/dist/runtime/components/pin-input/PinInput.d.vue.ts +33 -0
- package/dist/runtime/components/pin-input/PinInputGroup.d.vue.ts +13 -0
- package/dist/runtime/components/pin-input/PinInputSeparator.d.vue.ts +15 -0
- package/dist/runtime/components/pin-input/PinInputSlot.d.vue.ts +5 -0
- package/dist/runtime/components/resizable/ResizableHandle.d.vue.ts +21 -0
- package/dist/runtime/components/resizable/ResizablePanel.d.vue.ts +21 -0
- package/dist/runtime/components/resizable/ResizablePanelGroup.d.vue.ts +17 -0
- package/dist/runtime/components/scroll-area/ScrollArea.d.vue.ts +17 -0
- package/dist/runtime/components/scroll-area/ScrollBar.d.vue.ts +6 -0
- package/dist/runtime/components/sheet/Sheet.d.vue.ts +36 -0
- package/dist/runtime/components/sheet/SheetClose.d.vue.ts +42 -0
- package/dist/runtime/components/sheet/SheetContent.d.vue.ts +52 -0
- package/dist/runtime/components/sheet/SheetDescription.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetFooter.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetHeader.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetTitle.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetTrigger.d.vue.ts +15 -0
- package/dist/runtime/components/sidebar/Sidebar.d.vue.ts +24 -0
- package/dist/runtime/components/sidebar/SidebarContent.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarFooter.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarGroup.d.vue.ts +16 -0
- package/dist/runtime/components/sidebar/SidebarGroupAction.d.vue.ts +36 -0
- package/dist/runtime/components/sidebar/SidebarGroupContent.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarGroupLabel.d.vue.ts +36 -0
- package/dist/runtime/components/sidebar/SidebarHeader.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarInput.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarInset.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenu.d.vue.ts +22 -0
- package/dist/runtime/components/sidebar/SidebarMenuAction.d.vue.ts +34 -0
- package/dist/runtime/components/sidebar/SidebarMenuBadge.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuButton.d.vue.ts +19 -0
- package/dist/runtime/components/sidebar/SidebarMenuButtonChild.d.vue.ts +31 -0
- package/dist/runtime/components/sidebar/SidebarMenuItem.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuSkeleton.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuSub.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuSubButton.d.vue.ts +16 -0
- package/dist/runtime/components/sidebar/SidebarMenuSubItem.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarProvider.d.vue.ts +20 -0
- package/dist/runtime/components/sidebar/SidebarRail.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarSeparator.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarTrigger.d.vue.ts +30 -0
- package/dist/runtime/components/stepper/Stepper.d.vue.ts +62 -0
- package/dist/runtime/components/stepper/StepperContainer.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperDescription.d.vue.ts +13 -0
- package/dist/runtime/components/stepper/StepperHeader.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperIndicator.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperItem.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperSeparator.d.vue.ts +6 -0
- package/dist/runtime/components/stepper/StepperTitle.d.vue.ts +13 -0
- package/dist/runtime/components/stepper/StepperTrigger.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperWrapper.d.vue.ts +15 -0
- package/dist/runtime/components/toggle-group/ToggleGroup.d.vue.ts +23 -0
- package/dist/runtime/components/toggle-group/ToggleGroupItem.d.vue.ts +18 -0
- package/dist/runtime/types/select.d.ts +4 -4
- package/package.json +5 -5
|
@@ -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,16 @@
|
|
|
1
|
+
declare var __VLS_1: {}, __VLS_6: {}, __VLS_8: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
root?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
label?: (props: typeof __VLS_6) => any;
|
|
6
|
+
} & {
|
|
7
|
+
default?: (props: typeof __VLS_8) => any;
|
|
8
|
+
};
|
|
9
|
+
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>;
|
|
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,36 @@
|
|
|
1
|
+
import type { NSidebarGroupActionProps } 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<NSidebarGroupActionProps>, {
|
|
7
|
+
as: string;
|
|
8
|
+
asChild: boolean;
|
|
9
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSidebarGroupActionProps>, {
|
|
10
|
+
as: string;
|
|
11
|
+
asChild: boolean;
|
|
12
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithDefaults<P, D> = {
|
|
16
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
17
|
+
default: D[K];
|
|
18
|
+
}> : P[K];
|
|
19
|
+
};
|
|
20
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
+
type __VLS_TypePropsToOption<T> = {
|
|
22
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
+
} : {
|
|
25
|
+
type: import('vue').PropType<T[K]>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
type __VLS_PrettifyLocal<T> = {
|
|
35
|
+
[K in keyof T]: T[K];
|
|
36
|
+
} & {};
|
|
@@ -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,36 @@
|
|
|
1
|
+
import type { NSidebarGroupLabelProps } 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<NSidebarGroupLabelProps>, {
|
|
7
|
+
as: string;
|
|
8
|
+
asChild: boolean;
|
|
9
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSidebarGroupLabelProps>, {
|
|
10
|
+
as: string;
|
|
11
|
+
asChild: boolean;
|
|
12
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithDefaults<P, D> = {
|
|
16
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
17
|
+
default: D[K];
|
|
18
|
+
}> : P[K];
|
|
19
|
+
};
|
|
20
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
+
type __VLS_TypePropsToOption<T> = {
|
|
22
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
+
} : {
|
|
25
|
+
type: import('vue').PropType<T[K]>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
type __VLS_PrettifyLocal<T> = {
|
|
35
|
+
[K in keyof T]: T[K];
|
|
36
|
+
} & {};
|
|
@@ -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_5: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_5) => 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,22 @@
|
|
|
1
|
+
import type { NSidebarMenuProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: <T extends {
|
|
3
|
+
id?: string | number;
|
|
4
|
+
} | Record<string, any>>(__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<{
|
|
5
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & NSidebarMenuProps<T> & Partial<{}>> & import("vue").PublicProps;
|
|
6
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
7
|
+
attrs: any;
|
|
8
|
+
slots: {
|
|
9
|
+
default?: (props: {}) => any;
|
|
10
|
+
} & {
|
|
11
|
+
item?: (props: {
|
|
12
|
+
item: any;
|
|
13
|
+
}) => any;
|
|
14
|
+
};
|
|
15
|
+
emit: {};
|
|
16
|
+
}>) => import("vue").VNode & {
|
|
17
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
18
|
+
};
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_PrettifyLocal<T> = {
|
|
21
|
+
[K in keyof T]: T[K];
|
|
22
|
+
} & {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { NSidebarMenuActionProps } 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<NSidebarMenuActionProps>, {
|
|
7
|
+
as: string;
|
|
8
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSidebarMenuActionProps>, {
|
|
9
|
+
as: string;
|
|
10
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithDefaults<P, D> = {
|
|
14
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
15
|
+
default: D[K];
|
|
16
|
+
}> : P[K];
|
|
17
|
+
};
|
|
18
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
|
+
type __VLS_TypePropsToOption<T> = {
|
|
20
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
21
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
22
|
+
} : {
|
|
23
|
+
type: import('vue').PropType<T[K]>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
type __VLS_PrettifyLocal<T> = {
|
|
33
|
+
[K in keyof T]: T[K];
|
|
34
|
+
} & {};
|
|
@@ -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,19 @@
|
|
|
1
|
+
import type { NSidebarMenuButtonProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_5: {}, __VLS_17: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_5) => any;
|
|
5
|
+
} & {
|
|
6
|
+
default?: (props: typeof __VLS_17) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NSidebarMenuButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarMenuButtonProps> & Readonly<{}>, {
|
|
9
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
10
|
+
size: "default" | "sm" | "lg";
|
|
11
|
+
variant: "default" | "outline";
|
|
12
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import type { PrimitiveProps } from 'reka-ui';
|
|
3
|
+
import type { HTMLAttributes } from 'vue';
|
|
4
|
+
import type { NSidebarMenuButtonChildProps } from '../../types/index.js';
|
|
5
|
+
declare const sidebarMenuButtonVariants: (props?: ({
|
|
6
|
+
variant?: "default" | "outline" | null | undefined;
|
|
7
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
8
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
9
|
+
type SidebarMenuButtonVariants = VariantProps<typeof sidebarMenuButtonVariants>;
|
|
10
|
+
export interface SidebarMenuButtonProps extends PrimitiveProps {
|
|
11
|
+
variant?: SidebarMenuButtonVariants['variant'];
|
|
12
|
+
size?: SidebarMenuButtonVariants['size'];
|
|
13
|
+
isActive?: boolean;
|
|
14
|
+
class?: HTMLAttributes['class'];
|
|
15
|
+
}
|
|
16
|
+
declare var __VLS_6: {};
|
|
17
|
+
type __VLS_Slots = {} & {
|
|
18
|
+
default?: (props: typeof __VLS_6) => any;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<NSidebarMenuButtonChildProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarMenuButtonChildProps> & Readonly<{}>, {
|
|
21
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
22
|
+
size: "default" | "sm" | "lg";
|
|
23
|
+
variant: "default" | "outline";
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -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_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,16 @@
|
|
|
1
|
+
import type { NSidebarMenuSubButtonProps } 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<NSidebarMenuSubButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarMenuSubButtonProps> & Readonly<{}>, {
|
|
7
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
8
|
+
size: "sm" | "md";
|
|
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,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,20 @@
|
|
|
1
|
+
import type { NSidebarProviderProps } 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<NSidebarProviderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:open": (open: boolean) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<NSidebarProviderProps> & Readonly<{
|
|
9
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
open: boolean;
|
|
12
|
+
defaultOpen: boolean;
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -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_5: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_5) => 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,30 @@
|
|
|
1
|
+
import type { NSidebarTriggerProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSidebarTriggerProps>, {
|
|
3
|
+
btn: string;
|
|
4
|
+
square: string;
|
|
5
|
+
label: string;
|
|
6
|
+
icon: boolean;
|
|
7
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSidebarTriggerProps>, {
|
|
8
|
+
btn: string;
|
|
9
|
+
square: string;
|
|
10
|
+
label: string;
|
|
11
|
+
icon: boolean;
|
|
12
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithDefaults<P, D> = {
|
|
15
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
16
|
+
default: D[K];
|
|
17
|
+
}> : P[K];
|
|
18
|
+
};
|
|
19
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
|
+
type __VLS_TypePropsToOption<T> = {
|
|
21
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
23
|
+
} : {
|
|
24
|
+
type: import('vue').PropType<T[K]>;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
type __VLS_PrettifyLocal<T> = {
|
|
29
|
+
[K in keyof T]: T[K];
|
|
30
|
+
} & {};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import type { NStepperItemProps, NStepperProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: <T extends Partial<NStepperItemProps>>(__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"?: ((...args: unknown[]) => any) | undefined;
|
|
5
|
+
readonly onNext?: ((payload: T) => any) | undefined;
|
|
6
|
+
readonly onPrev?: ((payload: T) => any) | undefined;
|
|
7
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onNext" | "onPrev"> & (NStepperProps<T> & {
|
|
8
|
+
modelValue?: string | number;
|
|
9
|
+
}) & Partial<{}>> & import("vue").PublicProps;
|
|
10
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
11
|
+
goToStep: (step: number) => void;
|
|
12
|
+
nextStep: () => void;
|
|
13
|
+
prevStep: () => void;
|
|
14
|
+
hasNext: () => boolean;
|
|
15
|
+
hasPrev: () => boolean;
|
|
16
|
+
}>): void;
|
|
17
|
+
attrs: any;
|
|
18
|
+
slots: {
|
|
19
|
+
[x: string]: ((props: {
|
|
20
|
+
item: any;
|
|
21
|
+
}) => any) | undefined;
|
|
22
|
+
} & {
|
|
23
|
+
default?: (props: any) => any;
|
|
24
|
+
} & {
|
|
25
|
+
wrapper?: (props: {
|
|
26
|
+
items: any;
|
|
27
|
+
}) => any;
|
|
28
|
+
} & {
|
|
29
|
+
item?: (props: {
|
|
30
|
+
item: any;
|
|
31
|
+
step: any;
|
|
32
|
+
}) => any;
|
|
33
|
+
} & {
|
|
34
|
+
trigger?: (props: {
|
|
35
|
+
item: any;
|
|
36
|
+
}) => any;
|
|
37
|
+
} & {
|
|
38
|
+
indicator?: (props: {
|
|
39
|
+
item: any;
|
|
40
|
+
step: any;
|
|
41
|
+
}) => any;
|
|
42
|
+
} & {
|
|
43
|
+
header?: (props: {
|
|
44
|
+
item: any;
|
|
45
|
+
}) => any;
|
|
46
|
+
} & {
|
|
47
|
+
title?: (props: {
|
|
48
|
+
item: any;
|
|
49
|
+
}) => any;
|
|
50
|
+
} & {
|
|
51
|
+
description?: (props: {
|
|
52
|
+
item: any;
|
|
53
|
+
}) => any;
|
|
54
|
+
};
|
|
55
|
+
emit: (((evt: "update:modelValue", payload: number | undefined) => void) & ((evt: "next", payload: T) => void) & ((evt: "prev", payload: T) => void)) & ((evt: "update:modelValue", value: string | number | undefined) => void);
|
|
56
|
+
}>) => import("vue").VNode & {
|
|
57
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
58
|
+
};
|
|
59
|
+
export default _default;
|
|
60
|
+
type __VLS_PrettifyLocal<T> = {
|
|
61
|
+
[K in keyof T]: T[K];
|
|
62
|
+
} & {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { NStepperContainerProps } 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<NStepperContainerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperContainerProps> & Readonly<{}>, {
|
|
7
|
+
orientation: "vertical" | "horizontal";
|
|
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,13 @@
|
|
|
1
|
+
import type { NStepperDescriptionProps } 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<NStepperDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperDescriptionProps> & 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 { NStepperHeaderProps } 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<NStepperHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperHeaderProps> & Readonly<{}>, {
|
|
7
|
+
orientation: "vertical" | "horizontal";
|
|
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,15 @@
|
|
|
1
|
+
import type { NStepperIndicatorProps } 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<NStepperIndicatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperIndicatorProps> & Readonly<{}>, {
|
|
7
|
+
stepper: 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,15 @@
|
|
|
1
|
+
import type { NStepperItemProps } 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<NStepperItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperItemProps> & Readonly<{}>, {
|
|
7
|
+
orientation: "vertical" | "horizontal";
|
|
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,6 @@
|
|
|
1
|
+
import type { NStepperSeparatorProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NStepperSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperSeparatorProps> & Readonly<{}>, {
|
|
3
|
+
orientation: "vertical" | "horizontal";
|
|
4
|
+
stepper: string;
|
|
5
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NStepperTitleProps } 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<NStepperTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperTitleProps> & 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 { NStepperTriggerProps } 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<NStepperTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperTriggerProps> & Readonly<{}>, {
|
|
7
|
+
stepper: 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,15 @@
|
|
|
1
|
+
import type { NStepperWrapperProps } 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<NStepperWrapperProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NStepperWrapperProps> & Readonly<{}>, {
|
|
7
|
+
orientation: "vertical" | "horizontal";
|
|
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
|
+
};
|