@vunk/form 2.16.5 → 2.16.7
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/cascader/src/ctx.d.ts +1 -1
- package/components/cascader/src/index.vue.d.ts +7 -7
- package/components/date-picker/src/ctx.d.ts +1 -1
- package/components/date-picker/src/index.vue.d.ts +3 -3
- package/components/date-picker-range/src/ctx.d.ts +9 -9
- package/components/date-picker-range/src/index.vue.d.ts +19 -19
- package/components/form/src/ctx.d.ts +3 -3
- package/components/form/src/index.vue.d.ts +3 -1417
- package/components/input-tag/src/ctx.d.ts +1 -1
- package/components/input-tag/src/index.vue.d.ts +2 -2
- package/components/select/index.cjs +16 -9
- package/components/select/index.mjs +10 -3
- package/components/select/src/core.vue.d.ts +602 -98
- package/components/select/src/ctx.d.ts +193 -46
- package/components/select/src/index.vue.d.ts +392 -85
- package/components/van-cascader/src/index.vue.d.ts +3 -3
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +12 -11
- package/shared/element-plus/index.cjs +2 -132
- package/shared/element-plus/index.mjs +2 -130
- package/shared/element-plus/instances.d.ts +2 -99
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { PropType
|
|
1
|
+
import { DatePickType } from 'element-plus';
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
3
|
export declare const datePickerProps: {
|
|
4
4
|
type: {
|
|
5
5
|
type: PropType<DatePickType>;
|
|
@@ -258,100 +258,3 @@ export declare const datePickerEmits: {
|
|
|
258
258
|
'visible-change': any;
|
|
259
259
|
keydown: any;
|
|
260
260
|
};
|
|
261
|
-
export declare const selectProps: {
|
|
262
|
-
name: StringConstructor;
|
|
263
|
-
id: StringConstructor;
|
|
264
|
-
modelValue: {
|
|
265
|
-
type: (BooleanConstructor | ObjectConstructor | StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
266
|
-
default: any;
|
|
267
|
-
};
|
|
268
|
-
autocomplete: {
|
|
269
|
-
type: StringConstructor;
|
|
270
|
-
default: string;
|
|
271
|
-
};
|
|
272
|
-
automaticDropdown: BooleanConstructor;
|
|
273
|
-
size: {
|
|
274
|
-
type: PropType<ComponentSize>;
|
|
275
|
-
};
|
|
276
|
-
effect: {
|
|
277
|
-
type: PropType<"light" | "dark" | string>;
|
|
278
|
-
default: string;
|
|
279
|
-
};
|
|
280
|
-
disabled: BooleanConstructor;
|
|
281
|
-
clearable: BooleanConstructor;
|
|
282
|
-
filterable: BooleanConstructor;
|
|
283
|
-
allowCreate: BooleanConstructor;
|
|
284
|
-
loading: BooleanConstructor;
|
|
285
|
-
popperClass: {
|
|
286
|
-
type: StringConstructor;
|
|
287
|
-
default: string;
|
|
288
|
-
};
|
|
289
|
-
remote: BooleanConstructor;
|
|
290
|
-
loadingText: StringConstructor;
|
|
291
|
-
noMatchText: StringConstructor;
|
|
292
|
-
noDataText: StringConstructor;
|
|
293
|
-
remoteMethod: FunctionConstructor;
|
|
294
|
-
filterMethod: FunctionConstructor;
|
|
295
|
-
multiple: BooleanConstructor;
|
|
296
|
-
multipleLimit: {
|
|
297
|
-
type: NumberConstructor;
|
|
298
|
-
default: number;
|
|
299
|
-
};
|
|
300
|
-
placeholder: {
|
|
301
|
-
type: StringConstructor;
|
|
302
|
-
};
|
|
303
|
-
defaultFirstOption: BooleanConstructor;
|
|
304
|
-
reserveKeyword: {
|
|
305
|
-
type: BooleanConstructor;
|
|
306
|
-
default: boolean;
|
|
307
|
-
};
|
|
308
|
-
valueKey: {
|
|
309
|
-
type: StringConstructor;
|
|
310
|
-
default: string;
|
|
311
|
-
};
|
|
312
|
-
collapseTags: BooleanConstructor;
|
|
313
|
-
collapseTagsTooltip: {
|
|
314
|
-
type: BooleanConstructor;
|
|
315
|
-
default: boolean;
|
|
316
|
-
};
|
|
317
|
-
teleported: {
|
|
318
|
-
readonly type: PropType<boolean>;
|
|
319
|
-
readonly required: false;
|
|
320
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
321
|
-
__epPropKey: true;
|
|
322
|
-
} & {
|
|
323
|
-
readonly default: true;
|
|
324
|
-
};
|
|
325
|
-
persistent: {
|
|
326
|
-
type: BooleanConstructor;
|
|
327
|
-
default: boolean;
|
|
328
|
-
};
|
|
329
|
-
clearIcon: {
|
|
330
|
-
type: PropType<string | Component>;
|
|
331
|
-
default: 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>;
|
|
332
|
-
};
|
|
333
|
-
fitInputWidth: {
|
|
334
|
-
type: BooleanConstructor;
|
|
335
|
-
default: boolean;
|
|
336
|
-
};
|
|
337
|
-
suffixIcon: {
|
|
338
|
-
type: PropType<string | Component>;
|
|
339
|
-
default: 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>;
|
|
340
|
-
};
|
|
341
|
-
tagType: {
|
|
342
|
-
default: string;
|
|
343
|
-
type: PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
344
|
-
required: false;
|
|
345
|
-
validator: ((val: unknown) => boolean) | undefined;
|
|
346
|
-
__epPropKey: true;
|
|
347
|
-
};
|
|
348
|
-
};
|
|
349
|
-
export declare const selectEmits: {
|
|
350
|
-
'update:modelValue': any;
|
|
351
|
-
change: any;
|
|
352
|
-
'remove-tag': any;
|
|
353
|
-
clear: any;
|
|
354
|
-
'visible-change': any;
|
|
355
|
-
focus: any;
|
|
356
|
-
blur: any;
|
|
357
|
-
};
|