@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
|
@@ -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;
|
|
@@ -53,7 +53,7 @@ const props = {
|
|
|
53
53
|
* @description 添加记录时的默认值
|
|
54
54
|
*/
|
|
55
55
|
defaultItemValue: {
|
|
56
|
-
type: Object,
|
|
56
|
+
type: [Object, Function],
|
|
57
57
|
default: () => ({})
|
|
58
58
|
},
|
|
59
59
|
/**
|
|
@@ -109,10 +109,11 @@ var _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
109
109
|
});
|
|
110
110
|
function handlePlus(index) {
|
|
111
111
|
const data = cloneDeep.cloneDeep(props.modelValue);
|
|
112
|
+
const defaultItemValue = _function.isCallable(props.defaultItemValue) ? props.defaultItemValue() : props.defaultItemValue;
|
|
112
113
|
data.splice(
|
|
113
114
|
index + 1,
|
|
114
115
|
0,
|
|
115
|
-
cloneDeep.cloneDeep(
|
|
116
|
+
cloneDeep.cloneDeep(defaultItemValue)
|
|
116
117
|
);
|
|
117
118
|
emit("update:modelValue", data);
|
|
118
119
|
}
|
|
@@ -49,7 +49,7 @@ const props = {
|
|
|
49
49
|
* @description 添加记录时的默认值
|
|
50
50
|
*/
|
|
51
51
|
defaultItemValue: {
|
|
52
|
-
type: Object,
|
|
52
|
+
type: [Object, Function],
|
|
53
53
|
default: () => ({})
|
|
54
54
|
},
|
|
55
55
|
/**
|
|
@@ -105,10 +105,11 @@ var _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
105
105
|
});
|
|
106
106
|
function handlePlus(index) {
|
|
107
107
|
const data = cloneDeep(props.modelValue);
|
|
108
|
+
const defaultItemValue = isCallable(props.defaultItemValue) ? props.defaultItemValue() : props.defaultItemValue;
|
|
108
109
|
data.splice(
|
|
109
110
|
index + 1,
|
|
110
111
|
0,
|
|
111
|
-
cloneDeep(
|
|
112
|
+
cloneDeep(defaultItemValue)
|
|
112
113
|
);
|
|
113
114
|
emit("update:modelValue", data);
|
|
114
115
|
}
|
|
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26
26
|
default: boolean;
|
|
27
27
|
};
|
|
28
28
|
defaultItemValue: {
|
|
29
|
-
type: import("vue").PropType<NormalObject>;
|
|
29
|
+
type: import("vue").PropType<NormalObject | (() => NormalObject)>;
|
|
30
30
|
default: () => {};
|
|
31
31
|
};
|
|
32
32
|
keepLast: {
|
|
@@ -153,7 +153,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
153
153
|
default: boolean;
|
|
154
154
|
};
|
|
155
155
|
defaultItemValue: {
|
|
156
|
-
type: import("vue").PropType<NormalObject>;
|
|
156
|
+
type: import("vue").PropType<NormalObject | (() => NormalObject)>;
|
|
157
157
|
default: () => {};
|
|
158
158
|
};
|
|
159
159
|
keepLast: {
|
|
@@ -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;
|
|
@@ -970,7 +991,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
970
991
|
default: boolean;
|
|
971
992
|
};
|
|
972
993
|
defaultItemValue: {
|
|
973
|
-
type: import("vue").PropType<NormalObject>;
|
|
994
|
+
type: import("vue").PropType<NormalObject | (() => NormalObject)>;
|
|
974
995
|
default: () => {};
|
|
975
996
|
};
|
|
976
997
|
keepLast: {
|
|
@@ -1092,7 +1113,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1092
1113
|
columns: any[];
|
|
1093
1114
|
labelActions: boolean;
|
|
1094
1115
|
splicable: boolean;
|
|
1095
|
-
defaultItemValue:
|
|
1116
|
+
defaultItemValue: {};
|
|
1096
1117
|
keepLast: boolean;
|
|
1097
1118
|
topSplicable: boolean;
|
|
1098
1119
|
cardProps: Partial<import("element-plus").CardProps>;
|
|
@@ -24,7 +24,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
24
24
|
default: boolean;
|
|
25
25
|
};
|
|
26
26
|
defaultItemValue: {
|
|
27
|
-
type: import("vue").PropType<import("@vunk/shared").NormalObject>;
|
|
27
|
+
type: import("vue").PropType<import("@vunk/shared").NormalObject | (() => import("@vunk/shared").NormalObject)>;
|
|
28
28
|
default: () => {};
|
|
29
29
|
};
|
|
30
30
|
keepLast: {
|
|
@@ -154,7 +154,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
154
154
|
default: boolean;
|
|
155
155
|
};
|
|
156
156
|
defaultItemValue: {
|
|
157
|
-
type: import("vue").PropType<import("@vunk/shared").NormalObject>;
|
|
157
|
+
type: import("vue").PropType<import("@vunk/shared").NormalObject | (() => import("@vunk/shared").NormalObject)>;
|
|
158
158
|
default: () => {};
|
|
159
159
|
};
|
|
160
160
|
keepLast: {
|
|
@@ -276,7 +276,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
276
276
|
columns: any[];
|
|
277
277
|
labelActions: boolean;
|
|
278
278
|
splicable: boolean;
|
|
279
|
-
defaultItemValue:
|
|
279
|
+
defaultItemValue: {};
|
|
280
280
|
keepLast: boolean;
|
|
281
281
|
topSplicable: boolean;
|
|
282
282
|
cardProps: Partial<import("element-plus").CardProps>;
|
|
@@ -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;
|