ra-element 0.1.52 → 0.1.56
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/docs/ra-upload.md +1 -1
- package/lib/components/ra-button/index.vue.d.ts +322 -22
- package/lib/components/ra-checkbox-group/index.vue.d.ts +238 -20
- package/lib/components/ra-date-picker/index.vue.d.ts +562 -1
- package/lib/components/ra-dialog/index.vue.d.ts +556 -41
- package/lib/components/ra-dialog-select/index.vue.d.ts +2 -2
- package/lib/components/ra-input/index.vue.d.ts +554 -23
- package/lib/components/ra-pagination/index.vue.d.ts +272 -29
- package/lib/components/ra-radio-group/index.vue.d.ts +262 -28
- package/lib/components/ra-table/component/pagination-group.vue.d.ts +1 -1
- package/lib/components/ra-table/component/table-column-item.vue.d.ts +29 -0
- package/lib/components/ra-table/component/top-module.vue.d.ts +85 -0
- package/lib/components/ra-tree-select/index.vue.d.ts +195 -29
- package/lib/components/ra-upload/index.vue.d.ts +549 -2
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +2100 -17545
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -34
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,522 @@ declare function __VLS_template(): {
|
|
|
6
6
|
footer?(_: {}): any;
|
|
7
7
|
};
|
|
8
8
|
refs: {
|
|
9
|
-
componentRef:
|
|
9
|
+
componentRef: ({
|
|
10
|
+
$: import('vue').ComponentInternalInstance;
|
|
11
|
+
$data: {};
|
|
12
|
+
$props: Partial<{
|
|
13
|
+
readonly title: string;
|
|
14
|
+
readonly center: boolean;
|
|
15
|
+
readonly overflow: boolean;
|
|
16
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
17
|
+
readonly modelValue: boolean;
|
|
18
|
+
readonly ariaLevel: string;
|
|
19
|
+
readonly appendTo: string | HTMLElement;
|
|
20
|
+
readonly alignCenter: boolean;
|
|
21
|
+
readonly draggable: boolean;
|
|
22
|
+
readonly showClose: boolean;
|
|
23
|
+
readonly fullscreen: boolean;
|
|
24
|
+
readonly closeOnClickModal: boolean;
|
|
25
|
+
readonly closeOnPressEscape: boolean;
|
|
26
|
+
readonly lockScroll: boolean;
|
|
27
|
+
readonly modal: boolean;
|
|
28
|
+
readonly openDelay: number;
|
|
29
|
+
readonly closeDelay: number;
|
|
30
|
+
readonly headerAriaLevel: string;
|
|
31
|
+
readonly appendToBody: boolean;
|
|
32
|
+
readonly destroyOnClose: boolean;
|
|
33
|
+
readonly modalPenetrable: boolean;
|
|
34
|
+
readonly trapFocus: boolean;
|
|
35
|
+
}> & Omit<{
|
|
36
|
+
readonly title: string;
|
|
37
|
+
readonly modelValue: boolean;
|
|
38
|
+
readonly appendToBody: boolean;
|
|
39
|
+
readonly destroyOnClose: boolean;
|
|
40
|
+
readonly appendTo: string | HTMLElement;
|
|
41
|
+
readonly closeOnClickModal: boolean;
|
|
42
|
+
readonly closeOnPressEscape: boolean;
|
|
43
|
+
readonly lockScroll: boolean;
|
|
44
|
+
readonly modal: boolean;
|
|
45
|
+
readonly modalPenetrable: boolean;
|
|
46
|
+
readonly openDelay: number;
|
|
47
|
+
readonly closeDelay: number;
|
|
48
|
+
readonly trapFocus: boolean;
|
|
49
|
+
readonly headerAriaLevel: string;
|
|
50
|
+
readonly center: boolean;
|
|
51
|
+
readonly fullscreen: boolean;
|
|
52
|
+
readonly showClose: boolean;
|
|
53
|
+
readonly ariaLevel: string;
|
|
54
|
+
readonly overflow?: boolean | undefined;
|
|
55
|
+
readonly width?: (string | number) | undefined;
|
|
56
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
57
|
+
readonly top?: string | undefined;
|
|
58
|
+
readonly draggable?: boolean | undefined;
|
|
59
|
+
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
60
|
+
readonly modalClass?: string | undefined;
|
|
61
|
+
readonly headerClass?: string | undefined;
|
|
62
|
+
readonly bodyClass?: string | undefined;
|
|
63
|
+
readonly footerClass?: string | undefined;
|
|
64
|
+
readonly zIndex?: number | undefined;
|
|
65
|
+
readonly alignCenter?: boolean | undefined;
|
|
66
|
+
readonly closeIcon?: (string | import('vue').Component) | undefined;
|
|
67
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
68
|
+
onOpen?: (() => any) | undefined | undefined;
|
|
69
|
+
onClose?: (() => any) | undefined | undefined;
|
|
70
|
+
onOpened?: (() => any) | undefined | undefined;
|
|
71
|
+
onClosed?: (() => any) | undefined | undefined;
|
|
72
|
+
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
73
|
+
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
74
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
75
|
+
$attrs: {
|
|
76
|
+
[x: string]: unknown;
|
|
77
|
+
};
|
|
78
|
+
$refs: {
|
|
79
|
+
[x: string]: unknown;
|
|
80
|
+
};
|
|
81
|
+
$slots: Readonly<{
|
|
82
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
83
|
+
}>;
|
|
84
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
85
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
86
|
+
$host: Element | null;
|
|
87
|
+
$emit: ((event: "close") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "closed") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void);
|
|
88
|
+
$el: any;
|
|
89
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
90
|
+
readonly appendToBody: BooleanConstructor;
|
|
91
|
+
readonly appendTo: {
|
|
92
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
93
|
+
readonly required: false;
|
|
94
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
95
|
+
__epPropKey: true;
|
|
96
|
+
} & {
|
|
97
|
+
readonly default: "body";
|
|
98
|
+
};
|
|
99
|
+
readonly beforeClose: {
|
|
100
|
+
readonly type: import('vue').PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
101
|
+
readonly required: false;
|
|
102
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
103
|
+
__epPropKey: true;
|
|
104
|
+
};
|
|
105
|
+
readonly destroyOnClose: BooleanConstructor;
|
|
106
|
+
readonly closeOnClickModal: {
|
|
107
|
+
readonly type: import('vue').PropType<boolean>;
|
|
108
|
+
readonly required: false;
|
|
109
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
110
|
+
__epPropKey: true;
|
|
111
|
+
} & {
|
|
112
|
+
readonly default: true;
|
|
113
|
+
};
|
|
114
|
+
readonly closeOnPressEscape: {
|
|
115
|
+
readonly type: import('vue').PropType<boolean>;
|
|
116
|
+
readonly required: false;
|
|
117
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
118
|
+
__epPropKey: true;
|
|
119
|
+
} & {
|
|
120
|
+
readonly default: true;
|
|
121
|
+
};
|
|
122
|
+
readonly lockScroll: {
|
|
123
|
+
readonly type: import('vue').PropType<boolean>;
|
|
124
|
+
readonly required: false;
|
|
125
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
126
|
+
__epPropKey: true;
|
|
127
|
+
} & {
|
|
128
|
+
readonly default: true;
|
|
129
|
+
};
|
|
130
|
+
readonly modal: {
|
|
131
|
+
readonly type: import('vue').PropType<boolean>;
|
|
132
|
+
readonly required: false;
|
|
133
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
134
|
+
__epPropKey: true;
|
|
135
|
+
} & {
|
|
136
|
+
readonly default: true;
|
|
137
|
+
};
|
|
138
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
139
|
+
readonly openDelay: {
|
|
140
|
+
readonly type: import('vue').PropType<number>;
|
|
141
|
+
readonly required: false;
|
|
142
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
143
|
+
__epPropKey: true;
|
|
144
|
+
} & {
|
|
145
|
+
readonly default: 0;
|
|
146
|
+
};
|
|
147
|
+
readonly closeDelay: {
|
|
148
|
+
readonly type: import('vue').PropType<number>;
|
|
149
|
+
readonly required: false;
|
|
150
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
151
|
+
__epPropKey: true;
|
|
152
|
+
} & {
|
|
153
|
+
readonly default: 0;
|
|
154
|
+
};
|
|
155
|
+
readonly top: {
|
|
156
|
+
readonly type: import('vue').PropType<string>;
|
|
157
|
+
readonly required: false;
|
|
158
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
159
|
+
__epPropKey: true;
|
|
160
|
+
};
|
|
161
|
+
readonly modelValue: BooleanConstructor;
|
|
162
|
+
readonly modalClass: StringConstructor;
|
|
163
|
+
readonly headerClass: StringConstructor;
|
|
164
|
+
readonly bodyClass: StringConstructor;
|
|
165
|
+
readonly footerClass: StringConstructor;
|
|
166
|
+
readonly width: {
|
|
167
|
+
readonly type: import('vue').PropType<string | number>;
|
|
168
|
+
readonly required: false;
|
|
169
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
170
|
+
__epPropKey: true;
|
|
171
|
+
};
|
|
172
|
+
readonly zIndex: {
|
|
173
|
+
readonly type: import('vue').PropType<number>;
|
|
174
|
+
readonly required: false;
|
|
175
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
176
|
+
__epPropKey: true;
|
|
177
|
+
};
|
|
178
|
+
readonly trapFocus: BooleanConstructor;
|
|
179
|
+
readonly headerAriaLevel: {
|
|
180
|
+
readonly type: import('vue').PropType<string>;
|
|
181
|
+
readonly required: false;
|
|
182
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
183
|
+
__epPropKey: true;
|
|
184
|
+
} & {
|
|
185
|
+
readonly default: "2";
|
|
186
|
+
};
|
|
187
|
+
readonly transition: {
|
|
188
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
189
|
+
readonly required: false;
|
|
190
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
191
|
+
__epPropKey: true;
|
|
192
|
+
} & {
|
|
193
|
+
readonly default: undefined;
|
|
194
|
+
};
|
|
195
|
+
readonly center: BooleanConstructor;
|
|
196
|
+
readonly alignCenter: {
|
|
197
|
+
readonly type: import('vue').PropType<boolean>;
|
|
198
|
+
readonly required: false;
|
|
199
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
200
|
+
__epPropKey: true;
|
|
201
|
+
} & {
|
|
202
|
+
readonly default: undefined;
|
|
203
|
+
};
|
|
204
|
+
readonly closeIcon: {
|
|
205
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
206
|
+
readonly required: false;
|
|
207
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
208
|
+
__epPropKey: true;
|
|
209
|
+
};
|
|
210
|
+
readonly draggable: {
|
|
211
|
+
readonly type: import('vue').PropType<boolean>;
|
|
212
|
+
readonly required: false;
|
|
213
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
214
|
+
__epPropKey: true;
|
|
215
|
+
} & {
|
|
216
|
+
readonly default: undefined;
|
|
217
|
+
};
|
|
218
|
+
readonly overflow: {
|
|
219
|
+
readonly type: import('vue').PropType<boolean>;
|
|
220
|
+
readonly required: false;
|
|
221
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
222
|
+
__epPropKey: true;
|
|
223
|
+
} & {
|
|
224
|
+
readonly default: undefined;
|
|
225
|
+
};
|
|
226
|
+
readonly fullscreen: BooleanConstructor;
|
|
227
|
+
readonly showClose: {
|
|
228
|
+
readonly type: import('vue').PropType<boolean>;
|
|
229
|
+
readonly required: false;
|
|
230
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
231
|
+
__epPropKey: true;
|
|
232
|
+
} & {
|
|
233
|
+
readonly default: true;
|
|
234
|
+
};
|
|
235
|
+
readonly title: {
|
|
236
|
+
readonly type: import('vue').PropType<string>;
|
|
237
|
+
readonly required: false;
|
|
238
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
239
|
+
__epPropKey: true;
|
|
240
|
+
} & {
|
|
241
|
+
readonly default: "";
|
|
242
|
+
};
|
|
243
|
+
readonly ariaLevel: {
|
|
244
|
+
readonly type: import('vue').PropType<string>;
|
|
245
|
+
readonly required: false;
|
|
246
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
247
|
+
__epPropKey: true;
|
|
248
|
+
} & {
|
|
249
|
+
readonly default: "2";
|
|
250
|
+
};
|
|
251
|
+
}>> & {
|
|
252
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
253
|
+
onOpen?: (() => any) | undefined;
|
|
254
|
+
onClose?: (() => any) | undefined;
|
|
255
|
+
onOpened?: (() => any) | undefined;
|
|
256
|
+
onClosed?: (() => any) | undefined;
|
|
257
|
+
onOpenAutoFocus?: (() => any) | undefined;
|
|
258
|
+
onCloseAutoFocus?: (() => any) | undefined;
|
|
259
|
+
}, {
|
|
260
|
+
visible: import('vue').Ref<boolean>;
|
|
261
|
+
dialogContentRef: import('vue').Ref<any>;
|
|
262
|
+
resetPosition: () => void;
|
|
263
|
+
handleClose: () => void;
|
|
264
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
265
|
+
open: () => void;
|
|
266
|
+
"update:modelValue": (value: boolean) => void;
|
|
267
|
+
close: () => void;
|
|
268
|
+
opened: () => void;
|
|
269
|
+
closed: () => void;
|
|
270
|
+
openAutoFocus: () => void;
|
|
271
|
+
closeAutoFocus: () => void;
|
|
272
|
+
}, string, {
|
|
273
|
+
readonly title: string;
|
|
274
|
+
readonly center: boolean;
|
|
275
|
+
readonly overflow: boolean;
|
|
276
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
277
|
+
readonly modelValue: boolean;
|
|
278
|
+
readonly ariaLevel: string;
|
|
279
|
+
readonly appendTo: string | HTMLElement;
|
|
280
|
+
readonly alignCenter: boolean;
|
|
281
|
+
readonly draggable: boolean;
|
|
282
|
+
readonly showClose: boolean;
|
|
283
|
+
readonly fullscreen: boolean;
|
|
284
|
+
readonly closeOnClickModal: boolean;
|
|
285
|
+
readonly closeOnPressEscape: boolean;
|
|
286
|
+
readonly lockScroll: boolean;
|
|
287
|
+
readonly modal: boolean;
|
|
288
|
+
readonly openDelay: number;
|
|
289
|
+
readonly closeDelay: number;
|
|
290
|
+
readonly headerAriaLevel: string;
|
|
291
|
+
readonly appendToBody: boolean;
|
|
292
|
+
readonly destroyOnClose: boolean;
|
|
293
|
+
readonly modalPenetrable: boolean;
|
|
294
|
+
readonly trapFocus: boolean;
|
|
295
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
296
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
297
|
+
created?: (() => void) | (() => void)[];
|
|
298
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
299
|
+
mounted?: (() => void) | (() => void)[];
|
|
300
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
301
|
+
updated?: (() => void) | (() => void)[];
|
|
302
|
+
activated?: (() => void) | (() => void)[];
|
|
303
|
+
deactivated?: (() => void) | (() => void)[];
|
|
304
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
305
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
306
|
+
destroyed?: (() => void) | (() => void)[];
|
|
307
|
+
unmounted?: (() => void) | (() => void)[];
|
|
308
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
309
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
310
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
311
|
+
};
|
|
312
|
+
$forceUpdate: () => void;
|
|
313
|
+
$nextTick: typeof import('vue').nextTick;
|
|
314
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
315
|
+
} & Readonly<{
|
|
316
|
+
readonly title: string;
|
|
317
|
+
readonly center: boolean;
|
|
318
|
+
readonly overflow: boolean;
|
|
319
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
320
|
+
readonly modelValue: boolean;
|
|
321
|
+
readonly ariaLevel: string;
|
|
322
|
+
readonly appendTo: string | HTMLElement;
|
|
323
|
+
readonly alignCenter: boolean;
|
|
324
|
+
readonly draggable: boolean;
|
|
325
|
+
readonly showClose: boolean;
|
|
326
|
+
readonly fullscreen: boolean;
|
|
327
|
+
readonly closeOnClickModal: boolean;
|
|
328
|
+
readonly closeOnPressEscape: boolean;
|
|
329
|
+
readonly lockScroll: boolean;
|
|
330
|
+
readonly modal: boolean;
|
|
331
|
+
readonly openDelay: number;
|
|
332
|
+
readonly closeDelay: number;
|
|
333
|
+
readonly headerAriaLevel: string;
|
|
334
|
+
readonly appendToBody: boolean;
|
|
335
|
+
readonly destroyOnClose: boolean;
|
|
336
|
+
readonly modalPenetrable: boolean;
|
|
337
|
+
readonly trapFocus: boolean;
|
|
338
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
339
|
+
readonly appendToBody: BooleanConstructor;
|
|
340
|
+
readonly appendTo: {
|
|
341
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
342
|
+
readonly required: false;
|
|
343
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
344
|
+
__epPropKey: true;
|
|
345
|
+
} & {
|
|
346
|
+
readonly default: "body";
|
|
347
|
+
};
|
|
348
|
+
readonly beforeClose: {
|
|
349
|
+
readonly type: import('vue').PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
350
|
+
readonly required: false;
|
|
351
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
352
|
+
__epPropKey: true;
|
|
353
|
+
};
|
|
354
|
+
readonly destroyOnClose: BooleanConstructor;
|
|
355
|
+
readonly closeOnClickModal: {
|
|
356
|
+
readonly type: import('vue').PropType<boolean>;
|
|
357
|
+
readonly required: false;
|
|
358
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
359
|
+
__epPropKey: true;
|
|
360
|
+
} & {
|
|
361
|
+
readonly default: true;
|
|
362
|
+
};
|
|
363
|
+
readonly closeOnPressEscape: {
|
|
364
|
+
readonly type: import('vue').PropType<boolean>;
|
|
365
|
+
readonly required: false;
|
|
366
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
367
|
+
__epPropKey: true;
|
|
368
|
+
} & {
|
|
369
|
+
readonly default: true;
|
|
370
|
+
};
|
|
371
|
+
readonly lockScroll: {
|
|
372
|
+
readonly type: import('vue').PropType<boolean>;
|
|
373
|
+
readonly required: false;
|
|
374
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
375
|
+
__epPropKey: true;
|
|
376
|
+
} & {
|
|
377
|
+
readonly default: true;
|
|
378
|
+
};
|
|
379
|
+
readonly modal: {
|
|
380
|
+
readonly type: import('vue').PropType<boolean>;
|
|
381
|
+
readonly required: false;
|
|
382
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
383
|
+
__epPropKey: true;
|
|
384
|
+
} & {
|
|
385
|
+
readonly default: true;
|
|
386
|
+
};
|
|
387
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
388
|
+
readonly openDelay: {
|
|
389
|
+
readonly type: import('vue').PropType<number>;
|
|
390
|
+
readonly required: false;
|
|
391
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
392
|
+
__epPropKey: true;
|
|
393
|
+
} & {
|
|
394
|
+
readonly default: 0;
|
|
395
|
+
};
|
|
396
|
+
readonly closeDelay: {
|
|
397
|
+
readonly type: import('vue').PropType<number>;
|
|
398
|
+
readonly required: false;
|
|
399
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
400
|
+
__epPropKey: true;
|
|
401
|
+
} & {
|
|
402
|
+
readonly default: 0;
|
|
403
|
+
};
|
|
404
|
+
readonly top: {
|
|
405
|
+
readonly type: import('vue').PropType<string>;
|
|
406
|
+
readonly required: false;
|
|
407
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
408
|
+
__epPropKey: true;
|
|
409
|
+
};
|
|
410
|
+
readonly modelValue: BooleanConstructor;
|
|
411
|
+
readonly modalClass: StringConstructor;
|
|
412
|
+
readonly headerClass: StringConstructor;
|
|
413
|
+
readonly bodyClass: StringConstructor;
|
|
414
|
+
readonly footerClass: StringConstructor;
|
|
415
|
+
readonly width: {
|
|
416
|
+
readonly type: import('vue').PropType<string | number>;
|
|
417
|
+
readonly required: false;
|
|
418
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
419
|
+
__epPropKey: true;
|
|
420
|
+
};
|
|
421
|
+
readonly zIndex: {
|
|
422
|
+
readonly type: import('vue').PropType<number>;
|
|
423
|
+
readonly required: false;
|
|
424
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
425
|
+
__epPropKey: true;
|
|
426
|
+
};
|
|
427
|
+
readonly trapFocus: BooleanConstructor;
|
|
428
|
+
readonly headerAriaLevel: {
|
|
429
|
+
readonly type: import('vue').PropType<string>;
|
|
430
|
+
readonly required: false;
|
|
431
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
432
|
+
__epPropKey: true;
|
|
433
|
+
} & {
|
|
434
|
+
readonly default: "2";
|
|
435
|
+
};
|
|
436
|
+
readonly transition: {
|
|
437
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
438
|
+
readonly required: false;
|
|
439
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
440
|
+
__epPropKey: true;
|
|
441
|
+
} & {
|
|
442
|
+
readonly default: undefined;
|
|
443
|
+
};
|
|
444
|
+
readonly center: BooleanConstructor;
|
|
445
|
+
readonly alignCenter: {
|
|
446
|
+
readonly type: import('vue').PropType<boolean>;
|
|
447
|
+
readonly required: false;
|
|
448
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
449
|
+
__epPropKey: true;
|
|
450
|
+
} & {
|
|
451
|
+
readonly default: undefined;
|
|
452
|
+
};
|
|
453
|
+
readonly closeIcon: {
|
|
454
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
455
|
+
readonly required: false;
|
|
456
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
457
|
+
__epPropKey: true;
|
|
458
|
+
};
|
|
459
|
+
readonly draggable: {
|
|
460
|
+
readonly type: import('vue').PropType<boolean>;
|
|
461
|
+
readonly required: false;
|
|
462
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
463
|
+
__epPropKey: true;
|
|
464
|
+
} & {
|
|
465
|
+
readonly default: undefined;
|
|
466
|
+
};
|
|
467
|
+
readonly overflow: {
|
|
468
|
+
readonly type: import('vue').PropType<boolean>;
|
|
469
|
+
readonly required: false;
|
|
470
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
471
|
+
__epPropKey: true;
|
|
472
|
+
} & {
|
|
473
|
+
readonly default: undefined;
|
|
474
|
+
};
|
|
475
|
+
readonly fullscreen: BooleanConstructor;
|
|
476
|
+
readonly showClose: {
|
|
477
|
+
readonly type: import('vue').PropType<boolean>;
|
|
478
|
+
readonly required: false;
|
|
479
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
480
|
+
__epPropKey: true;
|
|
481
|
+
} & {
|
|
482
|
+
readonly default: true;
|
|
483
|
+
};
|
|
484
|
+
readonly title: {
|
|
485
|
+
readonly type: import('vue').PropType<string>;
|
|
486
|
+
readonly required: false;
|
|
487
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
488
|
+
__epPropKey: true;
|
|
489
|
+
} & {
|
|
490
|
+
readonly default: "";
|
|
491
|
+
};
|
|
492
|
+
readonly ariaLevel: {
|
|
493
|
+
readonly type: import('vue').PropType<string>;
|
|
494
|
+
readonly required: false;
|
|
495
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
496
|
+
__epPropKey: true;
|
|
497
|
+
} & {
|
|
498
|
+
readonly default: "2";
|
|
499
|
+
};
|
|
500
|
+
}>> & {
|
|
501
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
502
|
+
onOpen?: (() => any) | undefined;
|
|
503
|
+
onClose?: (() => any) | undefined;
|
|
504
|
+
onOpened?: (() => any) | undefined;
|
|
505
|
+
onClosed?: (() => any) | undefined;
|
|
506
|
+
onOpenAutoFocus?: (() => any) | undefined;
|
|
507
|
+
onCloseAutoFocus?: (() => any) | undefined;
|
|
508
|
+
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
509
|
+
visible: import('vue').Ref<boolean>;
|
|
510
|
+
dialogContentRef: import('vue').Ref<any>;
|
|
511
|
+
resetPosition: () => void;
|
|
512
|
+
handleClose: () => void;
|
|
513
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
514
|
+
$slots: {
|
|
515
|
+
header?(_: {
|
|
516
|
+
close: () => void;
|
|
517
|
+
titleId: string;
|
|
518
|
+
titleClass: string;
|
|
519
|
+
}): any;
|
|
520
|
+
title?(_: {}): any;
|
|
521
|
+
default?(_: {}): any;
|
|
522
|
+
footer?(_: {}): any;
|
|
523
|
+
};
|
|
524
|
+
}) | null;
|
|
10
525
|
};
|
|
11
526
|
rootEl: any;
|
|
12
527
|
};
|
|
@@ -33,7 +548,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
33
548
|
default: boolean;
|
|
34
549
|
};
|
|
35
550
|
}>, {
|
|
36
|
-
component: import('vue').
|
|
551
|
+
component: Readonly<import('vue').ShallowRef<({
|
|
37
552
|
$: import('vue').ComponentInternalInstance;
|
|
38
553
|
$data: {};
|
|
39
554
|
$props: Partial<{
|
|
@@ -63,8 +578,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
63
578
|
readonly title: string;
|
|
64
579
|
readonly modelValue: boolean;
|
|
65
580
|
readonly appendToBody: boolean;
|
|
66
|
-
readonly appendTo: string | HTMLElement;
|
|
67
581
|
readonly destroyOnClose: boolean;
|
|
582
|
+
readonly appendTo: string | HTMLElement;
|
|
68
583
|
readonly closeOnClickModal: boolean;
|
|
69
584
|
readonly closeOnPressEscape: boolean;
|
|
70
585
|
readonly lockScroll: boolean;
|
|
@@ -82,6 +597,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
82
597
|
readonly width?: (string | number) | undefined;
|
|
83
598
|
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
84
599
|
readonly top?: string | undefined;
|
|
600
|
+
readonly draggable?: boolean | undefined;
|
|
85
601
|
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
86
602
|
readonly modalClass?: string | undefined;
|
|
87
603
|
readonly headerClass?: string | undefined;
|
|
@@ -90,7 +606,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
90
606
|
readonly zIndex?: number | undefined;
|
|
91
607
|
readonly alignCenter?: boolean | undefined;
|
|
92
608
|
readonly closeIcon?: (string | import('vue').Component) | undefined;
|
|
93
|
-
readonly draggable?: boolean | undefined;
|
|
94
609
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
95
610
|
onOpen?: (() => any) | undefined | undefined;
|
|
96
611
|
onClose?: (() => any) | undefined | undefined;
|
|
@@ -98,7 +613,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
98
613
|
onClosed?: (() => any) | undefined | undefined;
|
|
99
614
|
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
100
615
|
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
101
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "
|
|
616
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
102
617
|
$attrs: {
|
|
103
618
|
[x: string]: unknown;
|
|
104
619
|
};
|
|
@@ -532,7 +1047,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
532
1047
|
onClosed?: (() => any) | undefined;
|
|
533
1048
|
onOpenAutoFocus?: (() => any) | undefined;
|
|
534
1049
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
535
|
-
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "
|
|
1050
|
+
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
536
1051
|
visible: import('vue').Ref<boolean>;
|
|
537
1052
|
dialogContentRef: import('vue').Ref<any>;
|
|
538
1053
|
resetPosition: () => void;
|
|
@@ -548,7 +1063,36 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
548
1063
|
default?(_: {}): any;
|
|
549
1064
|
footer?(_: {}): any;
|
|
550
1065
|
};
|
|
551
|
-
}) | null
|
|
1066
|
+
}) | null>>;
|
|
1067
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1068
|
+
appendToBody: {
|
|
1069
|
+
type: BooleanConstructor;
|
|
1070
|
+
default: boolean;
|
|
1071
|
+
};
|
|
1072
|
+
draggable: {
|
|
1073
|
+
type: BooleanConstructor;
|
|
1074
|
+
default: boolean;
|
|
1075
|
+
};
|
|
1076
|
+
destroyOnClose: {
|
|
1077
|
+
type: BooleanConstructor;
|
|
1078
|
+
default: boolean;
|
|
1079
|
+
};
|
|
1080
|
+
cssStyle: {
|
|
1081
|
+
type: StringConstructor;
|
|
1082
|
+
default: string;
|
|
1083
|
+
};
|
|
1084
|
+
overflow: {
|
|
1085
|
+
type: BooleanConstructor;
|
|
1086
|
+
default: boolean;
|
|
1087
|
+
};
|
|
1088
|
+
}>> & Readonly<{}>, {
|
|
1089
|
+
overflow: boolean;
|
|
1090
|
+
cssStyle: string;
|
|
1091
|
+
appendToBody: boolean;
|
|
1092
|
+
draggable: boolean;
|
|
1093
|
+
destroyOnClose: boolean;
|
|
1094
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
1095
|
+
componentRef: ({
|
|
552
1096
|
$: import('vue').ComponentInternalInstance;
|
|
553
1097
|
$data: {};
|
|
554
1098
|
$props: Partial<{
|
|
@@ -578,8 +1122,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
578
1122
|
readonly title: string;
|
|
579
1123
|
readonly modelValue: boolean;
|
|
580
1124
|
readonly appendToBody: boolean;
|
|
581
|
-
readonly appendTo: string | HTMLElement;
|
|
582
1125
|
readonly destroyOnClose: boolean;
|
|
1126
|
+
readonly appendTo: string | HTMLElement;
|
|
583
1127
|
readonly closeOnClickModal: boolean;
|
|
584
1128
|
readonly closeOnPressEscape: boolean;
|
|
585
1129
|
readonly lockScroll: boolean;
|
|
@@ -597,6 +1141,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
597
1141
|
readonly width?: (string | number) | undefined;
|
|
598
1142
|
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
599
1143
|
readonly top?: string | undefined;
|
|
1144
|
+
readonly draggable?: boolean | undefined;
|
|
600
1145
|
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
601
1146
|
readonly modalClass?: string | undefined;
|
|
602
1147
|
readonly headerClass?: string | undefined;
|
|
@@ -605,7 +1150,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
605
1150
|
readonly zIndex?: number | undefined;
|
|
606
1151
|
readonly alignCenter?: boolean | undefined;
|
|
607
1152
|
readonly closeIcon?: (string | import('vue').Component) | undefined;
|
|
608
|
-
readonly draggable?: boolean | undefined;
|
|
609
1153
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
610
1154
|
onOpen?: (() => any) | undefined | undefined;
|
|
611
1155
|
onClose?: (() => any) | undefined | undefined;
|
|
@@ -613,7 +1157,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
613
1157
|
onClosed?: (() => any) | undefined | undefined;
|
|
614
1158
|
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
615
1159
|
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
616
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "
|
|
1160
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
617
1161
|
$attrs: {
|
|
618
1162
|
[x: string]: unknown;
|
|
619
1163
|
};
|
|
@@ -1047,7 +1591,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1047
1591
|
onClosed?: (() => any) | undefined;
|
|
1048
1592
|
onOpenAutoFocus?: (() => any) | undefined;
|
|
1049
1593
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
1050
|
-
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "
|
|
1594
|
+
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
1051
1595
|
visible: import('vue').Ref<boolean>;
|
|
1052
1596
|
dialogContentRef: import('vue').Ref<any>;
|
|
1053
1597
|
resetPosition: () => void;
|
|
@@ -1063,36 +1607,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1063
1607
|
default?(_: {}): any;
|
|
1064
1608
|
footer?(_: {}): any;
|
|
1065
1609
|
};
|
|
1066
|
-
}) | null
|
|
1067
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1068
|
-
appendToBody: {
|
|
1069
|
-
type: BooleanConstructor;
|
|
1070
|
-
default: boolean;
|
|
1071
|
-
};
|
|
1072
|
-
draggable: {
|
|
1073
|
-
type: BooleanConstructor;
|
|
1074
|
-
default: boolean;
|
|
1075
|
-
};
|
|
1076
|
-
destroyOnClose: {
|
|
1077
|
-
type: BooleanConstructor;
|
|
1078
|
-
default: boolean;
|
|
1079
|
-
};
|
|
1080
|
-
cssStyle: {
|
|
1081
|
-
type: StringConstructor;
|
|
1082
|
-
default: string;
|
|
1083
|
-
};
|
|
1084
|
-
overflow: {
|
|
1085
|
-
type: BooleanConstructor;
|
|
1086
|
-
default: boolean;
|
|
1087
|
-
};
|
|
1088
|
-
}>> & Readonly<{}>, {
|
|
1089
|
-
overflow: boolean;
|
|
1090
|
-
cssStyle: string;
|
|
1091
|
-
appendToBody: boolean;
|
|
1092
|
-
destroyOnClose: boolean;
|
|
1093
|
-
draggable: boolean;
|
|
1094
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
1095
|
-
componentRef: unknown;
|
|
1610
|
+
}) | null;
|
|
1096
1611
|
}, any>;
|
|
1097
1612
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1098
1613
|
export default _default;
|