@una-ui/nuxt 0.59.0 → 0.60.1
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/AlertDialogContent.vue.d.ts +6 -22
- package/dist/runtime/components/aspect-ratio/AspectRatio.vue.d.ts +1 -1
- package/dist/runtime/components/combobox/Combobox.vue.d.ts +4 -4
- package/dist/runtime/components/combobox/ComboboxList.vue.d.ts +6 -22
- package/dist/runtime/components/data/table/Table.vue +1 -0
- package/dist/runtime/components/drawer/DrawerContent.vue.d.ts +6 -22
- package/dist/runtime/components/elements/Button.vue.d.ts +3 -3
- package/dist/runtime/components/elements/avatar/Avatar.vue.d.ts +2 -2
- package/dist/runtime/components/elements/dialog/DialogClose.vue.d.ts +1 -1
- package/dist/runtime/components/elements/dialog/DialogContent.vue.d.ts +6 -22
- package/dist/runtime/components/elements/dialog/DialogScrollContent.vue.d.ts +6 -22
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenu.vue.d.ts +6 -22
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuContent.vue.d.ts +6 -22
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.vue.d.ts +1 -1
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubContent.vue.d.ts +6 -22
- package/dist/runtime/components/elements/pagination/PaginationFirst.vue.d.ts +1 -1
- package/dist/runtime/components/elements/pagination/PaginationLast.vue.d.ts +1 -1
- package/dist/runtime/components/elements/pagination/PaginationNext.vue.d.ts +1 -1
- package/dist/runtime/components/elements/pagination/PaginationPrev.vue.d.ts +1 -1
- package/dist/runtime/components/elements/popover/PopoverContent.vue.d.ts +6 -22
- package/dist/runtime/components/forms/Input.vue.d.ts +6 -6
- package/dist/runtime/components/forms/radio-group/RadioGroupItem.vue.d.ts +1 -1
- package/dist/runtime/components/forms/select/SelectContent.vue.d.ts +2 -6
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.vue.d.ts +1 -1
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.vue.d.ts +1 -1
- package/dist/runtime/components/navigation-menu/NavigationMenuContent.vue.d.ts +6 -22
- package/dist/runtime/components/navigation-menu/NavigationMenuContentItem.vue +1 -1
- package/dist/runtime/components/navigation-menu/NavigationMenuLink.vue +1 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuLink.vue.d.ts +1 -1
- package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.vue.d.ts +1 -1
- package/dist/runtime/components/number-field/NumberField.vue +73 -0
- package/dist/runtime/components/number-field/NumberField.vue.d.ts +28 -0
- package/dist/runtime/components/number-field/NumberFieldContent.vue +20 -0
- package/dist/runtime/components/number-field/NumberFieldContent.vue.d.ts +13 -0
- package/dist/runtime/components/number-field/NumberFieldDecrement.vue +33 -0
- package/dist/runtime/components/number-field/NumberFieldDecrement.vue.d.ts +16 -0
- package/dist/runtime/components/number-field/NumberFieldIncrement.vue +33 -0
- package/dist/runtime/components/number-field/NumberFieldIncrement.vue.d.ts +16 -0
- package/dist/runtime/components/number-field/NumberFieldInput.vue +24 -0
- package/dist/runtime/components/number-field/NumberFieldInput.vue.d.ts +5 -0
- package/dist/runtime/components/overlays/toast/ToastAction.vue.d.ts +1 -1
- package/dist/runtime/components/scroll-area/ScrollArea.vue.d.ts +1 -1
- package/dist/runtime/components/sheet/SheetContent.vue.d.ts +6 -22
- package/dist/runtime/components/sidebar/SidebarMenuButton.vue.d.ts +1 -1
- package/dist/runtime/components/sidebar/SidebarMenuButtonChild.vue.d.ts +1 -1
- package/dist/runtime/components/sidebar/SidebarMenuSubButton.vue.d.ts +1 -1
- package/dist/runtime/types/index.d.ts +1 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/runtime/types/navigation-menu.d.ts +2 -2
- package/dist/runtime/types/number-field.d.ts +48 -0
- package/dist/runtime/types/number-field.js +0 -0
- package/package.json +9 -9
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -5,32 +5,16 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NAlertDialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
openAutoFocus: (event: Event) => any;
|
|
20
12
|
closeAutoFocus: (event: Event) => any;
|
|
21
13
|
}, string, import("vue").PublicProps, Readonly<NAlertDialogContentProps> & Readonly<{
|
|
22
14
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
|
-
onPointerDownOutside?: ((event:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
27
|
-
originalEvent: FocusEvent;
|
|
28
|
-
}>) => any) | undefined;
|
|
29
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
30
|
-
originalEvent: PointerEvent;
|
|
31
|
-
}> | CustomEvent<{
|
|
32
|
-
originalEvent: FocusEvent;
|
|
33
|
-
}>) => any) | undefined;
|
|
15
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
16
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
17
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
34
18
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
35
19
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
36
20
|
}>, {
|
|
@@ -6,8 +6,8 @@ type __VLS_Slots = {} & {
|
|
|
6
6
|
default?: (props: typeof __VLS_6) => any;
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_component: import("vue").DefineComponent<NAspectRatioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAspectRatioProps> & Readonly<{}>, {
|
|
9
|
-
aspectRatio: string;
|
|
10
9
|
rounded: import("vue").HTMLAttributes["class"];
|
|
10
|
+
aspectRatio: string;
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
13
13
|
export default _default;
|
|
@@ -3,12 +3,12 @@ import type { ExtractItemType, NComboboxGroupProps, NComboboxProps } from '../..
|
|
|
3
3
|
declare const _default: <T extends AcceptableValue>(__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<{
|
|
4
4
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
5
|
readonly "onUpdate:modelValue"?: ((value: ExtractItemType<T>) => any) | undefined;
|
|
6
|
-
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
7
6
|
readonly onHighlight?: ((payload: {
|
|
8
7
|
ref: HTMLElement;
|
|
9
8
|
value: ExtractItemType<T>;
|
|
10
9
|
} | undefined) => any) | undefined;
|
|
11
|
-
|
|
10
|
+
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onHighlight" | "onUpdate:open"> & NComboboxProps<T> & Partial<{}>> & import("vue").PublicProps;
|
|
12
12
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
13
13
|
attrs: any;
|
|
14
14
|
slots: {
|
|
@@ -76,10 +76,10 @@ declare const _default: <T extends AcceptableValue>(__VLS_props: NonNullable<Awa
|
|
|
76
76
|
} & {
|
|
77
77
|
footer?: (props: {}) => any;
|
|
78
78
|
};
|
|
79
|
-
emit: ((evt: "update:modelValue", value: ExtractItemType<T>) => void) & ((evt: "
|
|
79
|
+
emit: ((evt: "update:modelValue", value: ExtractItemType<T>) => void) & ((evt: "highlight", payload: {
|
|
80
80
|
ref: HTMLElement;
|
|
81
81
|
value: ExtractItemType<T>;
|
|
82
|
-
} | undefined) => void);
|
|
82
|
+
} | undefined) => void) & ((evt: "update:open", value: boolean) => void);
|
|
83
83
|
}>) => import("vue").VNode & {
|
|
84
84
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
85
85
|
};
|
|
@@ -5,30 +5,14 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NComboboxListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
}, string, import("vue").PublicProps, Readonly<NComboboxListProps> & Readonly<{
|
|
20
12
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
|
-
onPointerDownOutside?: ((event:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
25
|
-
originalEvent: FocusEvent;
|
|
26
|
-
}>) => any) | undefined;
|
|
27
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
28
|
-
originalEvent: PointerEvent;
|
|
29
|
-
}> | CustomEvent<{
|
|
30
|
-
originalEvent: FocusEvent;
|
|
31
|
-
}>) => any) | undefined;
|
|
13
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
14
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
15
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
32
16
|
}>, {
|
|
33
17
|
sideOffset: number;
|
|
34
18
|
align: "start" | "center" | "end";
|
|
@@ -213,6 +213,7 @@ const table = useVueTable({
|
|
|
213
213
|
getFilteredRowModel: getFilteredRowModel(),
|
|
214
214
|
getPaginationRowModel: getPaginationRowModel(),
|
|
215
215
|
getRowId: (row) => props.rowId ? row[props.rowId] : row.id,
|
|
216
|
+
getSubRows: (row) => row.subRows,
|
|
216
217
|
getExpandedRowModel: getExpandedRowModel(),
|
|
217
218
|
onSortingChange: (updaterOrValue) => valueUpdater(updaterOrValue, sorting),
|
|
218
219
|
onRowSelectionChange: (updaterOrValue) => valueUpdater(updaterOrValue, rowSelection),
|
|
@@ -5,32 +5,16 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NDrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
openAutoFocus: (event: Event) => any;
|
|
20
12
|
closeAutoFocus: (event: Event) => any;
|
|
21
13
|
}, string, import("vue").PublicProps, Readonly<NDrawerContentProps> & Readonly<{
|
|
22
14
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
|
-
onPointerDownOutside?: ((event:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
27
|
-
originalEvent: FocusEvent;
|
|
28
|
-
}>) => any) | undefined;
|
|
29
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
30
|
-
originalEvent: PointerEvent;
|
|
31
|
-
}> | CustomEvent<{
|
|
32
|
-
originalEvent: FocusEvent;
|
|
33
|
-
}>) => any) | undefined;
|
|
15
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
16
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
17
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
34
18
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
35
19
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
36
20
|
}>, {
|
|
@@ -10,6 +10,9 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
trailing?: (props: typeof __VLS_37) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_component: import("vue").DefineComponent<NButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NButtonProps> & Readonly<{}>, {
|
|
13
|
+
type: "button" | "submit" | "reset";
|
|
14
|
+
loadingPlacement: "leading" | "trailing" | "label";
|
|
15
|
+
size: string;
|
|
13
16
|
una: {
|
|
14
17
|
btnDefaultVariant?: string;
|
|
15
18
|
btn?: string;
|
|
@@ -21,9 +24,6 @@ declare const __VLS_component: import("vue").DefineComponent<NButtonProps, {}, {
|
|
|
21
24
|
btnLoadingIcon?: string;
|
|
22
25
|
};
|
|
23
26
|
rounded: import("vue").HTMLAttributes["class"];
|
|
24
|
-
size: string;
|
|
25
|
-
type: "button" | "submit" | "reset";
|
|
26
|
-
loadingPlacement: "leading" | "trailing" | "label";
|
|
27
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
29
29
|
export default _default;
|
|
@@ -6,10 +6,10 @@ type __VLS_Slots = {} & {
|
|
|
6
6
|
fallback?: (props: typeof __VLS_14) => any;
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_component: import("vue").DefineComponent<NAvatarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAvatarProps> & Readonly<{}>, {
|
|
9
|
-
as: import("reka-ui").AsTag | import("vue").Component;
|
|
10
|
-
rounded: import("vue").HTMLAttributes["class"];
|
|
11
9
|
size: import("vue").HTMLAttributes["class"];
|
|
12
10
|
square: import("vue").HTMLAttributes["class"];
|
|
11
|
+
rounded: import("vue").HTMLAttributes["class"];
|
|
12
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
13
13
|
avatar: import("vue").HTMLAttributes["class"];
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_6) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NDialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NDialogCloseProps> & Readonly<{}>, {
|
|
7
|
-
label: string;
|
|
8
7
|
icon: boolean;
|
|
8
|
+
label: string;
|
|
9
9
|
btn: string;
|
|
10
10
|
square: import("vue").HTMLAttributes["class"];
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,32 +5,16 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NDialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
openAutoFocus: (event: Event) => any;
|
|
20
12
|
closeAutoFocus: (event: Event) => any;
|
|
21
13
|
}, string, import("vue").PublicProps, Readonly<NDialogContentProps> & Readonly<{
|
|
22
14
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
|
-
onPointerDownOutside?: ((event:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
27
|
-
originalEvent: FocusEvent;
|
|
28
|
-
}>) => any) | undefined;
|
|
29
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
30
|
-
originalEvent: PointerEvent;
|
|
31
|
-
}> | CustomEvent<{
|
|
32
|
-
originalEvent: FocusEvent;
|
|
33
|
-
}>) => any) | undefined;
|
|
15
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
16
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
17
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
34
18
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
35
19
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
36
20
|
}>, {
|
|
@@ -5,32 +5,16 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NDialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
openAutoFocus: (event: Event) => any;
|
|
20
12
|
closeAutoFocus: (event: Event) => any;
|
|
21
13
|
}, string, import("vue").PublicProps, Readonly<NDialogContentProps> & Readonly<{
|
|
22
14
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
|
-
onPointerDownOutside?: ((event:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
27
|
-
originalEvent: FocusEvent;
|
|
28
|
-
}>) => any) | undefined;
|
|
29
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
30
|
-
originalEvent: PointerEvent;
|
|
31
|
-
}> | CustomEvent<{
|
|
32
|
-
originalEvent: FocusEvent;
|
|
33
|
-
}>) => any) | undefined;
|
|
15
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
16
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
17
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
34
18
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
35
19
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
36
20
|
}>, {
|
|
@@ -23,32 +23,16 @@ type __VLS_Slots = {} & {
|
|
|
23
23
|
};
|
|
24
24
|
declare const __VLS_component: import("vue").DefineComponent<NDropdownMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
26
|
-
pointerDownOutside: (event:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
focusOutside: (event: CustomEvent<{
|
|
30
|
-
originalEvent: FocusEvent;
|
|
31
|
-
}>) => any;
|
|
32
|
-
interactOutside: (event: CustomEvent<{
|
|
33
|
-
originalEvent: PointerEvent;
|
|
34
|
-
}> | CustomEvent<{
|
|
35
|
-
originalEvent: FocusEvent;
|
|
36
|
-
}>) => any;
|
|
26
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
27
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
28
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
37
29
|
closeAutoFocus: (event: Event) => any;
|
|
38
30
|
"update:open": (payload: boolean) => any;
|
|
39
31
|
}, string, import("vue").PublicProps, Readonly<NDropdownMenuProps> & Readonly<{
|
|
40
32
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
41
|
-
onPointerDownOutside?: ((event:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
45
|
-
originalEvent: FocusEvent;
|
|
46
|
-
}>) => any) | undefined;
|
|
47
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
48
|
-
originalEvent: PointerEvent;
|
|
49
|
-
}> | CustomEvent<{
|
|
50
|
-
originalEvent: FocusEvent;
|
|
51
|
-
}>) => any) | undefined;
|
|
33
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
34
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
35
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
52
36
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
53
37
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
54
38
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,31 +5,15 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NDropdownMenuContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
closeAutoFocus: (event: Event) => any;
|
|
20
12
|
}, string, import("vue").PublicProps, Readonly<NDropdownMenuContentProps> & Readonly<{
|
|
21
13
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
|
-
onPointerDownOutside?: ((event:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
26
|
-
originalEvent: FocusEvent;
|
|
27
|
-
}>) => any) | undefined;
|
|
28
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
29
|
-
originalEvent: PointerEvent;
|
|
30
|
-
}> | CustomEvent<{
|
|
31
|
-
originalEvent: FocusEvent;
|
|
32
|
-
}>) => any) | undefined;
|
|
14
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
15
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
16
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
33
17
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
34
18
|
}>, {
|
|
35
19
|
sideOffset: number;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { NDropdownMenuItemProps } from '../../../types/index.js';
|
|
2
2
|
type __VLS_Slots = any;
|
|
3
3
|
declare const __VLS_component: import("vue").DefineComponent<NDropdownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NDropdownMenuItemProps> & Readonly<{}>, {
|
|
4
|
-
rounded: import("vue").HTMLAttributes["class"];
|
|
5
4
|
size: string;
|
|
5
|
+
rounded: import("vue").HTMLAttributes["class"];
|
|
6
6
|
dropdownMenuItem: import("vue").HTMLAttributes["class"];
|
|
7
7
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
8
8
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -5,33 +5,17 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NDropdownMenuSubContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
openAutoFocus: (event: Event) => any;
|
|
20
12
|
closeAutoFocus: (event: Event) => any;
|
|
21
13
|
entryFocus: (event: Event) => any;
|
|
22
14
|
}, string, import("vue").PublicProps, Readonly<NDropdownMenuSubContentProps> & Readonly<{
|
|
23
15
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
24
|
-
onPointerDownOutside?: ((event:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
28
|
-
originalEvent: FocusEvent;
|
|
29
|
-
}>) => any) | undefined;
|
|
30
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
31
|
-
originalEvent: PointerEvent;
|
|
32
|
-
}> | CustomEvent<{
|
|
33
|
-
originalEvent: FocusEvent;
|
|
34
|
-
}>) => any) | undefined;
|
|
16
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
17
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
18
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
35
19
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
36
20
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
37
21
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_6) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NPaginationFirstProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationFirstProps> & Readonly<{}>, {
|
|
7
|
-
label: string;
|
|
8
7
|
icon: boolean;
|
|
8
|
+
label: string;
|
|
9
9
|
square: import("vue").HTMLAttributes["class"];
|
|
10
10
|
paginationUnselected: string;
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_6) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NPaginationLastProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationLastProps> & Readonly<{}>, {
|
|
7
|
-
label: string;
|
|
8
7
|
icon: boolean;
|
|
8
|
+
label: string;
|
|
9
9
|
square: import("vue").HTMLAttributes["class"];
|
|
10
10
|
paginationUnselected: string;
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_6) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NPaginationNextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationNextProps> & Readonly<{}>, {
|
|
7
|
-
label: string;
|
|
8
7
|
icon: boolean;
|
|
8
|
+
label: string;
|
|
9
9
|
square: import("vue").HTMLAttributes["class"];
|
|
10
10
|
paginationUnselected: string;
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_6) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NPaginationPrevProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NPaginationPrevProps> & Readonly<{}>, {
|
|
7
|
-
label: string;
|
|
8
7
|
icon: boolean;
|
|
8
|
+
label: string;
|
|
9
9
|
square: import("vue").HTMLAttributes["class"];
|
|
10
10
|
paginationUnselected: string;
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,32 +5,16 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NPopoverContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
focusOutside: (event: CustomEvent<{
|
|
12
|
-
originalEvent: FocusEvent;
|
|
13
|
-
}>) => any;
|
|
14
|
-
interactOutside: (event: CustomEvent<{
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}> | CustomEvent<{
|
|
17
|
-
originalEvent: FocusEvent;
|
|
18
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
19
11
|
openAutoFocus: (event: Event) => any;
|
|
20
12
|
closeAutoFocus: (event: Event) => any;
|
|
21
13
|
}, string, import("vue").PublicProps, Readonly<NPopoverContentProps> & Readonly<{
|
|
22
14
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
|
-
onPointerDownOutside?: ((event:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
27
|
-
originalEvent: FocusEvent;
|
|
28
|
-
}>) => any) | undefined;
|
|
29
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
30
|
-
originalEvent: PointerEvent;
|
|
31
|
-
}> | CustomEvent<{
|
|
32
|
-
originalEvent: FocusEvent;
|
|
33
|
-
}>) => any) | undefined;
|
|
15
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
16
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
17
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
34
18
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
35
19
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
36
20
|
}>, {
|
|
@@ -13,22 +13,22 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
13
13
|
select: () => void | undefined;
|
|
14
14
|
inputRef: import("vue").Ref<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
|
|
15
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
-
blur: (...args: any[]) => void;
|
|
17
|
-
change: (...args: any[]) => void;
|
|
18
16
|
leading: (...args: any[]) => void;
|
|
19
17
|
trailing: (...args: any[]) => void;
|
|
18
|
+
blur: (...args: any[]) => void;
|
|
19
|
+
change: (...args: any[]) => void;
|
|
20
20
|
"update:modelValue": (...args: any[]) => void;
|
|
21
21
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
23
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
24
22
|
onLeading?: ((...args: any[]) => any) | undefined;
|
|
25
23
|
onTrailing?: ((...args: any[]) => any) | undefined;
|
|
24
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
26
26
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
|
-
size: string;
|
|
29
|
-
resize: string | null;
|
|
30
28
|
type: HTMLInputElement["type"] | "textarea";
|
|
29
|
+
size: string;
|
|
31
30
|
autofocusDelay: number;
|
|
31
|
+
resize: string | null;
|
|
32
32
|
rows: number;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -8,8 +8,8 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
description?: (props: typeof __VLS_19) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_component: import("vue").DefineComponent<NRadioGroupItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NRadioGroupItemProps> & Readonly<{}>, {
|
|
11
|
-
size: import("vue").HTMLAttributes["class"];
|
|
12
11
|
icon: import("vue").HTMLAttributes["class"];
|
|
12
|
+
size: import("vue").HTMLAttributes["class"];
|
|
13
13
|
square: import("vue").HTMLAttributes["class"];
|
|
14
14
|
radioGroup: import("vue").HTMLAttributes["class"];
|
|
15
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,15 +5,11 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NSelectContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
-
pointerDownOutside: (event:
|
|
9
|
-
originalEvent: PointerEvent;
|
|
10
|
-
}>) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
11
9
|
closeAutoFocus: (event: Event) => any;
|
|
12
10
|
}, string, import("vue").PublicProps, Readonly<NSelectContentProps> & Readonly<{
|
|
13
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
14
|
-
onPointerDownOutside?: ((event:
|
|
15
|
-
originalEvent: PointerEvent;
|
|
16
|
-
}>) => any) | undefined;
|
|
12
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
17
13
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
18
14
|
}>, {
|
|
19
15
|
position: "item-aligned" | "popper";
|
|
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_1) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NBreadcrumbEllipsisProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbEllipsisProps> & Readonly<{}>, {
|
|
7
|
-
size: string;
|
|
8
7
|
icon: string;
|
|
8
|
+
size: string;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
10
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
11
|
export default _default;
|
|
@@ -4,8 +4,8 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_1) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<NBreadcrumbSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbSeparatorProps> & Readonly<{}>, {
|
|
7
|
-
size: string;
|
|
8
7
|
icon: string;
|
|
8
|
+
size: string;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
10
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
11
|
export default _default;
|