@vunk/form 2.14.17 → 2.14.19
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/index.cjs +3 -2
- package/components/card-input-collection/index.mjs +3 -2
- package/components/card-input-collection/src/core.vue.d.ts +34 -13
- package/components/card-input-collection/src/ctx.d.ts +1 -1
- package/components/card-input-collection/src/index.vue.d.ts +3 -3
- 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/index.cjs +3 -2
- package/components/dialog-input-collection/index.mjs +3 -2
- package/components/dialog-input-collection/src/ctx.d.ts +1 -1
- package/components/dialog-input-collection/src/dialog-form.vue.d.ts +4696 -48
- package/components/dialog-input-collection/src/index.vue.d.ts +4727 -58
- 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/index.cjs +5 -3
- package/components/input-collection/index.mjs +5 -3
- package/components/input-collection/src/core.vue.d.ts +31 -10
- package/components/input-collection/src/ctx.d.ts +1 -1
- package/components/input-collection/src/index.vue.d.ts +3 -3
- 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
|
@@ -104,6 +104,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
104
104
|
} & {
|
|
105
105
|
readonly default: true;
|
|
106
106
|
};
|
|
107
|
+
showConfirm: {
|
|
108
|
+
readonly type: import("vue").PropType<boolean>;
|
|
109
|
+
readonly required: false;
|
|
110
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
111
|
+
__epPropKey: true;
|
|
112
|
+
} & {
|
|
113
|
+
readonly default: true;
|
|
114
|
+
};
|
|
115
|
+
showFooter: {
|
|
116
|
+
readonly type: import("vue").PropType<boolean>;
|
|
117
|
+
readonly required: false;
|
|
118
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
119
|
+
__epPropKey: true;
|
|
120
|
+
} & {
|
|
121
|
+
readonly default: true;
|
|
122
|
+
};
|
|
107
123
|
showWeekNumber: BooleanConstructor;
|
|
108
124
|
ariaLabel: StringConstructor;
|
|
109
125
|
emptyValues: ArrayConstructor;
|
|
@@ -200,12 +216,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
200
216
|
__epPropKey: true;
|
|
201
217
|
};
|
|
202
218
|
popperClass: {
|
|
203
|
-
readonly type: import("vue").PropType<string
|
|
219
|
+
readonly type: import("vue").PropType<string | {
|
|
220
|
+
[x: string]: boolean;
|
|
221
|
+
} | (string | {
|
|
222
|
+
[x: string]: boolean;
|
|
223
|
+
} | (string | {
|
|
224
|
+
[x: string]: boolean;
|
|
225
|
+
} | (string | {
|
|
226
|
+
[x: string]: boolean;
|
|
227
|
+
} | (string | {
|
|
228
|
+
[x: string]: boolean;
|
|
229
|
+
} | (string | {
|
|
230
|
+
[x: string]: boolean;
|
|
231
|
+
} | (string | {
|
|
232
|
+
[x: string]: boolean;
|
|
233
|
+
} | (string | {
|
|
234
|
+
[x: string]: boolean;
|
|
235
|
+
} | (string | {
|
|
236
|
+
[x: string]: boolean;
|
|
237
|
+
} | (string | {
|
|
238
|
+
[x: string]: boolean;
|
|
239
|
+
} | (string | any[] | {
|
|
240
|
+
[x: string]: boolean;
|
|
241
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
242
|
+
readonly required: false;
|
|
243
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
244
|
+
__epPropKey: true;
|
|
245
|
+
};
|
|
246
|
+
popperStyle: {
|
|
247
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
204
248
|
readonly required: false;
|
|
205
249
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
206
250
|
__epPropKey: true;
|
|
207
|
-
} & {
|
|
208
|
-
readonly default: "";
|
|
209
251
|
};
|
|
210
252
|
format: StringConstructor;
|
|
211
253
|
valueFormat: StringConstructor;
|
|
@@ -302,7 +344,30 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
302
344
|
disabled: boolean;
|
|
303
345
|
id: import("element-plus").SingleOrRange<string>;
|
|
304
346
|
ariaLabel: string;
|
|
305
|
-
popperClass: string
|
|
347
|
+
popperClass: string | {
|
|
348
|
+
[x: string]: boolean;
|
|
349
|
+
} | (string | {
|
|
350
|
+
[x: string]: boolean;
|
|
351
|
+
} | (string | {
|
|
352
|
+
[x: string]: boolean;
|
|
353
|
+
} | (string | {
|
|
354
|
+
[x: string]: boolean;
|
|
355
|
+
} | (string | {
|
|
356
|
+
[x: string]: boolean;
|
|
357
|
+
} | (string | {
|
|
358
|
+
[x: string]: boolean;
|
|
359
|
+
} | (string | {
|
|
360
|
+
[x: string]: boolean;
|
|
361
|
+
} | (string | {
|
|
362
|
+
[x: string]: boolean;
|
|
363
|
+
} | (string | {
|
|
364
|
+
[x: string]: boolean;
|
|
365
|
+
} | (string | {
|
|
366
|
+
[x: string]: boolean;
|
|
367
|
+
} | (string | any[] | {
|
|
368
|
+
[x: string]: boolean;
|
|
369
|
+
})[])[])[])[])[])[])[])[])[])[];
|
|
370
|
+
popperStyle: import("vue").StyleValue;
|
|
306
371
|
fallbackPlacements: import("element-plus").Placement[];
|
|
307
372
|
placement: import("element-plus").Placement;
|
|
308
373
|
popperOptions: Partial<import("element-plus").Options>;
|
|
@@ -311,11 +376,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
311
376
|
clearable: boolean;
|
|
312
377
|
placeholder: string;
|
|
313
378
|
cellClassName: Function;
|
|
379
|
+
clearIcon: unknown;
|
|
314
380
|
prefixIcon: "";
|
|
315
381
|
tabindex: string | number;
|
|
316
382
|
validateEvent: boolean;
|
|
317
|
-
clearIcon: unknown;
|
|
318
383
|
showNow: boolean;
|
|
384
|
+
showConfirm: boolean;
|
|
385
|
+
showFooter: boolean;
|
|
319
386
|
showWeekNumber: boolean;
|
|
320
387
|
emptyValues: unknown[];
|
|
321
388
|
valueOnClear: string | number | boolean | Function;
|
|
@@ -455,6 +522,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
455
522
|
} & {
|
|
456
523
|
readonly default: true;
|
|
457
524
|
};
|
|
525
|
+
showConfirm: {
|
|
526
|
+
readonly type: import("vue").PropType<boolean>;
|
|
527
|
+
readonly required: false;
|
|
528
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
529
|
+
__epPropKey: true;
|
|
530
|
+
} & {
|
|
531
|
+
readonly default: true;
|
|
532
|
+
};
|
|
533
|
+
showFooter: {
|
|
534
|
+
readonly type: import("vue").PropType<boolean>;
|
|
535
|
+
readonly required: false;
|
|
536
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
537
|
+
__epPropKey: true;
|
|
538
|
+
} & {
|
|
539
|
+
readonly default: true;
|
|
540
|
+
};
|
|
458
541
|
showWeekNumber: BooleanConstructor;
|
|
459
542
|
ariaLabel: StringConstructor;
|
|
460
543
|
emptyValues: ArrayConstructor;
|
|
@@ -551,12 +634,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
551
634
|
__epPropKey: true;
|
|
552
635
|
};
|
|
553
636
|
popperClass: {
|
|
554
|
-
readonly type: import("vue").PropType<string
|
|
637
|
+
readonly type: import("vue").PropType<string | {
|
|
638
|
+
[x: string]: boolean;
|
|
639
|
+
} | (string | {
|
|
640
|
+
[x: string]: boolean;
|
|
641
|
+
} | (string | {
|
|
642
|
+
[x: string]: boolean;
|
|
643
|
+
} | (string | {
|
|
644
|
+
[x: string]: boolean;
|
|
645
|
+
} | (string | {
|
|
646
|
+
[x: string]: boolean;
|
|
647
|
+
} | (string | {
|
|
648
|
+
[x: string]: boolean;
|
|
649
|
+
} | (string | {
|
|
650
|
+
[x: string]: boolean;
|
|
651
|
+
} | (string | {
|
|
652
|
+
[x: string]: boolean;
|
|
653
|
+
} | (string | {
|
|
654
|
+
[x: string]: boolean;
|
|
655
|
+
} | (string | {
|
|
656
|
+
[x: string]: boolean;
|
|
657
|
+
} | (string | any[] | {
|
|
658
|
+
[x: string]: boolean;
|
|
659
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
660
|
+
readonly required: false;
|
|
661
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
662
|
+
__epPropKey: true;
|
|
663
|
+
};
|
|
664
|
+
popperStyle: {
|
|
665
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
555
666
|
readonly required: false;
|
|
556
667
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
557
668
|
__epPropKey: true;
|
|
558
|
-
} & {
|
|
559
|
-
readonly default: "";
|
|
560
669
|
};
|
|
561
670
|
format: StringConstructor;
|
|
562
671
|
valueFormat: StringConstructor;
|
|
@@ -672,7 +781,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
672
781
|
inlineMessage: string | boolean;
|
|
673
782
|
showMessage: boolean;
|
|
674
783
|
disabled: boolean;
|
|
675
|
-
popperClass: string;
|
|
676
784
|
fallbackPlacements: import("element-plus").Placement[];
|
|
677
785
|
placement: import("element-plus").Placement;
|
|
678
786
|
popperOptions: Partial<import("element-plus").Options>;
|
|
@@ -683,6 +791,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
683
791
|
tabindex: string | number;
|
|
684
792
|
validateEvent: boolean;
|
|
685
793
|
showNow: boolean;
|
|
794
|
+
showConfirm: boolean;
|
|
795
|
+
showFooter: boolean;
|
|
686
796
|
showWeekNumber: boolean;
|
|
687
797
|
valueOnClear: string | number | boolean | Function;
|
|
688
798
|
shortcuts: unknown[];
|
|
@@ -707,7 +817,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
707
817
|
ElDatePicker: {
|
|
708
818
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
709
819
|
readonly type: {
|
|
710
|
-
readonly type: import("vue").PropType<"
|
|
820
|
+
readonly type: import("vue").PropType<import("element-plus").DatePickerType>;
|
|
711
821
|
readonly required: false;
|
|
712
822
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
713
823
|
__epPropKey: true;
|
|
@@ -722,6 +832,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
722
832
|
} & {
|
|
723
833
|
readonly default: true;
|
|
724
834
|
};
|
|
835
|
+
readonly showConfirm: {
|
|
836
|
+
readonly type: import("vue").PropType<boolean>;
|
|
837
|
+
readonly required: false;
|
|
838
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
839
|
+
__epPropKey: true;
|
|
840
|
+
} & {
|
|
841
|
+
readonly default: true;
|
|
842
|
+
};
|
|
843
|
+
readonly showFooter: {
|
|
844
|
+
readonly type: import("vue").PropType<boolean>;
|
|
845
|
+
readonly required: false;
|
|
846
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
847
|
+
__epPropKey: true;
|
|
848
|
+
} & {
|
|
849
|
+
readonly default: true;
|
|
850
|
+
};
|
|
725
851
|
readonly showWeekNumber: BooleanConstructor;
|
|
726
852
|
readonly ariaLabel: StringConstructor;
|
|
727
853
|
readonly emptyValues: ArrayConstructor;
|
|
@@ -818,12 +944,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
818
944
|
__epPropKey: true;
|
|
819
945
|
};
|
|
820
946
|
readonly popperClass: {
|
|
821
|
-
readonly type: import("vue").PropType<string
|
|
947
|
+
readonly type: import("vue").PropType<string | {
|
|
948
|
+
[x: string]: boolean;
|
|
949
|
+
} | (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 | any[] | {
|
|
968
|
+
[x: string]: boolean;
|
|
969
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
970
|
+
readonly required: false;
|
|
971
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
972
|
+
__epPropKey: true;
|
|
973
|
+
};
|
|
974
|
+
readonly popperStyle: {
|
|
975
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
822
976
|
readonly required: false;
|
|
823
977
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
824
978
|
__epPropKey: true;
|
|
825
|
-
} & {
|
|
826
|
-
readonly default: "";
|
|
827
979
|
};
|
|
828
980
|
readonly format: StringConstructor;
|
|
829
981
|
readonly valueFormat: StringConstructor;
|
|
@@ -918,7 +1070,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
918
1070
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
919
1071
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
920
1072
|
readonly disabled: boolean;
|
|
921
|
-
readonly type: "
|
|
1073
|
+
readonly type: import("element-plus").DatePickerType;
|
|
922
1074
|
readonly placeholder: string;
|
|
923
1075
|
readonly modelValue: import("element-plus").ModelValueType;
|
|
924
1076
|
readonly placement: import("element-plus").Placement;
|
|
@@ -930,11 +1082,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
930
1082
|
readonly clearable: boolean;
|
|
931
1083
|
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
932
1084
|
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
933
|
-
readonly popperClass: string;
|
|
934
1085
|
readonly editable: boolean;
|
|
935
1086
|
readonly rangeSeparator: string;
|
|
936
1087
|
readonly shortcuts: unknown[];
|
|
937
1088
|
readonly showNow: boolean;
|
|
1089
|
+
readonly showConfirm: boolean;
|
|
1090
|
+
readonly showFooter: boolean;
|
|
938
1091
|
readonly showWeekNumber: boolean;
|
|
939
1092
|
readonly arrowControl: boolean;
|
|
940
1093
|
readonly unlinkPanels: boolean;
|
|
@@ -948,7 +1101,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
948
1101
|
Defaults: {};
|
|
949
1102
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
950
1103
|
readonly type: {
|
|
951
|
-
readonly type: import("vue").PropType<"
|
|
1104
|
+
readonly type: import("vue").PropType<import("element-plus").DatePickerType>;
|
|
952
1105
|
readonly required: false;
|
|
953
1106
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
954
1107
|
__epPropKey: true;
|
|
@@ -963,6 +1116,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
963
1116
|
} & {
|
|
964
1117
|
readonly default: true;
|
|
965
1118
|
};
|
|
1119
|
+
readonly showConfirm: {
|
|
1120
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1121
|
+
readonly required: false;
|
|
1122
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1123
|
+
__epPropKey: true;
|
|
1124
|
+
} & {
|
|
1125
|
+
readonly default: true;
|
|
1126
|
+
};
|
|
1127
|
+
readonly showFooter: {
|
|
1128
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1129
|
+
readonly required: false;
|
|
1130
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1131
|
+
__epPropKey: true;
|
|
1132
|
+
} & {
|
|
1133
|
+
readonly default: true;
|
|
1134
|
+
};
|
|
966
1135
|
readonly showWeekNumber: BooleanConstructor;
|
|
967
1136
|
readonly ariaLabel: StringConstructor;
|
|
968
1137
|
readonly emptyValues: ArrayConstructor;
|
|
@@ -1059,12 +1228,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1059
1228
|
__epPropKey: true;
|
|
1060
1229
|
};
|
|
1061
1230
|
readonly popperClass: {
|
|
1062
|
-
readonly type: import("vue").PropType<string
|
|
1231
|
+
readonly type: import("vue").PropType<string | {
|
|
1232
|
+
[x: string]: boolean;
|
|
1233
|
+
} | (string | {
|
|
1234
|
+
[x: string]: boolean;
|
|
1235
|
+
} | (string | {
|
|
1236
|
+
[x: string]: boolean;
|
|
1237
|
+
} | (string | {
|
|
1238
|
+
[x: string]: boolean;
|
|
1239
|
+
} | (string | {
|
|
1240
|
+
[x: string]: boolean;
|
|
1241
|
+
} | (string | {
|
|
1242
|
+
[x: string]: boolean;
|
|
1243
|
+
} | (string | {
|
|
1244
|
+
[x: string]: boolean;
|
|
1245
|
+
} | (string | {
|
|
1246
|
+
[x: string]: boolean;
|
|
1247
|
+
} | (string | {
|
|
1248
|
+
[x: string]: boolean;
|
|
1249
|
+
} | (string | {
|
|
1250
|
+
[x: string]: boolean;
|
|
1251
|
+
} | (string | any[] | {
|
|
1252
|
+
[x: string]: boolean;
|
|
1253
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
1254
|
+
readonly required: false;
|
|
1255
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1256
|
+
__epPropKey: true;
|
|
1257
|
+
};
|
|
1258
|
+
readonly popperStyle: {
|
|
1259
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
1063
1260
|
readonly required: false;
|
|
1064
1261
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1065
1262
|
__epPropKey: true;
|
|
1066
|
-
} & {
|
|
1067
|
-
readonly default: "";
|
|
1068
1263
|
};
|
|
1069
1264
|
readonly format: StringConstructor;
|
|
1070
1265
|
readonly valueFormat: StringConstructor;
|
|
@@ -1159,7 +1354,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1159
1354
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1160
1355
|
}, () => JSX.Element, {}, {}, {}, {
|
|
1161
1356
|
readonly disabled: boolean;
|
|
1162
|
-
readonly type: "
|
|
1357
|
+
readonly type: import("element-plus").DatePickerType;
|
|
1163
1358
|
readonly placeholder: string;
|
|
1164
1359
|
readonly modelValue: import("element-plus").ModelValueType;
|
|
1165
1360
|
readonly placement: import("element-plus").Placement;
|
|
@@ -1171,11 +1366,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1171
1366
|
readonly clearable: boolean;
|
|
1172
1367
|
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
1173
1368
|
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
1174
|
-
readonly popperClass: string;
|
|
1175
1369
|
readonly editable: boolean;
|
|
1176
1370
|
readonly rangeSeparator: string;
|
|
1177
1371
|
readonly shortcuts: unknown[];
|
|
1178
1372
|
readonly showNow: boolean;
|
|
1373
|
+
readonly showConfirm: boolean;
|
|
1374
|
+
readonly showFooter: boolean;
|
|
1179
1375
|
readonly showWeekNumber: boolean;
|
|
1180
1376
|
readonly arrowControl: boolean;
|
|
1181
1377
|
readonly unlinkPanels: boolean;
|
|
@@ -1186,7 +1382,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1186
1382
|
__isSuspense?: never;
|
|
1187
1383
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1188
1384
|
readonly type: {
|
|
1189
|
-
readonly type: import("vue").PropType<"
|
|
1385
|
+
readonly type: import("vue").PropType<import("element-plus").DatePickerType>;
|
|
1190
1386
|
readonly required: false;
|
|
1191
1387
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1192
1388
|
__epPropKey: true;
|
|
@@ -1201,6 +1397,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1201
1397
|
} & {
|
|
1202
1398
|
readonly default: true;
|
|
1203
1399
|
};
|
|
1400
|
+
readonly showConfirm: {
|
|
1401
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1402
|
+
readonly required: false;
|
|
1403
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1404
|
+
__epPropKey: true;
|
|
1405
|
+
} & {
|
|
1406
|
+
readonly default: true;
|
|
1407
|
+
};
|
|
1408
|
+
readonly showFooter: {
|
|
1409
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1410
|
+
readonly required: false;
|
|
1411
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1412
|
+
__epPropKey: true;
|
|
1413
|
+
} & {
|
|
1414
|
+
readonly default: true;
|
|
1415
|
+
};
|
|
1204
1416
|
readonly showWeekNumber: BooleanConstructor;
|
|
1205
1417
|
readonly ariaLabel: StringConstructor;
|
|
1206
1418
|
readonly emptyValues: ArrayConstructor;
|
|
@@ -1297,12 +1509,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1297
1509
|
__epPropKey: true;
|
|
1298
1510
|
};
|
|
1299
1511
|
readonly popperClass: {
|
|
1300
|
-
readonly type: import("vue").PropType<string
|
|
1512
|
+
readonly type: import("vue").PropType<string | {
|
|
1513
|
+
[x: string]: boolean;
|
|
1514
|
+
} | (string | {
|
|
1515
|
+
[x: string]: boolean;
|
|
1516
|
+
} | (string | {
|
|
1517
|
+
[x: string]: boolean;
|
|
1518
|
+
} | (string | {
|
|
1519
|
+
[x: string]: boolean;
|
|
1520
|
+
} | (string | {
|
|
1521
|
+
[x: string]: boolean;
|
|
1522
|
+
} | (string | {
|
|
1523
|
+
[x: string]: boolean;
|
|
1524
|
+
} | (string | {
|
|
1525
|
+
[x: string]: boolean;
|
|
1526
|
+
} | (string | {
|
|
1527
|
+
[x: string]: boolean;
|
|
1528
|
+
} | (string | {
|
|
1529
|
+
[x: string]: boolean;
|
|
1530
|
+
} | (string | {
|
|
1531
|
+
[x: string]: boolean;
|
|
1532
|
+
} | (string | any[] | {
|
|
1533
|
+
[x: string]: boolean;
|
|
1534
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
1535
|
+
readonly required: false;
|
|
1536
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1537
|
+
__epPropKey: true;
|
|
1538
|
+
};
|
|
1539
|
+
readonly popperStyle: {
|
|
1540
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
1301
1541
|
readonly required: false;
|
|
1302
1542
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1303
1543
|
__epPropKey: true;
|
|
1304
|
-
} & {
|
|
1305
|
-
readonly default: "";
|
|
1306
1544
|
};
|
|
1307
1545
|
readonly format: StringConstructor;
|
|
1308
1546
|
readonly valueFormat: StringConstructor;
|
|
@@ -1397,7 +1635,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1397
1635
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1398
1636
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
|
|
1399
1637
|
readonly disabled: boolean;
|
|
1400
|
-
readonly type: "
|
|
1638
|
+
readonly type: import("element-plus").DatePickerType;
|
|
1401
1639
|
readonly placeholder: string;
|
|
1402
1640
|
readonly modelValue: import("element-plus").ModelValueType;
|
|
1403
1641
|
readonly placement: import("element-plus").Placement;
|
|
@@ -1409,11 +1647,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1409
1647
|
readonly clearable: boolean;
|
|
1410
1648
|
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
1411
1649
|
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
1412
|
-
readonly popperClass: string;
|
|
1413
1650
|
readonly editable: boolean;
|
|
1414
1651
|
readonly rangeSeparator: string;
|
|
1415
1652
|
readonly shortcuts: unknown[];
|
|
1416
1653
|
readonly showNow: boolean;
|
|
1654
|
+
readonly showConfirm: boolean;
|
|
1655
|
+
readonly showFooter: boolean;
|
|
1417
1656
|
readonly showWeekNumber: boolean;
|
|
1418
1657
|
readonly arrowControl: boolean;
|
|
1419
1658
|
readonly unlinkPanels: boolean;
|
|
@@ -138,12 +138,38 @@ export declare const props: {
|
|
|
138
138
|
};
|
|
139
139
|
ariaLabel: StringConstructor;
|
|
140
140
|
popperClass: {
|
|
141
|
-
readonly type: PropType<string
|
|
141
|
+
readonly type: PropType<string | {
|
|
142
|
+
[x: string]: boolean;
|
|
143
|
+
} | (string | {
|
|
144
|
+
[x: string]: boolean;
|
|
145
|
+
} | (string | {
|
|
146
|
+
[x: string]: boolean;
|
|
147
|
+
} | (string | {
|
|
148
|
+
[x: string]: boolean;
|
|
149
|
+
} | (string | {
|
|
150
|
+
[x: string]: boolean;
|
|
151
|
+
} | (string | {
|
|
152
|
+
[x: string]: boolean;
|
|
153
|
+
} | (string | {
|
|
154
|
+
[x: string]: boolean;
|
|
155
|
+
} | (string | {
|
|
156
|
+
[x: string]: boolean;
|
|
157
|
+
} | (string | {
|
|
158
|
+
[x: string]: boolean;
|
|
159
|
+
} | (string | {
|
|
160
|
+
[x: string]: boolean;
|
|
161
|
+
} | (string | any[] | {
|
|
162
|
+
[x: string]: boolean;
|
|
163
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
164
|
+
readonly required: false;
|
|
165
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
166
|
+
__epPropKey: true;
|
|
167
|
+
};
|
|
168
|
+
popperStyle: {
|
|
169
|
+
readonly type: PropType<import("vue").StyleValue>;
|
|
142
170
|
readonly required: false;
|
|
143
171
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
144
172
|
__epPropKey: true;
|
|
145
|
-
} & {
|
|
146
|
-
readonly default: "";
|
|
147
173
|
};
|
|
148
174
|
fallbackPlacements: {
|
|
149
175
|
readonly type: PropType<import("element-plus").Placement[]>;
|
|
@@ -197,6 +223,12 @@ export declare const props: {
|
|
|
197
223
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
198
224
|
__epPropKey: true;
|
|
199
225
|
};
|
|
226
|
+
clearIcon: {
|
|
227
|
+
readonly type: PropType<unknown>;
|
|
228
|
+
readonly required: false;
|
|
229
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
230
|
+
__epPropKey: true;
|
|
231
|
+
};
|
|
200
232
|
prefixIcon: {
|
|
201
233
|
readonly type: PropType<unknown>;
|
|
202
234
|
readonly required: false;
|
|
@@ -221,13 +253,23 @@ export declare const props: {
|
|
|
221
253
|
} & {
|
|
222
254
|
readonly default: true;
|
|
223
255
|
};
|
|
224
|
-
|
|
225
|
-
readonly type: PropType<
|
|
256
|
+
showNow: {
|
|
257
|
+
readonly type: PropType<boolean>;
|
|
226
258
|
readonly required: false;
|
|
227
259
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
228
260
|
__epPropKey: true;
|
|
261
|
+
} & {
|
|
262
|
+
readonly default: true;
|
|
229
263
|
};
|
|
230
|
-
|
|
264
|
+
showConfirm: {
|
|
265
|
+
readonly type: PropType<boolean>;
|
|
266
|
+
readonly required: false;
|
|
267
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
268
|
+
__epPropKey: true;
|
|
269
|
+
} & {
|
|
270
|
+
readonly default: true;
|
|
271
|
+
};
|
|
272
|
+
showFooter: {
|
|
231
273
|
readonly type: PropType<boolean>;
|
|
232
274
|
readonly required: false;
|
|
233
275
|
readonly validator: ((val: unknown) => boolean) | undefined;
|