@vunk/form 2.14.18 → 2.14.20
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/components/button/src/ctx.d.ts +8 -1
- package/components/button/src/index.vue.d.ts +43 -8
- package/components/card-input-collection/src/core.vue.d.ts +30 -9
- package/components/cascader/src/ctx.d.ts +63 -6
- package/components/cascader/src/index.vue.d.ts +155 -10
- package/components/color-picker/src/ctx.d.ts +14 -0
- package/components/color-picker/src/index.vue.d.ts +29 -0
- package/components/date-picker/src/ctx.d.ts +46 -4
- package/components/date-picker/src/index.vue.d.ts +266 -27
- package/components/date-picker-range/src/ctx.d.ts +48 -6
- package/components/date-picker-range/src/index.vue.d.ts +98 -13
- package/components/dialog-input-collection/src/dialog-form.vue.d.ts +4696 -48
- package/components/dialog-input-collection/src/index.vue.d.ts +4723 -54
- package/components/download-plus/src/index.vue.d.ts +45 -6
- package/components/esri-input-geojson/src/append.vue.d.ts +27 -6
- package/components/esri-input-geojson/src/ctx.d.ts +7 -1
- package/components/esri-input-geojson/src/index.vue.d.ts +13 -0
- package/components/fieldset/index.cjs +1 -17
- package/components/fieldset/index.mjs +1 -17
- package/components/form/src/ctx.d.ts +1 -1
- package/components/form/src/index.vue.d.ts +2867 -22
- package/components/form-item/src/core.vue.d.ts +27 -6
- package/components/input/src/ctx.d.ts +7 -1
- package/components/input/src/index.vue.d.ts +31 -0
- package/components/input-array/src/form-template.vue.d.ts +27 -6
- package/components/input-array/src/index.vue.d.ts +27 -6
- package/components/input-collection/src/core.vue.d.ts +27 -6
- package/components/input-link/src/ctx.d.ts +6 -0
- package/components/input-link/src/index.vue.d.ts +12 -0
- package/components/input-number/src/ctx.d.ts +10 -1
- package/components/input-number/src/index.vue.d.ts +55 -0
- package/components/input-tag/src/ctx.d.ts +17 -1
- package/components/input-tag/src/index.vue.d.ts +103 -3
- package/components/select/src/core.vue.d.ts +2 -2
- package/components/select/src/ctx.d.ts +1 -1
- package/components/select/src/index.vue.d.ts +1 -1
- package/components/tables-select/src/index.vue.d.ts +108 -12
- package/components/upload/index.cjs +93 -35
- package/components/upload/index.css +3 -0
- package/components/upload/index.mjs +95 -37
- package/components/upload/src/ctx.d.ts +1 -4
- package/components/upload/src/file.vue.d.ts +427 -6
- package/components/upload/src/index.vue.d.ts +427 -12
- package/components/upload-plus/src/index.vue.d.ts +45 -6
- package/components/van-cascader/index.cjs +40 -43
- package/components/van-cascader/index.mjs +41 -44
- package/components/van-cascader/src/ctx.d.ts +62 -5
- package/components/van-cascader/src/index.vue.d.ts +825 -1681
- package/components/var-datetime-picker/src/index.vue.d.ts +159 -25
- package/index.css +3 -0
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +7 -7
- package/shared/element-plus/instances.d.ts +45 -3
- package/shared/progress-it/index.cjs +3 -1
|
@@ -254,7 +254,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
254
254
|
ElDatePicker: {
|
|
255
255
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
256
256
|
readonly type: {
|
|
257
|
-
readonly type: import("vue").PropType<"
|
|
257
|
+
readonly type: import("vue").PropType<import("element-plus").DatePickerType>;
|
|
258
258
|
readonly required: false;
|
|
259
259
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
260
260
|
__epPropKey: true;
|
|
@@ -269,6 +269,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
269
269
|
} & {
|
|
270
270
|
readonly default: true;
|
|
271
271
|
};
|
|
272
|
+
readonly showConfirm: {
|
|
273
|
+
readonly type: import("vue").PropType<boolean>;
|
|
274
|
+
readonly required: false;
|
|
275
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
276
|
+
__epPropKey: true;
|
|
277
|
+
} & {
|
|
278
|
+
readonly default: true;
|
|
279
|
+
};
|
|
280
|
+
readonly showFooter: {
|
|
281
|
+
readonly type: import("vue").PropType<boolean>;
|
|
282
|
+
readonly required: false;
|
|
283
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
284
|
+
__epPropKey: true;
|
|
285
|
+
} & {
|
|
286
|
+
readonly default: true;
|
|
287
|
+
};
|
|
272
288
|
readonly showWeekNumber: BooleanConstructor;
|
|
273
289
|
readonly ariaLabel: StringConstructor;
|
|
274
290
|
readonly emptyValues: ArrayConstructor;
|
|
@@ -365,12 +381,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
365
381
|
__epPropKey: true;
|
|
366
382
|
};
|
|
367
383
|
readonly popperClass: {
|
|
368
|
-
readonly type: import("vue").PropType<string
|
|
384
|
+
readonly type: import("vue").PropType<string | {
|
|
385
|
+
[x: string]: boolean;
|
|
386
|
+
} | (string | {
|
|
387
|
+
[x: string]: boolean;
|
|
388
|
+
} | (string | {
|
|
389
|
+
[x: string]: boolean;
|
|
390
|
+
} | (string | {
|
|
391
|
+
[x: string]: boolean;
|
|
392
|
+
} | (string | {
|
|
393
|
+
[x: string]: boolean;
|
|
394
|
+
} | (string | {
|
|
395
|
+
[x: string]: boolean;
|
|
396
|
+
} | (string | {
|
|
397
|
+
[x: string]: boolean;
|
|
398
|
+
} | (string | {
|
|
399
|
+
[x: string]: boolean;
|
|
400
|
+
} | (string | {
|
|
401
|
+
[x: string]: boolean;
|
|
402
|
+
} | (string | {
|
|
403
|
+
[x: string]: boolean;
|
|
404
|
+
} | (string | any[] | {
|
|
405
|
+
[x: string]: boolean;
|
|
406
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
407
|
+
readonly required: false;
|
|
408
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
409
|
+
__epPropKey: true;
|
|
410
|
+
};
|
|
411
|
+
readonly popperStyle: {
|
|
412
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
369
413
|
readonly required: false;
|
|
370
414
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
371
415
|
__epPropKey: true;
|
|
372
|
-
} & {
|
|
373
|
-
readonly default: "";
|
|
374
416
|
};
|
|
375
417
|
readonly format: StringConstructor;
|
|
376
418
|
readonly valueFormat: StringConstructor;
|
|
@@ -465,7 +507,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
465
507
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
466
508
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
467
509
|
readonly disabled: boolean;
|
|
468
|
-
readonly type: "
|
|
510
|
+
readonly type: import("element-plus").DatePickerType;
|
|
469
511
|
readonly placeholder: string;
|
|
470
512
|
readonly modelValue: import("element-plus").ModelValueType;
|
|
471
513
|
readonly placement: import("element-plus").Placement;
|
|
@@ -477,11 +519,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
477
519
|
readonly clearable: boolean;
|
|
478
520
|
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
479
521
|
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
480
|
-
readonly popperClass: string;
|
|
481
522
|
readonly editable: boolean;
|
|
482
523
|
readonly rangeSeparator: string;
|
|
483
524
|
readonly shortcuts: unknown[];
|
|
484
525
|
readonly showNow: boolean;
|
|
526
|
+
readonly showConfirm: boolean;
|
|
527
|
+
readonly showFooter: boolean;
|
|
485
528
|
readonly showWeekNumber: boolean;
|
|
486
529
|
readonly arrowControl: boolean;
|
|
487
530
|
readonly unlinkPanels: boolean;
|
|
@@ -495,7 +538,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
495
538
|
Defaults: {};
|
|
496
539
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
497
540
|
readonly type: {
|
|
498
|
-
readonly type: import("vue").PropType<"
|
|
541
|
+
readonly type: import("vue").PropType<import("element-plus").DatePickerType>;
|
|
499
542
|
readonly required: false;
|
|
500
543
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
501
544
|
__epPropKey: true;
|
|
@@ -510,6 +553,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
510
553
|
} & {
|
|
511
554
|
readonly default: true;
|
|
512
555
|
};
|
|
556
|
+
readonly showConfirm: {
|
|
557
|
+
readonly type: import("vue").PropType<boolean>;
|
|
558
|
+
readonly required: false;
|
|
559
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
560
|
+
__epPropKey: true;
|
|
561
|
+
} & {
|
|
562
|
+
readonly default: true;
|
|
563
|
+
};
|
|
564
|
+
readonly showFooter: {
|
|
565
|
+
readonly type: import("vue").PropType<boolean>;
|
|
566
|
+
readonly required: false;
|
|
567
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
568
|
+
__epPropKey: true;
|
|
569
|
+
} & {
|
|
570
|
+
readonly default: true;
|
|
571
|
+
};
|
|
513
572
|
readonly showWeekNumber: BooleanConstructor;
|
|
514
573
|
readonly ariaLabel: StringConstructor;
|
|
515
574
|
readonly emptyValues: ArrayConstructor;
|
|
@@ -606,12 +665,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
606
665
|
__epPropKey: true;
|
|
607
666
|
};
|
|
608
667
|
readonly popperClass: {
|
|
609
|
-
readonly type: import("vue").PropType<string
|
|
668
|
+
readonly type: import("vue").PropType<string | {
|
|
669
|
+
[x: string]: boolean;
|
|
670
|
+
} | (string | {
|
|
671
|
+
[x: string]: boolean;
|
|
672
|
+
} | (string | {
|
|
673
|
+
[x: string]: boolean;
|
|
674
|
+
} | (string | {
|
|
675
|
+
[x: string]: boolean;
|
|
676
|
+
} | (string | {
|
|
677
|
+
[x: string]: boolean;
|
|
678
|
+
} | (string | {
|
|
679
|
+
[x: string]: boolean;
|
|
680
|
+
} | (string | {
|
|
681
|
+
[x: string]: boolean;
|
|
682
|
+
} | (string | {
|
|
683
|
+
[x: string]: boolean;
|
|
684
|
+
} | (string | {
|
|
685
|
+
[x: string]: boolean;
|
|
686
|
+
} | (string | {
|
|
687
|
+
[x: string]: boolean;
|
|
688
|
+
} | (string | any[] | {
|
|
689
|
+
[x: string]: boolean;
|
|
690
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
691
|
+
readonly required: false;
|
|
692
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
693
|
+
__epPropKey: true;
|
|
694
|
+
};
|
|
695
|
+
readonly popperStyle: {
|
|
696
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
610
697
|
readonly required: false;
|
|
611
698
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
612
699
|
__epPropKey: true;
|
|
613
|
-
} & {
|
|
614
|
-
readonly default: "";
|
|
615
700
|
};
|
|
616
701
|
readonly format: StringConstructor;
|
|
617
702
|
readonly valueFormat: StringConstructor;
|
|
@@ -706,7 +791,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
706
791
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
707
792
|
}, () => JSX.Element, {}, {}, {}, {
|
|
708
793
|
readonly disabled: boolean;
|
|
709
|
-
readonly type: "
|
|
794
|
+
readonly type: import("element-plus").DatePickerType;
|
|
710
795
|
readonly placeholder: string;
|
|
711
796
|
readonly modelValue: import("element-plus").ModelValueType;
|
|
712
797
|
readonly placement: import("element-plus").Placement;
|
|
@@ -718,11 +803,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
718
803
|
readonly clearable: boolean;
|
|
719
804
|
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
720
805
|
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
721
|
-
readonly popperClass: string;
|
|
722
806
|
readonly editable: boolean;
|
|
723
807
|
readonly rangeSeparator: string;
|
|
724
808
|
readonly shortcuts: unknown[];
|
|
725
809
|
readonly showNow: boolean;
|
|
810
|
+
readonly showConfirm: boolean;
|
|
811
|
+
readonly showFooter: boolean;
|
|
726
812
|
readonly showWeekNumber: boolean;
|
|
727
813
|
readonly arrowControl: boolean;
|
|
728
814
|
readonly unlinkPanels: boolean;
|
|
@@ -733,7 +819,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
733
819
|
__isSuspense?: never;
|
|
734
820
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
735
821
|
readonly type: {
|
|
736
|
-
readonly type: import("vue").PropType<"
|
|
822
|
+
readonly type: import("vue").PropType<import("element-plus").DatePickerType>;
|
|
737
823
|
readonly required: false;
|
|
738
824
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
739
825
|
__epPropKey: true;
|
|
@@ -748,6 +834,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
748
834
|
} & {
|
|
749
835
|
readonly default: true;
|
|
750
836
|
};
|
|
837
|
+
readonly showConfirm: {
|
|
838
|
+
readonly type: import("vue").PropType<boolean>;
|
|
839
|
+
readonly required: false;
|
|
840
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
841
|
+
__epPropKey: true;
|
|
842
|
+
} & {
|
|
843
|
+
readonly default: true;
|
|
844
|
+
};
|
|
845
|
+
readonly showFooter: {
|
|
846
|
+
readonly type: import("vue").PropType<boolean>;
|
|
847
|
+
readonly required: false;
|
|
848
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
849
|
+
__epPropKey: true;
|
|
850
|
+
} & {
|
|
851
|
+
readonly default: true;
|
|
852
|
+
};
|
|
751
853
|
readonly showWeekNumber: BooleanConstructor;
|
|
752
854
|
readonly ariaLabel: StringConstructor;
|
|
753
855
|
readonly emptyValues: ArrayConstructor;
|
|
@@ -844,12 +946,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
844
946
|
__epPropKey: true;
|
|
845
947
|
};
|
|
846
948
|
readonly popperClass: {
|
|
847
|
-
readonly type: import("vue").PropType<string
|
|
949
|
+
readonly type: import("vue").PropType<string | {
|
|
950
|
+
[x: string]: boolean;
|
|
951
|
+
} | (string | {
|
|
952
|
+
[x: string]: boolean;
|
|
953
|
+
} | (string | {
|
|
954
|
+
[x: string]: boolean;
|
|
955
|
+
} | (string | {
|
|
956
|
+
[x: string]: boolean;
|
|
957
|
+
} | (string | {
|
|
958
|
+
[x: string]: boolean;
|
|
959
|
+
} | (string | {
|
|
960
|
+
[x: string]: boolean;
|
|
961
|
+
} | (string | {
|
|
962
|
+
[x: string]: boolean;
|
|
963
|
+
} | (string | {
|
|
964
|
+
[x: string]: boolean;
|
|
965
|
+
} | (string | {
|
|
966
|
+
[x: string]: boolean;
|
|
967
|
+
} | (string | {
|
|
968
|
+
[x: string]: boolean;
|
|
969
|
+
} | (string | any[] | {
|
|
970
|
+
[x: string]: boolean;
|
|
971
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
972
|
+
readonly required: false;
|
|
973
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
974
|
+
__epPropKey: true;
|
|
975
|
+
};
|
|
976
|
+
readonly popperStyle: {
|
|
977
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
848
978
|
readonly required: false;
|
|
849
979
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
850
980
|
__epPropKey: true;
|
|
851
|
-
} & {
|
|
852
|
-
readonly default: "";
|
|
853
981
|
};
|
|
854
982
|
readonly format: StringConstructor;
|
|
855
983
|
readonly valueFormat: StringConstructor;
|
|
@@ -944,7 +1072,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
944
1072
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
945
1073
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
|
|
946
1074
|
readonly disabled: boolean;
|
|
947
|
-
readonly type: "
|
|
1075
|
+
readonly type: import("element-plus").DatePickerType;
|
|
948
1076
|
readonly placeholder: string;
|
|
949
1077
|
readonly modelValue: import("element-plus").ModelValueType;
|
|
950
1078
|
readonly placement: import("element-plus").Placement;
|
|
@@ -956,11 +1084,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
956
1084
|
readonly clearable: boolean;
|
|
957
1085
|
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
958
1086
|
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
959
|
-
readonly popperClass: string;
|
|
960
1087
|
readonly editable: boolean;
|
|
961
1088
|
readonly rangeSeparator: string;
|
|
962
1089
|
readonly shortcuts: unknown[];
|
|
963
1090
|
readonly showNow: boolean;
|
|
1091
|
+
readonly showConfirm: boolean;
|
|
1092
|
+
readonly showFooter: boolean;
|
|
964
1093
|
readonly showWeekNumber: boolean;
|
|
965
1094
|
readonly arrowControl: boolean;
|
|
966
1095
|
readonly unlinkPanels: boolean;
|
|
@@ -968,7 +1097,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
968
1097
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin;
|
|
969
1098
|
DatePicker: typeof DatePicker;
|
|
970
1099
|
TimePicker: typeof TimePicker;
|
|
971
|
-
Popup: import("vant/lib/utils").WithInstall<import("vue").DefineComponent<{
|
|
1100
|
+
Popup: import("vant/lib/utils").WithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
972
1101
|
show: BooleanConstructor;
|
|
973
1102
|
zIndex: (NumberConstructor | StringConstructor)[];
|
|
974
1103
|
overlay: {
|
|
@@ -976,7 +1105,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
976
1105
|
default: true;
|
|
977
1106
|
};
|
|
978
1107
|
duration: (NumberConstructor | StringConstructor)[];
|
|
979
|
-
teleport: import("vue").PropType<
|
|
1108
|
+
teleport: import("vue").PropType<import("vue").TeleportProps["to"]>;
|
|
980
1109
|
lockScroll: {
|
|
981
1110
|
type: BooleanConstructor;
|
|
982
1111
|
default: true;
|
|
@@ -986,6 +1115,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
986
1115
|
default: true;
|
|
987
1116
|
};
|
|
988
1117
|
beforeClose: import("vue").PropType<import("vant/lib/utils").Interceptor>;
|
|
1118
|
+
overlayProps: import("vue").PropType<Partial<import("vant").OverlayProps>>;
|
|
989
1119
|
overlayStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
990
1120
|
overlayClass: import("vue").PropType<unknown>;
|
|
991
1121
|
transitionAppear: BooleanConstructor;
|
|
@@ -1011,9 +1141,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1011
1141
|
type: import("vue").PropType<import("vant").PopupCloseIconPosition>;
|
|
1012
1142
|
default: import("vant").PopupCloseIconPosition;
|
|
1013
1143
|
};
|
|
1144
|
+
destroyOnClose: BooleanConstructor;
|
|
1014
1145
|
safeAreaInsetTop: BooleanConstructor;
|
|
1015
1146
|
safeAreaInsetBottom: BooleanConstructor;
|
|
1016
|
-
}
|
|
1147
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "keydown" | "close" | "opened" | "closed" | "update:show" | "clickOverlay" | "clickCloseIcon")[], "open" | "keydown" | "close" | "opened" | "closed" | "update:show" | "clickOverlay" | "clickCloseIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1017
1148
|
show: BooleanConstructor;
|
|
1018
1149
|
zIndex: (NumberConstructor | StringConstructor)[];
|
|
1019
1150
|
overlay: {
|
|
@@ -1021,7 +1152,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1021
1152
|
default: true;
|
|
1022
1153
|
};
|
|
1023
1154
|
duration: (NumberConstructor | StringConstructor)[];
|
|
1024
|
-
teleport: import("vue").PropType<
|
|
1155
|
+
teleport: import("vue").PropType<import("vue").TeleportProps["to"]>;
|
|
1025
1156
|
lockScroll: {
|
|
1026
1157
|
type: BooleanConstructor;
|
|
1027
1158
|
default: true;
|
|
@@ -1031,6 +1162,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1031
1162
|
default: true;
|
|
1032
1163
|
};
|
|
1033
1164
|
beforeClose: import("vue").PropType<import("vant/lib/utils").Interceptor>;
|
|
1165
|
+
overlayProps: import("vue").PropType<Partial<import("vant").OverlayProps>>;
|
|
1034
1166
|
overlayStyle: import("vue").PropType<import("vue").CSSProperties>;
|
|
1035
1167
|
overlayClass: import("vue").PropType<unknown>;
|
|
1036
1168
|
transitionAppear: BooleanConstructor;
|
|
@@ -1056,18 +1188,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1056
1188
|
type: import("vue").PropType<import("vant").PopupCloseIconPosition>;
|
|
1057
1189
|
default: import("vant").PopupCloseIconPosition;
|
|
1058
1190
|
};
|
|
1191
|
+
destroyOnClose: BooleanConstructor;
|
|
1059
1192
|
safeAreaInsetTop: BooleanConstructor;
|
|
1060
1193
|
safeAreaInsetBottom: BooleanConstructor;
|
|
1061
|
-
}>> & {
|
|
1194
|
+
}>> & Readonly<{
|
|
1062
1195
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
1063
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1064
1196
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1197
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1065
1198
|
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1066
1199
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1067
1200
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1068
1201
|
onClickOverlay?: ((...args: any[]) => any) | undefined;
|
|
1069
1202
|
onClickCloseIcon?: ((...args: any[]) => any) | undefined;
|
|
1070
|
-
}
|
|
1203
|
+
}>, {
|
|
1071
1204
|
position: import("vant").PopupPosition;
|
|
1072
1205
|
round: boolean;
|
|
1073
1206
|
overlay: boolean;
|
|
@@ -1081,6 +1214,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1081
1214
|
closeable: boolean;
|
|
1082
1215
|
closeOnPopstate: boolean;
|
|
1083
1216
|
closeIconPosition: import("vant").PopupCloseIconPosition;
|
|
1217
|
+
destroyOnClose: boolean;
|
|
1084
1218
|
safeAreaInsetTop: boolean;
|
|
1085
1219
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
1086
1220
|
ElTabPane: {
|
package/index.css
CHANGED