3h1-ui 3.0.0-next.231 → 3.0.0-next.232
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/es/index.js +3 -1
- package/es/ui/src/Modal/index.d.ts +249 -168
- package/es/ui/src/Modal/src/BasicModal.vue.d.ts +117 -77
- package/es/ui/src/Modal/src/components/Modal.d.ts +100 -60
- package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +103 -63
- package/es/ui/src/Modal/src/props.d.ts +62 -48
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +248 -168
- package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +248 -168
- package/lib/index.js +3 -1
- package/lib/ui/src/Modal/index.d.ts +249 -168
- package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +117 -77
- package/lib/ui/src/Modal/src/components/Modal.d.ts +100 -60
- package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +103 -63
- package/lib/ui/src/Modal/src/props.d.ts +62 -48
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +248 -168
- package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +248 -168
- package/package.json +3 -3
|
@@ -17,36 +17,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
17
17
|
handleComfirm: () => void;
|
|
18
18
|
readonly BasicModal: {
|
|
19
19
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
-
visible: {
|
|
21
|
-
type: BooleanConstructor;
|
|
22
|
-
};
|
|
23
|
-
scrollTop: {
|
|
24
|
-
type: BooleanConstructor;
|
|
25
|
-
default: boolean;
|
|
26
|
-
};
|
|
27
|
-
height: {
|
|
28
|
-
type: NumberConstructor;
|
|
29
|
-
};
|
|
30
|
-
minHeight: {
|
|
31
|
-
type: NumberConstructor;
|
|
32
|
-
};
|
|
33
|
-
draggable: {
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
centered: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
};
|
|
40
|
-
cancelText: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
okText: {
|
|
45
|
-
type: StringConstructor;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
closeFunc: import("vue").PropType<() => Promise<boolean>>;
|
|
49
|
-
} & {
|
|
50
20
|
defaultFullscreen: {
|
|
51
21
|
type: BooleanConstructor;
|
|
52
22
|
};
|
|
@@ -58,7 +28,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
58
28
|
type: NumberConstructor;
|
|
59
29
|
default: number;
|
|
60
30
|
};
|
|
61
|
-
helpMessage:
|
|
31
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
62
32
|
useWrapper: {
|
|
63
33
|
type: BooleanConstructor;
|
|
64
34
|
default: boolean;
|
|
@@ -77,22 +47,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
77
47
|
type: BooleanConstructor;
|
|
78
48
|
default: boolean;
|
|
79
49
|
};
|
|
80
|
-
wrapperProps: import("
|
|
81
|
-
afterClose:
|
|
82
|
-
|
|
50
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
|
|
51
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
52
|
+
(): () => Promise<VueNode>;
|
|
53
|
+
new (): any;
|
|
54
|
+
readonly prototype: any;
|
|
55
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
56
|
+
(): () => Promise<VueNode>;
|
|
57
|
+
new (): any;
|
|
58
|
+
readonly prototype: any;
|
|
59
|
+
})[];
|
|
60
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
83
61
|
closable: {
|
|
84
62
|
type: BooleanConstructor;
|
|
85
63
|
default: boolean;
|
|
86
64
|
};
|
|
87
|
-
closeIcon:
|
|
65
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
88
66
|
confirmLoading: {
|
|
89
67
|
type: BooleanConstructor;
|
|
90
68
|
};
|
|
91
69
|
destroyOnClose: {
|
|
92
70
|
type: BooleanConstructor;
|
|
93
71
|
};
|
|
94
|
-
footer:
|
|
95
|
-
getContainer:
|
|
72
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
73
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
74
|
+
(): () => any;
|
|
75
|
+
new (): any;
|
|
76
|
+
readonly prototype: any;
|
|
77
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
78
|
+
(): () => any;
|
|
79
|
+
new (): any;
|
|
80
|
+
readonly prototype: any;
|
|
81
|
+
})[];
|
|
96
82
|
mask: {
|
|
97
83
|
type: BooleanConstructor;
|
|
98
84
|
default: boolean;
|
|
@@ -105,16 +91,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
105
91
|
type: BooleanConstructor;
|
|
106
92
|
default: boolean;
|
|
107
93
|
};
|
|
108
|
-
maskStyle: import("vue").
|
|
94
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
109
95
|
okType: {
|
|
110
96
|
type: StringConstructor;
|
|
111
97
|
default: string;
|
|
112
98
|
};
|
|
113
99
|
okButtonProps: {
|
|
114
|
-
type:
|
|
100
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
115
101
|
};
|
|
116
102
|
cancelButtonProps: {
|
|
117
|
-
type:
|
|
103
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
118
104
|
};
|
|
119
105
|
title: {
|
|
120
106
|
type: StringConstructor;
|
|
@@ -122,7 +108,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
122
108
|
visible: {
|
|
123
109
|
type: BooleanConstructor;
|
|
124
110
|
};
|
|
125
|
-
width:
|
|
111
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
126
112
|
wrapClassName: {
|
|
127
113
|
type: StringConstructor;
|
|
128
114
|
};
|
|
@@ -130,37 +116,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
130
116
|
type: NumberConstructor;
|
|
131
117
|
};
|
|
132
118
|
size: {
|
|
133
|
-
type:
|
|
119
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
134
120
|
default: string;
|
|
135
121
|
};
|
|
136
|
-
}>> & {
|
|
137
|
-
"onUpdate:visible"?: (...args: any[]) => any;
|
|
138
|
-
onCancel?: (...args: any[]) => any;
|
|
139
|
-
"onHeight-change"?: (...args: any[]) => any;
|
|
140
|
-
onOk?: (...args: any[]) => any;
|
|
141
|
-
"onVisible-change"?: (...args: any[]) => any;
|
|
142
|
-
onRegister?: (...args: any[]) => any;
|
|
143
|
-
}, {
|
|
144
|
-
prefixCls: string;
|
|
145
|
-
handleCancel: (e: Event) => Promise<void>;
|
|
146
|
-
getBindValue: import("vue").ComputedRef<Recordable<any>>;
|
|
147
|
-
getProps: import("vue").ComputedRef<Recordable<any>>;
|
|
148
|
-
handleFullScreen: (e: Event) => void;
|
|
149
|
-
fullScreenRef: import("vue").Ref<boolean>;
|
|
150
|
-
getMergeProps: import("vue").ComputedRef<Recordable<any>>;
|
|
151
|
-
handleOk: (e: Event) => void;
|
|
152
|
-
visibleRef: import("vue").Ref<boolean>;
|
|
153
|
-
omitBindValue: Object;
|
|
154
|
-
omitSlotKeys: import("vue").ComputedRef<string[]>;
|
|
155
|
-
modalWrapperRef: import("vue").Ref<any>;
|
|
156
|
-
handleExtHeight: (height: number) => void;
|
|
157
|
-
handleHeightChange: (height: string) => void;
|
|
158
|
-
handleTitleDbClick: (e: Event) => void;
|
|
159
|
-
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
160
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
161
|
-
visible: {
|
|
162
|
-
type: BooleanConstructor;
|
|
163
|
-
};
|
|
164
122
|
scrollTop: {
|
|
165
123
|
type: BooleanConstructor;
|
|
166
124
|
default: boolean;
|
|
@@ -186,8 +144,40 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
186
144
|
type: StringConstructor;
|
|
187
145
|
default: string;
|
|
188
146
|
};
|
|
189
|
-
closeFunc:
|
|
190
|
-
|
|
147
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
148
|
+
(): () => Promise<boolean>;
|
|
149
|
+
new (): any;
|
|
150
|
+
readonly prototype: any;
|
|
151
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
152
|
+
(): () => Promise<boolean>;
|
|
153
|
+
new (): any;
|
|
154
|
+
readonly prototype: any;
|
|
155
|
+
})[];
|
|
156
|
+
}>> & {
|
|
157
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
158
|
+
onCancel?: (...args: any[]) => any;
|
|
159
|
+
"onHeight-change"?: (...args: any[]) => any;
|
|
160
|
+
onOk?: (...args: any[]) => any;
|
|
161
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
162
|
+
onRegister?: (...args: any[]) => any;
|
|
163
|
+
}, {
|
|
164
|
+
prefixCls: string;
|
|
165
|
+
handleCancel: (e: Event) => Promise<void>;
|
|
166
|
+
getBindValue: import("vue").ComputedRef<Recordable<any>>;
|
|
167
|
+
getProps: import("vue").ComputedRef<Recordable<any>>;
|
|
168
|
+
handleFullScreen: (e: Event) => void;
|
|
169
|
+
fullScreenRef: import("vue").Ref<boolean>;
|
|
170
|
+
getMergeProps: import("vue").ComputedRef<Recordable<any>>;
|
|
171
|
+
handleOk: (e: Event) => void;
|
|
172
|
+
visibleRef: import("vue").Ref<boolean>;
|
|
173
|
+
omitBindValue: Object;
|
|
174
|
+
omitSlotKeys: import("vue").ComputedRef<string[]>;
|
|
175
|
+
modalWrapperRef: import("vue").Ref<any>;
|
|
176
|
+
handleExtHeight: (height: number) => void;
|
|
177
|
+
handleHeightChange: (height: string) => void;
|
|
178
|
+
handleTitleDbClick: (e: Event) => void;
|
|
179
|
+
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
180
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
191
181
|
defaultFullscreen: {
|
|
192
182
|
type: BooleanConstructor;
|
|
193
183
|
};
|
|
@@ -199,7 +189,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
199
189
|
type: NumberConstructor;
|
|
200
190
|
default: number;
|
|
201
191
|
};
|
|
202
|
-
helpMessage:
|
|
192
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
203
193
|
useWrapper: {
|
|
204
194
|
type: BooleanConstructor;
|
|
205
195
|
default: boolean;
|
|
@@ -218,22 +208,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
218
208
|
type: BooleanConstructor;
|
|
219
209
|
default: boolean;
|
|
220
210
|
};
|
|
221
|
-
wrapperProps: import("
|
|
222
|
-
afterClose:
|
|
223
|
-
|
|
211
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
|
|
212
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
213
|
+
(): () => Promise<VueNode>;
|
|
214
|
+
new (): any;
|
|
215
|
+
readonly prototype: any;
|
|
216
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
217
|
+
(): () => Promise<VueNode>;
|
|
218
|
+
new (): any;
|
|
219
|
+
readonly prototype: any;
|
|
220
|
+
})[];
|
|
221
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
224
222
|
closable: {
|
|
225
223
|
type: BooleanConstructor;
|
|
226
224
|
default: boolean;
|
|
227
225
|
};
|
|
228
|
-
closeIcon:
|
|
226
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
229
227
|
confirmLoading: {
|
|
230
228
|
type: BooleanConstructor;
|
|
231
229
|
};
|
|
232
230
|
destroyOnClose: {
|
|
233
231
|
type: BooleanConstructor;
|
|
234
232
|
};
|
|
235
|
-
footer:
|
|
236
|
-
getContainer:
|
|
233
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
234
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
235
|
+
(): () => any;
|
|
236
|
+
new (): any;
|
|
237
|
+
readonly prototype: any;
|
|
238
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
239
|
+
(): () => any;
|
|
240
|
+
new (): any;
|
|
241
|
+
readonly prototype: any;
|
|
242
|
+
})[];
|
|
237
243
|
mask: {
|
|
238
244
|
type: BooleanConstructor;
|
|
239
245
|
default: boolean;
|
|
@@ -246,16 +252,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
246
252
|
type: BooleanConstructor;
|
|
247
253
|
default: boolean;
|
|
248
254
|
};
|
|
249
|
-
maskStyle: import("vue").
|
|
255
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
250
256
|
okType: {
|
|
251
257
|
type: StringConstructor;
|
|
252
258
|
default: string;
|
|
253
259
|
};
|
|
254
260
|
okButtonProps: {
|
|
255
|
-
type:
|
|
261
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
256
262
|
};
|
|
257
263
|
cancelButtonProps: {
|
|
258
|
-
type:
|
|
264
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
259
265
|
};
|
|
260
266
|
title: {
|
|
261
267
|
type: StringConstructor;
|
|
@@ -263,7 +269,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
263
269
|
visible: {
|
|
264
270
|
type: BooleanConstructor;
|
|
265
271
|
};
|
|
266
|
-
width:
|
|
272
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
267
273
|
wrapClassName: {
|
|
268
274
|
type: StringConstructor;
|
|
269
275
|
};
|
|
@@ -271,9 +277,43 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
271
277
|
type: NumberConstructor;
|
|
272
278
|
};
|
|
273
279
|
size: {
|
|
274
|
-
type:
|
|
280
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
281
|
+
default: string;
|
|
282
|
+
};
|
|
283
|
+
scrollTop: {
|
|
284
|
+
type: BooleanConstructor;
|
|
285
|
+
default: boolean;
|
|
286
|
+
};
|
|
287
|
+
height: {
|
|
288
|
+
type: NumberConstructor;
|
|
289
|
+
};
|
|
290
|
+
minHeight: {
|
|
291
|
+
type: NumberConstructor;
|
|
292
|
+
};
|
|
293
|
+
draggable: {
|
|
294
|
+
type: BooleanConstructor;
|
|
295
|
+
default: boolean;
|
|
296
|
+
};
|
|
297
|
+
centered: {
|
|
298
|
+
type: BooleanConstructor;
|
|
299
|
+
};
|
|
300
|
+
cancelText: {
|
|
301
|
+
type: StringConstructor;
|
|
302
|
+
default: string;
|
|
303
|
+
};
|
|
304
|
+
okText: {
|
|
305
|
+
type: StringConstructor;
|
|
275
306
|
default: string;
|
|
276
307
|
};
|
|
308
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
309
|
+
(): () => Promise<boolean>;
|
|
310
|
+
new (): any;
|
|
311
|
+
readonly prototype: any;
|
|
312
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
313
|
+
(): () => Promise<boolean>;
|
|
314
|
+
new (): any;
|
|
315
|
+
readonly prototype: any;
|
|
316
|
+
})[];
|
|
277
317
|
}>> & {
|
|
278
318
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
279
319
|
onCancel?: (...args: any[]) => any;
|
|
@@ -311,36 +351,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
311
351
|
M: {};
|
|
312
352
|
Defaults: {};
|
|
313
353
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
314
|
-
visible: {
|
|
315
|
-
type: BooleanConstructor;
|
|
316
|
-
};
|
|
317
|
-
scrollTop: {
|
|
318
|
-
type: BooleanConstructor;
|
|
319
|
-
default: boolean;
|
|
320
|
-
};
|
|
321
|
-
height: {
|
|
322
|
-
type: NumberConstructor;
|
|
323
|
-
};
|
|
324
|
-
minHeight: {
|
|
325
|
-
type: NumberConstructor;
|
|
326
|
-
};
|
|
327
|
-
draggable: {
|
|
328
|
-
type: BooleanConstructor;
|
|
329
|
-
default: boolean;
|
|
330
|
-
};
|
|
331
|
-
centered: {
|
|
332
|
-
type: BooleanConstructor;
|
|
333
|
-
};
|
|
334
|
-
cancelText: {
|
|
335
|
-
type: StringConstructor;
|
|
336
|
-
default: string;
|
|
337
|
-
};
|
|
338
|
-
okText: {
|
|
339
|
-
type: StringConstructor;
|
|
340
|
-
default: string;
|
|
341
|
-
};
|
|
342
|
-
closeFunc: import("vue").PropType<() => Promise<boolean>>;
|
|
343
|
-
} & {
|
|
344
354
|
defaultFullscreen: {
|
|
345
355
|
type: BooleanConstructor;
|
|
346
356
|
};
|
|
@@ -352,7 +362,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
352
362
|
type: NumberConstructor;
|
|
353
363
|
default: number;
|
|
354
364
|
};
|
|
355
|
-
helpMessage:
|
|
365
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
356
366
|
useWrapper: {
|
|
357
367
|
type: BooleanConstructor;
|
|
358
368
|
default: boolean;
|
|
@@ -371,22 +381,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
371
381
|
type: BooleanConstructor;
|
|
372
382
|
default: boolean;
|
|
373
383
|
};
|
|
374
|
-
wrapperProps: import("
|
|
375
|
-
afterClose:
|
|
376
|
-
|
|
384
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
|
|
385
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
386
|
+
(): () => Promise<VueNode>;
|
|
387
|
+
new (): any;
|
|
388
|
+
readonly prototype: any;
|
|
389
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
390
|
+
(): () => Promise<VueNode>;
|
|
391
|
+
new (): any;
|
|
392
|
+
readonly prototype: any;
|
|
393
|
+
})[];
|
|
394
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
377
395
|
closable: {
|
|
378
396
|
type: BooleanConstructor;
|
|
379
397
|
default: boolean;
|
|
380
398
|
};
|
|
381
|
-
closeIcon:
|
|
399
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
382
400
|
confirmLoading: {
|
|
383
401
|
type: BooleanConstructor;
|
|
384
402
|
};
|
|
385
403
|
destroyOnClose: {
|
|
386
404
|
type: BooleanConstructor;
|
|
387
405
|
};
|
|
388
|
-
footer:
|
|
389
|
-
getContainer:
|
|
406
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
407
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
408
|
+
(): () => any;
|
|
409
|
+
new (): any;
|
|
410
|
+
readonly prototype: any;
|
|
411
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
412
|
+
(): () => any;
|
|
413
|
+
new (): any;
|
|
414
|
+
readonly prototype: any;
|
|
415
|
+
})[];
|
|
390
416
|
mask: {
|
|
391
417
|
type: BooleanConstructor;
|
|
392
418
|
default: boolean;
|
|
@@ -399,16 +425,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
399
425
|
type: BooleanConstructor;
|
|
400
426
|
default: boolean;
|
|
401
427
|
};
|
|
402
|
-
maskStyle: import("vue").
|
|
428
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
403
429
|
okType: {
|
|
404
430
|
type: StringConstructor;
|
|
405
431
|
default: string;
|
|
406
432
|
};
|
|
407
433
|
okButtonProps: {
|
|
408
|
-
type:
|
|
434
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
409
435
|
};
|
|
410
436
|
cancelButtonProps: {
|
|
411
|
-
type:
|
|
437
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
412
438
|
};
|
|
413
439
|
title: {
|
|
414
440
|
type: StringConstructor;
|
|
@@ -416,7 +442,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
416
442
|
visible: {
|
|
417
443
|
type: BooleanConstructor;
|
|
418
444
|
};
|
|
419
|
-
width:
|
|
445
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
420
446
|
wrapClassName: {
|
|
421
447
|
type: StringConstructor;
|
|
422
448
|
};
|
|
@@ -424,9 +450,43 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
424
450
|
type: NumberConstructor;
|
|
425
451
|
};
|
|
426
452
|
size: {
|
|
427
|
-
type:
|
|
453
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
428
454
|
default: string;
|
|
429
455
|
};
|
|
456
|
+
scrollTop: {
|
|
457
|
+
type: BooleanConstructor;
|
|
458
|
+
default: boolean;
|
|
459
|
+
};
|
|
460
|
+
height: {
|
|
461
|
+
type: NumberConstructor;
|
|
462
|
+
};
|
|
463
|
+
minHeight: {
|
|
464
|
+
type: NumberConstructor;
|
|
465
|
+
};
|
|
466
|
+
draggable: {
|
|
467
|
+
type: BooleanConstructor;
|
|
468
|
+
default: boolean;
|
|
469
|
+
};
|
|
470
|
+
centered: {
|
|
471
|
+
type: BooleanConstructor;
|
|
472
|
+
};
|
|
473
|
+
cancelText: {
|
|
474
|
+
type: StringConstructor;
|
|
475
|
+
default: string;
|
|
476
|
+
};
|
|
477
|
+
okText: {
|
|
478
|
+
type: StringConstructor;
|
|
479
|
+
default: string;
|
|
480
|
+
};
|
|
481
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
482
|
+
(): () => Promise<boolean>;
|
|
483
|
+
new (): any;
|
|
484
|
+
readonly prototype: any;
|
|
485
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
486
|
+
(): () => Promise<boolean>;
|
|
487
|
+
new (): any;
|
|
488
|
+
readonly prototype: any;
|
|
489
|
+
})[];
|
|
430
490
|
}>> & {
|
|
431
491
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
432
492
|
onCancel?: (...args: any[]) => any;
|
|
@@ -478,36 +538,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
478
538
|
__isTeleport?: never;
|
|
479
539
|
__isSuspense?: never;
|
|
480
540
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
481
|
-
visible: {
|
|
482
|
-
type: BooleanConstructor;
|
|
483
|
-
};
|
|
484
|
-
scrollTop: {
|
|
485
|
-
type: BooleanConstructor;
|
|
486
|
-
default: boolean;
|
|
487
|
-
};
|
|
488
|
-
height: {
|
|
489
|
-
type: NumberConstructor;
|
|
490
|
-
};
|
|
491
|
-
minHeight: {
|
|
492
|
-
type: NumberConstructor;
|
|
493
|
-
};
|
|
494
|
-
draggable: {
|
|
495
|
-
type: BooleanConstructor;
|
|
496
|
-
default: boolean;
|
|
497
|
-
};
|
|
498
|
-
centered: {
|
|
499
|
-
type: BooleanConstructor;
|
|
500
|
-
};
|
|
501
|
-
cancelText: {
|
|
502
|
-
type: StringConstructor;
|
|
503
|
-
default: string;
|
|
504
|
-
};
|
|
505
|
-
okText: {
|
|
506
|
-
type: StringConstructor;
|
|
507
|
-
default: string;
|
|
508
|
-
};
|
|
509
|
-
closeFunc: import("vue").PropType<() => Promise<boolean>>;
|
|
510
|
-
} & {
|
|
511
541
|
defaultFullscreen: {
|
|
512
542
|
type: BooleanConstructor;
|
|
513
543
|
};
|
|
@@ -519,7 +549,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
519
549
|
type: NumberConstructor;
|
|
520
550
|
default: number;
|
|
521
551
|
};
|
|
522
|
-
helpMessage:
|
|
552
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
523
553
|
useWrapper: {
|
|
524
554
|
type: BooleanConstructor;
|
|
525
555
|
default: boolean;
|
|
@@ -538,22 +568,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
538
568
|
type: BooleanConstructor;
|
|
539
569
|
default: boolean;
|
|
540
570
|
};
|
|
541
|
-
wrapperProps: import("
|
|
542
|
-
afterClose:
|
|
543
|
-
|
|
571
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
|
|
572
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
573
|
+
(): () => Promise<VueNode>;
|
|
574
|
+
new (): any;
|
|
575
|
+
readonly prototype: any;
|
|
576
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
577
|
+
(): () => Promise<VueNode>;
|
|
578
|
+
new (): any;
|
|
579
|
+
readonly prototype: any;
|
|
580
|
+
})[];
|
|
581
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
544
582
|
closable: {
|
|
545
583
|
type: BooleanConstructor;
|
|
546
584
|
default: boolean;
|
|
547
585
|
};
|
|
548
|
-
closeIcon:
|
|
586
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
549
587
|
confirmLoading: {
|
|
550
588
|
type: BooleanConstructor;
|
|
551
589
|
};
|
|
552
590
|
destroyOnClose: {
|
|
553
591
|
type: BooleanConstructor;
|
|
554
592
|
};
|
|
555
|
-
footer:
|
|
556
|
-
getContainer:
|
|
593
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
594
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
595
|
+
(): () => any;
|
|
596
|
+
new (): any;
|
|
597
|
+
readonly prototype: any;
|
|
598
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
599
|
+
(): () => any;
|
|
600
|
+
new (): any;
|
|
601
|
+
readonly prototype: any;
|
|
602
|
+
})[];
|
|
557
603
|
mask: {
|
|
558
604
|
type: BooleanConstructor;
|
|
559
605
|
default: boolean;
|
|
@@ -566,16 +612,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
566
612
|
type: BooleanConstructor;
|
|
567
613
|
default: boolean;
|
|
568
614
|
};
|
|
569
|
-
maskStyle: import("vue").
|
|
615
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
570
616
|
okType: {
|
|
571
617
|
type: StringConstructor;
|
|
572
618
|
default: string;
|
|
573
619
|
};
|
|
574
620
|
okButtonProps: {
|
|
575
|
-
type:
|
|
621
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
576
622
|
};
|
|
577
623
|
cancelButtonProps: {
|
|
578
|
-
type:
|
|
624
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
579
625
|
};
|
|
580
626
|
title: {
|
|
581
627
|
type: StringConstructor;
|
|
@@ -583,7 +629,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
583
629
|
visible: {
|
|
584
630
|
type: BooleanConstructor;
|
|
585
631
|
};
|
|
586
|
-
width:
|
|
632
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
587
633
|
wrapClassName: {
|
|
588
634
|
type: StringConstructor;
|
|
589
635
|
};
|
|
@@ -591,9 +637,43 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
591
637
|
type: NumberConstructor;
|
|
592
638
|
};
|
|
593
639
|
size: {
|
|
594
|
-
type:
|
|
640
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
641
|
+
default: string;
|
|
642
|
+
};
|
|
643
|
+
scrollTop: {
|
|
644
|
+
type: BooleanConstructor;
|
|
645
|
+
default: boolean;
|
|
646
|
+
};
|
|
647
|
+
height: {
|
|
648
|
+
type: NumberConstructor;
|
|
649
|
+
};
|
|
650
|
+
minHeight: {
|
|
651
|
+
type: NumberConstructor;
|
|
652
|
+
};
|
|
653
|
+
draggable: {
|
|
654
|
+
type: BooleanConstructor;
|
|
655
|
+
default: boolean;
|
|
656
|
+
};
|
|
657
|
+
centered: {
|
|
658
|
+
type: BooleanConstructor;
|
|
659
|
+
};
|
|
660
|
+
cancelText: {
|
|
661
|
+
type: StringConstructor;
|
|
662
|
+
default: string;
|
|
663
|
+
};
|
|
664
|
+
okText: {
|
|
665
|
+
type: StringConstructor;
|
|
595
666
|
default: string;
|
|
596
667
|
};
|
|
668
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
669
|
+
(): () => Promise<boolean>;
|
|
670
|
+
new (): any;
|
|
671
|
+
readonly prototype: any;
|
|
672
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
673
|
+
(): () => Promise<boolean>;
|
|
674
|
+
new (): any;
|
|
675
|
+
readonly prototype: any;
|
|
676
|
+
})[];
|
|
597
677
|
}>> & {
|
|
598
678
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
599
679
|
onCancel?: (...args: any[]) => any;
|