arvue-ui 0.4.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +1 -1
- package/dist/autocomplete/autocompleteContent.js +37 -12
- package/dist/autocomplete/autocompleteContent.js.map +1 -1
- package/dist/autocomplete/autocompleteInput.js +3 -3
- package/dist/autocomplete/autocompleteInput.js.map +1 -1
- package/dist/combobox/combobox.js.map +1 -1
- package/dist/combobox/comboboxContent.js +37 -12
- package/dist/combobox/comboboxContent.js.map +1 -1
- package/dist/combobox/comboboxEmpty.js.map +1 -1
- package/dist/combobox/comboboxInput.js +3 -3
- package/dist/combobox/comboboxInput.js.map +1 -1
- package/dist/combobox/comboboxItem.js.map +1 -1
- package/dist/combobox/comboboxLabel.js.map +1 -1
- package/dist/combobox/comboboxSeparator.js.map +1 -1
- package/dist/dialog/dialogDescription.js.map +1 -1
- package/dist/dialog/dialogFooter.js.map +1 -1
- package/dist/dialog/dialogHeader.js.map +1 -1
- package/dist/dialog/dialogTitle.js.map +1 -1
- package/dist/drawer/drawerDescription.js.map +1 -1
- package/dist/drawer/drawerFooter.js.map +1 -1
- package/dist/drawer/drawerHeader.js.map +1 -1
- package/dist/drawer/drawerTitle.js.map +1 -1
- package/dist/dropdown-menu/dropdownMenu.js +26 -0
- package/dist/dropdown-menu/dropdownMenu.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuCheckboxItem.js +42 -0
- package/dist/dropdown-menu/dropdownMenuCheckboxItem.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuContent.js +92 -0
- package/dist/dropdown-menu/dropdownMenuContent.js.map +1 -0
- package/dist/{autocomplete/autocompleteArrow.js → dropdown-menu/dropdownMenuGroup.js} +5 -8
- package/dist/dropdown-menu/dropdownMenuGroup.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuItem.js +36 -0
- package/dist/dropdown-menu/dropdownMenuItem.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuLabel.js +34 -0
- package/dist/dropdown-menu/dropdownMenuLabel.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuPortal.js +25 -0
- package/dist/dropdown-menu/dropdownMenuPortal.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuRadioGroup.js +25 -0
- package/dist/dropdown-menu/dropdownMenuRadioGroup.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuRadioItem.js +42 -0
- package/dist/dropdown-menu/dropdownMenuRadioItem.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuSeparator.js +30 -0
- package/dist/dropdown-menu/dropdownMenuSeparator.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuShortcut.js +33 -0
- package/dist/dropdown-menu/dropdownMenuShortcut.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuSub.js +24 -0
- package/dist/dropdown-menu/dropdownMenuSub.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuSubContent.js +92 -0
- package/dist/dropdown-menu/dropdownMenuSubContent.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuSubTrigger.js +36 -0
- package/dist/dropdown-menu/dropdownMenuSubTrigger.js.map +1 -0
- package/dist/dropdown-menu/dropdownMenuTrigger.js +24 -0
- package/dist/dropdown-menu/dropdownMenuTrigger.js.map +1 -0
- package/dist/index.d.ts +427 -167
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +69 -53
- package/dist/index.js.map +1 -1
- package/dist/sheet/sheetContent.js.map +1 -1
- package/dist/sheet/sheetDescription.js.map +1 -1
- package/dist/sheet/sheetFooter.js.map +1 -1
- package/dist/sheet/sheetHeader.js.map +1 -1
- package/dist/sheet/sheetOverlay.js.map +1 -1
- package/dist/sheet/sheetTitle.js.map +1 -1
- package/dist/sonner/sonner.js +51 -0
- package/dist/sonner/sonner.js.map +1 -0
- package/dist/style.css +41 -21
- package/package.json +3 -2
- package/src/autocomplete/AutocompleteContent.vue +38 -10
- package/src/autocomplete/AutocompleteInput.vue +1 -1
- package/src/autocomplete/autocomplete-content.css +5 -6
- package/src/autocomplete/index.ts +0 -4
- package/src/combobox/Combobox.vue +1 -1
- package/src/combobox/ComboboxContent.vue +39 -11
- package/src/combobox/ComboboxEmpty.vue +1 -1
- package/src/combobox/ComboboxInput.vue +2 -2
- package/src/combobox/ComboboxItem.vue +1 -1
- package/src/combobox/ComboboxLabel.vue +1 -1
- package/src/combobox/ComboboxSeparator.vue +1 -1
- package/src/combobox/combobox-content.css +5 -6
- package/src/dialog/DialogDescription.vue +1 -1
- package/src/dialog/DialogFooter.vue +1 -1
- package/src/dialog/DialogHeader.vue +1 -1
- package/src/dialog/DialogTitle.vue +1 -1
- package/src/drawer/DrawerDescription.vue +1 -1
- package/src/drawer/DrawerFooter.vue +1 -1
- package/src/drawer/DrawerHeader.vue +1 -1
- package/src/drawer/DrawerTitle.vue +1 -1
- package/src/dropdown-menu/DropdownMenu.vue +24 -0
- package/src/dropdown-menu/DropdownMenuCheckboxItem.vue +47 -0
- package/src/dropdown-menu/DropdownMenuContent.vue +75 -0
- package/src/dropdown-menu/DropdownMenuGroup.vue +17 -0
- package/src/dropdown-menu/DropdownMenuItem.vue +38 -0
- package/src/dropdown-menu/DropdownMenuLabel.vue +37 -0
- package/src/dropdown-menu/DropdownMenuPortal.vue +17 -0
- package/src/dropdown-menu/DropdownMenuRadioGroup.vue +27 -0
- package/src/dropdown-menu/DropdownMenuRadioItem.vue +48 -0
- package/src/dropdown-menu/DropdownMenuSeparator.vue +29 -0
- package/src/dropdown-menu/DropdownMenuShortcut.vue +33 -0
- package/src/dropdown-menu/DropdownMenuSub.vue +31 -0
- package/src/dropdown-menu/DropdownMenuSubContent.vue +74 -0
- package/src/dropdown-menu/DropdownMenuSubTrigger.vue +41 -0
- package/src/dropdown-menu/DropdownMenuTrigger.vue +19 -0
- package/src/dropdown-menu/dropdown-menu-checkbox-item.css +33 -0
- package/src/dropdown-menu/dropdown-menu-content.css +9 -0
- package/src/dropdown-menu/dropdown-menu-item.css +27 -0
- package/src/dropdown-menu/dropdown-menu-label.css +10 -0
- package/src/dropdown-menu/dropdown-menu-radio-item.css +33 -0
- package/src/dropdown-menu/dropdown-menu-separator.css +5 -0
- package/src/dropdown-menu/dropdown-menu-shortcut.css +7 -0
- package/src/dropdown-menu/dropdown-menu-sub-content.css +8 -0
- package/src/dropdown-menu/dropdown-menu-sub-trigger.css +33 -0
- package/src/dropdown-menu/index.ts +66 -0
- package/src/index.ts +2 -0
- package/src/sheet/SheetContent.vue +1 -1
- package/src/sheet/SheetDescription.vue +1 -1
- package/src/sheet/SheetFooter.vue +1 -1
- package/src/sheet/SheetHeader.vue +1 -1
- package/src/sheet/SheetOverlay.vue +1 -1
- package/src/sheet/SheetTitle.vue +1 -1
- package/src/sonner/Sonner.vue +47 -0
- package/src/sonner/index.ts +5 -0
- package/src/sonner/sonner.css +91 -0
- package/dist/autocomplete/autocompleteArrow.js.map +0 -1
- package/src/autocomplete/AutocompleteArrow.vue +0 -17
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { HTMLAttributes } from "vue";
|
|
2
|
-
import { AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps as ComboboxAnchorProps$1,
|
|
2
|
+
import { AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps as ComboboxAnchorProps$1, ComboboxCancelProps as ComboboxCancelProps$1, ComboboxContentEmits as ComboboxContentEmits$1, ComboboxContentProps as ComboboxContentProps$1, ComboboxEmptyProps as ComboboxEmptyProps$1, ComboboxGroupProps as ComboboxGroupProps$1, ComboboxInputEmits as ComboboxInputEmits$1, ComboboxInputProps as ComboboxInputProps$1, ComboboxItemEmits as ComboboxItemEmits$1, ComboboxItemProps as ComboboxItemProps$1, ComboboxLabelProps as ComboboxLabelProps$1, ComboboxPortalProps as ComboboxPortalProps$1, ComboboxRootEmits, ComboboxRootProps, ComboboxSeparatorProps as ComboboxSeparatorProps$1, ComboboxTriggerProps as ComboboxTriggerProps$1, ComboboxViewportProps as ComboboxViewportProps$1, DialogCloseProps as DialogCloseProps$1, DialogContentEmits as DialogContentEmits$1, DialogContentProps as DialogContentProps$1, DialogDescriptionProps as DialogDescriptionProps$1, DialogOverlayProps as DialogOverlayProps$1, DialogRootEmits, DialogRootProps, DialogTitleProps as DialogTitleProps$1, DialogTriggerProps as DialogTriggerProps$1, DropdownMenuCheckboxItemEmits as DropdownMenuCheckboxItemEmits$1, DropdownMenuCheckboxItemProps as DropdownMenuCheckboxItemProps$1, DropdownMenuContentEmits as DropdownMenuContentEmits$1, DropdownMenuContentProps as DropdownMenuContentProps$1, DropdownMenuGroupProps as DropdownMenuGroupProps$1, DropdownMenuItemProps as DropdownMenuItemProps$1, DropdownMenuLabelProps as DropdownMenuLabelProps$1, DropdownMenuPortalProps as DropdownMenuPortalProps$1, DropdownMenuRadioGroupEmits as DropdownMenuRadioGroupEmits$1, DropdownMenuRadioGroupProps as DropdownMenuRadioGroupProps$1, DropdownMenuRadioItemEmits as DropdownMenuRadioItemEmits$1, DropdownMenuRadioItemProps as DropdownMenuRadioItemProps$1, DropdownMenuRootEmits, DropdownMenuRootProps, DropdownMenuSeparatorProps as DropdownMenuSeparatorProps$1, DropdownMenuSubContentEmits as DropdownMenuSubContentEmits$1, DropdownMenuSubContentProps as DropdownMenuSubContentProps$1, DropdownMenuSubProps as DropdownMenuSubProps$1, DropdownMenuSubTriggerProps as DropdownMenuSubTriggerProps$1, DropdownMenuTriggerProps as DropdownMenuTriggerProps$1, PrimitiveProps } from "reka-ui";
|
|
3
3
|
import { DrawerCloseProps as DrawerCloseProps$1, DrawerDescriptionProps as DrawerDescriptionProps$1, DrawerRootEmits, DrawerRootProps, DrawerTitleProps as DrawerTitleProps$1, DrawerTriggerProps as DrawerTriggerProps$1 } from "vaul-vue";
|
|
4
|
+
import { ToasterProps, toast } from "vue-sonner";
|
|
4
5
|
|
|
5
6
|
//#region src/autocomplete/Autocomplete.vue.d.ts
|
|
6
7
|
interface AutocompleteProps extends AutocompleteRootProps {
|
|
7
8
|
class?: HTMLAttributes['class'];
|
|
8
9
|
}
|
|
9
10
|
interface AutocompleteEmits extends AutocompleteRootEmits {}
|
|
10
|
-
declare const _default: typeof __VLS_export$
|
|
11
|
-
declare const __VLS_export$
|
|
11
|
+
declare const _default: typeof __VLS_export$68;
|
|
12
|
+
declare const __VLS_export$68: __VLS_WithSlots$64<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
13
|
"update:open": (value: boolean) => any;
|
|
13
14
|
"update:modelValue": (value: string) => any;
|
|
14
15
|
highlight: (payload: {
|
|
@@ -28,7 +29,7 @@ declare const __VLS_export$53: __VLS_WithSlots$51<import("vue").DefineComponent<
|
|
|
28
29
|
modelValue: string;
|
|
29
30
|
}) => any;
|
|
30
31
|
}>;
|
|
31
|
-
type __VLS_WithSlots$
|
|
32
|
+
type __VLS_WithSlots$64<T, S> = T & {
|
|
32
33
|
new (): {
|
|
33
34
|
$slots: S;
|
|
34
35
|
};
|
|
@@ -36,35 +37,23 @@ type __VLS_WithSlots$51<T, S> = T & {
|
|
|
36
37
|
//#endregion
|
|
37
38
|
//#region src/autocomplete/AutocompleteAnchor.vue.d.ts
|
|
38
39
|
interface AutocompleteAnchorProps extends ComboboxAnchorProps$1 {}
|
|
39
|
-
declare const _default$1: typeof __VLS_export$
|
|
40
|
-
declare const __VLS_export$
|
|
40
|
+
declare const _default$1: typeof __VLS_export$67;
|
|
41
|
+
declare const __VLS_export$67: __VLS_WithSlots$63<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
41
42
|
default?: (props: {}) => any;
|
|
42
43
|
}>;
|
|
43
|
-
type __VLS_WithSlots$
|
|
44
|
+
type __VLS_WithSlots$63<T, S> = T & {
|
|
44
45
|
new (): {
|
|
45
46
|
$slots: S;
|
|
46
47
|
};
|
|
47
48
|
}; //# sourceMappingURL=AutocompleteAnchor.vue.d.ts.map
|
|
48
49
|
//#endregion
|
|
49
|
-
//#region src/autocomplete/AutocompleteArrow.vue.d.ts
|
|
50
|
-
interface AutocompleteArrowProps extends ComboboxArrowProps {}
|
|
51
|
-
declare const _default$2: typeof __VLS_export$51;
|
|
52
|
-
declare const __VLS_export$51: __VLS_WithSlots$49<import("vue").DefineComponent<AutocompleteArrowProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
53
|
-
default?: (props: {}) => any;
|
|
54
|
-
}>;
|
|
55
|
-
type __VLS_WithSlots$49<T, S> = T & {
|
|
56
|
-
new (): {
|
|
57
|
-
$slots: S;
|
|
58
|
-
};
|
|
59
|
-
}; //# sourceMappingURL=AutocompleteArrow.vue.d.ts.map
|
|
60
|
-
//#endregion
|
|
61
50
|
//#region src/autocomplete/AutocompleteCancel.vue.d.ts
|
|
62
51
|
interface AutocompleteCancelProps extends ComboboxCancelProps$1 {}
|
|
63
|
-
declare const _default$
|
|
64
|
-
declare const __VLS_export$
|
|
52
|
+
declare const _default$2: typeof __VLS_export$66;
|
|
53
|
+
declare const __VLS_export$66: __VLS_WithSlots$62<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
65
54
|
default?: (props: {}) => any;
|
|
66
55
|
}>;
|
|
67
|
-
type __VLS_WithSlots$
|
|
56
|
+
type __VLS_WithSlots$62<T, S> = T & {
|
|
68
57
|
new (): {
|
|
69
58
|
$slots: S;
|
|
70
59
|
};
|
|
@@ -75,8 +64,8 @@ interface AutocompleteContentProps extends Omit<ComboboxContentProps$1, 'positio
|
|
|
75
64
|
class?: HTMLAttributes['class'];
|
|
76
65
|
}
|
|
77
66
|
interface AutocompleteContentEmits extends ComboboxContentEmits$1 {}
|
|
78
|
-
declare const _default$
|
|
79
|
-
declare const __VLS_export$
|
|
67
|
+
declare const _default$3: typeof __VLS_export$65;
|
|
68
|
+
declare const __VLS_export$65: __VLS_WithSlots$61<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
80
69
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
81
70
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
82
71
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
@@ -86,10 +75,12 @@ declare const __VLS_export$49: __VLS_WithSlots$47<import("vue").DefineComponent<
|
|
|
86
75
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
87
76
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
88
77
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
89
|
-
}>, {
|
|
78
|
+
}>, {
|
|
79
|
+
sideOffset: number;
|
|
80
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
90
81
|
default?: (props: {}) => any;
|
|
91
82
|
}>;
|
|
92
|
-
type __VLS_WithSlots$
|
|
83
|
+
type __VLS_WithSlots$61<T, S> = T & {
|
|
93
84
|
new (): {
|
|
94
85
|
$slots: S;
|
|
95
86
|
};
|
|
@@ -99,11 +90,11 @@ type __VLS_WithSlots$47<T, S> = T & {
|
|
|
99
90
|
interface AutocompleteEmptyProps extends ComboboxEmptyProps$1 {
|
|
100
91
|
class?: HTMLAttributes['class'];
|
|
101
92
|
}
|
|
102
|
-
declare const _default$
|
|
103
|
-
declare const __VLS_export$
|
|
93
|
+
declare const _default$4: typeof __VLS_export$64;
|
|
94
|
+
declare const __VLS_export$64: __VLS_WithSlots$60<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
104
95
|
default?: (props: {}) => any;
|
|
105
96
|
}>;
|
|
106
|
-
type __VLS_WithSlots$
|
|
97
|
+
type __VLS_WithSlots$60<T, S> = T & {
|
|
107
98
|
new (): {
|
|
108
99
|
$slots: S;
|
|
109
100
|
};
|
|
@@ -111,11 +102,11 @@ type __VLS_WithSlots$46<T, S> = T & {
|
|
|
111
102
|
//#endregion
|
|
112
103
|
//#region src/autocomplete/AutocompleteGroup.vue.d.ts
|
|
113
104
|
interface AutocompleteGroupProps extends ComboboxGroupProps$1 {}
|
|
114
|
-
declare const _default$
|
|
115
|
-
declare const __VLS_export$
|
|
105
|
+
declare const _default$5: typeof __VLS_export$63;
|
|
106
|
+
declare const __VLS_export$63: __VLS_WithSlots$59<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
116
107
|
default?: (props: {}) => any;
|
|
117
108
|
}>;
|
|
118
|
-
type __VLS_WithSlots$
|
|
109
|
+
type __VLS_WithSlots$59<T, S> = T & {
|
|
119
110
|
new (): {
|
|
120
111
|
$slots: S;
|
|
121
112
|
};
|
|
@@ -129,8 +120,8 @@ interface AutocompleteInputProps extends AutocompleteInputProps$1 {
|
|
|
129
120
|
interface AutocompleteInputEmits extends AutocompleteInputEmits$1 {
|
|
130
121
|
'cancel': [void];
|
|
131
122
|
}
|
|
132
|
-
declare const _default$
|
|
133
|
-
declare const __VLS_export$
|
|
123
|
+
declare const _default$6: typeof __VLS_export$62;
|
|
124
|
+
declare const __VLS_export$62: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
134
125
|
"update:modelValue": (args_0: string) => any;
|
|
135
126
|
cancel: (args_0: void) => any;
|
|
136
127
|
}, string, import("vue").PublicProps, Readonly<AutocompleteInputProps> & Readonly<{
|
|
@@ -146,15 +137,15 @@ interface AutocompleteItemProps extends ComboboxItemProps$1 {
|
|
|
146
137
|
class?: HTMLAttributes['class'];
|
|
147
138
|
}
|
|
148
139
|
interface AutocompleteItemEmits extends ComboboxItemEmits$1 {}
|
|
149
|
-
declare const _default$
|
|
150
|
-
declare const __VLS_export$
|
|
140
|
+
declare const _default$7: typeof __VLS_export$61;
|
|
141
|
+
declare const __VLS_export$61: __VLS_WithSlots$58<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
151
142
|
select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
|
|
152
143
|
}, string, import("vue").PublicProps, Readonly<AutocompleteItemProps> & Readonly<{
|
|
153
144
|
onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
|
|
154
145
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
155
146
|
default?: (props: {}) => any;
|
|
156
147
|
}>;
|
|
157
|
-
type __VLS_WithSlots$
|
|
148
|
+
type __VLS_WithSlots$58<T, S> = T & {
|
|
158
149
|
new (): {
|
|
159
150
|
$slots: S;
|
|
160
151
|
};
|
|
@@ -164,11 +155,11 @@ type __VLS_WithSlots$44<T, S> = T & {
|
|
|
164
155
|
interface AutocompleteLabelProps extends ComboboxLabelProps$1 {
|
|
165
156
|
class?: HTMLAttributes['class'];
|
|
166
157
|
}
|
|
167
|
-
declare const _default$
|
|
168
|
-
declare const __VLS_export$
|
|
158
|
+
declare const _default$8: typeof __VLS_export$60;
|
|
159
|
+
declare const __VLS_export$60: __VLS_WithSlots$57<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
169
160
|
default?: (props: {}) => any;
|
|
170
161
|
}>;
|
|
171
|
-
type __VLS_WithSlots$
|
|
162
|
+
type __VLS_WithSlots$57<T, S> = T & {
|
|
172
163
|
new (): {
|
|
173
164
|
$slots: S;
|
|
174
165
|
};
|
|
@@ -176,11 +167,11 @@ type __VLS_WithSlots$43<T, S> = T & {
|
|
|
176
167
|
//#endregion
|
|
177
168
|
//#region src/autocomplete/AutocompletePortal.vue.d.ts
|
|
178
169
|
interface AutocompletePortalProps extends ComboboxPortalProps$1 {}
|
|
179
|
-
declare const _default$
|
|
180
|
-
declare const __VLS_export$
|
|
170
|
+
declare const _default$9: typeof __VLS_export$59;
|
|
171
|
+
declare const __VLS_export$59: __VLS_WithSlots$56<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
181
172
|
default?: (props: {}) => any;
|
|
182
173
|
}>;
|
|
183
|
-
type __VLS_WithSlots$
|
|
174
|
+
type __VLS_WithSlots$56<T, S> = T & {
|
|
184
175
|
new (): {
|
|
185
176
|
$slots: S;
|
|
186
177
|
};
|
|
@@ -190,11 +181,11 @@ type __VLS_WithSlots$42<T, S> = T & {
|
|
|
190
181
|
interface AutocompleteSeparatorProps extends ComboboxSeparatorProps$1 {
|
|
191
182
|
class?: HTMLAttributes['class'];
|
|
192
183
|
}
|
|
193
|
-
declare const _default$
|
|
194
|
-
declare const __VLS_export$
|
|
184
|
+
declare const _default$10: typeof __VLS_export$58;
|
|
185
|
+
declare const __VLS_export$58: __VLS_WithSlots$55<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
195
186
|
default?: (props: {}) => any;
|
|
196
187
|
}>;
|
|
197
|
-
type __VLS_WithSlots$
|
|
188
|
+
type __VLS_WithSlots$55<T, S> = T & {
|
|
198
189
|
new (): {
|
|
199
190
|
$slots: S;
|
|
200
191
|
};
|
|
@@ -202,11 +193,11 @@ type __VLS_WithSlots$41<T, S> = T & {
|
|
|
202
193
|
//#endregion
|
|
203
194
|
//#region src/autocomplete/AutocompleteTrigger.vue.d.ts
|
|
204
195
|
interface AutocompleteTriggerProps extends ComboboxTriggerProps$1 {}
|
|
205
|
-
declare const _default$
|
|
206
|
-
declare const __VLS_export$
|
|
196
|
+
declare const _default$11: typeof __VLS_export$57;
|
|
197
|
+
declare const __VLS_export$57: __VLS_WithSlots$54<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
207
198
|
default?: (props: {}) => any;
|
|
208
199
|
}>;
|
|
209
|
-
type __VLS_WithSlots$
|
|
200
|
+
type __VLS_WithSlots$54<T, S> = T & {
|
|
210
201
|
new (): {
|
|
211
202
|
$slots: S;
|
|
212
203
|
};
|
|
@@ -214,11 +205,11 @@ type __VLS_WithSlots$40<T, S> = T & {
|
|
|
214
205
|
//#endregion
|
|
215
206
|
//#region src/autocomplete/AutocompleteViewport.vue.d.ts
|
|
216
207
|
interface AutocompleteViewportProps extends ComboboxViewportProps$1 {}
|
|
217
|
-
declare const _default$
|
|
218
|
-
declare const __VLS_export$
|
|
208
|
+
declare const _default$12: typeof __VLS_export$56;
|
|
209
|
+
declare const __VLS_export$56: __VLS_WithSlots$53<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
219
210
|
default?: (props: {}) => any;
|
|
220
211
|
}>;
|
|
221
|
-
type __VLS_WithSlots$
|
|
212
|
+
type __VLS_WithSlots$53<T, S> = T & {
|
|
222
213
|
new (): {
|
|
223
214
|
$slots: S;
|
|
224
215
|
};
|
|
@@ -229,8 +220,8 @@ interface ComboboxProps extends ComboboxRootProps {
|
|
|
229
220
|
class?: HTMLAttributes['class'];
|
|
230
221
|
}
|
|
231
222
|
interface ComboboxEmits extends ComboboxRootEmits {}
|
|
232
|
-
declare const _default$
|
|
233
|
-
declare const __VLS_export$
|
|
223
|
+
declare const _default$13: typeof __VLS_export$55;
|
|
224
|
+
declare const __VLS_export$55: __VLS_WithSlots$52<import("vue").DefineComponent<ComboboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
234
225
|
"update:open": (value: boolean) => any;
|
|
235
226
|
"update:modelValue": (value: import("reka-ui").AcceptableValue) => any;
|
|
236
227
|
highlight: (payload: {
|
|
@@ -250,7 +241,7 @@ declare const __VLS_export$39: __VLS_WithSlots$38<import("vue").DefineComponent<
|
|
|
250
241
|
modelValue: string | number | bigint | Record<string, any> | (string | number | bigint | Record<string, any> | null)[] | null;
|
|
251
242
|
}) => any;
|
|
252
243
|
}>;
|
|
253
|
-
type __VLS_WithSlots$
|
|
244
|
+
type __VLS_WithSlots$52<T, S> = T & {
|
|
254
245
|
new (): {
|
|
255
246
|
$slots: S;
|
|
256
247
|
};
|
|
@@ -258,11 +249,11 @@ type __VLS_WithSlots$38<T, S> = T & {
|
|
|
258
249
|
//#endregion
|
|
259
250
|
//#region src/combobox/ComboboxAnchor.vue.d.ts
|
|
260
251
|
interface ComboboxAnchorProps extends ComboboxAnchorProps$1 {}
|
|
261
|
-
declare const _default$
|
|
262
|
-
declare const __VLS_export$
|
|
252
|
+
declare const _default$14: typeof __VLS_export$54;
|
|
253
|
+
declare const __VLS_export$54: __VLS_WithSlots$51<import("vue").DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
263
254
|
default?: (props: {}) => any;
|
|
264
255
|
}>;
|
|
265
|
-
type __VLS_WithSlots$
|
|
256
|
+
type __VLS_WithSlots$51<T, S> = T & {
|
|
266
257
|
new (): {
|
|
267
258
|
$slots: S;
|
|
268
259
|
};
|
|
@@ -270,11 +261,11 @@ type __VLS_WithSlots$37<T, S> = T & {
|
|
|
270
261
|
//#endregion
|
|
271
262
|
//#region src/combobox/ComboboxCancel.vue.d.ts
|
|
272
263
|
interface ComboboxCancelProps extends ComboboxCancelProps$1 {}
|
|
273
|
-
declare const _default$
|
|
274
|
-
declare const __VLS_export$
|
|
264
|
+
declare const _default$15: typeof __VLS_export$53;
|
|
265
|
+
declare const __VLS_export$53: __VLS_WithSlots$50<import("vue").DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
275
266
|
default?: (props: {}) => any;
|
|
276
267
|
}>;
|
|
277
|
-
type __VLS_WithSlots$
|
|
268
|
+
type __VLS_WithSlots$50<T, S> = T & {
|
|
278
269
|
new (): {
|
|
279
270
|
$slots: S;
|
|
280
271
|
};
|
|
@@ -285,8 +276,8 @@ interface ComboboxContentProps extends Omit<ComboboxContentProps$1, 'position'>
|
|
|
285
276
|
class?: HTMLAttributes['class'];
|
|
286
277
|
}
|
|
287
278
|
interface ComboboxContentEmits extends ComboboxContentEmits$1 {}
|
|
288
|
-
declare const _default$
|
|
289
|
-
declare const __VLS_export$
|
|
279
|
+
declare const _default$16: typeof __VLS_export$52;
|
|
280
|
+
declare const __VLS_export$52: __VLS_WithSlots$49<import("vue").DefineComponent<ComboboxContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
290
281
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
291
282
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
292
283
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
@@ -296,10 +287,12 @@ declare const __VLS_export$36: __VLS_WithSlots$35<import("vue").DefineComponent<
|
|
|
296
287
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
297
288
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
298
289
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
299
|
-
}>, {
|
|
290
|
+
}>, {
|
|
291
|
+
sideOffset: number;
|
|
292
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
300
293
|
default?: (props: {}) => any;
|
|
301
294
|
}>;
|
|
302
|
-
type __VLS_WithSlots$
|
|
295
|
+
type __VLS_WithSlots$49<T, S> = T & {
|
|
303
296
|
new (): {
|
|
304
297
|
$slots: S;
|
|
305
298
|
};
|
|
@@ -309,11 +302,11 @@ type __VLS_WithSlots$35<T, S> = T & {
|
|
|
309
302
|
interface ComboboxEmptyProps extends ComboboxEmptyProps$1 {
|
|
310
303
|
class?: HTMLAttributes['class'];
|
|
311
304
|
}
|
|
312
|
-
declare const _default$
|
|
313
|
-
declare const __VLS_export$
|
|
305
|
+
declare const _default$17: typeof __VLS_export$51;
|
|
306
|
+
declare const __VLS_export$51: __VLS_WithSlots$48<import("vue").DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
314
307
|
default?: (props: {}) => any;
|
|
315
308
|
}>;
|
|
316
|
-
type __VLS_WithSlots$
|
|
309
|
+
type __VLS_WithSlots$48<T, S> = T & {
|
|
317
310
|
new (): {
|
|
318
311
|
$slots: S;
|
|
319
312
|
};
|
|
@@ -321,11 +314,11 @@ type __VLS_WithSlots$34<T, S> = T & {
|
|
|
321
314
|
//#endregion
|
|
322
315
|
//#region src/combobox/ComboboxGroup.vue.d.ts
|
|
323
316
|
interface ComboboxGroupProps extends ComboboxGroupProps$1 {}
|
|
324
|
-
declare const _default$
|
|
325
|
-
declare const __VLS_export$
|
|
317
|
+
declare const _default$18: typeof __VLS_export$50;
|
|
318
|
+
declare const __VLS_export$50: __VLS_WithSlots$47<import("vue").DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
326
319
|
default?: (props: {}) => any;
|
|
327
320
|
}>;
|
|
328
|
-
type __VLS_WithSlots$
|
|
321
|
+
type __VLS_WithSlots$47<T, S> = T & {
|
|
329
322
|
new (): {
|
|
330
323
|
$slots: S;
|
|
331
324
|
};
|
|
@@ -339,8 +332,8 @@ interface ComboboxInputProps extends ComboboxInputProps$1 {
|
|
|
339
332
|
interface ComboboxInputEmits extends ComboboxInputEmits$1 {
|
|
340
333
|
'cancel': [void];
|
|
341
334
|
}
|
|
342
|
-
declare const _default$
|
|
343
|
-
declare const __VLS_export$
|
|
335
|
+
declare const _default$19: typeof __VLS_export$49;
|
|
336
|
+
declare const __VLS_export$49: import("vue").DefineComponent<ComboboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
344
337
|
"update:modelValue": (args_0: string) => any;
|
|
345
338
|
cancel: (args_0: void) => any;
|
|
346
339
|
}, string, import("vue").PublicProps, Readonly<ComboboxInputProps> & Readonly<{
|
|
@@ -356,15 +349,15 @@ interface ComboboxItemProps extends ComboboxItemProps$1 {
|
|
|
356
349
|
class?: HTMLAttributes['class'];
|
|
357
350
|
}
|
|
358
351
|
interface ComboboxItemEmits extends ComboboxItemEmits$1 {}
|
|
359
|
-
declare const _default$
|
|
360
|
-
declare const __VLS_export$
|
|
352
|
+
declare const _default$20: typeof __VLS_export$48;
|
|
353
|
+
declare const __VLS_export$48: __VLS_WithSlots$46<import("vue").DefineComponent<ComboboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
361
354
|
select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
|
|
362
355
|
}, string, import("vue").PublicProps, Readonly<ComboboxItemProps> & Readonly<{
|
|
363
356
|
onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
|
|
364
357
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
365
358
|
default?: (props: {}) => any;
|
|
366
359
|
}>;
|
|
367
|
-
type __VLS_WithSlots$
|
|
360
|
+
type __VLS_WithSlots$46<T, S> = T & {
|
|
368
361
|
new (): {
|
|
369
362
|
$slots: S;
|
|
370
363
|
};
|
|
@@ -374,11 +367,11 @@ type __VLS_WithSlots$32<T, S> = T & {
|
|
|
374
367
|
interface ComboboxLabelProps extends ComboboxLabelProps$1 {
|
|
375
368
|
class?: HTMLAttributes['class'];
|
|
376
369
|
}
|
|
377
|
-
declare const _default$
|
|
378
|
-
declare const __VLS_export$
|
|
370
|
+
declare const _default$21: typeof __VLS_export$47;
|
|
371
|
+
declare const __VLS_export$47: __VLS_WithSlots$45<import("vue").DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
379
372
|
default?: (props: {}) => any;
|
|
380
373
|
}>;
|
|
381
|
-
type __VLS_WithSlots$
|
|
374
|
+
type __VLS_WithSlots$45<T, S> = T & {
|
|
382
375
|
new (): {
|
|
383
376
|
$slots: S;
|
|
384
377
|
};
|
|
@@ -386,11 +379,11 @@ type __VLS_WithSlots$31<T, S> = T & {
|
|
|
386
379
|
//#endregion
|
|
387
380
|
//#region src/combobox/ComboboxPortal.vue.d.ts
|
|
388
381
|
interface ComboboxPortalProps extends ComboboxPortalProps$1 {}
|
|
389
|
-
declare const _default$
|
|
390
|
-
declare const __VLS_export$
|
|
382
|
+
declare const _default$22: typeof __VLS_export$46;
|
|
383
|
+
declare const __VLS_export$46: __VLS_WithSlots$44<import("vue").DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
391
384
|
default?: (props: {}) => any;
|
|
392
385
|
}>;
|
|
393
|
-
type __VLS_WithSlots$
|
|
386
|
+
type __VLS_WithSlots$44<T, S> = T & {
|
|
394
387
|
new (): {
|
|
395
388
|
$slots: S;
|
|
396
389
|
};
|
|
@@ -400,11 +393,11 @@ type __VLS_WithSlots$30<T, S> = T & {
|
|
|
400
393
|
interface ComboboxSeparatorProps extends ComboboxSeparatorProps$1 {
|
|
401
394
|
class?: HTMLAttributes['class'];
|
|
402
395
|
}
|
|
403
|
-
declare const _default$
|
|
404
|
-
declare const __VLS_export$
|
|
396
|
+
declare const _default$23: typeof __VLS_export$45;
|
|
397
|
+
declare const __VLS_export$45: __VLS_WithSlots$43<import("vue").DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
405
398
|
default?: (props: {}) => any;
|
|
406
399
|
}>;
|
|
407
|
-
type __VLS_WithSlots$
|
|
400
|
+
type __VLS_WithSlots$43<T, S> = T & {
|
|
408
401
|
new (): {
|
|
409
402
|
$slots: S;
|
|
410
403
|
};
|
|
@@ -412,11 +405,11 @@ type __VLS_WithSlots$29<T, S> = T & {
|
|
|
412
405
|
//#endregion
|
|
413
406
|
//#region src/combobox/ComboboxTrigger.vue.d.ts
|
|
414
407
|
interface ComboboxTriggerProps extends ComboboxTriggerProps$1 {}
|
|
415
|
-
declare const _default$
|
|
416
|
-
declare const __VLS_export$
|
|
408
|
+
declare const _default$24: typeof __VLS_export$44;
|
|
409
|
+
declare const __VLS_export$44: __VLS_WithSlots$42<import("vue").DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
417
410
|
default?: (props: {}) => any;
|
|
418
411
|
}>;
|
|
419
|
-
type __VLS_WithSlots$
|
|
412
|
+
type __VLS_WithSlots$42<T, S> = T & {
|
|
420
413
|
new (): {
|
|
421
414
|
$slots: S;
|
|
422
415
|
};
|
|
@@ -424,11 +417,11 @@ type __VLS_WithSlots$28<T, S> = T & {
|
|
|
424
417
|
//#endregion
|
|
425
418
|
//#region src/combobox/ComboboxViewport.vue.d.ts
|
|
426
419
|
interface ComboboxViewportProps extends ComboboxViewportProps$1 {}
|
|
427
|
-
declare const _default$
|
|
428
|
-
declare const __VLS_export$
|
|
420
|
+
declare const _default$25: typeof __VLS_export$43;
|
|
421
|
+
declare const __VLS_export$43: __VLS_WithSlots$41<import("vue").DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
429
422
|
default?: (props: {}) => any;
|
|
430
423
|
}>;
|
|
431
|
-
type __VLS_WithSlots$
|
|
424
|
+
type __VLS_WithSlots$41<T, S> = T & {
|
|
432
425
|
new (): {
|
|
433
426
|
$slots: S;
|
|
434
427
|
};
|
|
@@ -439,8 +432,8 @@ interface DialogProps extends DialogRootProps {
|
|
|
439
432
|
class?: HTMLAttributes['class'];
|
|
440
433
|
}
|
|
441
434
|
interface DialogEmits extends DialogRootEmits {}
|
|
442
|
-
declare const _default$
|
|
443
|
-
declare const __VLS_export$
|
|
435
|
+
declare const _default$26: typeof __VLS_export$42;
|
|
436
|
+
declare const __VLS_export$42: __VLS_WithSlots$40<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
444
437
|
"update:open": (value: boolean) => any;
|
|
445
438
|
}, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
|
|
446
439
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -450,7 +443,7 @@ declare const __VLS_export$26: __VLS_WithSlots$26<import("vue").DefineComponent<
|
|
|
450
443
|
close: () => void;
|
|
451
444
|
}) => any;
|
|
452
445
|
}>;
|
|
453
|
-
type __VLS_WithSlots$
|
|
446
|
+
type __VLS_WithSlots$40<T, S> = T & {
|
|
454
447
|
new (): {
|
|
455
448
|
$slots: S;
|
|
456
449
|
};
|
|
@@ -458,13 +451,13 @@ type __VLS_WithSlots$26<T, S> = T & {
|
|
|
458
451
|
//#endregion
|
|
459
452
|
//#region src/dialog/DialogClose.vue.d.ts
|
|
460
453
|
interface DialogCloseProps extends DialogCloseProps$1 {}
|
|
461
|
-
declare const _default$
|
|
462
|
-
declare const __VLS_export$
|
|
454
|
+
declare const _default$27: typeof __VLS_export$41;
|
|
455
|
+
declare const __VLS_export$41: __VLS_WithSlots$39<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
|
|
463
456
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
464
457
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
465
458
|
default?: (props: {}) => any;
|
|
466
459
|
}>;
|
|
467
|
-
type __VLS_WithSlots$
|
|
460
|
+
type __VLS_WithSlots$39<T, S> = T & {
|
|
468
461
|
new (): {
|
|
469
462
|
$slots: S;
|
|
470
463
|
};
|
|
@@ -476,8 +469,8 @@ interface DialogContentProps extends DialogContentProps$1 {
|
|
|
476
469
|
showCloseButton?: boolean;
|
|
477
470
|
}
|
|
478
471
|
interface DialogContentEmits extends DialogContentEmits$1 {}
|
|
479
|
-
declare const _default$
|
|
480
|
-
declare const __VLS_export$
|
|
472
|
+
declare const _default$28: typeof __VLS_export$40;
|
|
473
|
+
declare const __VLS_export$40: __VLS_WithSlots$38<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
481
474
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
482
475
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
483
476
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
@@ -496,7 +489,7 @@ declare const __VLS_export$24: __VLS_WithSlots$24<import("vue").DefineComponent<
|
|
|
496
489
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
497
490
|
default?: (props: {}) => any;
|
|
498
491
|
}>;
|
|
499
|
-
type __VLS_WithSlots$
|
|
492
|
+
type __VLS_WithSlots$38<T, S> = T & {
|
|
500
493
|
new (): {
|
|
501
494
|
$slots: S;
|
|
502
495
|
};
|
|
@@ -506,13 +499,13 @@ type __VLS_WithSlots$24<T, S> = T & {
|
|
|
506
499
|
interface DialogDescriptionProps extends DialogDescriptionProps$1 {
|
|
507
500
|
class?: HTMLAttributes['class'];
|
|
508
501
|
}
|
|
509
|
-
declare const _default$
|
|
510
|
-
declare const __VLS_export$
|
|
502
|
+
declare const _default$29: typeof __VLS_export$39;
|
|
503
|
+
declare const __VLS_export$39: __VLS_WithSlots$37<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
|
|
511
504
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
512
505
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
513
506
|
default?: (props: {}) => any;
|
|
514
507
|
}>;
|
|
515
|
-
type __VLS_WithSlots$
|
|
508
|
+
type __VLS_WithSlots$37<T, S> = T & {
|
|
516
509
|
new (): {
|
|
517
510
|
$slots: S;
|
|
518
511
|
};
|
|
@@ -522,11 +515,11 @@ type __VLS_WithSlots$23<T, S> = T & {
|
|
|
522
515
|
interface DialogFooterProps extends PrimitiveProps {
|
|
523
516
|
class?: HTMLAttributes['class'];
|
|
524
517
|
}
|
|
525
|
-
declare const _default$
|
|
526
|
-
declare const __VLS_export$
|
|
518
|
+
declare const _default$30: typeof __VLS_export$38;
|
|
519
|
+
declare const __VLS_export$38: __VLS_WithSlots$36<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
527
520
|
default?: (props: {}) => any;
|
|
528
521
|
}>;
|
|
529
|
-
type __VLS_WithSlots$
|
|
522
|
+
type __VLS_WithSlots$36<T, S> = T & {
|
|
530
523
|
new (): {
|
|
531
524
|
$slots: S;
|
|
532
525
|
};
|
|
@@ -536,11 +529,11 @@ type __VLS_WithSlots$22<T, S> = T & {
|
|
|
536
529
|
interface DialogHeaderProps extends PrimitiveProps {
|
|
537
530
|
class?: HTMLAttributes['class'];
|
|
538
531
|
}
|
|
539
|
-
declare const _default$
|
|
540
|
-
declare const __VLS_export$
|
|
532
|
+
declare const _default$31: typeof __VLS_export$37;
|
|
533
|
+
declare const __VLS_export$37: __VLS_WithSlots$35<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
541
534
|
default?: (props: {}) => any;
|
|
542
535
|
}>;
|
|
543
|
-
type __VLS_WithSlots$
|
|
536
|
+
type __VLS_WithSlots$35<T, S> = T & {
|
|
544
537
|
new (): {
|
|
545
538
|
$slots: S;
|
|
546
539
|
};
|
|
@@ -550,11 +543,11 @@ type __VLS_WithSlots$21<T, S> = T & {
|
|
|
550
543
|
interface DialogOverlayProps extends DialogOverlayProps$1 {
|
|
551
544
|
class?: HTMLAttributes['class'];
|
|
552
545
|
}
|
|
553
|
-
declare const _default$
|
|
554
|
-
declare const __VLS_export$
|
|
546
|
+
declare const _default$32: typeof __VLS_export$36;
|
|
547
|
+
declare const __VLS_export$36: __VLS_WithSlots$34<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
555
548
|
default?: (props: {}) => any;
|
|
556
549
|
}>;
|
|
557
|
-
type __VLS_WithSlots$
|
|
550
|
+
type __VLS_WithSlots$34<T, S> = T & {
|
|
558
551
|
new (): {
|
|
559
552
|
$slots: S;
|
|
560
553
|
};
|
|
@@ -564,13 +557,13 @@ type __VLS_WithSlots$20<T, S> = T & {
|
|
|
564
557
|
interface DialogTitleProps extends DialogTitleProps$1 {
|
|
565
558
|
class?: HTMLAttributes['class'];
|
|
566
559
|
}
|
|
567
|
-
declare const _default$
|
|
568
|
-
declare const __VLS_export$
|
|
560
|
+
declare const _default$33: typeof __VLS_export$35;
|
|
561
|
+
declare const __VLS_export$35: __VLS_WithSlots$33<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
|
|
569
562
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
570
563
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
571
564
|
default?: (props: {}) => any;
|
|
572
565
|
}>;
|
|
573
|
-
type __VLS_WithSlots$
|
|
566
|
+
type __VLS_WithSlots$33<T, S> = T & {
|
|
574
567
|
new (): {
|
|
575
568
|
$slots: S;
|
|
576
569
|
};
|
|
@@ -578,11 +571,11 @@ type __VLS_WithSlots$19<T, S> = T & {
|
|
|
578
571
|
//#endregion
|
|
579
572
|
//#region src/dialog/DialogTrigger.vue.d.ts
|
|
580
573
|
interface DialogTriggerProps extends DialogTriggerProps$1 {}
|
|
581
|
-
declare const _default$
|
|
582
|
-
declare const __VLS_export$
|
|
574
|
+
declare const _default$34: typeof __VLS_export$34;
|
|
575
|
+
declare const __VLS_export$34: __VLS_WithSlots$32<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
583
576
|
default?: (props: {}) => any;
|
|
584
577
|
}>;
|
|
585
|
-
type __VLS_WithSlots$
|
|
578
|
+
type __VLS_WithSlots$32<T, S> = T & {
|
|
586
579
|
new (): {
|
|
587
580
|
$slots: S;
|
|
588
581
|
};
|
|
@@ -593,8 +586,8 @@ interface DrawerProps extends DialogRootProps {
|
|
|
593
586
|
class?: HTMLAttributes['class'];
|
|
594
587
|
}
|
|
595
588
|
interface DrawerEmits extends DialogRootEmits {}
|
|
596
|
-
declare const _default$
|
|
597
|
-
declare const __VLS_export$
|
|
589
|
+
declare const _default$35: typeof __VLS_export$33;
|
|
590
|
+
declare const __VLS_export$33: __VLS_WithSlots$31<import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
598
591
|
"update:open": (value: boolean) => any;
|
|
599
592
|
}, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
|
|
600
593
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -604,7 +597,7 @@ declare const __VLS_export$17: __VLS_WithSlots$17<import("vue").DefineComponent<
|
|
|
604
597
|
close: () => void;
|
|
605
598
|
}) => any;
|
|
606
599
|
}>;
|
|
607
|
-
type __VLS_WithSlots$
|
|
600
|
+
type __VLS_WithSlots$31<T, S> = T & {
|
|
608
601
|
new (): {
|
|
609
602
|
$slots: S;
|
|
610
603
|
};
|
|
@@ -612,13 +605,13 @@ type __VLS_WithSlots$17<T, S> = T & {
|
|
|
612
605
|
//#endregion
|
|
613
606
|
//#region src/drawer/DrawerClose.vue.d.ts
|
|
614
607
|
interface DrawerCloseProps extends DialogCloseProps$1 {}
|
|
615
|
-
declare const _default$
|
|
616
|
-
declare const __VLS_export$
|
|
608
|
+
declare const _default$36: typeof __VLS_export$32;
|
|
609
|
+
declare const __VLS_export$32: __VLS_WithSlots$30<import("vue").DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {
|
|
617
610
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
618
611
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
619
612
|
default?: (props: {}) => any;
|
|
620
613
|
}>;
|
|
621
|
-
type __VLS_WithSlots$
|
|
614
|
+
type __VLS_WithSlots$30<T, S> = T & {
|
|
622
615
|
new (): {
|
|
623
616
|
$slots: S;
|
|
624
617
|
};
|
|
@@ -631,8 +624,8 @@ interface DrawerContentProps extends DialogContentProps$1 {
|
|
|
631
624
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
632
625
|
showCloseButton?: boolean;
|
|
633
626
|
}
|
|
634
|
-
declare const _default$
|
|
635
|
-
declare const __VLS_export$
|
|
627
|
+
declare const _default$37: typeof __VLS_export$31;
|
|
628
|
+
declare const __VLS_export$31: __VLS_WithSlots$29<import("vue").DefineComponent<DrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
636
629
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
637
630
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
638
631
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
@@ -647,12 +640,12 @@ declare const __VLS_export$15: __VLS_WithSlots$15<import("vue").DefineComponent<
|
|
|
647
640
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
648
641
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
649
642
|
}>, {
|
|
650
|
-
showCloseButton: boolean;
|
|
651
643
|
side: "top" | "right" | "bottom" | "left";
|
|
644
|
+
showCloseButton: boolean;
|
|
652
645
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
653
646
|
default?: (props: {}) => any;
|
|
654
647
|
}>;
|
|
655
|
-
type __VLS_WithSlots$
|
|
648
|
+
type __VLS_WithSlots$29<T, S> = T & {
|
|
656
649
|
new (): {
|
|
657
650
|
$slots: S;
|
|
658
651
|
};
|
|
@@ -662,13 +655,13 @@ type __VLS_WithSlots$15<T, S> = T & {
|
|
|
662
655
|
interface DrawerDescriptionProps extends DialogDescriptionProps$1 {
|
|
663
656
|
class?: HTMLAttributes['class'];
|
|
664
657
|
}
|
|
665
|
-
declare const _default$
|
|
666
|
-
declare const __VLS_export$
|
|
658
|
+
declare const _default$38: typeof __VLS_export$30;
|
|
659
|
+
declare const __VLS_export$30: __VLS_WithSlots$28<import("vue").DefineComponent<DrawerDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerDescriptionProps> & Readonly<{}>, {
|
|
667
660
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
668
661
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
669
662
|
default?: (props: {}) => any;
|
|
670
663
|
}>;
|
|
671
|
-
type __VLS_WithSlots$
|
|
664
|
+
type __VLS_WithSlots$28<T, S> = T & {
|
|
672
665
|
new (): {
|
|
673
666
|
$slots: S;
|
|
674
667
|
};
|
|
@@ -678,11 +671,11 @@ type __VLS_WithSlots$14<T, S> = T & {
|
|
|
678
671
|
interface DrawerFooterProps extends PrimitiveProps {
|
|
679
672
|
class?: HTMLAttributes['class'];
|
|
680
673
|
}
|
|
681
|
-
declare const _default$
|
|
682
|
-
declare const __VLS_export$
|
|
674
|
+
declare const _default$39: typeof __VLS_export$29;
|
|
675
|
+
declare const __VLS_export$29: __VLS_WithSlots$27<import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
683
676
|
default?: (props: {}) => any;
|
|
684
677
|
}>;
|
|
685
|
-
type __VLS_WithSlots$
|
|
678
|
+
type __VLS_WithSlots$27<T, S> = T & {
|
|
686
679
|
new (): {
|
|
687
680
|
$slots: S;
|
|
688
681
|
};
|
|
@@ -692,11 +685,11 @@ type __VLS_WithSlots$13<T, S> = T & {
|
|
|
692
685
|
interface DrawerHeaderProps extends PrimitiveProps {
|
|
693
686
|
class?: HTMLAttributes['class'];
|
|
694
687
|
}
|
|
695
|
-
declare const _default$
|
|
696
|
-
declare const __VLS_export$
|
|
688
|
+
declare const _default$40: typeof __VLS_export$28;
|
|
689
|
+
declare const __VLS_export$28: __VLS_WithSlots$26<import("vue").DefineComponent<DrawerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
697
690
|
default?: (props: {}) => any;
|
|
698
691
|
}>;
|
|
699
|
-
type __VLS_WithSlots$
|
|
692
|
+
type __VLS_WithSlots$26<T, S> = T & {
|
|
700
693
|
new (): {
|
|
701
694
|
$slots: S;
|
|
702
695
|
};
|
|
@@ -706,11 +699,11 @@ type __VLS_WithSlots$12<T, S> = T & {
|
|
|
706
699
|
interface DrawerOverlayProps extends DialogOverlayProps$1 {
|
|
707
700
|
class?: HTMLAttributes['class'];
|
|
708
701
|
}
|
|
709
|
-
declare const _default$
|
|
710
|
-
declare const __VLS_export$
|
|
702
|
+
declare const _default$41: typeof __VLS_export$27;
|
|
703
|
+
declare const __VLS_export$27: __VLS_WithSlots$25<import("vue").DefineComponent<DrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
711
704
|
default?: (props: {}) => any;
|
|
712
705
|
}>;
|
|
713
|
-
type __VLS_WithSlots$
|
|
706
|
+
type __VLS_WithSlots$25<T, S> = T & {
|
|
714
707
|
new (): {
|
|
715
708
|
$slots: S;
|
|
716
709
|
};
|
|
@@ -720,13 +713,13 @@ type __VLS_WithSlots$11<T, S> = T & {
|
|
|
720
713
|
interface DrawerTitleProps extends DialogTitleProps$1 {
|
|
721
714
|
class?: HTMLAttributes['class'];
|
|
722
715
|
}
|
|
723
|
-
declare const _default$
|
|
724
|
-
declare const __VLS_export$
|
|
716
|
+
declare const _default$42: typeof __VLS_export$26;
|
|
717
|
+
declare const __VLS_export$26: __VLS_WithSlots$24<import("vue").DefineComponent<DrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTitleProps> & Readonly<{}>, {
|
|
725
718
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
726
719
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
727
720
|
default?: (props: {}) => any;
|
|
728
721
|
}>;
|
|
729
|
-
type __VLS_WithSlots$
|
|
722
|
+
type __VLS_WithSlots$24<T, S> = T & {
|
|
730
723
|
new (): {
|
|
731
724
|
$slots: S;
|
|
732
725
|
};
|
|
@@ -734,34 +727,294 @@ type __VLS_WithSlots$10<T, S> = T & {
|
|
|
734
727
|
//#endregion
|
|
735
728
|
//#region src/drawer/DrawerTrigger.vue.d.ts
|
|
736
729
|
interface DrawerTriggerProps extends DialogTriggerProps$1 {}
|
|
737
|
-
declare const _default$
|
|
738
|
-
declare const __VLS_export$
|
|
730
|
+
declare const _default$43: typeof __VLS_export$25;
|
|
731
|
+
declare const __VLS_export$25: __VLS_WithSlots$23<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
739
732
|
default?: (props: {}) => any;
|
|
740
733
|
}>;
|
|
741
|
-
type __VLS_WithSlots$
|
|
734
|
+
type __VLS_WithSlots$23<T, S> = T & {
|
|
742
735
|
new (): {
|
|
743
736
|
$slots: S;
|
|
744
737
|
};
|
|
745
738
|
}; //# sourceMappingURL=DrawerTrigger.vue.d.ts.map
|
|
746
739
|
//#endregion
|
|
740
|
+
//#region src/dropdown-menu/DropdownMenu.vue.d.ts
|
|
741
|
+
interface DropdownMenuProps extends DropdownMenuRootProps {}
|
|
742
|
+
interface DropdownMenuEmits extends DropdownMenuRootEmits {}
|
|
743
|
+
declare const _default$44: typeof __VLS_export$24;
|
|
744
|
+
declare const __VLS_export$24: __VLS_WithSlots$22<import("vue").DefineComponent<DropdownMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
745
|
+
"update:open": (payload: boolean) => any;
|
|
746
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuProps> & Readonly<{
|
|
747
|
+
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
748
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
749
|
+
default?: (props: {
|
|
750
|
+
open: boolean;
|
|
751
|
+
}) => any;
|
|
752
|
+
}>;
|
|
753
|
+
type __VLS_WithSlots$22<T, S> = T & {
|
|
754
|
+
new (): {
|
|
755
|
+
$slots: S;
|
|
756
|
+
};
|
|
757
|
+
}; //# sourceMappingURL=DropdownMenu.vue.d.ts.map
|
|
758
|
+
//#endregion
|
|
759
|
+
//#region src/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts
|
|
760
|
+
interface DropdownMenuCheckboxItemProps extends DropdownMenuCheckboxItemProps$1 {
|
|
761
|
+
class?: HTMLAttributes['class'];
|
|
762
|
+
}
|
|
763
|
+
interface DropdownMenuCheckboxItemEmits extends DropdownMenuCheckboxItemEmits$1 {}
|
|
764
|
+
declare const _default$45: typeof __VLS_export$23;
|
|
765
|
+
declare const __VLS_export$23: __VLS_WithSlots$21<import("vue").DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
766
|
+
"update:modelValue": (payload: boolean) => any;
|
|
767
|
+
select: (event: Event) => any;
|
|
768
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuCheckboxItemProps> & Readonly<{
|
|
769
|
+
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
770
|
+
onSelect?: ((event: Event) => any) | undefined;
|
|
771
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
772
|
+
default?: (props: {}) => any;
|
|
773
|
+
}>;
|
|
774
|
+
type __VLS_WithSlots$21<T, S> = T & {
|
|
775
|
+
new (): {
|
|
776
|
+
$slots: S;
|
|
777
|
+
};
|
|
778
|
+
}; //# sourceMappingURL=DropdownMenuCheckboxItem.vue.d.ts.map
|
|
779
|
+
//#endregion
|
|
780
|
+
//#region src/dropdown-menu/DropdownMenuContent.vue.d.ts
|
|
781
|
+
interface DropdownMenuContentProps extends DropdownMenuContentProps$1 {
|
|
782
|
+
class?: HTMLAttributes['class'];
|
|
783
|
+
}
|
|
784
|
+
interface DropdownMenuContentEmits extends DropdownMenuContentEmits$1 {}
|
|
785
|
+
declare const _default$46: typeof __VLS_export$22;
|
|
786
|
+
declare const __VLS_export$22: __VLS_WithSlots$20<import("vue").DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
787
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
788
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
789
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
790
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
791
|
+
closeAutoFocus: (event: Event) => any;
|
|
792
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuContentProps> & Readonly<{
|
|
793
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
794
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
795
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
796
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
797
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
798
|
+
}>, {
|
|
799
|
+
sideOffset: number;
|
|
800
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
801
|
+
default?: (props: {}) => any;
|
|
802
|
+
}>;
|
|
803
|
+
type __VLS_WithSlots$20<T, S> = T & {
|
|
804
|
+
new (): {
|
|
805
|
+
$slots: S;
|
|
806
|
+
};
|
|
807
|
+
}; //# sourceMappingURL=DropdownMenuContent.vue.d.ts.map
|
|
808
|
+
//#endregion
|
|
809
|
+
//#region src/dropdown-menu/DropdownMenuGroup.vue.d.ts
|
|
810
|
+
interface DropdownMenuGroupProps extends DropdownMenuGroupProps$1 {}
|
|
811
|
+
declare const _default$47: typeof __VLS_export$21;
|
|
812
|
+
declare const __VLS_export$21: __VLS_WithSlots$19<import("vue").DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
813
|
+
default?: (props: {}) => any;
|
|
814
|
+
}>;
|
|
815
|
+
type __VLS_WithSlots$19<T, S> = T & {
|
|
816
|
+
new (): {
|
|
817
|
+
$slots: S;
|
|
818
|
+
};
|
|
819
|
+
}; //# sourceMappingURL=DropdownMenuGroup.vue.d.ts.map
|
|
820
|
+
//#endregion
|
|
821
|
+
//#region src/dropdown-menu/DropdownMenuItem.vue.d.ts
|
|
822
|
+
interface DropdownMenuItemProps extends DropdownMenuItemProps$1 {
|
|
823
|
+
class?: HTMLAttributes['class'];
|
|
824
|
+
inset?: boolean;
|
|
825
|
+
}
|
|
826
|
+
declare const _default$48: typeof __VLS_export$20;
|
|
827
|
+
declare const __VLS_export$20: __VLS_WithSlots$18<import("vue").DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
828
|
+
default?: (props: {}) => any;
|
|
829
|
+
}>;
|
|
830
|
+
type __VLS_WithSlots$18<T, S> = T & {
|
|
831
|
+
new (): {
|
|
832
|
+
$slots: S;
|
|
833
|
+
};
|
|
834
|
+
}; //# sourceMappingURL=DropdownMenuItem.vue.d.ts.map
|
|
835
|
+
//#endregion
|
|
836
|
+
//#region src/dropdown-menu/DropdownMenuLabel.vue.d.ts
|
|
837
|
+
interface DropdownMenuLabelProps extends DropdownMenuLabelProps$1 {
|
|
838
|
+
class?: HTMLAttributes['class'];
|
|
839
|
+
inset?: boolean;
|
|
840
|
+
}
|
|
841
|
+
declare const _default$49: typeof __VLS_export$19;
|
|
842
|
+
declare const __VLS_export$19: __VLS_WithSlots$17<import("vue").DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
843
|
+
default?: (props: {}) => any;
|
|
844
|
+
}>;
|
|
845
|
+
type __VLS_WithSlots$17<T, S> = T & {
|
|
846
|
+
new (): {
|
|
847
|
+
$slots: S;
|
|
848
|
+
};
|
|
849
|
+
}; //# sourceMappingURL=DropdownMenuLabel.vue.d.ts.map
|
|
850
|
+
//#endregion
|
|
851
|
+
//#region src/dropdown-menu/DropdownMenuPortal.vue.d.ts
|
|
852
|
+
interface DropdownMenuPortalProps extends DropdownMenuPortalProps$1 {}
|
|
853
|
+
declare const _default$50: typeof __VLS_export$18;
|
|
854
|
+
declare const __VLS_export$18: __VLS_WithSlots$16<import("vue").DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
855
|
+
default?: (props: {}) => any;
|
|
856
|
+
}>;
|
|
857
|
+
type __VLS_WithSlots$16<T, S> = T & {
|
|
858
|
+
new (): {
|
|
859
|
+
$slots: S;
|
|
860
|
+
};
|
|
861
|
+
}; //# sourceMappingURL=DropdownMenuPortal.vue.d.ts.map
|
|
862
|
+
//#endregion
|
|
863
|
+
//#region src/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts
|
|
864
|
+
interface DropdownMenuRadioGroupProps extends DropdownMenuRadioGroupProps$1 {}
|
|
865
|
+
interface DropdownMenuRadioGroupEmits extends DropdownMenuRadioGroupEmits$1 {}
|
|
866
|
+
declare const _default$51: typeof __VLS_export$17;
|
|
867
|
+
declare const __VLS_export$17: __VLS_WithSlots$15<import("vue").DefineComponent<DropdownMenuRadioGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
868
|
+
"update:modelValue": (payload: import("reka-ui").AcceptableValue) => any;
|
|
869
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuRadioGroupProps> & Readonly<{
|
|
870
|
+
"onUpdate:modelValue"?: ((payload: import("reka-ui").AcceptableValue) => any) | undefined;
|
|
871
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
872
|
+
default?: (props: {}) => any;
|
|
873
|
+
}>;
|
|
874
|
+
type __VLS_WithSlots$15<T, S> = T & {
|
|
875
|
+
new (): {
|
|
876
|
+
$slots: S;
|
|
877
|
+
};
|
|
878
|
+
}; //# sourceMappingURL=DropdownMenuRadioGroup.vue.d.ts.map
|
|
879
|
+
//#endregion
|
|
880
|
+
//#region src/dropdown-menu/DropdownMenuRadioItem.vue.d.ts
|
|
881
|
+
interface DropdownMenuRadioItemProps extends DropdownMenuRadioItemProps$1 {
|
|
882
|
+
class?: HTMLAttributes['class'];
|
|
883
|
+
}
|
|
884
|
+
interface DropdownMenuRadioItemEmits extends DropdownMenuRadioItemEmits$1 {}
|
|
885
|
+
declare const _default$52: typeof __VLS_export$16;
|
|
886
|
+
declare const __VLS_export$16: __VLS_WithSlots$14<import("vue").DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
887
|
+
select: (event: Event) => any;
|
|
888
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuRadioItemProps> & Readonly<{
|
|
889
|
+
onSelect?: ((event: Event) => any) | undefined;
|
|
890
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
891
|
+
default?: (props: {}) => any;
|
|
892
|
+
}>;
|
|
893
|
+
type __VLS_WithSlots$14<T, S> = T & {
|
|
894
|
+
new (): {
|
|
895
|
+
$slots: S;
|
|
896
|
+
};
|
|
897
|
+
}; //# sourceMappingURL=DropdownMenuRadioItem.vue.d.ts.map
|
|
898
|
+
//#endregion
|
|
899
|
+
//#region src/dropdown-menu/DropdownMenuSeparator.vue.d.ts
|
|
900
|
+
interface DropdownMenuSeparatorProps extends DropdownMenuSeparatorProps$1 {
|
|
901
|
+
class?: HTMLAttributes['class'];
|
|
902
|
+
}
|
|
903
|
+
declare const _default$53: typeof __VLS_export$15;
|
|
904
|
+
declare const __VLS_export$15: import("vue").DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=DropdownMenuSeparator.vue.d.ts.map
|
|
905
|
+
//#endregion
|
|
906
|
+
//#region src/dropdown-menu/DropdownMenuShortcut.vue.d.ts
|
|
907
|
+
interface DropdownMenuShortcutProps extends PrimitiveProps {
|
|
908
|
+
class?: HTMLAttributes['class'];
|
|
909
|
+
}
|
|
910
|
+
declare const _default$54: typeof __VLS_export$14;
|
|
911
|
+
declare const __VLS_export$14: __VLS_WithSlots$13<import("vue").DefineComponent<DropdownMenuShortcutProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuShortcutProps> & Readonly<{}>, {
|
|
912
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
913
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
914
|
+
default?: (props: {}) => any;
|
|
915
|
+
}>;
|
|
916
|
+
type __VLS_WithSlots$13<T, S> = T & {
|
|
917
|
+
new (): {
|
|
918
|
+
$slots: S;
|
|
919
|
+
};
|
|
920
|
+
}; //# sourceMappingURL=DropdownMenuShortcut.vue.d.ts.map
|
|
921
|
+
//#endregion
|
|
922
|
+
//#region src/dropdown-menu/DropdownMenuSub.vue.d.ts
|
|
923
|
+
interface DropdownMenuSubProps extends DropdownMenuSubProps$1 {}
|
|
924
|
+
declare const _default$55: typeof __VLS_export$13;
|
|
925
|
+
declare const __VLS_export$13: __VLS_WithSlots$12<import("vue").DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
926
|
+
"update:open": (payload: boolean) => any;
|
|
927
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
|
|
928
|
+
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
929
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
930
|
+
default?: (props: {
|
|
931
|
+
open: boolean;
|
|
932
|
+
}) => any;
|
|
933
|
+
}>;
|
|
934
|
+
type __VLS_WithSlots$12<T, S> = T & {
|
|
935
|
+
new (): {
|
|
936
|
+
$slots: S;
|
|
937
|
+
};
|
|
938
|
+
}; //# sourceMappingURL=DropdownMenuSub.vue.d.ts.map
|
|
939
|
+
//#endregion
|
|
940
|
+
//#region src/dropdown-menu/DropdownMenuSubContent.vue.d.ts
|
|
941
|
+
interface DropdownMenuSubContentProps extends DropdownMenuSubContentProps$1 {
|
|
942
|
+
class?: HTMLAttributes['class'];
|
|
943
|
+
}
|
|
944
|
+
interface DropdownMenuSubContentEmits extends DropdownMenuSubContentEmits$1 {}
|
|
945
|
+
declare const _default$56: typeof __VLS_export$12;
|
|
946
|
+
declare const __VLS_export$12: __VLS_WithSlots$11<import("vue").DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
947
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
948
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
949
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
950
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
951
|
+
openAutoFocus: (event: Event) => any;
|
|
952
|
+
closeAutoFocus: (event: Event) => any;
|
|
953
|
+
entryFocus: (event: Event) => any;
|
|
954
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuSubContentProps> & Readonly<{
|
|
955
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
956
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
957
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
958
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
959
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
960
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
961
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
962
|
+
}>, {
|
|
963
|
+
sideOffset: number;
|
|
964
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
965
|
+
default?: (props: {}) => any;
|
|
966
|
+
}>;
|
|
967
|
+
type __VLS_WithSlots$11<T, S> = T & {
|
|
968
|
+
new (): {
|
|
969
|
+
$slots: S;
|
|
970
|
+
};
|
|
971
|
+
}; //# sourceMappingURL=DropdownMenuSubContent.vue.d.ts.map
|
|
972
|
+
//#endregion
|
|
973
|
+
//#region src/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts
|
|
974
|
+
interface DropdownMenuSubTriggerProps extends DropdownMenuSubTriggerProps$1 {
|
|
975
|
+
class?: HTMLAttributes['class'];
|
|
976
|
+
inset?: boolean;
|
|
977
|
+
}
|
|
978
|
+
declare const _default$57: typeof __VLS_export$11;
|
|
979
|
+
declare const __VLS_export$11: __VLS_WithSlots$10<import("vue").DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
980
|
+
default?: (props: {}) => any;
|
|
981
|
+
}>;
|
|
982
|
+
type __VLS_WithSlots$10<T, S> = T & {
|
|
983
|
+
new (): {
|
|
984
|
+
$slots: S;
|
|
985
|
+
};
|
|
986
|
+
}; //# sourceMappingURL=DropdownMenuSubTrigger.vue.d.ts.map
|
|
987
|
+
//#endregion
|
|
988
|
+
//#region src/dropdown-menu/DropdownMenuTrigger.vue.d.ts
|
|
989
|
+
interface DropdownMenuTriggerProps extends DropdownMenuTriggerProps$1 {}
|
|
990
|
+
declare const _default$58: typeof __VLS_export$10;
|
|
991
|
+
declare const __VLS_export$10: __VLS_WithSlots$9<import("vue").DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
992
|
+
default?: (props: {}) => any;
|
|
993
|
+
}>;
|
|
994
|
+
type __VLS_WithSlots$9<T, S> = T & {
|
|
995
|
+
new (): {
|
|
996
|
+
$slots: S;
|
|
997
|
+
};
|
|
998
|
+
}; //# sourceMappingURL=DropdownMenuTrigger.vue.d.ts.map
|
|
999
|
+
//#endregion
|
|
747
1000
|
//#region src/sheet/Sheet.vue.d.ts
|
|
748
1001
|
interface SheetEmits extends DrawerRootEmits {}
|
|
749
1002
|
interface SheetProps extends DrawerRootProps {
|
|
750
1003
|
class?: HTMLAttributes['class'];
|
|
751
1004
|
}
|
|
752
|
-
declare const _default$
|
|
753
|
-
declare const __VLS_export$
|
|
1005
|
+
declare const _default$59: typeof __VLS_export$9;
|
|
1006
|
+
declare const __VLS_export$9: __VLS_WithSlots$8<import("vue").DefineComponent<SheetProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
1007
|
+
"update:open": (open: boolean) => any;
|
|
754
1008
|
drag: (percentageDragged: number) => any;
|
|
755
1009
|
release: (open: boolean) => any;
|
|
756
1010
|
close: () => any;
|
|
757
|
-
"update:open": (open: boolean) => any;
|
|
758
1011
|
"update:activeSnapPoint": (val: string | number) => any;
|
|
759
1012
|
animationEnd: (open: boolean) => any;
|
|
760
1013
|
}, string, import("vue").PublicProps, Readonly<SheetProps> & Readonly<{
|
|
1014
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
761
1015
|
onDrag?: ((percentageDragged: number) => any) | undefined;
|
|
762
1016
|
onRelease?: ((open: boolean) => any) | undefined;
|
|
763
1017
|
onClose?: (() => any) | undefined;
|
|
764
|
-
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
765
1018
|
"onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined;
|
|
766
1019
|
onAnimationEnd?: ((open: boolean) => any) | undefined;
|
|
767
1020
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
@@ -777,8 +1030,8 @@ type __VLS_WithSlots$8<T, S> = T & {
|
|
|
777
1030
|
//#endregion
|
|
778
1031
|
//#region src/sheet/SheetClose.vue.d.ts
|
|
779
1032
|
interface SheetCloseProps extends DrawerCloseProps$1 {}
|
|
780
|
-
declare const _default$
|
|
781
|
-
declare const __VLS_export$
|
|
1033
|
+
declare const _default$60: typeof __VLS_export$8;
|
|
1034
|
+
declare const __VLS_export$8: __VLS_WithSlots$7<import("vue").DefineComponent<SheetCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetCloseProps> & Readonly<{}>, {
|
|
782
1035
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
783
1036
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
784
1037
|
default?: (props: {}) => any;
|
|
@@ -795,8 +1048,8 @@ interface SheetContentProps extends DialogContentProps$1 {
|
|
|
795
1048
|
class?: HTMLAttributes['class'];
|
|
796
1049
|
showHandle?: boolean;
|
|
797
1050
|
}
|
|
798
|
-
declare const _default$
|
|
799
|
-
declare const __VLS_export$
|
|
1051
|
+
declare const _default$61: typeof __VLS_export$7;
|
|
1052
|
+
declare const __VLS_export$7: __VLS_WithSlots$6<import("vue").DefineComponent<SheetContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
800
1053
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
801
1054
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
802
1055
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
@@ -825,8 +1078,8 @@ type __VLS_WithSlots$6<T, S> = T & {
|
|
|
825
1078
|
interface SheetDescriptionProps extends DrawerDescriptionProps$1 {
|
|
826
1079
|
class?: HTMLAttributes['class'];
|
|
827
1080
|
}
|
|
828
|
-
declare const _default$
|
|
829
|
-
declare const __VLS_export$
|
|
1081
|
+
declare const _default$62: typeof __VLS_export$6;
|
|
1082
|
+
declare const __VLS_export$6: __VLS_WithSlots$5<import("vue").DefineComponent<SheetDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetDescriptionProps> & Readonly<{}>, {
|
|
830
1083
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
831
1084
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
832
1085
|
default?: (props: {}) => any;
|
|
@@ -841,8 +1094,8 @@ type __VLS_WithSlots$5<T, S> = T & {
|
|
|
841
1094
|
interface SheetFooterProps extends PrimitiveProps {
|
|
842
1095
|
class?: HTMLAttributes['class'];
|
|
843
1096
|
}
|
|
844
|
-
declare const _default$
|
|
845
|
-
declare const __VLS_export$
|
|
1097
|
+
declare const _default$63: typeof __VLS_export$5;
|
|
1098
|
+
declare const __VLS_export$5: __VLS_WithSlots$4<import("vue").DefineComponent<SheetFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
846
1099
|
default?: (props: {}) => any;
|
|
847
1100
|
}>;
|
|
848
1101
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
@@ -855,8 +1108,8 @@ type __VLS_WithSlots$4<T, S> = T & {
|
|
|
855
1108
|
interface SheetHeaderProps extends PrimitiveProps {
|
|
856
1109
|
class?: HTMLAttributes['class'];
|
|
857
1110
|
}
|
|
858
|
-
declare const _default$
|
|
859
|
-
declare const __VLS_export$
|
|
1111
|
+
declare const _default$64: typeof __VLS_export$4;
|
|
1112
|
+
declare const __VLS_export$4: __VLS_WithSlots$3<import("vue").DefineComponent<SheetHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
860
1113
|
default?: (props: {}) => any;
|
|
861
1114
|
}>;
|
|
862
1115
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -869,8 +1122,8 @@ type __VLS_WithSlots$3<T, S> = T & {
|
|
|
869
1122
|
interface SheetOverlayProps extends DialogOverlayProps$1 {
|
|
870
1123
|
class?: HTMLAttributes['class'];
|
|
871
1124
|
}
|
|
872
|
-
declare const _default$
|
|
873
|
-
declare const __VLS_export$
|
|
1125
|
+
declare const _default$65: typeof __VLS_export$3;
|
|
1126
|
+
declare const __VLS_export$3: __VLS_WithSlots$2<import("vue").DefineComponent<SheetOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
874
1127
|
default?: (props: {}) => any;
|
|
875
1128
|
}>;
|
|
876
1129
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
@@ -883,8 +1136,8 @@ type __VLS_WithSlots$2<T, S> = T & {
|
|
|
883
1136
|
interface SheetTitleProps extends DrawerTitleProps$1 {
|
|
884
1137
|
class?: HTMLAttributes['class'];
|
|
885
1138
|
}
|
|
886
|
-
declare const _default$
|
|
887
|
-
declare const __VLS_export$
|
|
1139
|
+
declare const _default$66: typeof __VLS_export$2;
|
|
1140
|
+
declare const __VLS_export$2: __VLS_WithSlots$1<import("vue").DefineComponent<SheetTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTitleProps> & Readonly<{}>, {
|
|
888
1141
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
889
1142
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
890
1143
|
default?: (props: {}) => any;
|
|
@@ -897,8 +1150,8 @@ type __VLS_WithSlots$1<T, S> = T & {
|
|
|
897
1150
|
//#endregion
|
|
898
1151
|
//#region src/sheet/SheetTrigger.vue.d.ts
|
|
899
1152
|
interface SheetTriggerProps extends DrawerTriggerProps$1 {}
|
|
900
|
-
declare const _default$
|
|
901
|
-
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<SheetTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
1153
|
+
declare const _default$67: typeof __VLS_export$1;
|
|
1154
|
+
declare const __VLS_export$1: __VLS_WithSlots<import("vue").DefineComponent<SheetTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
902
1155
|
default?: (props: {}) => any;
|
|
903
1156
|
}>;
|
|
904
1157
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -907,5 +1160,12 @@ type __VLS_WithSlots<T, S> = T & {
|
|
|
907
1160
|
};
|
|
908
1161
|
}; //# sourceMappingURL=SheetTrigger.vue.d.ts.map
|
|
909
1162
|
//#endregion
|
|
910
|
-
|
|
1163
|
+
//#region src/sonner/Sonner.vue.d.ts
|
|
1164
|
+
interface SonnerProps extends ToasterProps {}
|
|
1165
|
+
declare const _default$68: typeof __VLS_export;
|
|
1166
|
+
declare const __VLS_export: import("vue").DefineComponent<SonnerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SonnerProps> & Readonly<{}>, {
|
|
1167
|
+
richColors: boolean;
|
|
1168
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=Sonner.vue.d.ts.map
|
|
1169
|
+
//#endregion
|
|
1170
|
+
export { __VLS_export$68 as Autocomplete, __VLS_export$67 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$66 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$65 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$64 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$63 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$62 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$61 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$60 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$59 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$58 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$57 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$56 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$55 as Combobox, __VLS_export$54 as ComboboxAnchor, type ComboboxAnchorProps, __VLS_export$53 as ComboboxCancel, type ComboboxCancelProps, __VLS_export$52 as ComboboxContent, type ComboboxContentEmits, type ComboboxContentProps, type ComboboxEmits, __VLS_export$51 as ComboboxEmpty, type ComboboxEmptyProps, __VLS_export$50 as ComboboxGroup, type ComboboxGroupProps, __VLS_export$49 as ComboboxInput, type ComboboxInputEmits, type ComboboxInputProps, __VLS_export$48 as ComboboxItem, type ComboboxItemEmits, type ComboboxItemProps, __VLS_export$47 as ComboboxLabel, type ComboboxLabelProps, __VLS_export$46 as ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, __VLS_export$45 as ComboboxSeparator, type ComboboxSeparatorProps, __VLS_export$44 as ComboboxTrigger, type ComboboxTriggerProps, __VLS_export$43 as ComboboxViewport, type ComboboxViewportProps, __VLS_export$42 as Dialog, __VLS_export$41 as DialogClose, type DialogCloseProps, __VLS_export$40 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$39 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$38 as DialogFooter, type DialogFooterProps, __VLS_export$37 as DialogHeader, type DialogHeaderProps, __VLS_export$36 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$35 as DialogTitle, type DialogTitleProps, __VLS_export$34 as DialogTrigger, type DialogTriggerProps, __VLS_export$33 as Drawer, __VLS_export$32 as DrawerClose, type DrawerCloseProps, __VLS_export$31 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$30 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$29 as DrawerFooter, type DrawerFooterProps, __VLS_export$28 as DrawerHeader, type DrawerHeaderProps, __VLS_export$27 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$26 as DrawerTitle, type DrawerTitleProps, __VLS_export$25 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$24 as DropdownMenu, __VLS_export$23 as DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemEmits, type DropdownMenuCheckboxItemProps, __VLS_export$22 as DropdownMenuContent, type DropdownMenuContentEmits, type DropdownMenuContentProps, type DropdownMenuEmits, __VLS_export$21 as DropdownMenuGroup, type DropdownMenuGroupProps, __VLS_export$20 as DropdownMenuItem, type DropdownMenuItemProps, __VLS_export$19 as DropdownMenuLabel, type DropdownMenuLabelProps, __VLS_export$18 as DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, __VLS_export$17 as DropdownMenuRadioGroup, type DropdownMenuRadioGroupEmits, type DropdownMenuRadioGroupProps, __VLS_export$16 as DropdownMenuRadioItem, type DropdownMenuRadioItemEmits, type DropdownMenuRadioItemProps, __VLS_export$15 as DropdownMenuSeparator, type DropdownMenuSeparatorProps, __VLS_export$14 as DropdownMenuShortcut, type DropdownMenuShortcutProps, __VLS_export$13 as DropdownMenuSub, __VLS_export$12 as DropdownMenuSubContent, type DropdownMenuSubContentEmits, type DropdownMenuSubContentProps, type DropdownMenuSubProps, __VLS_export$11 as DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, __VLS_export$10 as DropdownMenuTrigger, type DropdownMenuTriggerProps, __VLS_export$9 as Sheet, __VLS_export$8 as SheetClose, type SheetCloseProps, __VLS_export$7 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$6 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$5 as SheetFooter, type SheetFooterProps, __VLS_export$4 as SheetHeader, type SheetHeaderProps, __VLS_export$3 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$2 as SheetTitle, type SheetTitleProps, __VLS_export$1 as SheetTrigger, type SheetTriggerProps, _default$68 as Sonner, type SonnerProps, toast };
|
|
911
1171
|
//# sourceMappingURL=index.d.ts.map
|