arvue-ui 0.2.0 → 0.3.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/all.css +1 -1
- package/dist/autocomplete/autocomplete.js +52 -0
- package/dist/autocomplete/autocomplete.js.map +1 -0
- package/dist/autocomplete/autocompleteAnchor.js +24 -0
- package/dist/autocomplete/autocompleteAnchor.js.map +1 -0
- package/dist/autocomplete/autocompleteArrow.js +26 -0
- package/dist/autocomplete/autocompleteArrow.js.map +1 -0
- package/dist/autocomplete/autocompleteCancel.js +23 -0
- package/dist/autocomplete/autocompleteCancel.js.map +1 -0
- package/dist/autocomplete/autocompleteContent.js +73 -0
- package/dist/autocomplete/autocompleteContent.js.map +1 -0
- package/dist/autocomplete/autocompleteEmpty.js +33 -0
- package/dist/autocomplete/autocompleteEmpty.js.map +1 -0
- package/dist/autocomplete/autocompleteGroup.js +23 -0
- package/dist/autocomplete/autocompleteGroup.js.map +1 -0
- package/dist/autocomplete/autocompleteInput.js +66 -0
- package/dist/autocomplete/autocompleteInput.js.map +1 -0
- package/dist/autocomplete/autocompleteItem.js +36 -0
- package/dist/autocomplete/autocompleteItem.js.map +1 -0
- package/dist/autocomplete/autocompleteLabel.js +34 -0
- package/dist/autocomplete/autocompleteLabel.js.map +1 -0
- package/dist/autocomplete/autocompletePortal.js +25 -0
- package/dist/autocomplete/autocompletePortal.js.map +1 -0
- package/dist/autocomplete/autocompleteSeparator.js +33 -0
- package/dist/autocomplete/autocompleteSeparator.js.map +1 -0
- package/dist/autocomplete/autocompleteTrigger.js +24 -0
- package/dist/autocomplete/autocompleteTrigger.js.map +1 -0
- package/dist/autocomplete/autocompleteViewport.js +24 -0
- package/dist/autocomplete/autocompleteViewport.js.map +1 -0
- package/dist/dialog/dialogContent.js +2 -2
- package/dist/dialog/dialogDescription.js +1 -1
- package/dist/dialog/dialogFooter.js +1 -1
- package/dist/dialog/dialogHeader.js +1 -1
- package/dist/dialog/dialogOverlay.js +1 -1
- package/dist/dialog/dialogTitle.js +1 -1
- package/dist/drawer/drawerContent.js +1 -1
- package/dist/drawer/drawerDescription.js +1 -1
- package/dist/drawer/drawerFooter.js +1 -1
- package/dist/drawer/drawerHeader.js +1 -1
- package/dist/drawer/drawerOverlay.js +1 -1
- package/dist/drawer/drawerTitle.js +1 -1
- package/dist/index.d.ts +443 -57
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +718 -40
- package/dist/index.js.map +1 -1
- package/dist/sheet/sheet.js +54 -0
- package/dist/sheet/sheet.js.map +1 -0
- package/dist/sheet/sheetClose.js +23 -0
- package/dist/sheet/sheetClose.js.map +1 -0
- package/dist/sheet/sheetContent.js +61 -0
- package/dist/sheet/sheetContent.js.map +1 -0
- package/dist/sheet/sheetDescription.js +33 -0
- package/dist/sheet/sheetDescription.js.map +1 -0
- package/dist/sheet/sheetFooter.js +33 -0
- package/dist/sheet/sheetFooter.js.map +1 -0
- package/dist/sheet/sheetHeader.js +33 -0
- package/dist/sheet/sheetHeader.js.map +1 -0
- package/dist/sheet/sheetOverlay.js +34 -0
- package/dist/sheet/sheetOverlay.js.map +1 -0
- package/dist/sheet/sheetTitle.js +33 -0
- package/dist/sheet/sheetTitle.js.map +1 -0
- package/dist/sheet/sheetTrigger.js +23 -0
- package/dist/sheet/sheetTrigger.js.map +1 -0
- package/dist/style.css +24 -0
- package/package.json +3 -2
- package/src/autocomplete/Autocomplete.vue +36 -0
- package/src/autocomplete/AutocompleteAnchor.vue +17 -0
- package/src/autocomplete/AutocompleteArrow.vue +17 -0
- package/src/autocomplete/AutocompleteCancel.vue +17 -0
- package/src/autocomplete/AutocompleteContent.vue +43 -0
- package/src/autocomplete/AutocompleteEmpty.vue +31 -0
- package/src/autocomplete/AutocompleteGroup.vue +17 -0
- package/src/autocomplete/AutocompleteInput.vue +65 -0
- package/src/autocomplete/AutocompleteItem.vue +32 -0
- package/src/autocomplete/AutocompleteLabel.vue +31 -0
- package/src/autocomplete/AutocompletePortal.vue +17 -0
- package/src/autocomplete/AutocompleteSeparator.vue +31 -0
- package/src/autocomplete/AutocompleteTrigger.vue +17 -0
- package/src/autocomplete/AutocompleteViewport.vue +17 -0
- package/src/autocomplete/autocomplete-content.css +7 -0
- package/src/autocomplete/autocomplete-empty.css +7 -0
- package/src/autocomplete/autocomplete-input.css +5 -0
- package/src/autocomplete/autocomplete-item.css +14 -0
- package/src/autocomplete/autocomplete-label.css +6 -0
- package/src/autocomplete/autocomplete-separator.css +5 -0
- package/src/autocomplete/autocomplete.css +4 -0
- package/src/autocomplete/index.ts +60 -0
- package/src/dialog/dialog-description.css +1 -0
- package/src/drawer/drawer-description.css +1 -0
- package/src/index.ts +2 -0
- package/src/sheet/Sheet.vue +29 -0
- package/src/sheet/SheetClose.vue +19 -0
- package/src/sheet/SheetContent.vue +53 -0
- package/src/sheet/SheetDescription.vue +33 -0
- package/src/sheet/SheetFooter.vue +31 -0
- package/src/sheet/SheetHeader.vue +31 -0
- package/src/sheet/SheetOverlay.vue +31 -0
- package/src/sheet/SheetTitle.vue +33 -0
- package/src/sheet/SheetTrigger.vue +17 -0
- package/src/sheet/index.ts +38 -0
- package/src/sheet/sheet-content.css +67 -0
- package/src/sheet/sheet-description.css +5 -0
- package/src/sheet/sheet-footer.css +11 -0
- package/src/sheet/sheet-header.css +6 -0
- package/src/sheet/sheet-overlay.css +12 -0
- package/src/sheet/sheet-title.css +3 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,236 @@
|
|
|
1
1
|
import { HTMLAttributes } from "vue";
|
|
2
|
-
import { 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, PrimitiveProps } from "reka-ui";
|
|
2
|
+
import { AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps, ComboboxArrowProps, ComboboxCancelProps, ComboboxContentEmits, ComboboxContentProps, ComboboxEmptyProps, ComboboxGroupProps, ComboboxItemEmits, ComboboxItemProps, ComboboxLabelProps, ComboboxPortalProps, ComboboxSeparatorProps, ComboboxTriggerProps, ComboboxViewportProps, 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, PrimitiveProps } from "reka-ui";
|
|
3
|
+
import { DrawerCloseProps as DrawerCloseProps$1, DrawerDescriptionProps as DrawerDescriptionProps$1, DrawerRootEmits, DrawerRootProps, DrawerTitleProps as DrawerTitleProps$1, DrawerTriggerProps as DrawerTriggerProps$1 } from "vaul-vue";
|
|
3
4
|
|
|
5
|
+
//#region src/autocomplete/Autocomplete.vue.d.ts
|
|
6
|
+
interface AutocompleteProps extends AutocompleteRootProps {
|
|
7
|
+
class?: HTMLAttributes['class'];
|
|
8
|
+
}
|
|
9
|
+
interface AutocompleteEmits extends AutocompleteRootEmits {}
|
|
10
|
+
declare const _default: typeof __VLS_export$40;
|
|
11
|
+
declare const __VLS_export$40: __VLS_WithSlots$39<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
"update:open": (value: boolean) => any;
|
|
13
|
+
"update:modelValue": (value: string) => any;
|
|
14
|
+
highlight: (payload: {
|
|
15
|
+
ref: HTMLElement;
|
|
16
|
+
value: string;
|
|
17
|
+
} | undefined) => any;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<AutocompleteProps> & Readonly<{
|
|
19
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
21
|
+
onHighlight?: ((payload: {
|
|
22
|
+
ref: HTMLElement;
|
|
23
|
+
value: string;
|
|
24
|
+
} | undefined) => any) | undefined;
|
|
25
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
26
|
+
default?: (props: {
|
|
27
|
+
open: boolean;
|
|
28
|
+
modelValue: string;
|
|
29
|
+
}) => any;
|
|
30
|
+
}>;
|
|
31
|
+
type __VLS_WithSlots$39<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
}; //# sourceMappingURL=Autocomplete.vue.d.ts.map
|
|
36
|
+
//#endregion
|
|
37
|
+
//#region src/autocomplete/AutocompleteAnchor.vue.d.ts
|
|
38
|
+
interface AutocompleteAnchorProps extends ComboboxAnchorProps {}
|
|
39
|
+
declare const _default$1: typeof __VLS_export$39;
|
|
40
|
+
declare const __VLS_export$39: __VLS_WithSlots$38<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
41
|
+
default?: (props: {}) => any;
|
|
42
|
+
}>;
|
|
43
|
+
type __VLS_WithSlots$38<T, S> = T & {
|
|
44
|
+
new (): {
|
|
45
|
+
$slots: S;
|
|
46
|
+
};
|
|
47
|
+
}; //# sourceMappingURL=AutocompleteAnchor.vue.d.ts.map
|
|
48
|
+
//#endregion
|
|
49
|
+
//#region src/autocomplete/AutocompleteArrow.vue.d.ts
|
|
50
|
+
interface AutocompleteArrowProps extends ComboboxArrowProps {}
|
|
51
|
+
declare const _default$2: typeof __VLS_export$38;
|
|
52
|
+
declare const __VLS_export$38: __VLS_WithSlots$37<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$37<T, S> = T & {
|
|
56
|
+
new (): {
|
|
57
|
+
$slots: S;
|
|
58
|
+
};
|
|
59
|
+
}; //# sourceMappingURL=AutocompleteArrow.vue.d.ts.map
|
|
60
|
+
//#endregion
|
|
61
|
+
//#region src/autocomplete/AutocompleteCancel.vue.d.ts
|
|
62
|
+
interface AutocompleteCancelProps extends ComboboxCancelProps {}
|
|
63
|
+
declare const _default$3: typeof __VLS_export$37;
|
|
64
|
+
declare const __VLS_export$37: __VLS_WithSlots$36<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
65
|
+
default?: (props: {}) => any;
|
|
66
|
+
}>;
|
|
67
|
+
type __VLS_WithSlots$36<T, S> = T & {
|
|
68
|
+
new (): {
|
|
69
|
+
$slots: S;
|
|
70
|
+
};
|
|
71
|
+
}; //# sourceMappingURL=AutocompleteCancel.vue.d.ts.map
|
|
72
|
+
//#endregion
|
|
73
|
+
//#region src/autocomplete/AutocompleteContent.vue.d.ts
|
|
74
|
+
interface AutocompleteContentProps extends Omit<ComboboxContentProps, 'position'> {
|
|
75
|
+
class?: HTMLAttributes['class'];
|
|
76
|
+
}
|
|
77
|
+
interface AutocompleteContentEmits extends ComboboxContentEmits {}
|
|
78
|
+
declare const _default$4: typeof __VLS_export$36;
|
|
79
|
+
declare const __VLS_export$36: __VLS_WithSlots$35<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
80
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
81
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
82
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
83
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
84
|
+
}, string, import("vue").PublicProps, Readonly<AutocompleteContentProps> & Readonly<{
|
|
85
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
86
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
87
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
88
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
89
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
90
|
+
default?: (props: {}) => any;
|
|
91
|
+
}>;
|
|
92
|
+
type __VLS_WithSlots$35<T, S> = T & {
|
|
93
|
+
new (): {
|
|
94
|
+
$slots: S;
|
|
95
|
+
};
|
|
96
|
+
}; //# sourceMappingURL=AutocompleteContent.vue.d.ts.map
|
|
97
|
+
//#endregion
|
|
98
|
+
//#region src/autocomplete/AutocompleteEmpty.vue.d.ts
|
|
99
|
+
interface AutocompleteEmptyProps extends ComboboxEmptyProps {
|
|
100
|
+
class?: HTMLAttributes['class'];
|
|
101
|
+
}
|
|
102
|
+
declare const _default$5: typeof __VLS_export$35;
|
|
103
|
+
declare const __VLS_export$35: __VLS_WithSlots$34<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
104
|
+
default?: (props: {}) => any;
|
|
105
|
+
}>;
|
|
106
|
+
type __VLS_WithSlots$34<T, S> = T & {
|
|
107
|
+
new (): {
|
|
108
|
+
$slots: S;
|
|
109
|
+
};
|
|
110
|
+
}; //# sourceMappingURL=AutocompleteEmpty.vue.d.ts.map
|
|
111
|
+
//#endregion
|
|
112
|
+
//#region src/autocomplete/AutocompleteGroup.vue.d.ts
|
|
113
|
+
interface AutocompleteGroupProps extends ComboboxGroupProps {}
|
|
114
|
+
declare const _default$6: typeof __VLS_export$34;
|
|
115
|
+
declare const __VLS_export$34: __VLS_WithSlots$33<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
116
|
+
default?: (props: {}) => any;
|
|
117
|
+
}>;
|
|
118
|
+
type __VLS_WithSlots$33<T, S> = T & {
|
|
119
|
+
new (): {
|
|
120
|
+
$slots: S;
|
|
121
|
+
};
|
|
122
|
+
}; //# sourceMappingURL=AutocompleteGroup.vue.d.ts.map
|
|
123
|
+
//#endregion
|
|
124
|
+
//#region src/autocomplete/AutocompleteInput.vue.d.ts
|
|
125
|
+
interface AutocompleteInputProps extends AutocompleteInputProps$1 {
|
|
126
|
+
showTriggerButton?: boolean;
|
|
127
|
+
showCancelButton?: boolean;
|
|
128
|
+
}
|
|
129
|
+
interface AutocompleteInputEmits extends AutocompleteInputEmits$1 {
|
|
130
|
+
'cancel': [void];
|
|
131
|
+
}
|
|
132
|
+
declare const _default$7: typeof __VLS_export$33;
|
|
133
|
+
declare const __VLS_export$33: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
134
|
+
cancel: (args_0: void) => any;
|
|
135
|
+
"update:modelValue": (args_0: string) => any;
|
|
136
|
+
}, string, import("vue").PublicProps, Readonly<AutocompleteInputProps> & Readonly<{
|
|
137
|
+
onCancel?: ((args_0?: void | undefined) => any) | undefined;
|
|
138
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
139
|
+
}>, {
|
|
140
|
+
showTriggerButton: boolean;
|
|
141
|
+
showCancelButton: boolean;
|
|
142
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=AutocompleteInput.vue.d.ts.map
|
|
143
|
+
//#endregion
|
|
144
|
+
//#region src/autocomplete/AutocompleteItem.vue.d.ts
|
|
145
|
+
interface AutocompleteItemProps extends ComboboxItemProps {
|
|
146
|
+
class?: HTMLAttributes['class'];
|
|
147
|
+
}
|
|
148
|
+
interface AutocompleteItemEmits extends ComboboxItemEmits {}
|
|
149
|
+
declare const _default$8: typeof __VLS_export$32;
|
|
150
|
+
declare const __VLS_export$32: __VLS_WithSlots$32<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
151
|
+
select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
|
|
152
|
+
}, string, import("vue").PublicProps, Readonly<AutocompleteItemProps> & Readonly<{
|
|
153
|
+
onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
|
|
154
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
155
|
+
default?: (props: {}) => any;
|
|
156
|
+
}>;
|
|
157
|
+
type __VLS_WithSlots$32<T, S> = T & {
|
|
158
|
+
new (): {
|
|
159
|
+
$slots: S;
|
|
160
|
+
};
|
|
161
|
+
}; //# sourceMappingURL=AutocompleteItem.vue.d.ts.map
|
|
162
|
+
//#endregion
|
|
163
|
+
//#region src/autocomplete/AutocompleteLabel.vue.d.ts
|
|
164
|
+
interface AutocompleteLabelProps extends ComboboxLabelProps {
|
|
165
|
+
class?: HTMLAttributes['class'];
|
|
166
|
+
}
|
|
167
|
+
declare const _default$9: typeof __VLS_export$31;
|
|
168
|
+
declare const __VLS_export$31: __VLS_WithSlots$31<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
169
|
+
default?: (props: {}) => any;
|
|
170
|
+
}>;
|
|
171
|
+
type __VLS_WithSlots$31<T, S> = T & {
|
|
172
|
+
new (): {
|
|
173
|
+
$slots: S;
|
|
174
|
+
};
|
|
175
|
+
}; //# sourceMappingURL=AutocompleteLabel.vue.d.ts.map
|
|
176
|
+
//#endregion
|
|
177
|
+
//#region src/autocomplete/AutocompletePortal.vue.d.ts
|
|
178
|
+
interface AutocompletePortalProps extends ComboboxPortalProps {}
|
|
179
|
+
declare const _default$10: typeof __VLS_export$30;
|
|
180
|
+
declare const __VLS_export$30: __VLS_WithSlots$30<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
181
|
+
default?: (props: {}) => any;
|
|
182
|
+
}>;
|
|
183
|
+
type __VLS_WithSlots$30<T, S> = T & {
|
|
184
|
+
new (): {
|
|
185
|
+
$slots: S;
|
|
186
|
+
};
|
|
187
|
+
}; //# sourceMappingURL=AutocompletePortal.vue.d.ts.map
|
|
188
|
+
//#endregion
|
|
189
|
+
//#region src/autocomplete/AutocompleteSeparator.vue.d.ts
|
|
190
|
+
interface AutocompleteSeparatorProps extends ComboboxSeparatorProps {
|
|
191
|
+
class?: HTMLAttributes['class'];
|
|
192
|
+
}
|
|
193
|
+
declare const _default$11: typeof __VLS_export$29;
|
|
194
|
+
declare const __VLS_export$29: __VLS_WithSlots$29<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
195
|
+
default?: (props: {}) => any;
|
|
196
|
+
}>;
|
|
197
|
+
type __VLS_WithSlots$29<T, S> = T & {
|
|
198
|
+
new (): {
|
|
199
|
+
$slots: S;
|
|
200
|
+
};
|
|
201
|
+
}; //# sourceMappingURL=AutocompleteSeparator.vue.d.ts.map
|
|
202
|
+
//#endregion
|
|
203
|
+
//#region src/autocomplete/AutocompleteTrigger.vue.d.ts
|
|
204
|
+
interface AutocompleteTriggerProps extends ComboboxTriggerProps {}
|
|
205
|
+
declare const _default$12: typeof __VLS_export$28;
|
|
206
|
+
declare const __VLS_export$28: __VLS_WithSlots$28<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
207
|
+
default?: (props: {}) => any;
|
|
208
|
+
}>;
|
|
209
|
+
type __VLS_WithSlots$28<T, S> = T & {
|
|
210
|
+
new (): {
|
|
211
|
+
$slots: S;
|
|
212
|
+
};
|
|
213
|
+
}; //# sourceMappingURL=AutocompleteTrigger.vue.d.ts.map
|
|
214
|
+
//#endregion
|
|
215
|
+
//#region src/autocomplete/AutocompleteViewport.vue.d.ts
|
|
216
|
+
interface AutocompleteViewportProps extends ComboboxViewportProps {}
|
|
217
|
+
declare const _default$13: typeof __VLS_export$27;
|
|
218
|
+
declare const __VLS_export$27: __VLS_WithSlots$27<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
219
|
+
default?: (props: {}) => any;
|
|
220
|
+
}>;
|
|
221
|
+
type __VLS_WithSlots$27<T, S> = T & {
|
|
222
|
+
new (): {
|
|
223
|
+
$slots: S;
|
|
224
|
+
};
|
|
225
|
+
}; //# sourceMappingURL=AutocompleteViewport.vue.d.ts.map
|
|
226
|
+
//#endregion
|
|
4
227
|
//#region src/dialog/Dialog.vue.d.ts
|
|
5
228
|
interface DialogProps extends DialogRootProps {
|
|
6
229
|
class?: HTMLAttributes['class'];
|
|
7
230
|
}
|
|
8
231
|
interface DialogEmits extends DialogRootEmits {}
|
|
9
|
-
declare const _default: typeof __VLS_export$
|
|
10
|
-
declare const __VLS_export$
|
|
232
|
+
declare const _default$14: typeof __VLS_export$26;
|
|
233
|
+
declare const __VLS_export$26: __VLS_WithSlots$26<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
234
|
"update:open": (value: boolean) => any;
|
|
12
235
|
}, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
|
|
13
236
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -17,7 +240,7 @@ declare const __VLS_export$17: __VLS_WithSlots$17<import("vue").DefineComponent<
|
|
|
17
240
|
close: () => void;
|
|
18
241
|
}) => any;
|
|
19
242
|
}>;
|
|
20
|
-
type __VLS_WithSlots$
|
|
243
|
+
type __VLS_WithSlots$26<T, S> = T & {
|
|
21
244
|
new (): {
|
|
22
245
|
$slots: S;
|
|
23
246
|
};
|
|
@@ -25,13 +248,13 @@ type __VLS_WithSlots$17<T, S> = T & {
|
|
|
25
248
|
//#endregion
|
|
26
249
|
//#region src/dialog/DialogClose.vue.d.ts
|
|
27
250
|
interface DialogCloseProps extends DialogCloseProps$1 {}
|
|
28
|
-
declare const _default$
|
|
29
|
-
declare const __VLS_export$
|
|
251
|
+
declare const _default$15: typeof __VLS_export$25;
|
|
252
|
+
declare const __VLS_export$25: __VLS_WithSlots$25<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
|
|
30
253
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
31
254
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
32
255
|
default?: (props: {}) => any;
|
|
33
256
|
}>;
|
|
34
|
-
type __VLS_WithSlots$
|
|
257
|
+
type __VLS_WithSlots$25<T, S> = T & {
|
|
35
258
|
new (): {
|
|
36
259
|
$slots: S;
|
|
37
260
|
};
|
|
@@ -43,8 +266,8 @@ interface DialogContentProps extends DialogContentProps$1 {
|
|
|
43
266
|
showCloseButton?: boolean;
|
|
44
267
|
}
|
|
45
268
|
interface DialogContentEmits extends DialogContentEmits$1 {}
|
|
46
|
-
declare const _default$
|
|
47
|
-
declare const __VLS_export$
|
|
269
|
+
declare const _default$16: typeof __VLS_export$24;
|
|
270
|
+
declare const __VLS_export$24: __VLS_WithSlots$24<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
48
271
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
49
272
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
50
273
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
@@ -63,7 +286,7 @@ declare const __VLS_export$15: __VLS_WithSlots$15<import("vue").DefineComponent<
|
|
|
63
286
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
64
287
|
default?: (props: {}) => any;
|
|
65
288
|
}>;
|
|
66
|
-
type __VLS_WithSlots$
|
|
289
|
+
type __VLS_WithSlots$24<T, S> = T & {
|
|
67
290
|
new (): {
|
|
68
291
|
$slots: S;
|
|
69
292
|
};
|
|
@@ -73,13 +296,13 @@ type __VLS_WithSlots$15<T, S> = T & {
|
|
|
73
296
|
interface DialogDescriptionProps extends DialogDescriptionProps$1 {
|
|
74
297
|
class?: HTMLAttributes['class'];
|
|
75
298
|
}
|
|
76
|
-
declare const _default$
|
|
77
|
-
declare const __VLS_export$
|
|
299
|
+
declare const _default$17: typeof __VLS_export$23;
|
|
300
|
+
declare const __VLS_export$23: __VLS_WithSlots$23<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
|
|
78
301
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
79
302
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
80
303
|
default?: (props: {}) => any;
|
|
81
304
|
}>;
|
|
82
|
-
type __VLS_WithSlots$
|
|
305
|
+
type __VLS_WithSlots$23<T, S> = T & {
|
|
83
306
|
new (): {
|
|
84
307
|
$slots: S;
|
|
85
308
|
};
|
|
@@ -89,11 +312,11 @@ type __VLS_WithSlots$14<T, S> = T & {
|
|
|
89
312
|
interface DialogFooterProps extends PrimitiveProps {
|
|
90
313
|
class?: HTMLAttributes['class'];
|
|
91
314
|
}
|
|
92
|
-
declare const _default$
|
|
93
|
-
declare const __VLS_export$
|
|
315
|
+
declare const _default$18: typeof __VLS_export$22;
|
|
316
|
+
declare const __VLS_export$22: __VLS_WithSlots$22<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
94
317
|
default?: (props: {}) => any;
|
|
95
318
|
}>;
|
|
96
|
-
type __VLS_WithSlots$
|
|
319
|
+
type __VLS_WithSlots$22<T, S> = T & {
|
|
97
320
|
new (): {
|
|
98
321
|
$slots: S;
|
|
99
322
|
};
|
|
@@ -103,11 +326,11 @@ type __VLS_WithSlots$13<T, S> = T & {
|
|
|
103
326
|
interface DialogHeaderProps extends PrimitiveProps {
|
|
104
327
|
class?: HTMLAttributes['class'];
|
|
105
328
|
}
|
|
106
|
-
declare const _default$
|
|
107
|
-
declare const __VLS_export$
|
|
329
|
+
declare const _default$19: typeof __VLS_export$21;
|
|
330
|
+
declare const __VLS_export$21: __VLS_WithSlots$21<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
108
331
|
default?: (props: {}) => any;
|
|
109
332
|
}>;
|
|
110
|
-
type __VLS_WithSlots$
|
|
333
|
+
type __VLS_WithSlots$21<T, S> = T & {
|
|
111
334
|
new (): {
|
|
112
335
|
$slots: S;
|
|
113
336
|
};
|
|
@@ -117,11 +340,11 @@ type __VLS_WithSlots$12<T, S> = T & {
|
|
|
117
340
|
interface DialogOverlayProps extends DialogOverlayProps$1 {
|
|
118
341
|
class?: HTMLAttributes['class'];
|
|
119
342
|
}
|
|
120
|
-
declare const _default$
|
|
121
|
-
declare const __VLS_export$
|
|
343
|
+
declare const _default$20: typeof __VLS_export$20;
|
|
344
|
+
declare const __VLS_export$20: __VLS_WithSlots$20<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
122
345
|
default?: (props: {}) => any;
|
|
123
346
|
}>;
|
|
124
|
-
type __VLS_WithSlots$
|
|
347
|
+
type __VLS_WithSlots$20<T, S> = T & {
|
|
125
348
|
new (): {
|
|
126
349
|
$slots: S;
|
|
127
350
|
};
|
|
@@ -131,13 +354,13 @@ type __VLS_WithSlots$11<T, S> = T & {
|
|
|
131
354
|
interface DialogTitleProps extends DialogTitleProps$1 {
|
|
132
355
|
class?: HTMLAttributes['class'];
|
|
133
356
|
}
|
|
134
|
-
declare const _default$
|
|
135
|
-
declare const __VLS_export$
|
|
357
|
+
declare const _default$21: typeof __VLS_export$19;
|
|
358
|
+
declare const __VLS_export$19: __VLS_WithSlots$19<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
|
|
136
359
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
137
360
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
138
361
|
default?: (props: {}) => any;
|
|
139
362
|
}>;
|
|
140
|
-
type __VLS_WithSlots$
|
|
363
|
+
type __VLS_WithSlots$19<T, S> = T & {
|
|
141
364
|
new (): {
|
|
142
365
|
$slots: S;
|
|
143
366
|
};
|
|
@@ -145,11 +368,11 @@ type __VLS_WithSlots$10<T, S> = T & {
|
|
|
145
368
|
//#endregion
|
|
146
369
|
//#region src/dialog/DialogTrigger.vue.d.ts
|
|
147
370
|
interface DialogTriggerProps extends DialogTriggerProps$1 {}
|
|
148
|
-
declare const _default$
|
|
149
|
-
declare const __VLS_export$
|
|
371
|
+
declare const _default$22: typeof __VLS_export$18;
|
|
372
|
+
declare const __VLS_export$18: __VLS_WithSlots$18<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
150
373
|
default?: (props: {}) => any;
|
|
151
374
|
}>;
|
|
152
|
-
type __VLS_WithSlots$
|
|
375
|
+
type __VLS_WithSlots$18<T, S> = T & {
|
|
153
376
|
new (): {
|
|
154
377
|
$slots: S;
|
|
155
378
|
};
|
|
@@ -160,8 +383,8 @@ interface DrawerProps extends DialogRootProps {
|
|
|
160
383
|
class?: HTMLAttributes['class'];
|
|
161
384
|
}
|
|
162
385
|
interface DrawerEmits extends DialogRootEmits {}
|
|
163
|
-
declare const _default$
|
|
164
|
-
declare const __VLS_export$
|
|
386
|
+
declare const _default$23: typeof __VLS_export$17;
|
|
387
|
+
declare const __VLS_export$17: __VLS_WithSlots$17<import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
165
388
|
"update:open": (value: boolean) => any;
|
|
166
389
|
}, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
|
|
167
390
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -171,7 +394,7 @@ declare const __VLS_export$8: __VLS_WithSlots$8<import("vue").DefineComponent<Dr
|
|
|
171
394
|
close: () => void;
|
|
172
395
|
}) => any;
|
|
173
396
|
}>;
|
|
174
|
-
type __VLS_WithSlots$
|
|
397
|
+
type __VLS_WithSlots$17<T, S> = T & {
|
|
175
398
|
new (): {
|
|
176
399
|
$slots: S;
|
|
177
400
|
};
|
|
@@ -179,13 +402,13 @@ type __VLS_WithSlots$8<T, S> = T & {
|
|
|
179
402
|
//#endregion
|
|
180
403
|
//#region src/drawer/DrawerClose.vue.d.ts
|
|
181
404
|
interface DrawerCloseProps extends DialogCloseProps$1 {}
|
|
182
|
-
declare const _default$
|
|
183
|
-
declare const __VLS_export$
|
|
405
|
+
declare const _default$24: typeof __VLS_export$16;
|
|
406
|
+
declare const __VLS_export$16: __VLS_WithSlots$16<import("vue").DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {
|
|
184
407
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
185
408
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
186
409
|
default?: (props: {}) => any;
|
|
187
410
|
}>;
|
|
188
|
-
type __VLS_WithSlots$
|
|
411
|
+
type __VLS_WithSlots$16<T, S> = T & {
|
|
189
412
|
new (): {
|
|
190
413
|
$slots: S;
|
|
191
414
|
};
|
|
@@ -198,8 +421,8 @@ interface DrawerContentProps extends DialogContentProps$1 {
|
|
|
198
421
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
199
422
|
showCloseButton?: boolean;
|
|
200
423
|
}
|
|
201
|
-
declare const _default$
|
|
202
|
-
declare const __VLS_export$
|
|
424
|
+
declare const _default$25: typeof __VLS_export$15;
|
|
425
|
+
declare const __VLS_export$15: __VLS_WithSlots$15<import("vue").DefineComponent<DrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
203
426
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
204
427
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
205
428
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
@@ -214,12 +437,12 @@ declare const __VLS_export$6: __VLS_WithSlots$6<import("vue").DefineComponent<Dr
|
|
|
214
437
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
215
438
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
216
439
|
}>, {
|
|
217
|
-
showCloseButton: boolean;
|
|
218
440
|
side: "top" | "right" | "bottom" | "left";
|
|
441
|
+
showCloseButton: boolean;
|
|
219
442
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
220
443
|
default?: (props: {}) => any;
|
|
221
444
|
}>;
|
|
222
|
-
type __VLS_WithSlots$
|
|
445
|
+
type __VLS_WithSlots$15<T, S> = T & {
|
|
223
446
|
new (): {
|
|
224
447
|
$slots: S;
|
|
225
448
|
};
|
|
@@ -229,13 +452,13 @@ type __VLS_WithSlots$6<T, S> = T & {
|
|
|
229
452
|
interface DrawerDescriptionProps extends DialogDescriptionProps$1 {
|
|
230
453
|
class?: HTMLAttributes['class'];
|
|
231
454
|
}
|
|
232
|
-
declare const _default$
|
|
233
|
-
declare const __VLS_export$
|
|
455
|
+
declare const _default$26: typeof __VLS_export$14;
|
|
456
|
+
declare const __VLS_export$14: __VLS_WithSlots$14<import("vue").DefineComponent<DrawerDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerDescriptionProps> & Readonly<{}>, {
|
|
234
457
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
235
458
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
236
459
|
default?: (props: {}) => any;
|
|
237
460
|
}>;
|
|
238
|
-
type __VLS_WithSlots$
|
|
461
|
+
type __VLS_WithSlots$14<T, S> = T & {
|
|
239
462
|
new (): {
|
|
240
463
|
$slots: S;
|
|
241
464
|
};
|
|
@@ -245,11 +468,11 @@ type __VLS_WithSlots$5<T, S> = T & {
|
|
|
245
468
|
interface DrawerFooterProps extends PrimitiveProps {
|
|
246
469
|
class?: HTMLAttributes['class'];
|
|
247
470
|
}
|
|
248
|
-
declare const _default$
|
|
249
|
-
declare const __VLS_export$
|
|
471
|
+
declare const _default$27: typeof __VLS_export$13;
|
|
472
|
+
declare const __VLS_export$13: __VLS_WithSlots$13<import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
250
473
|
default?: (props: {}) => any;
|
|
251
474
|
}>;
|
|
252
|
-
type __VLS_WithSlots$
|
|
475
|
+
type __VLS_WithSlots$13<T, S> = T & {
|
|
253
476
|
new (): {
|
|
254
477
|
$slots: S;
|
|
255
478
|
};
|
|
@@ -259,11 +482,11 @@ type __VLS_WithSlots$4<T, S> = T & {
|
|
|
259
482
|
interface DrawerHeaderProps extends PrimitiveProps {
|
|
260
483
|
class?: HTMLAttributes['class'];
|
|
261
484
|
}
|
|
262
|
-
declare const _default$
|
|
263
|
-
declare const __VLS_export$
|
|
485
|
+
declare const _default$28: typeof __VLS_export$12;
|
|
486
|
+
declare const __VLS_export$12: __VLS_WithSlots$12<import("vue").DefineComponent<DrawerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
264
487
|
default?: (props: {}) => any;
|
|
265
488
|
}>;
|
|
266
|
-
type __VLS_WithSlots$
|
|
489
|
+
type __VLS_WithSlots$12<T, S> = T & {
|
|
267
490
|
new (): {
|
|
268
491
|
$slots: S;
|
|
269
492
|
};
|
|
@@ -273,11 +496,11 @@ type __VLS_WithSlots$3<T, S> = T & {
|
|
|
273
496
|
interface DrawerOverlayProps extends DialogOverlayProps$1 {
|
|
274
497
|
class?: HTMLAttributes['class'];
|
|
275
498
|
}
|
|
276
|
-
declare const _default$
|
|
277
|
-
declare const __VLS_export$
|
|
499
|
+
declare const _default$29: typeof __VLS_export$11;
|
|
500
|
+
declare const __VLS_export$11: __VLS_WithSlots$11<import("vue").DefineComponent<DrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
278
501
|
default?: (props: {}) => any;
|
|
279
502
|
}>;
|
|
280
|
-
type __VLS_WithSlots$
|
|
503
|
+
type __VLS_WithSlots$11<T, S> = T & {
|
|
281
504
|
new (): {
|
|
282
505
|
$slots: S;
|
|
283
506
|
};
|
|
@@ -287,13 +510,13 @@ type __VLS_WithSlots$2<T, S> = T & {
|
|
|
287
510
|
interface DrawerTitleProps extends DialogTitleProps$1 {
|
|
288
511
|
class?: HTMLAttributes['class'];
|
|
289
512
|
}
|
|
290
|
-
declare const _default$
|
|
291
|
-
declare const __VLS_export$
|
|
513
|
+
declare const _default$30: typeof __VLS_export$10;
|
|
514
|
+
declare const __VLS_export$10: __VLS_WithSlots$10<import("vue").DefineComponent<DrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTitleProps> & Readonly<{}>, {
|
|
292
515
|
as: import("reka-ui").AsTag | import("vue").Component;
|
|
293
516
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
294
517
|
default?: (props: {}) => any;
|
|
295
518
|
}>;
|
|
296
|
-
type __VLS_WithSlots$
|
|
519
|
+
type __VLS_WithSlots$10<T, S> = T & {
|
|
297
520
|
new (): {
|
|
298
521
|
$slots: S;
|
|
299
522
|
};
|
|
@@ -301,15 +524,178 @@ type __VLS_WithSlots$1<T, S> = T & {
|
|
|
301
524
|
//#endregion
|
|
302
525
|
//#region src/drawer/DrawerTrigger.vue.d.ts
|
|
303
526
|
interface DrawerTriggerProps extends DialogTriggerProps$1 {}
|
|
304
|
-
declare const _default$
|
|
305
|
-
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
527
|
+
declare const _default$31: typeof __VLS_export$9;
|
|
528
|
+
declare const __VLS_export$9: __VLS_WithSlots$9<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
306
529
|
default?: (props: {}) => any;
|
|
307
530
|
}>;
|
|
308
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
531
|
+
type __VLS_WithSlots$9<T, S> = T & {
|
|
309
532
|
new (): {
|
|
310
533
|
$slots: S;
|
|
311
534
|
};
|
|
312
535
|
}; //# sourceMappingURL=DrawerTrigger.vue.d.ts.map
|
|
313
536
|
//#endregion
|
|
314
|
-
|
|
537
|
+
//#region src/sheet/Sheet.vue.d.ts
|
|
538
|
+
interface SheetEmits extends DrawerRootEmits {}
|
|
539
|
+
interface SheetProps extends DrawerRootProps {
|
|
540
|
+
class?: HTMLAttributes['class'];
|
|
541
|
+
}
|
|
542
|
+
declare const _default$32: typeof __VLS_export$8;
|
|
543
|
+
declare const __VLS_export$8: __VLS_WithSlots$8<import("vue").DefineComponent<SheetProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
544
|
+
drag: (percentageDragged: number) => any;
|
|
545
|
+
release: (open: boolean) => any;
|
|
546
|
+
close: () => any;
|
|
547
|
+
"update:open": (open: boolean) => any;
|
|
548
|
+
"update:activeSnapPoint": (val: string | number) => any;
|
|
549
|
+
animationEnd: (open: boolean) => any;
|
|
550
|
+
}, string, import("vue").PublicProps, Readonly<SheetProps> & Readonly<{
|
|
551
|
+
onDrag?: ((percentageDragged: number) => any) | undefined;
|
|
552
|
+
onRelease?: ((open: boolean) => any) | undefined;
|
|
553
|
+
onClose?: (() => any) | undefined;
|
|
554
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
555
|
+
"onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined;
|
|
556
|
+
onAnimationEnd?: ((open: boolean) => any) | undefined;
|
|
557
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
558
|
+
default?: (props: {
|
|
559
|
+
open: boolean;
|
|
560
|
+
}) => any;
|
|
561
|
+
}>;
|
|
562
|
+
type __VLS_WithSlots$8<T, S> = T & {
|
|
563
|
+
new (): {
|
|
564
|
+
$slots: S;
|
|
565
|
+
};
|
|
566
|
+
}; //# sourceMappingURL=Sheet.vue.d.ts.map
|
|
567
|
+
//#endregion
|
|
568
|
+
//#region src/sheet/SheetClose.vue.d.ts
|
|
569
|
+
interface SheetCloseProps extends DrawerCloseProps$1 {}
|
|
570
|
+
declare const _default$33: typeof __VLS_export$7;
|
|
571
|
+
declare const __VLS_export$7: __VLS_WithSlots$7<import("vue").DefineComponent<SheetCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetCloseProps> & Readonly<{}>, {
|
|
572
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
573
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
574
|
+
default?: (props: {}) => any;
|
|
575
|
+
}>;
|
|
576
|
+
type __VLS_WithSlots$7<T, S> = T & {
|
|
577
|
+
new (): {
|
|
578
|
+
$slots: S;
|
|
579
|
+
};
|
|
580
|
+
}; //# sourceMappingURL=SheetClose.vue.d.ts.map
|
|
581
|
+
//#endregion
|
|
582
|
+
//#region src/sheet/SheetContent.vue.d.ts
|
|
583
|
+
interface SheetContentEmits extends DialogContentEmits$1 {}
|
|
584
|
+
interface SheetContentProps extends DialogContentProps$1 {
|
|
585
|
+
class?: HTMLAttributes['class'];
|
|
586
|
+
showHandle?: boolean;
|
|
587
|
+
}
|
|
588
|
+
declare const _default$34: typeof __VLS_export$6;
|
|
589
|
+
declare const __VLS_export$6: __VLS_WithSlots$6<import("vue").DefineComponent<SheetContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
590
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
591
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
592
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
593
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
594
|
+
openAutoFocus: (event: Event) => any;
|
|
595
|
+
closeAutoFocus: (event: Event) => any;
|
|
596
|
+
}, string, import("vue").PublicProps, Readonly<SheetContentProps> & Readonly<{
|
|
597
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
598
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
599
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
600
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
601
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
602
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
603
|
+
}>, {
|
|
604
|
+
showHandle: boolean;
|
|
605
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
606
|
+
default?: (props: {}) => any;
|
|
607
|
+
}>;
|
|
608
|
+
type __VLS_WithSlots$6<T, S> = T & {
|
|
609
|
+
new (): {
|
|
610
|
+
$slots: S;
|
|
611
|
+
};
|
|
612
|
+
}; //# sourceMappingURL=SheetContent.vue.d.ts.map
|
|
613
|
+
//#endregion
|
|
614
|
+
//#region src/sheet/SheetDescription.vue.d.ts
|
|
615
|
+
interface SheetDescriptionProps extends DrawerDescriptionProps$1 {
|
|
616
|
+
class?: HTMLAttributes['class'];
|
|
617
|
+
}
|
|
618
|
+
declare const _default$35: typeof __VLS_export$5;
|
|
619
|
+
declare const __VLS_export$5: __VLS_WithSlots$5<import("vue").DefineComponent<SheetDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetDescriptionProps> & Readonly<{}>, {
|
|
620
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
621
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
622
|
+
default?: (props: {}) => any;
|
|
623
|
+
}>;
|
|
624
|
+
type __VLS_WithSlots$5<T, S> = T & {
|
|
625
|
+
new (): {
|
|
626
|
+
$slots: S;
|
|
627
|
+
};
|
|
628
|
+
}; //# sourceMappingURL=SheetDescription.vue.d.ts.map
|
|
629
|
+
//#endregion
|
|
630
|
+
//#region src/sheet/SheetFooter.vue.d.ts
|
|
631
|
+
interface SheetFooterProps extends PrimitiveProps {
|
|
632
|
+
class?: HTMLAttributes['class'];
|
|
633
|
+
}
|
|
634
|
+
declare const _default$36: typeof __VLS_export$4;
|
|
635
|
+
declare const __VLS_export$4: __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>, {
|
|
636
|
+
default?: (props: {}) => any;
|
|
637
|
+
}>;
|
|
638
|
+
type __VLS_WithSlots$4<T, S> = T & {
|
|
639
|
+
new (): {
|
|
640
|
+
$slots: S;
|
|
641
|
+
};
|
|
642
|
+
}; //# sourceMappingURL=SheetFooter.vue.d.ts.map
|
|
643
|
+
//#endregion
|
|
644
|
+
//#region src/sheet/SheetHeader.vue.d.ts
|
|
645
|
+
interface SheetHeaderProps extends PrimitiveProps {
|
|
646
|
+
class?: HTMLAttributes['class'];
|
|
647
|
+
}
|
|
648
|
+
declare const _default$37: typeof __VLS_export$3;
|
|
649
|
+
declare const __VLS_export$3: __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>, {
|
|
650
|
+
default?: (props: {}) => any;
|
|
651
|
+
}>;
|
|
652
|
+
type __VLS_WithSlots$3<T, S> = T & {
|
|
653
|
+
new (): {
|
|
654
|
+
$slots: S;
|
|
655
|
+
};
|
|
656
|
+
}; //# sourceMappingURL=SheetHeader.vue.d.ts.map
|
|
657
|
+
//#endregion
|
|
658
|
+
//#region src/sheet/SheetOverlay.vue.d.ts
|
|
659
|
+
interface SheetOverlayProps extends DialogOverlayProps$1 {
|
|
660
|
+
class?: HTMLAttributes['class'];
|
|
661
|
+
}
|
|
662
|
+
declare const _default$38: typeof __VLS_export$2;
|
|
663
|
+
declare const __VLS_export$2: __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>, {
|
|
664
|
+
default?: (props: {}) => any;
|
|
665
|
+
}>;
|
|
666
|
+
type __VLS_WithSlots$2<T, S> = T & {
|
|
667
|
+
new (): {
|
|
668
|
+
$slots: S;
|
|
669
|
+
};
|
|
670
|
+
}; //# sourceMappingURL=SheetOverlay.vue.d.ts.map
|
|
671
|
+
//#endregion
|
|
672
|
+
//#region src/sheet/SheetTitle.vue.d.ts
|
|
673
|
+
interface SheetTitleProps extends DrawerTitleProps$1 {
|
|
674
|
+
class?: HTMLAttributes['class'];
|
|
675
|
+
}
|
|
676
|
+
declare const _default$39: typeof __VLS_export$1;
|
|
677
|
+
declare const __VLS_export$1: __VLS_WithSlots$1<import("vue").DefineComponent<SheetTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTitleProps> & Readonly<{}>, {
|
|
678
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
679
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
680
|
+
default?: (props: {}) => any;
|
|
681
|
+
}>;
|
|
682
|
+
type __VLS_WithSlots$1<T, S> = T & {
|
|
683
|
+
new (): {
|
|
684
|
+
$slots: S;
|
|
685
|
+
};
|
|
686
|
+
}; //# sourceMappingURL=SheetTitle.vue.d.ts.map
|
|
687
|
+
//#endregion
|
|
688
|
+
//#region src/sheet/SheetTrigger.vue.d.ts
|
|
689
|
+
interface SheetTriggerProps extends DrawerTriggerProps$1 {}
|
|
690
|
+
declare const _default$40: typeof __VLS_export;
|
|
691
|
+
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>, {
|
|
692
|
+
default?: (props: {}) => any;
|
|
693
|
+
}>;
|
|
694
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
695
|
+
new (): {
|
|
696
|
+
$slots: S;
|
|
697
|
+
};
|
|
698
|
+
}; //# sourceMappingURL=SheetTrigger.vue.d.ts.map
|
|
699
|
+
//#endregion
|
|
700
|
+
export { __VLS_export$40 as Autocomplete, __VLS_export$39 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$38 as AutocompleteArrow, type AutocompleteArrowProps, __VLS_export$37 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$36 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$35 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$34 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$33 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$32 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$31 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$30 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$29 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$28 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$27 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$26 as Dialog, __VLS_export$25 as DialogClose, type DialogCloseProps, __VLS_export$24 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$23 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$22 as DialogFooter, type DialogFooterProps, __VLS_export$21 as DialogHeader, type DialogHeaderProps, __VLS_export$20 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$19 as DialogTitle, type DialogTitleProps, __VLS_export$18 as DialogTrigger, type DialogTriggerProps, __VLS_export$17 as Drawer, __VLS_export$16 as DrawerClose, type DrawerCloseProps, __VLS_export$15 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$14 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$13 as DrawerFooter, type DrawerFooterProps, __VLS_export$12 as DrawerHeader, type DrawerHeaderProps, __VLS_export$11 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$10 as DrawerTitle, type DrawerTitleProps, __VLS_export$9 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$8 as Sheet, __VLS_export$7 as SheetClose, type SheetCloseProps, __VLS_export$6 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$5 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$4 as SheetFooter, type SheetFooterProps, __VLS_export$3 as SheetHeader, type SheetHeaderProps, __VLS_export$2 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$1 as SheetTitle, type SheetTitleProps, _default$40 as SheetTrigger, type SheetTriggerProps };
|
|
315
701
|
//# sourceMappingURL=index.d.ts.map
|