@vunk/form 2.10.0 → 2.10.3
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/api-tables-select/index.cjs +37 -36
- package/components/api-tables-select/index.mjs +37 -36
- package/components/api-tables-select/src/ctx.d.ts +48 -13
- package/components/api-tables-select/src/index.vue.d.ts +568 -80
- package/components/button/src/ctx.d.ts +101 -17
- package/components/button/src/index.vue.d.ts +437 -101
- package/components/card-input-collection/index.cjs +67 -70
- package/components/card-input-collection/index.mjs +68 -71
- package/components/card-input-collection/src/ctx.d.ts +43 -8
- package/components/card-input-collection/src/index.vue.d.ts +718 -226
- package/components/cascader/src/ctx.d.ts +192 -46
- package/components/cascader/src/index.vue.d.ts +393 -118
- package/components/checkbox/index.cjs +2 -3
- package/components/checkbox/index.mjs +2 -3
- package/components/checkbox/src/ctx.d.ts +65 -13
- package/components/checkbox/src/index.vue.d.ts +339 -115
- package/components/color-picker/src/ctx.d.ts +76 -13
- package/components/color-picker/src/index.vue.d.ts +160 -34
- package/components/date-picker/src/ctx.d.ts +185 -36
- package/components/date-picker/src/index.vue.d.ts +974 -202
- package/components/date-picker-range/src/ctx.d.ts +168 -35
- package/components/date-picker-range/src/index.vue.d.ts +347 -82
- package/components/download-plus/index.cjs +4 -4
- package/components/download-plus/index.mjs +4 -4
- package/components/download-plus/src/ctx.d.ts +43 -8
- package/components/download-plus/src/index.vue.d.ts +618 -165
- package/components/editable-text/index.cjs +29 -15
- package/components/editable-text/index.mjs +29 -15
- package/components/editable-text/src/ctx.d.ts +51 -8
- package/components/editable-text/src/index.vue.d.ts +2827 -251
- package/components/esri-input-geojson/src/append.vue.d.ts +769 -418
- package/components/esri-input-geojson/src/ctx.d.ts +133 -32
- package/components/esri-input-geojson/src/index.vue.d.ts +262 -92
- package/components/esri-input-geojson/src/viewer.vue.d.ts +1 -1
- package/components/form/src/ctx.d.ts +59 -11
- package/components/form/src/index.vue.d.ts +3456 -186
- package/components/form-item/src/ctx.d.ts +45 -10
- package/components/form-item/src/index.vue.d.ts +484 -141
- package/components/information-collection/src/ctx.d.ts +45 -10
- package/components/information-collection/src/index.vue.d.ts +96 -26
- package/components/information-tag/src/ctx.d.ts +17 -3
- package/components/information-tag/src/index.vue.d.ts +38 -10
- package/components/input/src/ctx.d.ts +138 -33
- package/components/input/src/index.vue.d.ts +528 -152
- package/components/input-collection/index.cjs +105 -74
- package/components/input-collection/index.mjs +107 -76
- package/components/input-collection/src/ctx.d.ts +43 -8
- package/components/input-collection/src/index.vue.d.ts +756 -793
- package/components/input-link/src/ctx.d.ts +103 -25
- package/components/input-link/src/index.vue.d.ts +219 -63
- package/components/input-number/src/ctx.d.ts +123 -21
- package/components/input-number/src/index.vue.d.ts +468 -93
- package/components/input-tag/src/ctx.d.ts +141 -25
- package/components/input-tag/src/index.vue.d.ts +566 -126
- package/components/monaco-editor/src/ctx.d.ts +43 -8
- package/components/monaco-editor/src/index.vue.d.ts +91 -21
- package/components/radio/index.cjs +2 -3
- package/components/radio/index.mjs +2 -3
- package/components/radio/src/ctx.d.ts +84 -14
- package/components/radio/src/index.vue.d.ts +812 -168
- package/components/select/src/ctx.d.ts +63 -13
- package/components/select/src/index.vue.d.ts +549 -108
- package/components/slider/src/ctx.d.ts +170 -54
- package/components/slider/src/index.vue.d.ts +362 -137
- package/components/switch/src/ctx.d.ts +105 -21
- package/components/switch/src/index.vue.d.ts +453 -117
- package/components/tables-select/src/ctx.d.ts +72 -9
- package/components/tables-select/src/index.vue.d.ts +386 -82
- package/components/templates-element-plus/src/index.vue.d.ts +187 -40
- package/components/templates-layout/src/index.vue.d.ts +337 -64
- package/components/upload/index.cjs +2 -2
- package/components/upload/index.mjs +2 -2
- package/components/upload/src/ctx.d.ts +183 -89
- package/components/upload/src/file.vue.d.ts +269 -83
- package/components/upload/src/index.vue.d.ts +1246 -632
- package/components/upload-plus/index.cjs +79 -86
- package/components/upload-plus/index.mjs +79 -86
- package/components/upload-plus/src/ctx.d.ts +43 -8
- package/components/upload-plus/src/index.vue.d.ts +1008 -283
- package/components/van-cascader/src/ctx.d.ts +181 -44
- package/components/van-cascader/src/index.vue.d.ts +1532 -324
- package/components/var-datetime-picker/src/ctx.d.ts +43 -8
- package/components/var-datetime-picker/src/index.vue.d.ts +932 -190
- package/components/vditor/src/ctx.d.ts +43 -8
- package/components/vditor/src/index.vue.d.ts +91 -21
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +111 -30
- package/shared/element-plus/instances.d.ts +140 -28
|
@@ -5,7 +5,14 @@ export declare const props: {
|
|
|
5
5
|
type: PropType<Record<string, AnyFunc>>;
|
|
6
6
|
default: any;
|
|
7
7
|
};
|
|
8
|
-
required:
|
|
8
|
+
required: {
|
|
9
|
+
readonly type: PropType<boolean>;
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
12
|
+
__epPropKey: true;
|
|
13
|
+
} & {
|
|
14
|
+
readonly default: undefined;
|
|
15
|
+
};
|
|
9
16
|
formItemSize: {
|
|
10
17
|
type: PropType<"default" | "small" | "large">;
|
|
11
18
|
default: "default" | "small" | "large";
|
|
@@ -40,32 +47,60 @@ export declare const props: {
|
|
|
40
47
|
default: boolean;
|
|
41
48
|
};
|
|
42
49
|
label: StringConstructor;
|
|
43
|
-
labelWidth:
|
|
44
|
-
|
|
50
|
+
labelWidth: {
|
|
51
|
+
readonly type: PropType<string | number>;
|
|
52
|
+
readonly required: false;
|
|
53
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
54
|
+
__epPropKey: true;
|
|
55
|
+
} & {
|
|
56
|
+
readonly default: "";
|
|
57
|
+
};
|
|
58
|
+
labelPosition: {
|
|
59
|
+
readonly type: PropType<"" | "top" | "left" | "right">;
|
|
60
|
+
readonly required: false;
|
|
61
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
62
|
+
__epPropKey: true;
|
|
63
|
+
} & {
|
|
64
|
+
readonly default: "";
|
|
65
|
+
};
|
|
45
66
|
prop: {
|
|
46
|
-
readonly type:
|
|
67
|
+
readonly type: PropType<import("element-plus").FormItemProp>;
|
|
47
68
|
readonly required: false;
|
|
48
69
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
49
70
|
__epPropKey: true;
|
|
50
71
|
};
|
|
51
72
|
rules: {
|
|
52
|
-
readonly type:
|
|
73
|
+
readonly type: PropType<unknown>;
|
|
53
74
|
readonly required: false;
|
|
54
75
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
55
76
|
__epPropKey: true;
|
|
56
77
|
};
|
|
57
78
|
error: StringConstructor;
|
|
58
79
|
validateStatus: {
|
|
59
|
-
readonly type:
|
|
80
|
+
readonly type: PropType<"" | "error" | "success" | "validating">;
|
|
60
81
|
readonly required: false;
|
|
61
82
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
62
83
|
__epPropKey: true;
|
|
63
84
|
};
|
|
64
85
|
for: StringConstructor;
|
|
65
|
-
inlineMessage:
|
|
66
|
-
|
|
86
|
+
inlineMessage: {
|
|
87
|
+
readonly type: PropType<string | boolean>;
|
|
88
|
+
readonly required: false;
|
|
89
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
90
|
+
__epPropKey: true;
|
|
91
|
+
} & {
|
|
92
|
+
readonly default: "";
|
|
93
|
+
};
|
|
94
|
+
showMessage: {
|
|
95
|
+
readonly type: PropType<boolean>;
|
|
96
|
+
readonly required: false;
|
|
97
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
98
|
+
__epPropKey: true;
|
|
99
|
+
} & {
|
|
100
|
+
readonly default: true;
|
|
101
|
+
};
|
|
67
102
|
modelValue: {
|
|
68
|
-
readonly type:
|
|
103
|
+
readonly type: PropType<string[]>;
|
|
69
104
|
readonly required: false;
|
|
70
105
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
71
106
|
__epPropKey: true;
|
|
@@ -73,51 +108,132 @@ export declare const props: {
|
|
|
73
108
|
max: NumberConstructor;
|
|
74
109
|
tagType: {
|
|
75
110
|
readonly default: "info";
|
|
76
|
-
readonly type:
|
|
111
|
+
readonly type: PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
77
112
|
readonly required: false;
|
|
78
113
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
79
114
|
readonly __epPropKey: true;
|
|
80
115
|
};
|
|
81
|
-
tagEffect:
|
|
82
|
-
|
|
83
|
-
|
|
116
|
+
tagEffect: {
|
|
117
|
+
readonly type: PropType<"dark" | "light" | "plain">;
|
|
118
|
+
readonly required: false;
|
|
119
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
120
|
+
__epPropKey: true;
|
|
121
|
+
} & {
|
|
122
|
+
readonly default: "light";
|
|
123
|
+
};
|
|
124
|
+
trigger: {
|
|
125
|
+
readonly type: PropType<"Enter" | "Space">;
|
|
126
|
+
readonly required: false;
|
|
127
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
128
|
+
__epPropKey: true;
|
|
129
|
+
} & {
|
|
130
|
+
readonly default: string;
|
|
131
|
+
};
|
|
132
|
+
draggable: {
|
|
133
|
+
readonly type: PropType<boolean>;
|
|
134
|
+
readonly required: false;
|
|
135
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
136
|
+
__epPropKey: true;
|
|
137
|
+
} & {
|
|
138
|
+
readonly default: false;
|
|
139
|
+
};
|
|
140
|
+
delimiter: {
|
|
141
|
+
readonly type: PropType<string | RegExp>;
|
|
142
|
+
readonly required: false;
|
|
143
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
144
|
+
__epPropKey: true;
|
|
145
|
+
} & {
|
|
146
|
+
readonly default: "";
|
|
147
|
+
};
|
|
84
148
|
size: {
|
|
85
|
-
readonly type:
|
|
149
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
86
150
|
readonly required: false;
|
|
87
151
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
88
152
|
__epPropKey: true;
|
|
89
153
|
};
|
|
90
154
|
clearable: BooleanConstructor;
|
|
91
|
-
disabled:
|
|
92
|
-
|
|
155
|
+
disabled: {
|
|
156
|
+
readonly type: PropType<boolean>;
|
|
157
|
+
readonly required: false;
|
|
158
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
159
|
+
__epPropKey: true;
|
|
160
|
+
} & {
|
|
161
|
+
readonly default: undefined;
|
|
162
|
+
};
|
|
163
|
+
validateEvent: {
|
|
164
|
+
readonly type: PropType<boolean>;
|
|
165
|
+
readonly required: false;
|
|
166
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
167
|
+
__epPropKey: true;
|
|
168
|
+
} & {
|
|
169
|
+
readonly default: true;
|
|
170
|
+
};
|
|
93
171
|
autofocus: BooleanConstructor;
|
|
94
|
-
id:
|
|
95
|
-
|
|
172
|
+
id: {
|
|
173
|
+
readonly type: PropType<string>;
|
|
174
|
+
readonly required: false;
|
|
175
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
176
|
+
__epPropKey: true;
|
|
177
|
+
} & {
|
|
178
|
+
readonly default: undefined;
|
|
179
|
+
};
|
|
180
|
+
tabindex: {
|
|
181
|
+
readonly type: PropType<string | number>;
|
|
182
|
+
readonly required: false;
|
|
183
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
184
|
+
__epPropKey: true;
|
|
185
|
+
} & {
|
|
186
|
+
readonly default: 0;
|
|
187
|
+
};
|
|
96
188
|
maxlength: {
|
|
97
|
-
readonly type:
|
|
189
|
+
readonly type: PropType<string | number>;
|
|
98
190
|
readonly required: false;
|
|
99
191
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
100
192
|
__epPropKey: true;
|
|
101
193
|
};
|
|
102
194
|
minlength: {
|
|
103
|
-
readonly type:
|
|
195
|
+
readonly type: PropType<string | number>;
|
|
104
196
|
readonly required: false;
|
|
105
197
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
106
198
|
__epPropKey: true;
|
|
107
199
|
};
|
|
108
200
|
placeholder: StringConstructor;
|
|
109
|
-
autocomplete:
|
|
201
|
+
autocomplete: {
|
|
202
|
+
readonly type: PropType<string>;
|
|
203
|
+
readonly required: false;
|
|
204
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
205
|
+
__epPropKey: true;
|
|
206
|
+
} & {
|
|
207
|
+
readonly default: "off";
|
|
208
|
+
};
|
|
209
|
+
saveOnBlur: {
|
|
210
|
+
readonly type: PropType<boolean>;
|
|
211
|
+
readonly required: false;
|
|
212
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
213
|
+
__epPropKey: true;
|
|
214
|
+
} & {
|
|
215
|
+
readonly default: true;
|
|
216
|
+
};
|
|
110
217
|
ariaLabel: StringConstructor;
|
|
111
218
|
};
|
|
112
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"
|
|
219
|
+
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<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"prop", 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<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"prop", 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<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"prop", 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<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"prop", 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]; }>;
|
|
113
220
|
export declare const emits: {
|
|
114
221
|
"update:modelValue": (value?: string[]) => boolean;
|
|
115
222
|
change: (value?: string[]) => boolean;
|
|
116
223
|
input: (value: string) => boolean;
|
|
117
|
-
|
|
118
|
-
|
|
224
|
+
"add-tag": (value: string) => boolean;
|
|
225
|
+
"remove-tag": (value: string) => boolean;
|
|
119
226
|
focus: (evt: FocusEvent) => boolean;
|
|
120
227
|
blur: (evt: FocusEvent) => boolean;
|
|
121
228
|
clear: () => boolean;
|
|
122
229
|
};
|
|
123
|
-
export declare const createOnEmits: <T2 extends import("@vunk/core").AnyFunc, EX extends ("
|
|
230
|
+
export declare const createOnEmits: <T2 extends import("@vunk/core").AnyFunc, EX extends ("focus" | "clear" | "update:modelValue" | "change" | "input" | "blur" | "remove-tag" | "add-tag")[]>(emit: T2, excludes?: EX) => { [P in EX extends (infer KE)[] ? Exclude<"focus", KE> | Exclude<"clear", KE> | Exclude<"update:modelValue", KE> | Exclude<"change", KE> | Exclude<"input", KE> | Exclude<"blur", KE> | Exclude<"remove-tag", KE> | Exclude<"add-tag", KE> : "focus" | "clear" | "update:modelValue" | "change" | "input" | "blur" | "remove-tag" | "add-tag"]: {
|
|
231
|
+
"update:modelValue": (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
232
|
+
change: (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
233
|
+
input: (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
234
|
+
"add-tag": (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
235
|
+
"remove-tag": (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
236
|
+
focus: (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
237
|
+
blur: (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
238
|
+
clear: (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
239
|
+
}[P]; };
|