ra-element 0.1.37 → 0.1.39
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-dialog.md +1 -0
- package/lib/components/ra-button/index.vue.d.ts +40 -12
- package/lib/components/ra-checkbox-group/index.vue.d.ts +134 -4
- package/lib/components/ra-date-picker/index.vue.d.ts +216 -44
- package/lib/components/ra-dialog/index.vue.d.ts +173 -28
- package/lib/components/ra-dialog-select/index.vue.d.ts +3 -3
- package/lib/components/ra-input/index.vue.d.ts +50 -24
- package/lib/components/ra-radio-group/index.vue.d.ts +70 -4
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +19519 -18603
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +13 -39
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +3 -3
- package/lib/components/ra-select/index.vue.d.ts +0 -1692
|
@@ -28,6 +28,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
28
28
|
type: StringConstructor;
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
|
+
overflow: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
31
35
|
}>, {
|
|
32
36
|
component: import('vue').Ref<({
|
|
33
37
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -36,12 +40,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
36
40
|
readonly title: string;
|
|
37
41
|
readonly center: boolean;
|
|
38
42
|
readonly overflow: boolean;
|
|
43
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
39
44
|
readonly modelValue: boolean;
|
|
40
45
|
readonly ariaLevel: string;
|
|
41
46
|
readonly appendTo: string | HTMLElement;
|
|
42
|
-
readonly showClose: boolean;
|
|
43
47
|
readonly alignCenter: boolean;
|
|
44
48
|
readonly draggable: boolean;
|
|
49
|
+
readonly showClose: boolean;
|
|
45
50
|
readonly fullscreen: boolean;
|
|
46
51
|
readonly closeOnClickModal: boolean;
|
|
47
52
|
readonly closeOnPressEscape: boolean;
|
|
@@ -52,10 +57,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
52
57
|
readonly headerAriaLevel: string;
|
|
53
58
|
readonly appendToBody: boolean;
|
|
54
59
|
readonly destroyOnClose: boolean;
|
|
60
|
+
readonly modalPenetrable: boolean;
|
|
55
61
|
readonly trapFocus: boolean;
|
|
56
62
|
}> & Omit<{
|
|
57
63
|
readonly title: string;
|
|
58
|
-
readonly overflow: boolean;
|
|
59
64
|
readonly modelValue: boolean;
|
|
60
65
|
readonly appendToBody: boolean;
|
|
61
66
|
readonly appendTo: string | HTMLElement;
|
|
@@ -64,17 +69,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
64
69
|
readonly closeOnPressEscape: boolean;
|
|
65
70
|
readonly lockScroll: boolean;
|
|
66
71
|
readonly modal: boolean;
|
|
72
|
+
readonly modalPenetrable: boolean;
|
|
67
73
|
readonly openDelay: number;
|
|
68
74
|
readonly closeDelay: number;
|
|
69
75
|
readonly trapFocus: boolean;
|
|
70
76
|
readonly headerAriaLevel: string;
|
|
71
77
|
readonly center: boolean;
|
|
72
|
-
readonly alignCenter: boolean;
|
|
73
|
-
readonly draggable: boolean;
|
|
74
78
|
readonly fullscreen: boolean;
|
|
75
79
|
readonly showClose: boolean;
|
|
76
80
|
readonly ariaLevel: string;
|
|
81
|
+
readonly overflow?: boolean | undefined;
|
|
77
82
|
readonly width?: (string | number) | undefined;
|
|
83
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
78
84
|
readonly top?: string | undefined;
|
|
79
85
|
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
80
86
|
readonly modalClass?: string | undefined;
|
|
@@ -82,7 +88,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
82
88
|
readonly bodyClass?: string | undefined;
|
|
83
89
|
readonly footerClass?: string | undefined;
|
|
84
90
|
readonly zIndex?: number | undefined;
|
|
91
|
+
readonly alignCenter?: boolean | undefined;
|
|
85
92
|
readonly closeIcon?: (string | import('vue').Component) | undefined;
|
|
93
|
+
readonly draggable?: boolean | undefined;
|
|
86
94
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
87
95
|
onOpen?: (() => any) | undefined | undefined;
|
|
88
96
|
onClose?: (() => any) | undefined | undefined;
|
|
@@ -90,7 +98,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
90
98
|
onClosed?: (() => any) | undefined | undefined;
|
|
91
99
|
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
92
100
|
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
93
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
101
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
94
102
|
$attrs: {
|
|
95
103
|
[x: string]: unknown;
|
|
96
104
|
};
|
|
@@ -154,6 +162,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
154
162
|
} & {
|
|
155
163
|
readonly default: true;
|
|
156
164
|
};
|
|
165
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
157
166
|
readonly openDelay: {
|
|
158
167
|
readonly type: import('vue').PropType<number>;
|
|
159
168
|
readonly required: false;
|
|
@@ -202,16 +211,45 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
202
211
|
} & {
|
|
203
212
|
readonly default: "2";
|
|
204
213
|
};
|
|
214
|
+
readonly transition: {
|
|
215
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
216
|
+
readonly required: false;
|
|
217
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
218
|
+
__epPropKey: true;
|
|
219
|
+
} & {
|
|
220
|
+
readonly default: undefined;
|
|
221
|
+
};
|
|
205
222
|
readonly center: BooleanConstructor;
|
|
206
|
-
readonly alignCenter:
|
|
223
|
+
readonly alignCenter: {
|
|
224
|
+
readonly type: import('vue').PropType<boolean>;
|
|
225
|
+
readonly required: false;
|
|
226
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
227
|
+
__epPropKey: true;
|
|
228
|
+
} & {
|
|
229
|
+
readonly default: undefined;
|
|
230
|
+
};
|
|
207
231
|
readonly closeIcon: {
|
|
208
232
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
209
233
|
readonly required: false;
|
|
210
234
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
211
235
|
__epPropKey: true;
|
|
212
236
|
};
|
|
213
|
-
readonly draggable:
|
|
214
|
-
|
|
237
|
+
readonly draggable: {
|
|
238
|
+
readonly type: import('vue').PropType<boolean>;
|
|
239
|
+
readonly required: false;
|
|
240
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
241
|
+
__epPropKey: true;
|
|
242
|
+
} & {
|
|
243
|
+
readonly default: undefined;
|
|
244
|
+
};
|
|
245
|
+
readonly overflow: {
|
|
246
|
+
readonly type: import('vue').PropType<boolean>;
|
|
247
|
+
readonly required: false;
|
|
248
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
249
|
+
__epPropKey: true;
|
|
250
|
+
} & {
|
|
251
|
+
readonly default: undefined;
|
|
252
|
+
};
|
|
215
253
|
readonly fullscreen: BooleanConstructor;
|
|
216
254
|
readonly showClose: {
|
|
217
255
|
readonly type: import('vue').PropType<boolean>;
|
|
@@ -262,12 +300,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
262
300
|
readonly title: string;
|
|
263
301
|
readonly center: boolean;
|
|
264
302
|
readonly overflow: boolean;
|
|
303
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
265
304
|
readonly modelValue: boolean;
|
|
266
305
|
readonly ariaLevel: string;
|
|
267
306
|
readonly appendTo: string | HTMLElement;
|
|
268
|
-
readonly showClose: boolean;
|
|
269
307
|
readonly alignCenter: boolean;
|
|
270
308
|
readonly draggable: boolean;
|
|
309
|
+
readonly showClose: boolean;
|
|
271
310
|
readonly fullscreen: boolean;
|
|
272
311
|
readonly closeOnClickModal: boolean;
|
|
273
312
|
readonly closeOnPressEscape: boolean;
|
|
@@ -278,6 +317,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
278
317
|
readonly headerAriaLevel: string;
|
|
279
318
|
readonly appendToBody: boolean;
|
|
280
319
|
readonly destroyOnClose: boolean;
|
|
320
|
+
readonly modalPenetrable: boolean;
|
|
281
321
|
readonly trapFocus: boolean;
|
|
282
322
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
283
323
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -303,12 +343,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
303
343
|
readonly title: string;
|
|
304
344
|
readonly center: boolean;
|
|
305
345
|
readonly overflow: boolean;
|
|
346
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
306
347
|
readonly modelValue: boolean;
|
|
307
348
|
readonly ariaLevel: string;
|
|
308
349
|
readonly appendTo: string | HTMLElement;
|
|
309
|
-
readonly showClose: boolean;
|
|
310
350
|
readonly alignCenter: boolean;
|
|
311
351
|
readonly draggable: boolean;
|
|
352
|
+
readonly showClose: boolean;
|
|
312
353
|
readonly fullscreen: boolean;
|
|
313
354
|
readonly closeOnClickModal: boolean;
|
|
314
355
|
readonly closeOnPressEscape: boolean;
|
|
@@ -319,6 +360,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
319
360
|
readonly headerAriaLevel: string;
|
|
320
361
|
readonly appendToBody: boolean;
|
|
321
362
|
readonly destroyOnClose: boolean;
|
|
363
|
+
readonly modalPenetrable: boolean;
|
|
322
364
|
readonly trapFocus: boolean;
|
|
323
365
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
324
366
|
readonly appendToBody: BooleanConstructor;
|
|
@@ -369,6 +411,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
369
411
|
} & {
|
|
370
412
|
readonly default: true;
|
|
371
413
|
};
|
|
414
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
372
415
|
readonly openDelay: {
|
|
373
416
|
readonly type: import('vue').PropType<number>;
|
|
374
417
|
readonly required: false;
|
|
@@ -417,16 +460,45 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
417
460
|
} & {
|
|
418
461
|
readonly default: "2";
|
|
419
462
|
};
|
|
463
|
+
readonly transition: {
|
|
464
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
465
|
+
readonly required: false;
|
|
466
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
467
|
+
__epPropKey: true;
|
|
468
|
+
} & {
|
|
469
|
+
readonly default: undefined;
|
|
470
|
+
};
|
|
420
471
|
readonly center: BooleanConstructor;
|
|
421
|
-
readonly alignCenter:
|
|
472
|
+
readonly alignCenter: {
|
|
473
|
+
readonly type: import('vue').PropType<boolean>;
|
|
474
|
+
readonly required: false;
|
|
475
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
476
|
+
__epPropKey: true;
|
|
477
|
+
} & {
|
|
478
|
+
readonly default: undefined;
|
|
479
|
+
};
|
|
422
480
|
readonly closeIcon: {
|
|
423
481
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
424
482
|
readonly required: false;
|
|
425
483
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
426
484
|
__epPropKey: true;
|
|
427
485
|
};
|
|
428
|
-
readonly draggable:
|
|
429
|
-
|
|
486
|
+
readonly draggable: {
|
|
487
|
+
readonly type: import('vue').PropType<boolean>;
|
|
488
|
+
readonly required: false;
|
|
489
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
490
|
+
__epPropKey: true;
|
|
491
|
+
} & {
|
|
492
|
+
readonly default: undefined;
|
|
493
|
+
};
|
|
494
|
+
readonly overflow: {
|
|
495
|
+
readonly type: import('vue').PropType<boolean>;
|
|
496
|
+
readonly required: false;
|
|
497
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
498
|
+
__epPropKey: true;
|
|
499
|
+
} & {
|
|
500
|
+
readonly default: undefined;
|
|
501
|
+
};
|
|
430
502
|
readonly fullscreen: BooleanConstructor;
|
|
431
503
|
readonly showClose: {
|
|
432
504
|
readonly type: import('vue').PropType<boolean>;
|
|
@@ -460,7 +532,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
460
532
|
onClosed?: (() => any) | undefined;
|
|
461
533
|
onOpenAutoFocus?: (() => any) | undefined;
|
|
462
534
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
463
|
-
}, "title" | "overflow" | "visible" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
535
|
+
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
464
536
|
visible: import('vue').Ref<boolean>;
|
|
465
537
|
dialogContentRef: import('vue').Ref<any>;
|
|
466
538
|
resetPosition: () => void;
|
|
@@ -483,12 +555,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
483
555
|
readonly title: string;
|
|
484
556
|
readonly center: boolean;
|
|
485
557
|
readonly overflow: boolean;
|
|
558
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
486
559
|
readonly modelValue: boolean;
|
|
487
560
|
readonly ariaLevel: string;
|
|
488
561
|
readonly appendTo: string | HTMLElement;
|
|
489
|
-
readonly showClose: boolean;
|
|
490
562
|
readonly alignCenter: boolean;
|
|
491
563
|
readonly draggable: boolean;
|
|
564
|
+
readonly showClose: boolean;
|
|
492
565
|
readonly fullscreen: boolean;
|
|
493
566
|
readonly closeOnClickModal: boolean;
|
|
494
567
|
readonly closeOnPressEscape: boolean;
|
|
@@ -499,10 +572,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
499
572
|
readonly headerAriaLevel: string;
|
|
500
573
|
readonly appendToBody: boolean;
|
|
501
574
|
readonly destroyOnClose: boolean;
|
|
575
|
+
readonly modalPenetrable: boolean;
|
|
502
576
|
readonly trapFocus: boolean;
|
|
503
577
|
}> & Omit<{
|
|
504
578
|
readonly title: string;
|
|
505
|
-
readonly overflow: boolean;
|
|
506
579
|
readonly modelValue: boolean;
|
|
507
580
|
readonly appendToBody: boolean;
|
|
508
581
|
readonly appendTo: string | HTMLElement;
|
|
@@ -511,17 +584,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
511
584
|
readonly closeOnPressEscape: boolean;
|
|
512
585
|
readonly lockScroll: boolean;
|
|
513
586
|
readonly modal: boolean;
|
|
587
|
+
readonly modalPenetrable: boolean;
|
|
514
588
|
readonly openDelay: number;
|
|
515
589
|
readonly closeDelay: number;
|
|
516
590
|
readonly trapFocus: boolean;
|
|
517
591
|
readonly headerAriaLevel: string;
|
|
518
592
|
readonly center: boolean;
|
|
519
|
-
readonly alignCenter: boolean;
|
|
520
|
-
readonly draggable: boolean;
|
|
521
593
|
readonly fullscreen: boolean;
|
|
522
594
|
readonly showClose: boolean;
|
|
523
595
|
readonly ariaLevel: string;
|
|
596
|
+
readonly overflow?: boolean | undefined;
|
|
524
597
|
readonly width?: (string | number) | undefined;
|
|
598
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
525
599
|
readonly top?: string | undefined;
|
|
526
600
|
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
527
601
|
readonly modalClass?: string | undefined;
|
|
@@ -529,7 +603,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
529
603
|
readonly bodyClass?: string | undefined;
|
|
530
604
|
readonly footerClass?: string | undefined;
|
|
531
605
|
readonly zIndex?: number | undefined;
|
|
606
|
+
readonly alignCenter?: boolean | undefined;
|
|
532
607
|
readonly closeIcon?: (string | import('vue').Component) | undefined;
|
|
608
|
+
readonly draggable?: boolean | undefined;
|
|
533
609
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
534
610
|
onOpen?: (() => any) | undefined | undefined;
|
|
535
611
|
onClose?: (() => any) | undefined | undefined;
|
|
@@ -537,7 +613,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
537
613
|
onClosed?: (() => any) | undefined | undefined;
|
|
538
614
|
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
539
615
|
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
540
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
616
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
541
617
|
$attrs: {
|
|
542
618
|
[x: string]: unknown;
|
|
543
619
|
};
|
|
@@ -601,6 +677,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
601
677
|
} & {
|
|
602
678
|
readonly default: true;
|
|
603
679
|
};
|
|
680
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
604
681
|
readonly openDelay: {
|
|
605
682
|
readonly type: import('vue').PropType<number>;
|
|
606
683
|
readonly required: false;
|
|
@@ -649,16 +726,45 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
649
726
|
} & {
|
|
650
727
|
readonly default: "2";
|
|
651
728
|
};
|
|
729
|
+
readonly transition: {
|
|
730
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
731
|
+
readonly required: false;
|
|
732
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
733
|
+
__epPropKey: true;
|
|
734
|
+
} & {
|
|
735
|
+
readonly default: undefined;
|
|
736
|
+
};
|
|
652
737
|
readonly center: BooleanConstructor;
|
|
653
|
-
readonly alignCenter:
|
|
738
|
+
readonly alignCenter: {
|
|
739
|
+
readonly type: import('vue').PropType<boolean>;
|
|
740
|
+
readonly required: false;
|
|
741
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
742
|
+
__epPropKey: true;
|
|
743
|
+
} & {
|
|
744
|
+
readonly default: undefined;
|
|
745
|
+
};
|
|
654
746
|
readonly closeIcon: {
|
|
655
747
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
656
748
|
readonly required: false;
|
|
657
749
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
658
750
|
__epPropKey: true;
|
|
659
751
|
};
|
|
660
|
-
readonly draggable:
|
|
661
|
-
|
|
752
|
+
readonly draggable: {
|
|
753
|
+
readonly type: import('vue').PropType<boolean>;
|
|
754
|
+
readonly required: false;
|
|
755
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
756
|
+
__epPropKey: true;
|
|
757
|
+
} & {
|
|
758
|
+
readonly default: undefined;
|
|
759
|
+
};
|
|
760
|
+
readonly overflow: {
|
|
761
|
+
readonly type: import('vue').PropType<boolean>;
|
|
762
|
+
readonly required: false;
|
|
763
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
764
|
+
__epPropKey: true;
|
|
765
|
+
} & {
|
|
766
|
+
readonly default: undefined;
|
|
767
|
+
};
|
|
662
768
|
readonly fullscreen: BooleanConstructor;
|
|
663
769
|
readonly showClose: {
|
|
664
770
|
readonly type: import('vue').PropType<boolean>;
|
|
@@ -709,12 +815,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
709
815
|
readonly title: string;
|
|
710
816
|
readonly center: boolean;
|
|
711
817
|
readonly overflow: boolean;
|
|
818
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
712
819
|
readonly modelValue: boolean;
|
|
713
820
|
readonly ariaLevel: string;
|
|
714
821
|
readonly appendTo: string | HTMLElement;
|
|
715
|
-
readonly showClose: boolean;
|
|
716
822
|
readonly alignCenter: boolean;
|
|
717
823
|
readonly draggable: boolean;
|
|
824
|
+
readonly showClose: boolean;
|
|
718
825
|
readonly fullscreen: boolean;
|
|
719
826
|
readonly closeOnClickModal: boolean;
|
|
720
827
|
readonly closeOnPressEscape: boolean;
|
|
@@ -725,6 +832,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
725
832
|
readonly headerAriaLevel: string;
|
|
726
833
|
readonly appendToBody: boolean;
|
|
727
834
|
readonly destroyOnClose: boolean;
|
|
835
|
+
readonly modalPenetrable: boolean;
|
|
728
836
|
readonly trapFocus: boolean;
|
|
729
837
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
730
838
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -750,12 +858,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
750
858
|
readonly title: string;
|
|
751
859
|
readonly center: boolean;
|
|
752
860
|
readonly overflow: boolean;
|
|
861
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
753
862
|
readonly modelValue: boolean;
|
|
754
863
|
readonly ariaLevel: string;
|
|
755
864
|
readonly appendTo: string | HTMLElement;
|
|
756
|
-
readonly showClose: boolean;
|
|
757
865
|
readonly alignCenter: boolean;
|
|
758
866
|
readonly draggable: boolean;
|
|
867
|
+
readonly showClose: boolean;
|
|
759
868
|
readonly fullscreen: boolean;
|
|
760
869
|
readonly closeOnClickModal: boolean;
|
|
761
870
|
readonly closeOnPressEscape: boolean;
|
|
@@ -766,6 +875,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
766
875
|
readonly headerAriaLevel: string;
|
|
767
876
|
readonly appendToBody: boolean;
|
|
768
877
|
readonly destroyOnClose: boolean;
|
|
878
|
+
readonly modalPenetrable: boolean;
|
|
769
879
|
readonly trapFocus: boolean;
|
|
770
880
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
771
881
|
readonly appendToBody: BooleanConstructor;
|
|
@@ -816,6 +926,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
816
926
|
} & {
|
|
817
927
|
readonly default: true;
|
|
818
928
|
};
|
|
929
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
819
930
|
readonly openDelay: {
|
|
820
931
|
readonly type: import('vue').PropType<number>;
|
|
821
932
|
readonly required: false;
|
|
@@ -864,16 +975,45 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
864
975
|
} & {
|
|
865
976
|
readonly default: "2";
|
|
866
977
|
};
|
|
978
|
+
readonly transition: {
|
|
979
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
980
|
+
readonly required: false;
|
|
981
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
982
|
+
__epPropKey: true;
|
|
983
|
+
} & {
|
|
984
|
+
readonly default: undefined;
|
|
985
|
+
};
|
|
867
986
|
readonly center: BooleanConstructor;
|
|
868
|
-
readonly alignCenter:
|
|
987
|
+
readonly alignCenter: {
|
|
988
|
+
readonly type: import('vue').PropType<boolean>;
|
|
989
|
+
readonly required: false;
|
|
990
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
991
|
+
__epPropKey: true;
|
|
992
|
+
} & {
|
|
993
|
+
readonly default: undefined;
|
|
994
|
+
};
|
|
869
995
|
readonly closeIcon: {
|
|
870
996
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
871
997
|
readonly required: false;
|
|
872
998
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
873
999
|
__epPropKey: true;
|
|
874
1000
|
};
|
|
875
|
-
readonly draggable:
|
|
876
|
-
|
|
1001
|
+
readonly draggable: {
|
|
1002
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1003
|
+
readonly required: false;
|
|
1004
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1005
|
+
__epPropKey: true;
|
|
1006
|
+
} & {
|
|
1007
|
+
readonly default: undefined;
|
|
1008
|
+
};
|
|
1009
|
+
readonly overflow: {
|
|
1010
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1011
|
+
readonly required: false;
|
|
1012
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1013
|
+
__epPropKey: true;
|
|
1014
|
+
} & {
|
|
1015
|
+
readonly default: undefined;
|
|
1016
|
+
};
|
|
877
1017
|
readonly fullscreen: BooleanConstructor;
|
|
878
1018
|
readonly showClose: {
|
|
879
1019
|
readonly type: import('vue').PropType<boolean>;
|
|
@@ -907,7 +1047,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
907
1047
|
onClosed?: (() => any) | undefined;
|
|
908
1048
|
onOpenAutoFocus?: (() => any) | undefined;
|
|
909
1049
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
910
|
-
}, "title" | "overflow" | "visible" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
1050
|
+
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
911
1051
|
visible: import('vue').Ref<boolean>;
|
|
912
1052
|
dialogContentRef: import('vue').Ref<any>;
|
|
913
1053
|
resetPosition: () => void;
|
|
@@ -941,7 +1081,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
941
1081
|
type: StringConstructor;
|
|
942
1082
|
default: string;
|
|
943
1083
|
};
|
|
1084
|
+
overflow: {
|
|
1085
|
+
type: BooleanConstructor;
|
|
1086
|
+
default: boolean;
|
|
1087
|
+
};
|
|
944
1088
|
}>> & Readonly<{}>, {
|
|
1089
|
+
overflow: boolean;
|
|
945
1090
|
cssStyle: string;
|
|
946
1091
|
appendToBody: boolean;
|
|
947
1092
|
destroyOnClose: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
interface OptionsItem {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
label?: string;
|
|
4
|
+
value?: string;
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
children?: OptionsItem[];
|
|
7
7
|
}
|
|
@@ -61,5 +61,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
61
61
|
options: OptionsItem[];
|
|
62
62
|
placeholder: string;
|
|
63
63
|
dialogTitle: string;
|
|
64
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
64
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
65
65
|
export default _default;
|