@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
|
@@ -19,6 +19,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19
19
|
} & {
|
|
20
20
|
readonly default: undefined;
|
|
21
21
|
};
|
|
22
|
+
align: {
|
|
23
|
+
readonly type: import("vue").PropType<"left" | "right" | "center">;
|
|
24
|
+
readonly required: false;
|
|
25
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
26
|
+
__epPropKey: true;
|
|
27
|
+
} & {
|
|
28
|
+
readonly default: "center";
|
|
29
|
+
};
|
|
30
|
+
disabledScientific: BooleanConstructor;
|
|
22
31
|
ariaLabel: StringConstructor;
|
|
23
32
|
id: {
|
|
24
33
|
readonly type: import("vue").PropType<string>;
|
|
@@ -200,11 +209,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
200
209
|
name: string;
|
|
201
210
|
modelValue: any;
|
|
202
211
|
placeholder: string;
|
|
212
|
+
align: "left" | "right" | "center";
|
|
203
213
|
min: number;
|
|
204
214
|
max: number;
|
|
205
215
|
inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
206
216
|
validateEvent: boolean;
|
|
207
217
|
valueOnClear: string | number;
|
|
218
|
+
disabledScientific: boolean;
|
|
208
219
|
step: number;
|
|
209
220
|
stepStrictly: boolean;
|
|
210
221
|
controls: boolean;
|
|
@@ -241,6 +252,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
241
252
|
} & {
|
|
242
253
|
readonly default: undefined;
|
|
243
254
|
};
|
|
255
|
+
align: {
|
|
256
|
+
readonly type: import("vue").PropType<"left" | "right" | "center">;
|
|
257
|
+
readonly required: false;
|
|
258
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
259
|
+
__epPropKey: true;
|
|
260
|
+
} & {
|
|
261
|
+
readonly default: "center";
|
|
262
|
+
};
|
|
263
|
+
disabledScientific: BooleanConstructor;
|
|
244
264
|
ariaLabel: StringConstructor;
|
|
245
265
|
id: {
|
|
246
266
|
readonly type: import("vue").PropType<string>;
|
|
@@ -436,11 +456,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
436
456
|
showMessage: boolean;
|
|
437
457
|
disabled: boolean;
|
|
438
458
|
id: string;
|
|
459
|
+
align: "left" | "right" | "center";
|
|
439
460
|
min: number;
|
|
440
461
|
max: number;
|
|
441
462
|
inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
442
463
|
validateEvent: boolean;
|
|
443
464
|
valueOnClear: string | number;
|
|
465
|
+
disabledScientific: boolean;
|
|
444
466
|
step: number;
|
|
445
467
|
stepStrictly: boolean;
|
|
446
468
|
controls: boolean;
|
|
@@ -469,6 +491,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
469
491
|
} & {
|
|
470
492
|
readonly default: undefined;
|
|
471
493
|
};
|
|
494
|
+
readonly align: {
|
|
495
|
+
readonly type: import("vue").PropType<"left" | "right" | "center">;
|
|
496
|
+
readonly required: false;
|
|
497
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
498
|
+
__epPropKey: true;
|
|
499
|
+
} & {
|
|
500
|
+
readonly default: "center";
|
|
501
|
+
};
|
|
502
|
+
readonly disabledScientific: BooleanConstructor;
|
|
472
503
|
readonly ariaLabel: StringConstructor;
|
|
473
504
|
readonly id: {
|
|
474
505
|
readonly type: import("vue").PropType<string>;
|
|
@@ -581,9 +612,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
581
612
|
readonly max: number;
|
|
582
613
|
readonly validateEvent: boolean;
|
|
583
614
|
readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
615
|
+
readonly align: "left" | "right" | "center";
|
|
584
616
|
readonly step: number;
|
|
585
617
|
readonly controls: boolean;
|
|
586
618
|
readonly controlsPosition: "" | "right";
|
|
619
|
+
readonly disabledScientific: boolean;
|
|
587
620
|
readonly stepStrictly: boolean;
|
|
588
621
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
589
622
|
P: {};
|
|
@@ -601,6 +634,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
601
634
|
} & {
|
|
602
635
|
readonly default: undefined;
|
|
603
636
|
};
|
|
637
|
+
readonly align: {
|
|
638
|
+
readonly type: import("vue").PropType<"left" | "right" | "center">;
|
|
639
|
+
readonly required: false;
|
|
640
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
641
|
+
__epPropKey: true;
|
|
642
|
+
} & {
|
|
643
|
+
readonly default: "center";
|
|
644
|
+
};
|
|
645
|
+
readonly disabledScientific: BooleanConstructor;
|
|
604
646
|
readonly ariaLabel: StringConstructor;
|
|
605
647
|
readonly id: {
|
|
606
648
|
readonly type: import("vue").PropType<string>;
|
|
@@ -707,9 +749,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
707
749
|
readonly max: number;
|
|
708
750
|
readonly validateEvent: boolean;
|
|
709
751
|
readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
752
|
+
readonly align: "left" | "right" | "center";
|
|
710
753
|
readonly step: number;
|
|
711
754
|
readonly controls: boolean;
|
|
712
755
|
readonly controlsPosition: "" | "right";
|
|
756
|
+
readonly disabledScientific: boolean;
|
|
713
757
|
readonly stepStrictly: boolean;
|
|
714
758
|
}>;
|
|
715
759
|
__isFragment?: never;
|
|
@@ -724,6 +768,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
724
768
|
} & {
|
|
725
769
|
readonly default: undefined;
|
|
726
770
|
};
|
|
771
|
+
readonly align: {
|
|
772
|
+
readonly type: import("vue").PropType<"left" | "right" | "center">;
|
|
773
|
+
readonly required: false;
|
|
774
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
775
|
+
__epPropKey: true;
|
|
776
|
+
} & {
|
|
777
|
+
readonly default: "center";
|
|
778
|
+
};
|
|
779
|
+
readonly disabledScientific: BooleanConstructor;
|
|
727
780
|
readonly ariaLabel: StringConstructor;
|
|
728
781
|
readonly id: {
|
|
729
782
|
readonly type: import("vue").PropType<string>;
|
|
@@ -836,9 +889,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
836
889
|
readonly max: number;
|
|
837
890
|
readonly validateEvent: boolean;
|
|
838
891
|
readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal";
|
|
892
|
+
readonly align: "left" | "right" | "center";
|
|
839
893
|
readonly step: number;
|
|
840
894
|
readonly controls: boolean;
|
|
841
895
|
readonly controlsPosition: "" | "right";
|
|
896
|
+
readonly disabledScientific: boolean;
|
|
842
897
|
readonly stepStrictly: boolean;
|
|
843
898
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
844
899
|
$slots: {
|
|
@@ -140,6 +140,12 @@ export declare const props: {
|
|
|
140
140
|
__epPropKey: true;
|
|
141
141
|
};
|
|
142
142
|
clearable: BooleanConstructor;
|
|
143
|
+
clearIcon: {
|
|
144
|
+
readonly type: PropType<unknown>;
|
|
145
|
+
readonly required: false;
|
|
146
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
147
|
+
__epPropKey: true;
|
|
148
|
+
};
|
|
143
149
|
disabled: {
|
|
144
150
|
readonly type: PropType<boolean>;
|
|
145
151
|
readonly required: false;
|
|
@@ -202,9 +208,19 @@ export declare const props: {
|
|
|
202
208
|
} & {
|
|
203
209
|
readonly default: true;
|
|
204
210
|
};
|
|
211
|
+
collapseTags: BooleanConstructor;
|
|
212
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
213
|
+
maxCollapseTags: {
|
|
214
|
+
readonly type: PropType<number>;
|
|
215
|
+
readonly required: false;
|
|
216
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
217
|
+
__epPropKey: true;
|
|
218
|
+
} & {
|
|
219
|
+
readonly default: 1;
|
|
220
|
+
};
|
|
205
221
|
ariaLabel: StringConstructor;
|
|
206
222
|
};
|
|
207
|
-
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<"trigger", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"max", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"tagType", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"draggable", keyof T2> | Extract<"delimiter", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"inputTagSlots", 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<"trigger", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"autofocus", keyof T2>, KE> | Exclude<Extract<"max", keyof T2>, KE> | Exclude<Extract<"maxlength", keyof T2>, KE> | Exclude<Extract<"minlength", keyof T2>, KE> | Exclude<Extract<"autocomplete", keyof T2>, KE> | Exclude<Extract<"tabindex", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"tagType", keyof T2>, KE> | Exclude<Extract<"tagEffect", keyof T2>, KE> | Exclude<Extract<"draggable", keyof T2>, KE> | Exclude<Extract<"delimiter", keyof T2>, KE> | Exclude<Extract<"saveOnBlur", keyof T2>, KE> | Exclude<Extract<"inputTagSlots", 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<"trigger", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"max", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"tagType", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"draggable", keyof T2> | Extract<"delimiter", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"inputTagSlots", 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<"trigger", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"max", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"tagType", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"draggable", keyof T2> | Extract<"delimiter", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"inputTagSlots", keyof T2>]: T2[k]; }[P]; }>;
|
|
223
|
+
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<"trigger", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"max", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"draggable", keyof T2> | Extract<"delimiter", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"inputTagSlots", 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<"trigger", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"autofocus", keyof T2>, KE> | Exclude<Extract<"max", keyof T2>, KE> | Exclude<Extract<"maxlength", keyof T2>, KE> | Exclude<Extract<"minlength", keyof T2>, KE> | Exclude<Extract<"autocomplete", keyof T2>, KE> | Exclude<Extract<"clearIcon", keyof T2>, KE> | Exclude<Extract<"tabindex", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"collapseTags", keyof T2>, KE> | Exclude<Extract<"collapseTagsTooltip", keyof T2>, KE> | Exclude<Extract<"tagType", keyof T2>, KE> | Exclude<Extract<"maxCollapseTags", keyof T2>, KE> | Exclude<Extract<"tagEffect", keyof T2>, KE> | Exclude<Extract<"draggable", keyof T2>, KE> | Exclude<Extract<"delimiter", keyof T2>, KE> | Exclude<Extract<"saveOnBlur", keyof T2>, KE> | Exclude<Extract<"inputTagSlots", 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<"trigger", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"max", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"draggable", keyof T2> | Extract<"delimiter", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"inputTagSlots", 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<"trigger", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"max", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"tagType", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"draggable", keyof T2> | Extract<"delimiter", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"inputTagSlots", keyof T2>]: T2[k]; }[P]; }>;
|
|
208
224
|
export declare const emits: {
|
|
209
225
|
"update:modelValue": (value?: string[]) => boolean;
|
|
210
226
|
change: (value?: string[]) => boolean;
|
|
@@ -138,6 +138,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
138
138
|
__epPropKey: true;
|
|
139
139
|
};
|
|
140
140
|
clearable: BooleanConstructor;
|
|
141
|
+
clearIcon: {
|
|
142
|
+
readonly type: import("vue").PropType<unknown>;
|
|
143
|
+
readonly required: false;
|
|
144
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
145
|
+
__epPropKey: true;
|
|
146
|
+
};
|
|
141
147
|
disabled: {
|
|
142
148
|
readonly type: import("vue").PropType<boolean>;
|
|
143
149
|
readonly required: false;
|
|
@@ -200,6 +206,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
200
206
|
} & {
|
|
201
207
|
readonly default: true;
|
|
202
208
|
};
|
|
209
|
+
collapseTags: BooleanConstructor;
|
|
210
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
211
|
+
maxCollapseTags: {
|
|
212
|
+
readonly type: import("vue").PropType<number>;
|
|
213
|
+
readonly required: false;
|
|
214
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
215
|
+
__epPropKey: true;
|
|
216
|
+
} & {
|
|
217
|
+
readonly default: 1;
|
|
218
|
+
};
|
|
203
219
|
ariaLabel: StringConstructor;
|
|
204
220
|
}>, {
|
|
205
221
|
coreProps: import("vue").ComputedRef<{
|
|
@@ -216,9 +232,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
216
232
|
maxlength: string | number;
|
|
217
233
|
minlength: string | number;
|
|
218
234
|
autocomplete: string;
|
|
235
|
+
clearIcon: unknown;
|
|
219
236
|
tabindex: string | number;
|
|
220
237
|
validateEvent: boolean;
|
|
238
|
+
collapseTags: boolean;
|
|
239
|
+
collapseTagsTooltip: boolean;
|
|
221
240
|
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
241
|
+
maxCollapseTags: number;
|
|
222
242
|
tagEffect: "dark" | "light" | "plain";
|
|
223
243
|
draggable: boolean;
|
|
224
244
|
delimiter: string | RegExp;
|
|
@@ -376,6 +396,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
376
396
|
__epPropKey: true;
|
|
377
397
|
};
|
|
378
398
|
clearable: BooleanConstructor;
|
|
399
|
+
clearIcon: {
|
|
400
|
+
readonly type: import("vue").PropType<unknown>;
|
|
401
|
+
readonly required: false;
|
|
402
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
403
|
+
__epPropKey: true;
|
|
404
|
+
};
|
|
379
405
|
disabled: {
|
|
380
406
|
readonly type: import("vue").PropType<boolean>;
|
|
381
407
|
readonly required: false;
|
|
@@ -438,6 +464,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
438
464
|
} & {
|
|
439
465
|
readonly default: true;
|
|
440
466
|
};
|
|
467
|
+
collapseTags: BooleanConstructor;
|
|
468
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
469
|
+
maxCollapseTags: {
|
|
470
|
+
readonly type: import("vue").PropType<number>;
|
|
471
|
+
readonly required: false;
|
|
472
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
473
|
+
__epPropKey: true;
|
|
474
|
+
} & {
|
|
475
|
+
readonly default: 1;
|
|
476
|
+
};
|
|
441
477
|
ariaLabel: StringConstructor;
|
|
442
478
|
}>> & Readonly<{
|
|
443
479
|
onFocus?: (evt: FocusEvent) => any;
|
|
@@ -471,7 +507,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
471
507
|
autocomplete: string;
|
|
472
508
|
tabindex: string | number;
|
|
473
509
|
validateEvent: boolean;
|
|
510
|
+
collapseTags: boolean;
|
|
511
|
+
collapseTagsTooltip: boolean;
|
|
474
512
|
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
513
|
+
maxCollapseTags: number;
|
|
475
514
|
tagEffect: "dark" | "light" | "plain";
|
|
476
515
|
draggable: boolean;
|
|
477
516
|
delimiter: string | RegExp;
|
|
@@ -526,6 +565,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
526
565
|
__epPropKey: true;
|
|
527
566
|
};
|
|
528
567
|
readonly clearable: BooleanConstructor;
|
|
568
|
+
readonly clearIcon: {
|
|
569
|
+
readonly type: import("vue").PropType<unknown>;
|
|
570
|
+
readonly required: false;
|
|
571
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
572
|
+
__epPropKey: true;
|
|
573
|
+
};
|
|
529
574
|
readonly disabled: {
|
|
530
575
|
readonly type: import("vue").PropType<boolean>;
|
|
531
576
|
readonly required: false;
|
|
@@ -589,6 +634,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
589
634
|
} & {
|
|
590
635
|
readonly default: true;
|
|
591
636
|
};
|
|
637
|
+
readonly collapseTags: BooleanConstructor;
|
|
638
|
+
readonly collapseTagsTooltip: BooleanConstructor;
|
|
639
|
+
readonly maxCollapseTags: {
|
|
640
|
+
readonly type: import("vue").PropType<number>;
|
|
641
|
+
readonly required: false;
|
|
642
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
643
|
+
__epPropKey: true;
|
|
644
|
+
} & {
|
|
645
|
+
readonly default: 1;
|
|
646
|
+
};
|
|
592
647
|
readonly ariaLabel: StringConstructor;
|
|
593
648
|
}>> & {
|
|
594
649
|
"onUpdate:modelValue"?: ((value?: string[] | undefined) => any) | undefined;
|
|
@@ -621,9 +676,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
621
676
|
readonly validateEvent: boolean;
|
|
622
677
|
readonly clearable: boolean;
|
|
623
678
|
readonly autofocus: boolean;
|
|
679
|
+
readonly draggable: boolean;
|
|
680
|
+
readonly collapseTags: boolean;
|
|
681
|
+
readonly maxCollapseTags: number;
|
|
682
|
+
readonly collapseTagsTooltip: boolean;
|
|
624
683
|
readonly tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
625
684
|
readonly tagEffect: "dark" | "light" | "plain";
|
|
626
|
-
readonly draggable: boolean;
|
|
627
685
|
readonly delimiter: string | RegExp;
|
|
628
686
|
readonly saveOnBlur: boolean;
|
|
629
687
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
@@ -680,6 +738,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
680
738
|
__epPropKey: true;
|
|
681
739
|
};
|
|
682
740
|
readonly clearable: BooleanConstructor;
|
|
741
|
+
readonly clearIcon: {
|
|
742
|
+
readonly type: import("vue").PropType<unknown>;
|
|
743
|
+
readonly required: false;
|
|
744
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
745
|
+
__epPropKey: true;
|
|
746
|
+
};
|
|
683
747
|
readonly disabled: {
|
|
684
748
|
readonly type: import("vue").PropType<boolean>;
|
|
685
749
|
readonly required: false;
|
|
@@ -743,6 +807,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
743
807
|
} & {
|
|
744
808
|
readonly default: true;
|
|
745
809
|
};
|
|
810
|
+
readonly collapseTags: BooleanConstructor;
|
|
811
|
+
readonly collapseTagsTooltip: BooleanConstructor;
|
|
812
|
+
readonly maxCollapseTags: {
|
|
813
|
+
readonly type: import("vue").PropType<number>;
|
|
814
|
+
readonly required: false;
|
|
815
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
816
|
+
__epPropKey: true;
|
|
817
|
+
} & {
|
|
818
|
+
readonly default: 1;
|
|
819
|
+
};
|
|
746
820
|
readonly ariaLabel: StringConstructor;
|
|
747
821
|
}>> & {
|
|
748
822
|
"onUpdate:modelValue"?: ((value?: string[] | undefined) => any) | undefined;
|
|
@@ -766,9 +840,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
766
840
|
readonly validateEvent: boolean;
|
|
767
841
|
readonly clearable: boolean;
|
|
768
842
|
readonly autofocus: boolean;
|
|
843
|
+
readonly draggable: boolean;
|
|
844
|
+
readonly collapseTags: boolean;
|
|
845
|
+
readonly maxCollapseTags: number;
|
|
846
|
+
readonly collapseTagsTooltip: boolean;
|
|
769
847
|
readonly tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
770
848
|
readonly tagEffect: "dark" | "light" | "plain";
|
|
771
|
-
readonly draggable: boolean;
|
|
772
849
|
readonly delimiter: string | RegExp;
|
|
773
850
|
readonly saveOnBlur: boolean;
|
|
774
851
|
}>;
|
|
@@ -822,6 +899,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
822
899
|
__epPropKey: true;
|
|
823
900
|
};
|
|
824
901
|
readonly clearable: BooleanConstructor;
|
|
902
|
+
readonly clearIcon: {
|
|
903
|
+
readonly type: import("vue").PropType<unknown>;
|
|
904
|
+
readonly required: false;
|
|
905
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
906
|
+
__epPropKey: true;
|
|
907
|
+
};
|
|
825
908
|
readonly disabled: {
|
|
826
909
|
readonly type: import("vue").PropType<boolean>;
|
|
827
910
|
readonly required: false;
|
|
@@ -885,6 +968,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
885
968
|
} & {
|
|
886
969
|
readonly default: true;
|
|
887
970
|
};
|
|
971
|
+
readonly collapseTags: BooleanConstructor;
|
|
972
|
+
readonly collapseTagsTooltip: BooleanConstructor;
|
|
973
|
+
readonly maxCollapseTags: {
|
|
974
|
+
readonly type: import("vue").PropType<number>;
|
|
975
|
+
readonly required: false;
|
|
976
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
977
|
+
__epPropKey: true;
|
|
978
|
+
} & {
|
|
979
|
+
readonly default: 1;
|
|
980
|
+
};
|
|
888
981
|
readonly ariaLabel: StringConstructor;
|
|
889
982
|
}>> & {
|
|
890
983
|
"onUpdate:modelValue"?: ((value?: string[] | undefined) => any) | undefined;
|
|
@@ -917,9 +1010,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
917
1010
|
readonly validateEvent: boolean;
|
|
918
1011
|
readonly clearable: boolean;
|
|
919
1012
|
readonly autofocus: boolean;
|
|
1013
|
+
readonly draggable: boolean;
|
|
1014
|
+
readonly collapseTags: boolean;
|
|
1015
|
+
readonly maxCollapseTags: number;
|
|
1016
|
+
readonly collapseTagsTooltip: boolean;
|
|
920
1017
|
readonly tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
921
1018
|
readonly tagEffect: "dark" | "light" | "plain";
|
|
922
|
-
readonly draggable: boolean;
|
|
923
1019
|
readonly delimiter: string | RegExp;
|
|
924
1020
|
readonly saveOnBlur: boolean;
|
|
925
1021
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -929,6 +1025,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
929
1025
|
value: string;
|
|
930
1026
|
index: number;
|
|
931
1027
|
}): any;
|
|
1028
|
+
tag?(_: {
|
|
1029
|
+
value: string;
|
|
1030
|
+
index: number;
|
|
1031
|
+
}): any;
|
|
932
1032
|
suffix?(_: {}): any;
|
|
933
1033
|
};
|
|
934
1034
|
}) & import("vue").Plugin;
|
|
@@ -210,6 +210,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
210
210
|
filterMethod: Function;
|
|
211
211
|
loading: boolean;
|
|
212
212
|
autocomplete: string;
|
|
213
|
+
clearIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
213
214
|
suffixIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
214
215
|
automaticDropdown: boolean;
|
|
215
216
|
filterable: boolean;
|
|
@@ -225,7 +226,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
225
226
|
valueKey: string;
|
|
226
227
|
collapseTags: boolean;
|
|
227
228
|
collapseTagsTooltip: boolean;
|
|
228
|
-
clearIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
229
229
|
fitInputWidth: boolean;
|
|
230
230
|
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
231
231
|
}>;
|
|
@@ -830,6 +830,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
830
830
|
created: boolean;
|
|
831
831
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin>[];
|
|
832
832
|
autocomplete: string;
|
|
833
|
+
clearIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
833
834
|
suffixIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
834
835
|
automaticDropdown: boolean;
|
|
835
836
|
filterable: boolean;
|
|
@@ -841,7 +842,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
841
842
|
valueKey: string;
|
|
842
843
|
collapseTags: boolean;
|
|
843
844
|
collapseTagsTooltip: boolean;
|
|
844
|
-
clearIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
845
845
|
fitInputWidth: boolean;
|
|
846
846
|
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
847
847
|
selectSlots: import("./types").SelectSlots;
|
|
@@ -201,7 +201,7 @@ export declare const props: {
|
|
|
201
201
|
readonly default: true;
|
|
202
202
|
};
|
|
203
203
|
};
|
|
204
|
-
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<"id", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"effect", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"name", keyof T2> | Extract<"slots", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"multiple", keyof T2> | Extract<"stringify", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"loading", keyof T2> | Extract<"options", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"filterable", keyof T2> | Extract<"allowCreate", keyof T2> | Extract<"remote", keyof T2> | Extract<"loadingText", keyof T2> | Extract<"noMatchText", keyof T2> | Extract<"noDataText", keyof T2> | Extract<"remoteMethod", keyof T2> | Extract<"multipleLimit", keyof T2> | Extract<"defaultFirstOption", keyof T2> | Extract<"reserveKeyword", keyof T2> | Extract<"valueKey", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"
|
|
204
|
+
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<"id", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"effect", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"name", keyof T2> | Extract<"slots", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"multiple", keyof T2> | Extract<"stringify", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"loading", keyof T2> | Extract<"options", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"filterable", keyof T2> | Extract<"allowCreate", keyof T2> | Extract<"remote", keyof T2> | Extract<"loadingText", keyof T2> | Extract<"noMatchText", keyof T2> | Extract<"noDataText", keyof T2> | Extract<"remoteMethod", keyof T2> | Extract<"multipleLimit", keyof T2> | Extract<"defaultFirstOption", keyof T2> | Extract<"reserveKeyword", keyof T2> | Extract<"valueKey", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"fitInputWidth", keyof T2> | Extract<"tagType", keyof T2> | Extract<"selectSlots", keyof T2> | Extract<"selectRef", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"defaultModelValue", 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<"id", 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<"name", keyof T2>, KE> | Exclude<Extract<"slots", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"multiple", keyof T2>, KE> | Exclude<Extract<"stringify", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"filterMethod", keyof T2>, KE> | Exclude<Extract<"loading", keyof T2>, KE> | Exclude<Extract<"options", keyof T2>, KE> | Exclude<Extract<"autocomplete", keyof T2>, KE> | Exclude<Extract<"clearIcon", keyof T2>, KE> | Exclude<Extract<"suffixIcon", keyof T2>, KE> | Exclude<Extract<"automaticDropdown", keyof T2>, KE> | Exclude<Extract<"filterable", keyof T2>, KE> | Exclude<Extract<"allowCreate", keyof T2>, KE> | Exclude<Extract<"remote", keyof T2>, KE> | Exclude<Extract<"loadingText", keyof T2>, KE> | Exclude<Extract<"noMatchText", keyof T2>, KE> | Exclude<Extract<"noDataText", keyof T2>, KE> | Exclude<Extract<"remoteMethod", keyof T2>, KE> | Exclude<Extract<"multipleLimit", keyof T2>, KE> | Exclude<Extract<"defaultFirstOption", keyof T2>, KE> | Exclude<Extract<"reserveKeyword", keyof T2>, KE> | Exclude<Extract<"valueKey", keyof T2>, KE> | Exclude<Extract<"collapseTags", keyof T2>, KE> | Exclude<Extract<"collapseTagsTooltip", keyof T2>, KE> | Exclude<Extract<"fitInputWidth", keyof T2>, KE> | Exclude<Extract<"tagType", keyof T2>, KE> | Exclude<Extract<"selectSlots", keyof T2>, KE> | Exclude<Extract<"selectRef", keyof T2>, KE> | Exclude<Extract<"optionsUrl", keyof T2>, KE> | Exclude<Extract<"defaultModelValue", 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<"id", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"effect", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"name", keyof T2> | Extract<"slots", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"multiple", keyof T2> | Extract<"stringify", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"loading", keyof T2> | Extract<"options", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"filterable", keyof T2> | Extract<"allowCreate", keyof T2> | Extract<"remote", keyof T2> | Extract<"loadingText", keyof T2> | Extract<"noMatchText", keyof T2> | Extract<"noDataText", keyof T2> | Extract<"remoteMethod", keyof T2> | Extract<"multipleLimit", keyof T2> | Extract<"defaultFirstOption", keyof T2> | Extract<"reserveKeyword", keyof T2> | Extract<"valueKey", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"fitInputWidth", keyof T2> | Extract<"tagType", keyof T2> | Extract<"selectSlots", keyof T2> | Extract<"selectRef", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"defaultModelValue", 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<"id", keyof T2> | Extract<"persistent", keyof T2> | Extract<"teleported", keyof T2> | Extract<"effect", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"name", keyof T2> | Extract<"slots", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"multiple", keyof T2> | Extract<"stringify", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"loading", keyof T2> | Extract<"options", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"filterable", keyof T2> | Extract<"allowCreate", keyof T2> | Extract<"remote", keyof T2> | Extract<"loadingText", keyof T2> | Extract<"noMatchText", keyof T2> | Extract<"noDataText", keyof T2> | Extract<"remoteMethod", keyof T2> | Extract<"multipleLimit", keyof T2> | Extract<"defaultFirstOption", keyof T2> | Extract<"reserveKeyword", keyof T2> | Extract<"valueKey", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"fitInputWidth", keyof T2> | Extract<"tagType", keyof T2> | Extract<"selectSlots", keyof T2> | Extract<"selectRef", keyof T2> | Extract<"optionsUrl", keyof T2> | Extract<"defaultModelValue", keyof T2>]: T2[k]; }[P]; }>;
|
|
205
205
|
export declare const emits: {
|
|
206
206
|
'update:modelValue': any;
|
|
207
207
|
change: any;
|
|
@@ -608,6 +608,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
608
608
|
created: boolean;
|
|
609
609
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin>[];
|
|
610
610
|
autocomplete: string;
|
|
611
|
+
clearIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
611
612
|
suffixIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
612
613
|
automaticDropdown: boolean;
|
|
613
614
|
filterable: boolean;
|
|
@@ -619,7 +620,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
619
620
|
valueKey: string;
|
|
620
621
|
collapseTags: boolean;
|
|
621
622
|
collapseTagsTooltip: boolean;
|
|
622
|
-
clearIcon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
623
623
|
fitInputWidth: boolean;
|
|
624
624
|
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
625
625
|
selectSlots: import("./types").SelectSlots;
|