@vunk/form 2.14.18 → 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/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
|
@@ -59,7 +59,14 @@ export declare const props: {
|
|
|
59
59
|
} & {
|
|
60
60
|
readonly default: undefined;
|
|
61
61
|
};
|
|
62
|
-
text:
|
|
62
|
+
text: {
|
|
63
|
+
readonly type: PropType<boolean>;
|
|
64
|
+
readonly required: false;
|
|
65
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
66
|
+
__epPropKey: true;
|
|
67
|
+
} & {
|
|
68
|
+
readonly default: undefined;
|
|
69
|
+
};
|
|
63
70
|
link: BooleanConstructor;
|
|
64
71
|
bg: BooleanConstructor;
|
|
65
72
|
autofocus: BooleanConstructor;
|
|
@@ -58,7 +58,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
58
58
|
} & {
|
|
59
59
|
readonly default: undefined;
|
|
60
60
|
};
|
|
61
|
-
text:
|
|
61
|
+
text: {
|
|
62
|
+
readonly type: import("vue").PropType<boolean>;
|
|
63
|
+
readonly required: false;
|
|
64
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
65
|
+
__epPropKey: true;
|
|
66
|
+
} & {
|
|
67
|
+
readonly default: undefined;
|
|
68
|
+
};
|
|
62
69
|
link: BooleanConstructor;
|
|
63
70
|
bg: BooleanConstructor;
|
|
64
71
|
autofocus: BooleanConstructor;
|
|
@@ -244,7 +251,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
244
251
|
} & {
|
|
245
252
|
readonly default: undefined;
|
|
246
253
|
};
|
|
247
|
-
text:
|
|
254
|
+
text: {
|
|
255
|
+
readonly type: import("vue").PropType<boolean>;
|
|
256
|
+
readonly required: false;
|
|
257
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
258
|
+
__epPropKey: true;
|
|
259
|
+
} & {
|
|
260
|
+
readonly default: undefined;
|
|
261
|
+
};
|
|
248
262
|
link: BooleanConstructor;
|
|
249
263
|
bg: BooleanConstructor;
|
|
250
264
|
autofocus: BooleanConstructor;
|
|
@@ -459,7 +473,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
459
473
|
} & {
|
|
460
474
|
readonly default: undefined;
|
|
461
475
|
};
|
|
462
|
-
readonly text:
|
|
476
|
+
readonly text: {
|
|
477
|
+
readonly type: import("vue").PropType<boolean>;
|
|
478
|
+
readonly required: false;
|
|
479
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
480
|
+
__epPropKey: true;
|
|
481
|
+
} & {
|
|
482
|
+
readonly default: undefined;
|
|
483
|
+
};
|
|
463
484
|
readonly link: BooleanConstructor;
|
|
464
485
|
readonly bg: BooleanConstructor;
|
|
465
486
|
readonly autofocus: BooleanConstructor;
|
|
@@ -513,9 +534,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
513
534
|
readonly autofocus: boolean;
|
|
514
535
|
readonly tag: unknown;
|
|
515
536
|
readonly plain: boolean;
|
|
537
|
+
readonly autoInsertSpace: boolean;
|
|
516
538
|
readonly nativeType: "button" | "reset" | "submit";
|
|
517
539
|
readonly loadingIcon: unknown;
|
|
518
|
-
readonly autoInsertSpace: boolean;
|
|
519
540
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
520
541
|
P: {};
|
|
521
542
|
B: {};
|
|
@@ -570,7 +591,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
570
591
|
} & {
|
|
571
592
|
readonly default: undefined;
|
|
572
593
|
};
|
|
573
|
-
readonly text:
|
|
594
|
+
readonly text: {
|
|
595
|
+
readonly type: import("vue").PropType<boolean>;
|
|
596
|
+
readonly required: false;
|
|
597
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
598
|
+
__epPropKey: true;
|
|
599
|
+
} & {
|
|
600
|
+
readonly default: undefined;
|
|
601
|
+
};
|
|
574
602
|
readonly link: BooleanConstructor;
|
|
575
603
|
readonly bg: BooleanConstructor;
|
|
576
604
|
readonly autofocus: BooleanConstructor;
|
|
@@ -622,9 +650,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
622
650
|
readonly autofocus: boolean;
|
|
623
651
|
readonly tag: unknown;
|
|
624
652
|
readonly plain: boolean;
|
|
653
|
+
readonly autoInsertSpace: boolean;
|
|
625
654
|
readonly nativeType: "button" | "reset" | "submit";
|
|
626
655
|
readonly loadingIcon: unknown;
|
|
627
|
-
readonly autoInsertSpace: boolean;
|
|
628
656
|
}>;
|
|
629
657
|
__isFragment?: never;
|
|
630
658
|
__isTeleport?: never;
|
|
@@ -676,7 +704,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
676
704
|
} & {
|
|
677
705
|
readonly default: undefined;
|
|
678
706
|
};
|
|
679
|
-
readonly text:
|
|
707
|
+
readonly text: {
|
|
708
|
+
readonly type: import("vue").PropType<boolean>;
|
|
709
|
+
readonly required: false;
|
|
710
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
711
|
+
__epPropKey: true;
|
|
712
|
+
} & {
|
|
713
|
+
readonly default: undefined;
|
|
714
|
+
};
|
|
680
715
|
readonly link: BooleanConstructor;
|
|
681
716
|
readonly bg: BooleanConstructor;
|
|
682
717
|
readonly autofocus: BooleanConstructor;
|
|
@@ -730,9 +765,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
730
765
|
readonly autofocus: boolean;
|
|
731
766
|
readonly tag: unknown;
|
|
732
767
|
readonly plain: boolean;
|
|
768
|
+
readonly autoInsertSpace: boolean;
|
|
733
769
|
readonly nativeType: "button" | "reset" | "submit";
|
|
734
770
|
readonly loadingIcon: unknown;
|
|
735
|
-
readonly autoInsertSpace: boolean;
|
|
736
771
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
737
772
|
$slots: {
|
|
738
773
|
loading?(_: {}): any;
|
|
@@ -323,7 +323,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
323
323
|
} & {
|
|
324
324
|
readonly default: undefined;
|
|
325
325
|
};
|
|
326
|
-
readonly text:
|
|
326
|
+
readonly text: {
|
|
327
|
+
readonly type: import("vue").PropType<boolean>;
|
|
328
|
+
readonly required: false;
|
|
329
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
330
|
+
__epPropKey: true;
|
|
331
|
+
} & {
|
|
332
|
+
readonly default: undefined;
|
|
333
|
+
};
|
|
327
334
|
readonly link: BooleanConstructor;
|
|
328
335
|
readonly bg: BooleanConstructor;
|
|
329
336
|
readonly autofocus: BooleanConstructor;
|
|
@@ -377,9 +384,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
377
384
|
readonly autofocus: boolean;
|
|
378
385
|
readonly tag: unknown;
|
|
379
386
|
readonly plain: boolean;
|
|
387
|
+
readonly autoInsertSpace: boolean;
|
|
380
388
|
readonly nativeType: "button" | "reset" | "submit";
|
|
381
389
|
readonly loadingIcon: unknown;
|
|
382
|
-
readonly autoInsertSpace: boolean;
|
|
383
390
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
384
391
|
P: {};
|
|
385
392
|
B: {};
|
|
@@ -434,7 +441,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
434
441
|
} & {
|
|
435
442
|
readonly default: undefined;
|
|
436
443
|
};
|
|
437
|
-
readonly text:
|
|
444
|
+
readonly text: {
|
|
445
|
+
readonly type: import("vue").PropType<boolean>;
|
|
446
|
+
readonly required: false;
|
|
447
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
448
|
+
__epPropKey: true;
|
|
449
|
+
} & {
|
|
450
|
+
readonly default: undefined;
|
|
451
|
+
};
|
|
438
452
|
readonly link: BooleanConstructor;
|
|
439
453
|
readonly bg: BooleanConstructor;
|
|
440
454
|
readonly autofocus: BooleanConstructor;
|
|
@@ -486,9 +500,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
486
500
|
readonly autofocus: boolean;
|
|
487
501
|
readonly tag: unknown;
|
|
488
502
|
readonly plain: boolean;
|
|
503
|
+
readonly autoInsertSpace: boolean;
|
|
489
504
|
readonly nativeType: "button" | "reset" | "submit";
|
|
490
505
|
readonly loadingIcon: unknown;
|
|
491
|
-
readonly autoInsertSpace: boolean;
|
|
492
506
|
}>;
|
|
493
507
|
__isFragment?: never;
|
|
494
508
|
__isTeleport?: never;
|
|
@@ -540,7 +554,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
540
554
|
} & {
|
|
541
555
|
readonly default: undefined;
|
|
542
556
|
};
|
|
543
|
-
readonly text:
|
|
557
|
+
readonly text: {
|
|
558
|
+
readonly type: import("vue").PropType<boolean>;
|
|
559
|
+
readonly required: false;
|
|
560
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
561
|
+
__epPropKey: true;
|
|
562
|
+
} & {
|
|
563
|
+
readonly default: undefined;
|
|
564
|
+
};
|
|
544
565
|
readonly link: BooleanConstructor;
|
|
545
566
|
readonly bg: BooleanConstructor;
|
|
546
567
|
readonly autofocus: BooleanConstructor;
|
|
@@ -594,9 +615,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
594
615
|
readonly autofocus: boolean;
|
|
595
616
|
readonly tag: unknown;
|
|
596
617
|
readonly plain: boolean;
|
|
618
|
+
readonly autoInsertSpace: boolean;
|
|
597
619
|
readonly nativeType: "button" | "reset" | "submit";
|
|
598
620
|
readonly loadingIcon: unknown;
|
|
599
|
-
readonly autoInsertSpace: boolean;
|
|
600
621
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
601
622
|
$slots: {
|
|
602
623
|
loading?(_: {}): any;
|
|
@@ -708,7 +729,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
708
729
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
709
730
|
__epPropKey: true;
|
|
710
731
|
} & {
|
|
711
|
-
readonly default:
|
|
732
|
+
readonly default: undefined;
|
|
712
733
|
};
|
|
713
734
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
714
735
|
readonly footer: string;
|
|
@@ -756,7 +777,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
756
777
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
757
778
|
__epPropKey: true;
|
|
758
779
|
} & {
|
|
759
|
-
readonly default:
|
|
780
|
+
readonly default: undefined;
|
|
760
781
|
};
|
|
761
782
|
}>>, {}, {}, {}, {}, {
|
|
762
783
|
readonly footer: string;
|
|
@@ -801,7 +822,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
801
822
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
802
823
|
__epPropKey: true;
|
|
803
824
|
} & {
|
|
804
|
-
readonly default:
|
|
825
|
+
readonly default: undefined;
|
|
805
826
|
};
|
|
806
827
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
807
828
|
readonly footer: string;
|
|
@@ -120,6 +120,12 @@ export declare const props: {
|
|
|
120
120
|
placeholder: StringConstructor;
|
|
121
121
|
disabled: BooleanConstructor;
|
|
122
122
|
clearable: BooleanConstructor;
|
|
123
|
+
clearIcon: {
|
|
124
|
+
readonly type: PropType<unknown>;
|
|
125
|
+
readonly required: false;
|
|
126
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
127
|
+
__epPropKey: true;
|
|
128
|
+
};
|
|
123
129
|
filterable: BooleanConstructor;
|
|
124
130
|
filterMethod: {
|
|
125
131
|
readonly type: PropType<(node: import("element-plus").CascaderNode, keyword: string) => boolean>;
|
|
@@ -194,12 +200,38 @@ export declare const props: {
|
|
|
194
200
|
readonly default: string[];
|
|
195
201
|
};
|
|
196
202
|
popperClass: {
|
|
197
|
-
readonly type: PropType<string
|
|
203
|
+
readonly type: PropType<string | {
|
|
204
|
+
[x: string]: boolean;
|
|
205
|
+
} | (string | {
|
|
206
|
+
[x: string]: boolean;
|
|
207
|
+
} | (string | {
|
|
208
|
+
[x: string]: boolean;
|
|
209
|
+
} | (string | {
|
|
210
|
+
[x: string]: boolean;
|
|
211
|
+
} | (string | {
|
|
212
|
+
[x: string]: boolean;
|
|
213
|
+
} | (string | {
|
|
214
|
+
[x: string]: boolean;
|
|
215
|
+
} | (string | {
|
|
216
|
+
[x: string]: boolean;
|
|
217
|
+
} | (string | {
|
|
218
|
+
[x: string]: boolean;
|
|
219
|
+
} | (string | {
|
|
220
|
+
[x: string]: boolean;
|
|
221
|
+
} | (string | {
|
|
222
|
+
[x: string]: boolean;
|
|
223
|
+
} | (string | any[] | {
|
|
224
|
+
[x: string]: boolean;
|
|
225
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
226
|
+
readonly required: false;
|
|
227
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
228
|
+
__epPropKey: true;
|
|
229
|
+
};
|
|
230
|
+
popperStyle: {
|
|
231
|
+
readonly type: PropType<import("vue").StyleValue>;
|
|
198
232
|
readonly required: false;
|
|
199
233
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
200
234
|
__epPropKey: true;
|
|
201
|
-
} & {
|
|
202
|
-
readonly default: string;
|
|
203
235
|
};
|
|
204
236
|
teleported: {
|
|
205
237
|
readonly type: PropType<boolean>;
|
|
@@ -209,6 +241,14 @@ export declare const props: {
|
|
|
209
241
|
} & {
|
|
210
242
|
readonly default: true;
|
|
211
243
|
};
|
|
244
|
+
effect: {
|
|
245
|
+
readonly type: PropType<import("element-plus").PopperEffect>;
|
|
246
|
+
readonly required: false;
|
|
247
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
248
|
+
__epPropKey: true;
|
|
249
|
+
} & {
|
|
250
|
+
readonly default: string;
|
|
251
|
+
};
|
|
212
252
|
tagType: {
|
|
213
253
|
default: string;
|
|
214
254
|
type: PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
@@ -239,6 +279,23 @@ export declare const props: {
|
|
|
239
279
|
} & {
|
|
240
280
|
readonly default: boolean;
|
|
241
281
|
};
|
|
282
|
+
showCheckedStrategy: {
|
|
283
|
+
readonly type: PropType<string>;
|
|
284
|
+
readonly required: false;
|
|
285
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
286
|
+
__epPropKey: true;
|
|
287
|
+
} & {
|
|
288
|
+
readonly default: string;
|
|
289
|
+
};
|
|
290
|
+
checkOnClickNode: BooleanConstructor;
|
|
291
|
+
showPrefix: {
|
|
292
|
+
readonly type: PropType<boolean>;
|
|
293
|
+
readonly required: false;
|
|
294
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
295
|
+
__epPropKey: true;
|
|
296
|
+
} & {
|
|
297
|
+
readonly default: boolean;
|
|
298
|
+
};
|
|
242
299
|
modelValue: {
|
|
243
300
|
readonly type: PropType<(string | number)[] | (string | number) | ((string | number)[] | (string | number))[]>;
|
|
244
301
|
readonly required: false;
|
|
@@ -262,10 +319,10 @@ export declare const props: {
|
|
|
262
319
|
readonly default: () => import("element-plus").CascaderProps;
|
|
263
320
|
};
|
|
264
321
|
};
|
|
265
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"props", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"options", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"filterable", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"maxCollapseTagsTooltipHeight", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"cascaderSlots", keyof T2> | Extract<"cascaderRef", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"persistent", keyof T2>, KE> | Exclude<Extract<"teleported", keyof T2>, KE> | Exclude<Extract<"popperClass", keyof T2>, KE> | Exclude<Extract<"fallbackPlacements", keyof T2>, KE> | Exclude<Extract<"placement", keyof T2>, KE> | Exclude<Extract<"props", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"filterMethod", keyof T2>, KE> | Exclude<Extract<"options", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"filterable", keyof T2>, KE> | Exclude<Extract<"collapseTags", keyof T2>, KE> | Exclude<Extract<"collapseTagsTooltip", keyof T2>, KE> | Exclude<Extract<"tagType", keyof T2>, KE> | Exclude<Extract<"emptyValues", keyof T2>, KE> | Exclude<Extract<"valueOnClear", keyof T2>, KE> | Exclude<Extract<"separator", keyof T2>, KE> | Exclude<Extract<"showAllLevels", keyof T2>, KE> | Exclude<Extract<"maxCollapseTags", keyof T2>, KE> | Exclude<Extract<"maxCollapseTagsTooltipHeight", keyof T2>, KE> | Exclude<Extract<"debounce", keyof T2>, KE> | Exclude<Extract<"beforeFilter", keyof T2>, KE> | Exclude<Extract<"tagEffect", keyof T2>, KE> | Exclude<Extract<"optionsUrl", keyof T2>, KE> | Exclude<Extract<"cascaderSlots", keyof T2>, KE> | Exclude<Extract<"cascaderRef", keyof T2>, KE> : Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"props", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"options", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"filterable", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"maxCollapseTagsTooltipHeight", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"cascaderSlots", keyof T2> | Extract<"cascaderRef", keyof T2>]: { [k in Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"props", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"options", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"filterable", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"maxCollapseTagsTooltipHeight", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"cascaderSlots", keyof T2> | Extract<"cascaderRef", keyof T2>]: T2[k]; }[P]; }>;
|
|
322
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"effect", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"props", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"options", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"filterable", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"maxCollapseTagsTooltipHeight", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"showCheckedStrategy", keyof T2> | Extract<"checkOnClickNode", keyof T2> | Extract<"showPrefix", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"cascaderSlots", keyof T2> | Extract<"cascaderRef", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"persistent", keyof T2>, KE> | Exclude<Extract<"teleported", keyof T2>, KE> | Exclude<Extract<"effect", keyof T2>, KE> | Exclude<Extract<"popperClass", keyof T2>, KE> | Exclude<Extract<"popperStyle", keyof T2>, KE> | Exclude<Extract<"fallbackPlacements", keyof T2>, KE> | Exclude<Extract<"placement", keyof T2>, KE> | Exclude<Extract<"props", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"filterMethod", keyof T2>, KE> | Exclude<Extract<"options", keyof T2>, KE> | Exclude<Extract<"clearIcon", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"filterable", keyof T2>, KE> | Exclude<Extract<"collapseTags", keyof T2>, KE> | Exclude<Extract<"collapseTagsTooltip", keyof T2>, KE> | Exclude<Extract<"tagType", keyof T2>, KE> | Exclude<Extract<"emptyValues", keyof T2>, KE> | Exclude<Extract<"valueOnClear", keyof T2>, KE> | Exclude<Extract<"separator", keyof T2>, KE> | Exclude<Extract<"showAllLevels", keyof T2>, KE> | Exclude<Extract<"maxCollapseTags", keyof T2>, KE> | Exclude<Extract<"maxCollapseTagsTooltipHeight", keyof T2>, KE> | Exclude<Extract<"debounce", keyof T2>, KE> | Exclude<Extract<"beforeFilter", keyof T2>, KE> | Exclude<Extract<"tagEffect", keyof T2>, KE> | Exclude<Extract<"showCheckedStrategy", keyof T2>, KE> | Exclude<Extract<"checkOnClickNode", keyof T2>, KE> | Exclude<Extract<"showPrefix", keyof T2>, KE> | Exclude<Extract<"optionsUrl", keyof T2>, KE> | Exclude<Extract<"cascaderSlots", keyof T2>, KE> | Exclude<Extract<"cascaderRef", keyof T2>, KE> : Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"effect", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"props", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"options", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"filterable", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"maxCollapseTagsTooltipHeight", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"showCheckedStrategy", keyof T2> | Extract<"checkOnClickNode", keyof T2> | Extract<"showPrefix", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"cascaderSlots", keyof T2> | Extract<"cascaderRef", keyof T2>]: { [k in Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"effect", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"props", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"options", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"filterable", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"maxCollapseTagsTooltipHeight", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"showCheckedStrategy", keyof T2> | Extract<"checkOnClickNode", keyof T2> | Extract<"showPrefix", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"cascaderSlots", keyof T2> | Extract<"cascaderRef", keyof T2>]: T2[k]; }[P]; }>;
|
|
266
323
|
export declare const emits: {
|
|
267
|
-
"update:modelValue": (value: import("element-plus").CascaderValue) => boolean;
|
|
268
|
-
change: (value: import("element-plus").CascaderValue) => boolean;
|
|
324
|
+
"update:modelValue": (value: import("element-plus").CascaderValue | null | undefined) => boolean;
|
|
325
|
+
change: (value: import("element-plus").CascaderValue | null | undefined) => boolean;
|
|
269
326
|
focus: (evt: FocusEvent) => boolean;
|
|
270
327
|
blur: (evt: FocusEvent) => boolean;
|
|
271
328
|
clear: () => boolean;
|
|
@@ -118,6 +118,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
118
118
|
placeholder: StringConstructor;
|
|
119
119
|
disabled: BooleanConstructor;
|
|
120
120
|
clearable: BooleanConstructor;
|
|
121
|
+
clearIcon: {
|
|
122
|
+
readonly type: import("vue").PropType<unknown>;
|
|
123
|
+
readonly required: false;
|
|
124
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
125
|
+
__epPropKey: true;
|
|
126
|
+
};
|
|
121
127
|
filterable: BooleanConstructor;
|
|
122
128
|
filterMethod: {
|
|
123
129
|
readonly type: import("vue").PropType<(node: import("element-plus").CascaderNode, keyword: string) => boolean>;
|
|
@@ -192,12 +198,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
192
198
|
readonly default: string[];
|
|
193
199
|
};
|
|
194
200
|
popperClass: {
|
|
195
|
-
readonly type: import("vue").PropType<string
|
|
201
|
+
readonly type: import("vue").PropType<string | {
|
|
202
|
+
[x: string]: boolean;
|
|
203
|
+
} | (string | {
|
|
204
|
+
[x: string]: boolean;
|
|
205
|
+
} | (string | {
|
|
206
|
+
[x: string]: boolean;
|
|
207
|
+
} | (string | {
|
|
208
|
+
[x: string]: boolean;
|
|
209
|
+
} | (string | {
|
|
210
|
+
[x: string]: boolean;
|
|
211
|
+
} | (string | {
|
|
212
|
+
[x: string]: boolean;
|
|
213
|
+
} | (string | {
|
|
214
|
+
[x: string]: boolean;
|
|
215
|
+
} | (string | {
|
|
216
|
+
[x: string]: boolean;
|
|
217
|
+
} | (string | {
|
|
218
|
+
[x: string]: boolean;
|
|
219
|
+
} | (string | {
|
|
220
|
+
[x: string]: boolean;
|
|
221
|
+
} | (string | any[] | {
|
|
222
|
+
[x: string]: boolean;
|
|
223
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
224
|
+
readonly required: false;
|
|
225
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
226
|
+
__epPropKey: true;
|
|
227
|
+
};
|
|
228
|
+
popperStyle: {
|
|
229
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
196
230
|
readonly required: false;
|
|
197
231
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
198
232
|
__epPropKey: true;
|
|
199
|
-
} & {
|
|
200
|
-
readonly default: string;
|
|
201
233
|
};
|
|
202
234
|
teleported: {
|
|
203
235
|
readonly type: import("vue").PropType<boolean>;
|
|
@@ -207,6 +239,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
207
239
|
} & {
|
|
208
240
|
readonly default: true;
|
|
209
241
|
};
|
|
242
|
+
effect: {
|
|
243
|
+
readonly type: import("vue").PropType<import("element-plus").PopperEffect>;
|
|
244
|
+
readonly required: false;
|
|
245
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
246
|
+
__epPropKey: true;
|
|
247
|
+
} & {
|
|
248
|
+
readonly default: string;
|
|
249
|
+
};
|
|
210
250
|
tagType: {
|
|
211
251
|
default: string;
|
|
212
252
|
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
@@ -237,6 +277,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
237
277
|
} & {
|
|
238
278
|
readonly default: boolean;
|
|
239
279
|
};
|
|
280
|
+
showCheckedStrategy: {
|
|
281
|
+
readonly type: import("vue").PropType<string>;
|
|
282
|
+
readonly required: false;
|
|
283
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
284
|
+
__epPropKey: true;
|
|
285
|
+
} & {
|
|
286
|
+
readonly default: string;
|
|
287
|
+
};
|
|
288
|
+
checkOnClickNode: BooleanConstructor;
|
|
289
|
+
showPrefix: {
|
|
290
|
+
readonly type: import("vue").PropType<boolean>;
|
|
291
|
+
readonly required: false;
|
|
292
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
293
|
+
__epPropKey: true;
|
|
294
|
+
} & {
|
|
295
|
+
readonly default: boolean;
|
|
296
|
+
};
|
|
240
297
|
modelValue: {
|
|
241
298
|
readonly type: import("vue").PropType<(string | number)[] | (string | number) | ((string | number)[] | (string | number))[]>;
|
|
242
299
|
readonly required: false;
|
|
@@ -265,7 +322,31 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
265
322
|
disabled: boolean;
|
|
266
323
|
persistent: boolean;
|
|
267
324
|
teleported: boolean;
|
|
268
|
-
|
|
325
|
+
effect: import("element-plus").PopperEffect;
|
|
326
|
+
popperClass: string | {
|
|
327
|
+
[x: string]: boolean;
|
|
328
|
+
} | (string | {
|
|
329
|
+
[x: string]: boolean;
|
|
330
|
+
} | (string | {
|
|
331
|
+
[x: string]: boolean;
|
|
332
|
+
} | (string | {
|
|
333
|
+
[x: string]: boolean;
|
|
334
|
+
} | (string | {
|
|
335
|
+
[x: string]: boolean;
|
|
336
|
+
} | (string | {
|
|
337
|
+
[x: string]: boolean;
|
|
338
|
+
} | (string | {
|
|
339
|
+
[x: string]: boolean;
|
|
340
|
+
} | (string | {
|
|
341
|
+
[x: string]: boolean;
|
|
342
|
+
} | (string | {
|
|
343
|
+
[x: string]: boolean;
|
|
344
|
+
} | (string | {
|
|
345
|
+
[x: string]: boolean;
|
|
346
|
+
} | (string | any[] | {
|
|
347
|
+
[x: string]: boolean;
|
|
348
|
+
})[])[])[])[])[])[])[])[])[])[];
|
|
349
|
+
popperStyle: import("vue").StyleValue;
|
|
269
350
|
fallbackPlacements: import("element-plus").Placement[];
|
|
270
351
|
placement: import("element-plus").Placement;
|
|
271
352
|
props: import("element-plus").CascaderProps;
|
|
@@ -273,6 +354,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
273
354
|
clearable: boolean;
|
|
274
355
|
placeholder: string;
|
|
275
356
|
filterMethod: (node: import("element-plus").CascaderNode, keyword: string) => boolean;
|
|
357
|
+
clearIcon: unknown;
|
|
276
358
|
validateEvent: boolean;
|
|
277
359
|
filterable: boolean;
|
|
278
360
|
collapseTags: boolean;
|
|
@@ -287,14 +369,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
287
369
|
debounce: number;
|
|
288
370
|
beforeFilter: (value: string) => boolean | Promise<any>;
|
|
289
371
|
tagEffect: "dark" | "light" | "plain";
|
|
372
|
+
showCheckedStrategy: string;
|
|
373
|
+
checkOnClickNode: boolean;
|
|
374
|
+
showPrefix: boolean;
|
|
290
375
|
}>;
|
|
291
376
|
coreOnEmits: {};
|
|
292
377
|
formItemBindProps: import("vue").ComputedRef<{}>;
|
|
293
378
|
readonly: import("vue").ComputedRef<boolean>;
|
|
294
379
|
options: import("vue").ComputedRef<import("element-plus").CascaderOption[]>;
|
|
295
380
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
296
|
-
"update:modelValue": (value: import("element-plus").CascaderValue) => boolean;
|
|
297
|
-
change: (value: import("element-plus").CascaderValue) => boolean;
|
|
381
|
+
"update:modelValue": (value: import("element-plus").CascaderValue | null | undefined) => boolean;
|
|
382
|
+
change: (value: import("element-plus").CascaderValue | null | undefined) => boolean;
|
|
298
383
|
focus: (evt: FocusEvent) => boolean;
|
|
299
384
|
blur: (evt: FocusEvent) => boolean;
|
|
300
385
|
clear: () => boolean;
|
|
@@ -421,6 +506,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
421
506
|
placeholder: StringConstructor;
|
|
422
507
|
disabled: BooleanConstructor;
|
|
423
508
|
clearable: BooleanConstructor;
|
|
509
|
+
clearIcon: {
|
|
510
|
+
readonly type: import("vue").PropType<unknown>;
|
|
511
|
+
readonly required: false;
|
|
512
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
513
|
+
__epPropKey: true;
|
|
514
|
+
};
|
|
424
515
|
filterable: BooleanConstructor;
|
|
425
516
|
filterMethod: {
|
|
426
517
|
readonly type: import("vue").PropType<(node: import("element-plus").CascaderNode, keyword: string) => boolean>;
|
|
@@ -495,12 +586,38 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
495
586
|
readonly default: string[];
|
|
496
587
|
};
|
|
497
588
|
popperClass: {
|
|
498
|
-
readonly type: import("vue").PropType<string
|
|
589
|
+
readonly type: import("vue").PropType<string | {
|
|
590
|
+
[x: string]: boolean;
|
|
591
|
+
} | (string | {
|
|
592
|
+
[x: string]: boolean;
|
|
593
|
+
} | (string | {
|
|
594
|
+
[x: string]: boolean;
|
|
595
|
+
} | (string | {
|
|
596
|
+
[x: string]: boolean;
|
|
597
|
+
} | (string | {
|
|
598
|
+
[x: string]: boolean;
|
|
599
|
+
} | (string | {
|
|
600
|
+
[x: string]: boolean;
|
|
601
|
+
} | (string | {
|
|
602
|
+
[x: string]: boolean;
|
|
603
|
+
} | (string | {
|
|
604
|
+
[x: string]: boolean;
|
|
605
|
+
} | (string | {
|
|
606
|
+
[x: string]: boolean;
|
|
607
|
+
} | (string | {
|
|
608
|
+
[x: string]: boolean;
|
|
609
|
+
} | (string | any[] | {
|
|
610
|
+
[x: string]: boolean;
|
|
611
|
+
})[])[])[])[])[])[])[])[])[])[]>;
|
|
612
|
+
readonly required: false;
|
|
613
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
614
|
+
__epPropKey: true;
|
|
615
|
+
};
|
|
616
|
+
popperStyle: {
|
|
617
|
+
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
499
618
|
readonly required: false;
|
|
500
619
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
501
620
|
__epPropKey: true;
|
|
502
|
-
} & {
|
|
503
|
-
readonly default: string;
|
|
504
621
|
};
|
|
505
622
|
teleported: {
|
|
506
623
|
readonly type: import("vue").PropType<boolean>;
|
|
@@ -510,6 +627,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
510
627
|
} & {
|
|
511
628
|
readonly default: true;
|
|
512
629
|
};
|
|
630
|
+
effect: {
|
|
631
|
+
readonly type: import("vue").PropType<import("element-plus").PopperEffect>;
|
|
632
|
+
readonly required: false;
|
|
633
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
634
|
+
__epPropKey: true;
|
|
635
|
+
} & {
|
|
636
|
+
readonly default: string;
|
|
637
|
+
};
|
|
513
638
|
tagType: {
|
|
514
639
|
default: string;
|
|
515
640
|
type: import("vue").PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
@@ -540,6 +665,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
540
665
|
} & {
|
|
541
666
|
readonly default: boolean;
|
|
542
667
|
};
|
|
668
|
+
showCheckedStrategy: {
|
|
669
|
+
readonly type: import("vue").PropType<string>;
|
|
670
|
+
readonly required: false;
|
|
671
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
672
|
+
__epPropKey: true;
|
|
673
|
+
} & {
|
|
674
|
+
readonly default: string;
|
|
675
|
+
};
|
|
676
|
+
checkOnClickNode: BooleanConstructor;
|
|
677
|
+
showPrefix: {
|
|
678
|
+
readonly type: import("vue").PropType<boolean>;
|
|
679
|
+
readonly required: false;
|
|
680
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
681
|
+
__epPropKey: true;
|
|
682
|
+
} & {
|
|
683
|
+
readonly default: boolean;
|
|
684
|
+
};
|
|
543
685
|
modelValue: {
|
|
544
686
|
readonly type: import("vue").PropType<(string | number)[] | (string | number) | ((string | number)[] | (string | number))[]>;
|
|
545
687
|
readonly required: false;
|
|
@@ -589,7 +731,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
589
731
|
disabled: boolean;
|
|
590
732
|
persistent: boolean;
|
|
591
733
|
teleported: boolean;
|
|
592
|
-
|
|
734
|
+
effect: import("element-plus").PopperEffect;
|
|
593
735
|
fallbackPlacements: import("element-plus").Placement[];
|
|
594
736
|
placement: import("element-plus").Placement;
|
|
595
737
|
props: import("element-plus").CascaderProps;
|
|
@@ -608,6 +750,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
608
750
|
debounce: number;
|
|
609
751
|
beforeFilter: (value: string) => boolean | Promise<any>;
|
|
610
752
|
tagEffect: "dark" | "light" | "plain";
|
|
753
|
+
showCheckedStrategy: string;
|
|
754
|
+
checkOnClickNode: boolean;
|
|
755
|
+
showPrefix: boolean;
|
|
611
756
|
optionsUrl: string;
|
|
612
757
|
cascaderSlots: import("@vunk/shared").NormalObject;
|
|
613
758
|
}, {}, {
|