@maltjoy/core-vue 3.19.9 → 3.20.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/components/JoyBlockSkeleton/VJoyBlockSkeleton.vue.d.ts +30 -0
- package/dist/components/JoyBottomSheetTrigger/VJoyBottomSheetTrigger.vue.d.ts +279 -274
- package/dist/components/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +411 -406
- package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +383 -378
- package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +2 -2
- package/dist/components/JoyTagsList/VJoyTagsList.vue.d.ts +70 -3
- package/dist/components/index.d.ts +66 -65
- package/dist/joy-vue.js +1794 -1748
- package/dist/joy-vue.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/joy-components.d.ts +1 -0
- package/package.json +9 -9
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
/** If you want to use it properly you need to set fixed width and height */
|
|
3
|
+
circle: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
};
|
|
6
|
+
/** Size in any unit. Example: 50px, 100%... */
|
|
7
|
+
width: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
};
|
|
10
|
+
/** Size in any unit. */
|
|
11
|
+
height: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
/** If you want to use it properly you need to set fixed width and height */
|
|
16
|
+
circle: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
};
|
|
19
|
+
/** Size in any unit. Example: 50px, 100%... */
|
|
20
|
+
width: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
};
|
|
23
|
+
/** Size in any unit. */
|
|
24
|
+
height: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
circle: boolean;
|
|
29
|
+
}, {}>;
|
|
30
|
+
export default _default;
|
|
@@ -1,131 +1,75 @@
|
|
|
1
1
|
import { VNode } from 'vue';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
closeLabel: {
|
|
74
|
-
type: StringConstructor;
|
|
75
|
-
default: string;
|
|
76
|
-
};
|
|
77
|
-
open: {
|
|
78
|
-
type: BooleanConstructor;
|
|
79
|
-
default: boolean;
|
|
80
|
-
};
|
|
81
|
-
preventBodyScroll: {
|
|
82
|
-
type: BooleanConstructor;
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
|
-
teleport: {
|
|
86
|
-
type: import("vue").PropType<string | import("vue").RendererElement | null | undefined>;
|
|
87
|
-
default: string;
|
|
88
|
-
};
|
|
89
|
-
frozen: {
|
|
90
|
-
type: BooleanConstructor;
|
|
91
|
-
default: boolean;
|
|
92
|
-
};
|
|
93
|
-
}>> & {
|
|
94
|
-
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
95
|
-
}, {
|
|
96
|
-
hide: () => void;
|
|
97
|
-
show: () => void;
|
|
98
|
-
isOpen: import("vue").Ref<boolean>;
|
|
99
|
-
moveContainer: (translationY: number) => void;
|
|
100
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
101
|
-
"bottom-sheet:close": () => void;
|
|
102
|
-
}, string, {
|
|
103
|
-
closeLabel: string;
|
|
104
|
-
open: boolean;
|
|
105
|
-
preventBodyScroll: boolean;
|
|
106
|
-
teleport: string | import("vue").RendererElement | null | undefined;
|
|
107
|
-
frozen: boolean;
|
|
108
|
-
}, {}, string, {}> & {
|
|
109
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
110
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
111
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
112
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
113
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
114
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
115
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
116
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
117
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
118
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
119
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
120
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
121
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
122
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
123
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
124
|
-
};
|
|
125
|
-
$forceUpdate: () => void;
|
|
126
|
-
$nextTick: typeof import("vue").nextTick;
|
|
127
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
128
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
/** VJoyBottomSheet ref. */
|
|
4
|
+
bottomSheet: ({
|
|
5
|
+
$: import("vue").ComponentInternalInstance;
|
|
6
|
+
$data: {};
|
|
7
|
+
$props: {
|
|
8
|
+
closeLabel?: string | undefined;
|
|
9
|
+
open?: boolean | undefined;
|
|
10
|
+
preventBodyScroll?: boolean | undefined;
|
|
11
|
+
teleport?: string | import("vue").RendererElement | null | undefined;
|
|
12
|
+
frozen?: boolean | undefined;
|
|
13
|
+
style?: unknown;
|
|
14
|
+
class?: unknown;
|
|
15
|
+
key?: string | number | symbol | undefined;
|
|
16
|
+
ref?: import("vue").VNodeRef | undefined;
|
|
17
|
+
ref_for?: boolean | undefined;
|
|
18
|
+
ref_key?: string | undefined;
|
|
19
|
+
onVnodeBeforeMount?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
}>) => void)[] | undefined;
|
|
24
|
+
onVnodeMounted?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
}>) => void)[] | undefined;
|
|
29
|
+
onVnodeBeforeUpdate?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
}>) => void)[] | undefined;
|
|
38
|
+
onVnodeUpdated?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
}>) => void)[] | undefined;
|
|
47
|
+
onVnodeBeforeUnmount?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
}>) => void)[] | undefined;
|
|
52
|
+
onVnodeUnmounted?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
}>) => void)[] | undefined;
|
|
57
|
+
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
58
|
+
};
|
|
59
|
+
$attrs: {
|
|
60
|
+
[x: string]: unknown;
|
|
61
|
+
};
|
|
62
|
+
$refs: {
|
|
63
|
+
[x: string]: unknown;
|
|
64
|
+
};
|
|
65
|
+
$slots: Readonly<{
|
|
66
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
67
|
+
}>;
|
|
68
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
69
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
70
|
+
$emit: (event: "bottom-sheet:close") => void;
|
|
71
|
+
$el: any;
|
|
72
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
129
73
|
closeLabel: {
|
|
130
74
|
type: StringConstructor;
|
|
131
75
|
default: string;
|
|
@@ -148,148 +92,146 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
148
92
|
};
|
|
149
93
|
}>> & {
|
|
150
94
|
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
151
|
-
}
|
|
95
|
+
}, {
|
|
152
96
|
hide: () => void;
|
|
153
97
|
show: () => void;
|
|
154
98
|
isOpen: import("vue").Ref<boolean>;
|
|
155
99
|
moveContainer: (translationY: number) => void;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
}, {},
|
|
100
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
101
|
+
"bottom-sheet:close": () => void;
|
|
102
|
+
}, string, {
|
|
103
|
+
closeLabel: string;
|
|
104
|
+
open: boolean;
|
|
105
|
+
preventBodyScroll: boolean;
|
|
106
|
+
teleport: string | import("vue").RendererElement | null | undefined;
|
|
107
|
+
frozen: boolean;
|
|
108
|
+
}, {}, string, {}> & {
|
|
109
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
110
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
111
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
112
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
113
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
114
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
115
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
116
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
117
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
118
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
119
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
120
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
121
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
122
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
123
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
124
|
+
};
|
|
125
|
+
$forceUpdate: () => void;
|
|
126
|
+
$nextTick: typeof import("vue").nextTick;
|
|
127
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
128
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
129
|
+
closeLabel: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
133
|
+
open: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
preventBodyScroll: {
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
teleport: {
|
|
142
|
+
type: import("vue").PropType<string | import("vue").RendererElement | null | undefined>;
|
|
143
|
+
default: string;
|
|
144
|
+
};
|
|
145
|
+
frozen: {
|
|
146
|
+
type: BooleanConstructor;
|
|
147
|
+
default: boolean;
|
|
148
|
+
};
|
|
149
|
+
}>> & {
|
|
150
|
+
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
151
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
152
|
+
hide: () => void;
|
|
153
|
+
show: () => void;
|
|
154
|
+
isOpen: import("vue").Ref<boolean>;
|
|
155
|
+
moveContainer: (translationY: number) => void;
|
|
156
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
157
|
+
$slots: {
|
|
158
|
+
"bottom-sheet-content"?(_: {}): any;
|
|
159
|
+
"bottom-sheet-cta"?(_: {}): any;
|
|
160
|
+
};
|
|
161
|
+
}) | null | undefined;
|
|
162
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
165
163
|
click: () => void;
|
|
166
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
closeLabel: {
|
|
238
|
-
type: StringConstructor;
|
|
239
|
-
default: string;
|
|
240
|
-
};
|
|
241
|
-
open: {
|
|
242
|
-
type: BooleanConstructor;
|
|
243
|
-
default: boolean;
|
|
244
|
-
};
|
|
245
|
-
preventBodyScroll: {
|
|
246
|
-
type: BooleanConstructor;
|
|
247
|
-
default: boolean;
|
|
248
|
-
};
|
|
249
|
-
teleport: {
|
|
250
|
-
type: import("vue").PropType<string | import("vue").RendererElement | null | undefined>;
|
|
251
|
-
default: string;
|
|
252
|
-
};
|
|
253
|
-
frozen: {
|
|
254
|
-
type: BooleanConstructor;
|
|
255
|
-
default: boolean;
|
|
256
|
-
};
|
|
257
|
-
}>> & {
|
|
258
|
-
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
259
|
-
}, {
|
|
260
|
-
hide: () => void;
|
|
261
|
-
show: () => void;
|
|
262
|
-
isOpen: import("vue").Ref<boolean>;
|
|
263
|
-
moveContainer: (translationY: number) => void;
|
|
264
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
265
|
-
"bottom-sheet:close": () => void;
|
|
266
|
-
}, string, {
|
|
267
|
-
closeLabel: string;
|
|
268
|
-
open: boolean;
|
|
269
|
-
preventBodyScroll: boolean;
|
|
270
|
-
teleport: string | import("vue").RendererElement | null | undefined;
|
|
271
|
-
frozen: boolean;
|
|
272
|
-
}, {}, string, {}> & {
|
|
273
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
274
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
275
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
276
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
277
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
278
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
279
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
280
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
281
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
282
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
283
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
284
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
285
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
286
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
287
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
288
|
-
};
|
|
289
|
-
$forceUpdate: () => void;
|
|
290
|
-
$nextTick: typeof import("vue").nextTick;
|
|
291
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
292
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
164
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
165
|
+
/** VJoyBottomSheet ref. */
|
|
166
|
+
bottomSheet: ({
|
|
167
|
+
$: import("vue").ComponentInternalInstance;
|
|
168
|
+
$data: {};
|
|
169
|
+
$props: {
|
|
170
|
+
closeLabel?: string | undefined;
|
|
171
|
+
open?: boolean | undefined;
|
|
172
|
+
preventBodyScroll?: boolean | undefined;
|
|
173
|
+
teleport?: string | import("vue").RendererElement | null | undefined;
|
|
174
|
+
frozen?: boolean | undefined;
|
|
175
|
+
style?: unknown;
|
|
176
|
+
class?: unknown;
|
|
177
|
+
key?: string | number | symbol | undefined;
|
|
178
|
+
ref?: import("vue").VNodeRef | undefined;
|
|
179
|
+
ref_for?: boolean | undefined;
|
|
180
|
+
ref_key?: string | undefined;
|
|
181
|
+
onVnodeBeforeMount?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
182
|
+
[key: string]: any;
|
|
183
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
184
|
+
[key: string]: any;
|
|
185
|
+
}>) => void)[] | undefined;
|
|
186
|
+
onVnodeMounted?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
189
|
+
[key: string]: any;
|
|
190
|
+
}>) => void)[] | undefined;
|
|
191
|
+
onVnodeBeforeUpdate?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
192
|
+
[key: string]: any;
|
|
193
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
198
|
+
[key: string]: any;
|
|
199
|
+
}>) => void)[] | undefined;
|
|
200
|
+
onVnodeUpdated?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
201
|
+
[key: string]: any;
|
|
202
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
203
|
+
[key: string]: any;
|
|
204
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
205
|
+
[key: string]: any;
|
|
206
|
+
}>, oldVNode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
}>) => void)[] | undefined;
|
|
209
|
+
onVnodeBeforeUnmount?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
210
|
+
[key: string]: any;
|
|
211
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
}>) => void)[] | undefined;
|
|
214
|
+
onVnodeUnmounted?: ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
215
|
+
[key: string]: any;
|
|
216
|
+
}>) => void) | ((vnode: VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
217
|
+
[key: string]: any;
|
|
218
|
+
}>) => void)[] | undefined;
|
|
219
|
+
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
220
|
+
};
|
|
221
|
+
$attrs: {
|
|
222
|
+
[x: string]: unknown;
|
|
223
|
+
};
|
|
224
|
+
$refs: {
|
|
225
|
+
[x: string]: unknown;
|
|
226
|
+
};
|
|
227
|
+
$slots: Readonly<{
|
|
228
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
229
|
+
}>;
|
|
230
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
231
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
232
|
+
$emit: (event: "bottom-sheet:close") => void;
|
|
233
|
+
$el: any;
|
|
234
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
293
235
|
closeLabel: {
|
|
294
236
|
type: StringConstructor;
|
|
295
237
|
default: string;
|
|
@@ -312,26 +254,89 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
312
254
|
};
|
|
313
255
|
}>> & {
|
|
314
256
|
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
315
|
-
}
|
|
257
|
+
}, {
|
|
316
258
|
hide: () => void;
|
|
317
259
|
show: () => void;
|
|
318
260
|
isOpen: import("vue").Ref<boolean>;
|
|
319
261
|
moveContainer: (translationY: number) => void;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
}
|
|
262
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
263
|
+
"bottom-sheet:close": () => void;
|
|
264
|
+
}, string, {
|
|
265
|
+
closeLabel: string;
|
|
266
|
+
open: boolean;
|
|
267
|
+
preventBodyScroll: boolean;
|
|
268
|
+
teleport: string | import("vue").RendererElement | null | undefined;
|
|
269
|
+
frozen: boolean;
|
|
270
|
+
}, {}, string, {}> & {
|
|
271
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
272
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
273
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
274
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
275
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
276
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
277
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
278
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
279
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
280
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
281
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
282
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
283
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
284
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
285
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
286
|
+
};
|
|
287
|
+
$forceUpdate: () => void;
|
|
288
|
+
$nextTick: typeof import("vue").nextTick;
|
|
289
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
290
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
291
|
+
closeLabel: {
|
|
292
|
+
type: StringConstructor;
|
|
293
|
+
default: string;
|
|
294
|
+
};
|
|
295
|
+
open: {
|
|
296
|
+
type: BooleanConstructor;
|
|
297
|
+
default: boolean;
|
|
298
|
+
};
|
|
299
|
+
preventBodyScroll: {
|
|
300
|
+
type: BooleanConstructor;
|
|
301
|
+
default: boolean;
|
|
302
|
+
};
|
|
303
|
+
teleport: {
|
|
304
|
+
type: import("vue").PropType<string | import("vue").RendererElement | null | undefined>;
|
|
305
|
+
default: string;
|
|
306
|
+
};
|
|
307
|
+
frozen: {
|
|
308
|
+
type: BooleanConstructor;
|
|
309
|
+
default: boolean;
|
|
310
|
+
};
|
|
311
|
+
}>> & {
|
|
312
|
+
"onBottom-sheet:close"?: (() => any) | undefined;
|
|
313
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
314
|
+
hide: () => void;
|
|
315
|
+
show: () => void;
|
|
316
|
+
isOpen: import("vue").Ref<boolean>;
|
|
317
|
+
moveContainer: (translationY: number) => void;
|
|
318
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
319
|
+
$slots: {
|
|
320
|
+
"bottom-sheet-content"?(_: {}): any;
|
|
321
|
+
"bottom-sheet-cta"?(_: {}): any;
|
|
322
|
+
};
|
|
323
|
+
}) | null | undefined;
|
|
324
|
+
}>>> & {
|
|
329
325
|
onClick?: (() => any) | undefined;
|
|
330
326
|
}, {}, {}>, Readonly<{
|
|
331
327
|
/** @slot Default slot where you can render anything you need. */
|
|
332
328
|
default: () => any;
|
|
333
329
|
}>>;
|
|
334
330
|
export default _default;
|
|
331
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
332
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
333
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
334
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
335
|
+
} : {
|
|
336
|
+
type: import('vue').PropType<T[K]>;
|
|
337
|
+
required: true;
|
|
338
|
+
};
|
|
339
|
+
};
|
|
335
340
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
336
341
|
new (): {
|
|
337
342
|
$slots: S;
|