cosey 0.6.21 → 0.6.23
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/context-menu/content.d.ts +2 -12
- package/components/context-menu/content.js +0 -6
- package/components/context-menu/context-menu-item.js +6 -5
- package/components/context-menu/context-menu.js +6 -5
- package/components/field/components/checkbox-group/checkbox-group.vue.js +1 -2
- package/components/field/components/remote-select/remote-select.d.ts +2 -2
- package/components/field/field.api.d.ts +2 -2
- package/components/form/form-item.api.d.ts +2 -2
- package/components/form/form-item.vue.js +1 -1
- package/components/form/form.api.d.ts +1 -1
- package/components/form/form.d.ts +3 -3
- package/components/form/index.d.ts +7 -7
- package/components/form-dialog/form-dialog.d.ts +33 -3
- package/components/form-drawer/form-drawer.d.ts +34 -3
- package/components/form-drawer/form-drawer.vue.d.ts +71 -6
- package/components/form-drawer/index.d.ts +111 -9
- package/components/form-list/form-list.api.d.ts +2 -2
- package/components/form-list/form-list.vue.js +1 -1
- package/components/form-list/index.d.ts +1 -1
- package/components/form-query/form-query.api.d.ts +1 -1
- package/components/form-query/form-query.d.ts +3 -3
- package/components/form-query/index.d.ts +6 -6
- package/components/horizontal-tree/{style/index.d.ts → horizontal-tree.style.d.ts} +1 -1
- package/components/horizontal-tree/{style/index.js → horizontal-tree.style.js} +1 -1
- package/components/horizontal-tree/horizontal-tree.vue.d.ts +1 -1
- package/components/horizontal-tree/horizontal-tree.vue.js +1 -1
- package/components/horizontal-tree/index.d.ts +5 -5
- package/components/image-card/image-card.api.d.ts +8 -0
- package/components/image-card/image-card.d.ts +17 -0
- package/components/image-card/index.d.ts +27 -0
- package/components/remote-select/index.d.ts +98 -32
- package/components/remote-select/remote-select.api.d.ts +26 -4
- package/components/remote-select/remote-select.d.ts +58 -14
- package/components/stack-dialog/stack-dialog.d.ts +33 -3
- package/components/table/index.d.ts +8 -2
- package/components/table/table-column/table-column.vue.d.ts +6 -6
- package/components/table/table-export/table-export.d.ts +33 -3
- package/components/table/table-export/table-export.vue.d.ts +68 -6
- package/components/table/table-query/table-query.d.ts +1 -1
- package/components/table/table-query/table-query.vue.d.ts +3 -3
- package/components/table/table.d.ts +1 -0
- package/components/table/table.vue.d.ts +3 -0
- package/components/table-action/item.api.d.ts +8 -1
- package/components/table-action/item.d.ts +16 -2
- package/layout/layout-tabbar/style/index.js +2 -1
- package/locale/lang/ar.d.ts +23 -1
- package/locale/lang/en.d.ts +1 -1
- package/locale/lang/zh-cn.d.ts +1 -0
- package/package.json +2 -2
- package/utils/components.d.ts +6 -2
- /package/components/horizontal-tree/{horizontal-tree.d.ts → horizontal-tree.api.d.ts} +0 -0
- /package/components/horizontal-tree/{horizontal-tree.js → horizontal-tree.api.js} +0 -0
|
@@ -143,7 +143,7 @@ declare const _RemoteSelect: {
|
|
|
143
143
|
hideRequiredAsterisk: BooleanConstructor;
|
|
144
144
|
scrollToError: BooleanConstructor;
|
|
145
145
|
scrollIntoViewOptions: {
|
|
146
|
-
readonly type: import("vue").PropType<boolean |
|
|
146
|
+
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
147
147
|
readonly required: false;
|
|
148
148
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
149
149
|
__epPropKey: true;
|
|
@@ -172,7 +172,7 @@ declare const _RemoteSelect: {
|
|
|
172
172
|
ariaLabel: StringConstructor;
|
|
173
173
|
emptyValues: ArrayConstructor;
|
|
174
174
|
valueOnClear: {
|
|
175
|
-
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
175
|
+
readonly type: import("vue").PropType<string | number | boolean | Function | null>;
|
|
176
176
|
readonly required: false;
|
|
177
177
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
178
178
|
__epPropKey: true;
|
|
@@ -182,7 +182,7 @@ declare const _RemoteSelect: {
|
|
|
182
182
|
name: StringConstructor;
|
|
183
183
|
id: StringConstructor;
|
|
184
184
|
modelValue: {
|
|
185
|
-
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
185
|
+
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null>;
|
|
186
186
|
readonly required: false;
|
|
187
187
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
188
188
|
__epPropKey: true;
|
|
@@ -225,6 +225,12 @@ declare const _RemoteSelect: {
|
|
|
225
225
|
} & {
|
|
226
226
|
readonly default: string;
|
|
227
227
|
};
|
|
228
|
+
popperStyle: {
|
|
229
|
+
readonly type: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
230
|
+
readonly required: false;
|
|
231
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
232
|
+
__epPropKey: true;
|
|
233
|
+
};
|
|
228
234
|
popperOptions: {
|
|
229
235
|
readonly type: import("vue").PropType<any>;
|
|
230
236
|
readonly required: false;
|
|
@@ -237,8 +243,18 @@ declare const _RemoteSelect: {
|
|
|
237
243
|
loadingText: StringConstructor;
|
|
238
244
|
noMatchText: StringConstructor;
|
|
239
245
|
noDataText: StringConstructor;
|
|
240
|
-
remoteMethod:
|
|
241
|
-
|
|
246
|
+
remoteMethod: {
|
|
247
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
248
|
+
readonly required: false;
|
|
249
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
250
|
+
__epPropKey: true;
|
|
251
|
+
};
|
|
252
|
+
filterMethod: {
|
|
253
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
254
|
+
readonly required: false;
|
|
255
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
256
|
+
__epPropKey: true;
|
|
257
|
+
};
|
|
242
258
|
multiple: BooleanConstructor;
|
|
243
259
|
multipleLimit: {
|
|
244
260
|
readonly type: import("vue").PropType<number>;
|
|
@@ -379,11 +395,17 @@ declare const _RemoteSelect: {
|
|
|
379
395
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
380
396
|
__epPropKey: true;
|
|
381
397
|
};
|
|
398
|
+
options: {
|
|
399
|
+
readonly type: import("vue").PropType<Record<string, any>[]>;
|
|
400
|
+
readonly required: false;
|
|
401
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
402
|
+
__epPropKey: true;
|
|
403
|
+
};
|
|
382
404
|
}>> & Readonly<{
|
|
383
405
|
onClear?: (() => any) | undefined;
|
|
384
406
|
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
385
|
-
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
386
|
-
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
407
|
+
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
408
|
+
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
387
409
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
388
410
|
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
389
411
|
"onRemove-tag"?: ((val: unknown) => any) | undefined;
|
|
@@ -409,7 +431,7 @@ declare const _RemoteSelect: {
|
|
|
409
431
|
disabled: boolean;
|
|
410
432
|
immediate: boolean;
|
|
411
433
|
valueKey: string;
|
|
412
|
-
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[];
|
|
434
|
+
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null;
|
|
413
435
|
placement: any;
|
|
414
436
|
popperClass: string;
|
|
415
437
|
teleported: boolean;
|
|
@@ -419,20 +441,20 @@ declare const _RemoteSelect: {
|
|
|
419
441
|
tabindex: string | number;
|
|
420
442
|
validateEvent: boolean;
|
|
421
443
|
loading: boolean;
|
|
422
|
-
valueOnClear: string | number | boolean | Function;
|
|
444
|
+
valueOnClear: string | number | boolean | Function | null;
|
|
423
445
|
filterable: boolean;
|
|
424
446
|
collapseTags: boolean;
|
|
425
447
|
maxCollapseTags: number;
|
|
426
448
|
collapseTagsTooltip: boolean;
|
|
427
449
|
fallbackPlacements: Placement[];
|
|
450
|
+
effect: import("element-plus").PopperEffect;
|
|
428
451
|
tagType: "warning" | "success" | "primary" | "info" | "danger";
|
|
429
452
|
tagEffect: "dark" | "light" | "plain";
|
|
430
453
|
persistent: boolean;
|
|
431
454
|
pagination: boolean | import("element-plus").PaginationProps;
|
|
455
|
+
automaticDropdown: boolean;
|
|
432
456
|
popperOptions: any;
|
|
433
457
|
showArrow: boolean;
|
|
434
|
-
automaticDropdown: boolean;
|
|
435
|
-
effect: import("element-plus").PopperEffect;
|
|
436
458
|
allowCreate: boolean;
|
|
437
459
|
remote: boolean;
|
|
438
460
|
multipleLimit: number;
|
|
@@ -589,7 +611,7 @@ declare const _RemoteSelect: {
|
|
|
589
611
|
hideRequiredAsterisk: BooleanConstructor;
|
|
590
612
|
scrollToError: BooleanConstructor;
|
|
591
613
|
scrollIntoViewOptions: {
|
|
592
|
-
readonly type: import("vue").PropType<boolean |
|
|
614
|
+
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
593
615
|
readonly required: false;
|
|
594
616
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
595
617
|
__epPropKey: true;
|
|
@@ -618,7 +640,7 @@ declare const _RemoteSelect: {
|
|
|
618
640
|
ariaLabel: StringConstructor;
|
|
619
641
|
emptyValues: ArrayConstructor;
|
|
620
642
|
valueOnClear: {
|
|
621
|
-
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
643
|
+
readonly type: import("vue").PropType<string | number | boolean | Function | null>;
|
|
622
644
|
readonly required: false;
|
|
623
645
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
624
646
|
__epPropKey: true;
|
|
@@ -628,7 +650,7 @@ declare const _RemoteSelect: {
|
|
|
628
650
|
name: StringConstructor;
|
|
629
651
|
id: StringConstructor;
|
|
630
652
|
modelValue: {
|
|
631
|
-
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
653
|
+
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null>;
|
|
632
654
|
readonly required: false;
|
|
633
655
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
634
656
|
__epPropKey: true;
|
|
@@ -671,6 +693,12 @@ declare const _RemoteSelect: {
|
|
|
671
693
|
} & {
|
|
672
694
|
readonly default: string;
|
|
673
695
|
};
|
|
696
|
+
popperStyle: {
|
|
697
|
+
readonly type: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
698
|
+
readonly required: false;
|
|
699
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
700
|
+
__epPropKey: true;
|
|
701
|
+
};
|
|
674
702
|
popperOptions: {
|
|
675
703
|
readonly type: import("vue").PropType<any>;
|
|
676
704
|
readonly required: false;
|
|
@@ -683,8 +711,18 @@ declare const _RemoteSelect: {
|
|
|
683
711
|
loadingText: StringConstructor;
|
|
684
712
|
noMatchText: StringConstructor;
|
|
685
713
|
noDataText: StringConstructor;
|
|
686
|
-
remoteMethod:
|
|
687
|
-
|
|
714
|
+
remoteMethod: {
|
|
715
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
716
|
+
readonly required: false;
|
|
717
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
718
|
+
__epPropKey: true;
|
|
719
|
+
};
|
|
720
|
+
filterMethod: {
|
|
721
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
722
|
+
readonly required: false;
|
|
723
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
724
|
+
__epPropKey: true;
|
|
725
|
+
};
|
|
688
726
|
multiple: BooleanConstructor;
|
|
689
727
|
multipleLimit: {
|
|
690
728
|
readonly type: import("vue").PropType<number>;
|
|
@@ -825,11 +863,17 @@ declare const _RemoteSelect: {
|
|
|
825
863
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
826
864
|
__epPropKey: true;
|
|
827
865
|
};
|
|
866
|
+
options: {
|
|
867
|
+
readonly type: import("vue").PropType<Record<string, any>[]>;
|
|
868
|
+
readonly required: false;
|
|
869
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
870
|
+
__epPropKey: true;
|
|
871
|
+
};
|
|
828
872
|
}>> & Readonly<{
|
|
829
873
|
onClear?: (() => any) | undefined;
|
|
830
874
|
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
831
|
-
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
832
|
-
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
875
|
+
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
876
|
+
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
833
877
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
834
878
|
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
835
879
|
"onRemove-tag"?: ((val: unknown) => any) | undefined;
|
|
@@ -843,7 +887,7 @@ declare const _RemoteSelect: {
|
|
|
843
887
|
disabled: boolean;
|
|
844
888
|
immediate: boolean;
|
|
845
889
|
valueKey: string;
|
|
846
|
-
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[];
|
|
890
|
+
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null;
|
|
847
891
|
placement: any;
|
|
848
892
|
popperClass: string;
|
|
849
893
|
teleported: boolean;
|
|
@@ -853,20 +897,20 @@ declare const _RemoteSelect: {
|
|
|
853
897
|
tabindex: string | number;
|
|
854
898
|
validateEvent: boolean;
|
|
855
899
|
loading: boolean;
|
|
856
|
-
valueOnClear: string | number | boolean | Function;
|
|
900
|
+
valueOnClear: string | number | boolean | Function | null;
|
|
857
901
|
filterable: boolean;
|
|
858
902
|
collapseTags: boolean;
|
|
859
903
|
maxCollapseTags: number;
|
|
860
904
|
collapseTagsTooltip: boolean;
|
|
861
905
|
fallbackPlacements: Placement[];
|
|
906
|
+
effect: import("element-plus").PopperEffect;
|
|
862
907
|
tagType: "warning" | "success" | "primary" | "info" | "danger";
|
|
863
908
|
tagEffect: "dark" | "light" | "plain";
|
|
864
909
|
persistent: boolean;
|
|
865
910
|
pagination: boolean | import("element-plus").PaginationProps;
|
|
911
|
+
automaticDropdown: boolean;
|
|
866
912
|
popperOptions: any;
|
|
867
913
|
showArrow: boolean;
|
|
868
|
-
automaticDropdown: boolean;
|
|
869
|
-
effect: import("element-plus").PopperEffect;
|
|
870
914
|
allowCreate: boolean;
|
|
871
915
|
remote: boolean;
|
|
872
916
|
multipleLimit: number;
|
|
@@ -907,7 +951,7 @@ declare const _RemoteSelect: {
|
|
|
907
951
|
ariaLabel: StringConstructor;
|
|
908
952
|
emptyValues: ArrayConstructor;
|
|
909
953
|
valueOnClear: {
|
|
910
|
-
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
954
|
+
readonly type: import("vue").PropType<string | number | boolean | Function | null>;
|
|
911
955
|
readonly required: false;
|
|
912
956
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
913
957
|
__epPropKey: true;
|
|
@@ -917,7 +961,7 @@ declare const _RemoteSelect: {
|
|
|
917
961
|
name: StringConstructor;
|
|
918
962
|
id: StringConstructor;
|
|
919
963
|
modelValue: {
|
|
920
|
-
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
964
|
+
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null>;
|
|
921
965
|
readonly required: false;
|
|
922
966
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
923
967
|
__epPropKey: true;
|
|
@@ -960,6 +1004,12 @@ declare const _RemoteSelect: {
|
|
|
960
1004
|
} & {
|
|
961
1005
|
readonly default: string;
|
|
962
1006
|
};
|
|
1007
|
+
popperStyle: {
|
|
1008
|
+
readonly type: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
1009
|
+
readonly required: false;
|
|
1010
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1011
|
+
__epPropKey: true;
|
|
1012
|
+
};
|
|
963
1013
|
popperOptions: {
|
|
964
1014
|
readonly type: import("vue").PropType<any>;
|
|
965
1015
|
readonly required: false;
|
|
@@ -972,8 +1022,18 @@ declare const _RemoteSelect: {
|
|
|
972
1022
|
loadingText: StringConstructor;
|
|
973
1023
|
noMatchText: StringConstructor;
|
|
974
1024
|
noDataText: StringConstructor;
|
|
975
|
-
remoteMethod:
|
|
976
|
-
|
|
1025
|
+
remoteMethod: {
|
|
1026
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
1027
|
+
readonly required: false;
|
|
1028
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1029
|
+
__epPropKey: true;
|
|
1030
|
+
};
|
|
1031
|
+
filterMethod: {
|
|
1032
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
1033
|
+
readonly required: false;
|
|
1034
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1035
|
+
__epPropKey: true;
|
|
1036
|
+
};
|
|
977
1037
|
multiple: BooleanConstructor;
|
|
978
1038
|
multipleLimit: {
|
|
979
1039
|
readonly type: import("vue").PropType<number>;
|
|
@@ -1114,11 +1174,17 @@ declare const _RemoteSelect: {
|
|
|
1114
1174
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1115
1175
|
__epPropKey: true;
|
|
1116
1176
|
};
|
|
1177
|
+
options: {
|
|
1178
|
+
readonly type: import("vue").PropType<Record<string, any>[]>;
|
|
1179
|
+
readonly required: false;
|
|
1180
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1181
|
+
__epPropKey: true;
|
|
1182
|
+
};
|
|
1117
1183
|
}>> & Readonly<{
|
|
1118
1184
|
onClear?: (() => any) | undefined;
|
|
1119
1185
|
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
1120
|
-
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
1121
|
-
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
1186
|
+
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
1187
|
+
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
1122
1188
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
1123
1189
|
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
1124
1190
|
"onRemove-tag"?: ((val: unknown) => any) | undefined;
|
|
@@ -1144,7 +1210,7 @@ declare const _RemoteSelect: {
|
|
|
1144
1210
|
disabled: boolean;
|
|
1145
1211
|
immediate: boolean;
|
|
1146
1212
|
valueKey: string;
|
|
1147
|
-
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[];
|
|
1213
|
+
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null;
|
|
1148
1214
|
placement: any;
|
|
1149
1215
|
popperClass: string;
|
|
1150
1216
|
teleported: boolean;
|
|
@@ -1154,20 +1220,20 @@ declare const _RemoteSelect: {
|
|
|
1154
1220
|
tabindex: string | number;
|
|
1155
1221
|
validateEvent: boolean;
|
|
1156
1222
|
loading: boolean;
|
|
1157
|
-
valueOnClear: string | number | boolean | Function;
|
|
1223
|
+
valueOnClear: string | number | boolean | Function | null;
|
|
1158
1224
|
filterable: boolean;
|
|
1159
1225
|
collapseTags: boolean;
|
|
1160
1226
|
maxCollapseTags: number;
|
|
1161
1227
|
collapseTagsTooltip: boolean;
|
|
1162
1228
|
fallbackPlacements: Placement[];
|
|
1229
|
+
effect: import("element-plus").PopperEffect;
|
|
1163
1230
|
tagType: "warning" | "success" | "primary" | "info" | "danger";
|
|
1164
1231
|
tagEffect: "dark" | "light" | "plain";
|
|
1165
1232
|
persistent: boolean;
|
|
1166
1233
|
pagination: boolean | import("element-plus").PaginationProps;
|
|
1234
|
+
automaticDropdown: boolean;
|
|
1167
1235
|
popperOptions: any;
|
|
1168
1236
|
showArrow: boolean;
|
|
1169
|
-
automaticDropdown: boolean;
|
|
1170
|
-
effect: import("element-plus").PopperEffect;
|
|
1171
1237
|
allowCreate: boolean;
|
|
1172
1238
|
remote: boolean;
|
|
1173
1239
|
multipleLimit: number;
|
|
@@ -33,7 +33,7 @@ export declare const remoteSelectProps: {
|
|
|
33
33
|
ariaLabel: StringConstructor;
|
|
34
34
|
emptyValues: ArrayConstructor;
|
|
35
35
|
valueOnClear: {
|
|
36
|
-
readonly type: PropType<string | number | boolean | Function>;
|
|
36
|
+
readonly type: PropType<string | number | boolean | Function | null>;
|
|
37
37
|
readonly required: false;
|
|
38
38
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
39
39
|
__epPropKey: true;
|
|
@@ -43,7 +43,7 @@ export declare const remoteSelectProps: {
|
|
|
43
43
|
name: StringConstructor;
|
|
44
44
|
id: StringConstructor;
|
|
45
45
|
modelValue: {
|
|
46
|
-
readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
46
|
+
readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null>;
|
|
47
47
|
readonly required: false;
|
|
48
48
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
49
49
|
__epPropKey: true;
|
|
@@ -86,6 +86,12 @@ export declare const remoteSelectProps: {
|
|
|
86
86
|
} & {
|
|
87
87
|
readonly default: string;
|
|
88
88
|
};
|
|
89
|
+
popperStyle: {
|
|
90
|
+
readonly type: PropType<string | import("vue").CSSProperties>;
|
|
91
|
+
readonly required: false;
|
|
92
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
93
|
+
__epPropKey: true;
|
|
94
|
+
};
|
|
89
95
|
popperOptions: {
|
|
90
96
|
readonly type: PropType<any>;
|
|
91
97
|
readonly required: false;
|
|
@@ -98,8 +104,18 @@ export declare const remoteSelectProps: {
|
|
|
98
104
|
loadingText: StringConstructor;
|
|
99
105
|
noMatchText: StringConstructor;
|
|
100
106
|
noDataText: StringConstructor;
|
|
101
|
-
remoteMethod:
|
|
102
|
-
|
|
107
|
+
remoteMethod: {
|
|
108
|
+
readonly type: PropType<(query: string) => void>;
|
|
109
|
+
readonly required: false;
|
|
110
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
111
|
+
__epPropKey: true;
|
|
112
|
+
};
|
|
113
|
+
filterMethod: {
|
|
114
|
+
readonly type: PropType<(query: string) => void>;
|
|
115
|
+
readonly required: false;
|
|
116
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
117
|
+
__epPropKey: true;
|
|
118
|
+
};
|
|
103
119
|
multiple: BooleanConstructor;
|
|
104
120
|
multipleLimit: {
|
|
105
121
|
readonly type: PropType<number>;
|
|
@@ -240,6 +256,12 @@ export declare const remoteSelectProps: {
|
|
|
240
256
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
241
257
|
__epPropKey: true;
|
|
242
258
|
};
|
|
259
|
+
options: {
|
|
260
|
+
readonly type: PropType<Record<string, any>[]>;
|
|
261
|
+
readonly required: false;
|
|
262
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
263
|
+
__epPropKey: true;
|
|
264
|
+
};
|
|
243
265
|
};
|
|
244
266
|
export type RemoteSelectProps = ExtractPropTypes<typeof remoteSelectProps>;
|
|
245
267
|
export interface RemoteSelectSlots {
|
|
@@ -29,7 +29,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
29
|
ariaLabel: StringConstructor;
|
|
30
30
|
emptyValues: ArrayConstructor;
|
|
31
31
|
valueOnClear: {
|
|
32
|
-
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
32
|
+
readonly type: import("vue").PropType<string | number | boolean | Function | null>;
|
|
33
33
|
readonly required: false;
|
|
34
34
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
35
35
|
__epPropKey: true;
|
|
@@ -39,7 +39,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
39
39
|
name: StringConstructor;
|
|
40
40
|
id: StringConstructor;
|
|
41
41
|
modelValue: {
|
|
42
|
-
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
42
|
+
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null>;
|
|
43
43
|
readonly required: false;
|
|
44
44
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
45
45
|
__epPropKey: true;
|
|
@@ -82,6 +82,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
82
82
|
} & {
|
|
83
83
|
readonly default: string;
|
|
84
84
|
};
|
|
85
|
+
popperStyle: {
|
|
86
|
+
readonly type: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
87
|
+
readonly required: false;
|
|
88
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
89
|
+
__epPropKey: true;
|
|
90
|
+
};
|
|
85
91
|
popperOptions: {
|
|
86
92
|
readonly type: import("vue").PropType<any>;
|
|
87
93
|
readonly required: false;
|
|
@@ -94,8 +100,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
94
100
|
loadingText: StringConstructor;
|
|
95
101
|
noMatchText: StringConstructor;
|
|
96
102
|
noDataText: StringConstructor;
|
|
97
|
-
remoteMethod:
|
|
98
|
-
|
|
103
|
+
remoteMethod: {
|
|
104
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
105
|
+
readonly required: false;
|
|
106
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
107
|
+
__epPropKey: true;
|
|
108
|
+
};
|
|
109
|
+
filterMethod: {
|
|
110
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
111
|
+
readonly required: false;
|
|
112
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
113
|
+
__epPropKey: true;
|
|
114
|
+
};
|
|
99
115
|
multiple: BooleanConstructor;
|
|
100
116
|
multipleLimit: {
|
|
101
117
|
readonly type: import("vue").PropType<number>;
|
|
@@ -236,6 +252,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
236
252
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
237
253
|
__epPropKey: true;
|
|
238
254
|
};
|
|
255
|
+
options: {
|
|
256
|
+
readonly type: import("vue").PropType<Record<string, any>[]>;
|
|
257
|
+
readonly required: false;
|
|
258
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
259
|
+
__epPropKey: true;
|
|
260
|
+
};
|
|
239
261
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
240
262
|
"update:modelValue": (val: import("element-plus").SelectProps["modelValue"]) => boolean;
|
|
241
263
|
change: (val: import("element-plus").SelectProps["modelValue"]) => boolean;
|
|
@@ -278,7 +300,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
278
300
|
ariaLabel: StringConstructor;
|
|
279
301
|
emptyValues: ArrayConstructor;
|
|
280
302
|
valueOnClear: {
|
|
281
|
-
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
303
|
+
readonly type: import("vue").PropType<string | number | boolean | Function | null>;
|
|
282
304
|
readonly required: false;
|
|
283
305
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
284
306
|
__epPropKey: true;
|
|
@@ -288,7 +310,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
288
310
|
name: StringConstructor;
|
|
289
311
|
id: StringConstructor;
|
|
290
312
|
modelValue: {
|
|
291
|
-
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
313
|
+
readonly type: import("vue").PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null>;
|
|
292
314
|
readonly required: false;
|
|
293
315
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
294
316
|
__epPropKey: true;
|
|
@@ -331,6 +353,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
331
353
|
} & {
|
|
332
354
|
readonly default: string;
|
|
333
355
|
};
|
|
356
|
+
popperStyle: {
|
|
357
|
+
readonly type: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
358
|
+
readonly required: false;
|
|
359
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
360
|
+
__epPropKey: true;
|
|
361
|
+
};
|
|
334
362
|
popperOptions: {
|
|
335
363
|
readonly type: import("vue").PropType<any>;
|
|
336
364
|
readonly required: false;
|
|
@@ -343,8 +371,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
343
371
|
loadingText: StringConstructor;
|
|
344
372
|
noMatchText: StringConstructor;
|
|
345
373
|
noDataText: StringConstructor;
|
|
346
|
-
remoteMethod:
|
|
347
|
-
|
|
374
|
+
remoteMethod: {
|
|
375
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
376
|
+
readonly required: false;
|
|
377
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
378
|
+
__epPropKey: true;
|
|
379
|
+
};
|
|
380
|
+
filterMethod: {
|
|
381
|
+
readonly type: import("vue").PropType<(query: string) => void>;
|
|
382
|
+
readonly required: false;
|
|
383
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
384
|
+
__epPropKey: true;
|
|
385
|
+
};
|
|
348
386
|
multiple: BooleanConstructor;
|
|
349
387
|
multipleLimit: {
|
|
350
388
|
readonly type: import("vue").PropType<number>;
|
|
@@ -485,11 +523,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
485
523
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
486
524
|
__epPropKey: true;
|
|
487
525
|
};
|
|
526
|
+
options: {
|
|
527
|
+
readonly type: import("vue").PropType<Record<string, any>[]>;
|
|
528
|
+
readonly required: false;
|
|
529
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
530
|
+
__epPropKey: true;
|
|
531
|
+
};
|
|
488
532
|
}>> & Readonly<{
|
|
489
533
|
onClear?: (() => any) | undefined;
|
|
490
534
|
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
491
|
-
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
492
|
-
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]) | undefined) => any) | undefined;
|
|
535
|
+
"onUpdate:modelValue"?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
536
|
+
onChange?: ((val: ((string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null) | undefined) => any) | undefined;
|
|
493
537
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
494
538
|
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
495
539
|
"onRemove-tag"?: ((val: unknown) => any) | undefined;
|
|
@@ -503,7 +547,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
503
547
|
disabled: boolean;
|
|
504
548
|
immediate: boolean;
|
|
505
549
|
valueKey: string;
|
|
506
|
-
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[];
|
|
550
|
+
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[] | null;
|
|
507
551
|
placement: any;
|
|
508
552
|
popperClass: string;
|
|
509
553
|
teleported: boolean;
|
|
@@ -513,20 +557,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
513
557
|
tabindex: string | number;
|
|
514
558
|
validateEvent: boolean;
|
|
515
559
|
loading: boolean;
|
|
516
|
-
valueOnClear: string | number | boolean | Function;
|
|
560
|
+
valueOnClear: string | number | boolean | Function | null;
|
|
517
561
|
filterable: boolean;
|
|
518
562
|
collapseTags: boolean;
|
|
519
563
|
maxCollapseTags: number;
|
|
520
564
|
collapseTagsTooltip: boolean;
|
|
521
565
|
fallbackPlacements: Placement[];
|
|
566
|
+
effect: import("element-plus").PopperEffect;
|
|
522
567
|
tagType: "warning" | "success" | "primary" | "info" | "danger";
|
|
523
568
|
tagEffect: "dark" | "light" | "plain";
|
|
524
569
|
persistent: boolean;
|
|
525
570
|
pagination: boolean | PaginationProps;
|
|
571
|
+
automaticDropdown: boolean;
|
|
526
572
|
popperOptions: any;
|
|
527
573
|
showArrow: boolean;
|
|
528
|
-
automaticDropdown: boolean;
|
|
529
|
-
effect: import("element-plus").PopperEffect;
|
|
530
574
|
allowCreate: boolean;
|
|
531
575
|
remote: boolean;
|
|
532
576
|
multipleLimit: number;
|
|
@@ -50,6 +50,7 @@ export declare const stackDialogProps: {
|
|
|
50
50
|
} & {
|
|
51
51
|
readonly default: true;
|
|
52
52
|
};
|
|
53
|
+
modalPenetrable: BooleanConstructor;
|
|
53
54
|
openDelay: {
|
|
54
55
|
readonly type: import("vue").PropType<number>;
|
|
55
56
|
readonly required: false;
|
|
@@ -98,16 +99,45 @@ export declare const stackDialogProps: {
|
|
|
98
99
|
} & {
|
|
99
100
|
readonly default: "2";
|
|
100
101
|
};
|
|
102
|
+
transition: {
|
|
103
|
+
readonly type: import("vue").PropType<import("element-plus").DialogTransition>;
|
|
104
|
+
readonly required: false;
|
|
105
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
106
|
+
__epPropKey: true;
|
|
107
|
+
} & {
|
|
108
|
+
readonly default: undefined;
|
|
109
|
+
};
|
|
101
110
|
center: BooleanConstructor;
|
|
102
|
-
alignCenter:
|
|
111
|
+
alignCenter: {
|
|
112
|
+
readonly type: import("vue").PropType<boolean>;
|
|
113
|
+
readonly required: false;
|
|
114
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
115
|
+
__epPropKey: true;
|
|
116
|
+
} & {
|
|
117
|
+
readonly default: undefined;
|
|
118
|
+
};
|
|
103
119
|
closeIcon: {
|
|
104
120
|
readonly type: import("vue").PropType<string | import("vue").Component>;
|
|
105
121
|
readonly required: false;
|
|
106
122
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
107
123
|
__epPropKey: true;
|
|
108
124
|
};
|
|
109
|
-
draggable:
|
|
110
|
-
|
|
125
|
+
draggable: {
|
|
126
|
+
readonly type: import("vue").PropType<boolean>;
|
|
127
|
+
readonly required: false;
|
|
128
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
129
|
+
__epPropKey: true;
|
|
130
|
+
} & {
|
|
131
|
+
readonly default: undefined;
|
|
132
|
+
};
|
|
133
|
+
overflow: {
|
|
134
|
+
readonly type: import("vue").PropType<boolean>;
|
|
135
|
+
readonly required: false;
|
|
136
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
137
|
+
__epPropKey: true;
|
|
138
|
+
} & {
|
|
139
|
+
readonly default: undefined;
|
|
140
|
+
};
|
|
111
141
|
fullscreen: BooleanConstructor;
|
|
112
142
|
showClose: {
|
|
113
143
|
readonly type: import("vue").PropType<boolean>;
|