@vunk/form 1.4.8 → 1.4.10
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 +9 -3
- package/components/button/src/index.vue.d.ts +22 -7
- package/components/cascader/src/ctx.d.ts +10 -4
- package/components/cascader/src/index.vue.d.ts +22 -7
- package/components/checkbox/src/ctx.d.ts +10 -4
- package/components/checkbox/src/index.vue.d.ts +22 -7
- package/components/color-picker/src/ctx.d.ts +9 -3
- package/components/color-picker/src/index.vue.d.ts +22 -7
- package/components/date-picker/src/ctx.d.ts +10 -4
- package/components/date-picker/src/index.vue.d.ts +22 -7
- package/components/date-picker-range/src/ctx.d.ts +9 -3
- package/components/date-picker-range/src/index.vue.d.ts +22 -7
- package/components/download-plus/src/ctx.d.ts +9 -3
- package/components/download-plus/src/index.vue.d.ts +22 -7
- package/components/esri-input-geojson/src/ctx.d.ts +10 -4
- package/components/esri-input-geojson/src/index.vue.d.ts +26 -8
- package/components/form/src/ctx.d.ts +1 -1
- package/components/form/src/index.vue.d.ts +5 -5
- package/components/form-item/index.cjs +80 -18
- package/components/form-item/index.css +11 -10
- package/components/form-item/index.mjs +82 -20
- package/components/form-item/src/ctx.d.ts +10 -4
- package/components/form-item/src/index.vue.d.ts +311 -8
- package/components/geoinput/src/ctx.d.ts +9 -3
- package/components/geoinput/src/index.vue.d.ts +22 -7
- package/components/geoinput-read/src/core.vue.d.ts +26 -8
- package/components/geoinput-read/src/ctx.d.ts +10 -4
- package/components/geoinput-read/src/index.vue.d.ts +48 -15
- package/components/geoinput-update/src/ctx.d.ts +10 -4
- package/components/geoinput-update/src/index.vue.d.ts +26 -8
- package/components/index2.cjs +19 -0
- package/components/index2.mjs +19 -1
- package/components/input/src/ctx.d.ts +10 -4
- package/components/input/src/index.vue.d.ts +22 -7
- package/components/input-collection/src/ctx.d.ts +9 -3
- package/components/input-collection/src/index.vue.d.ts +22 -7
- package/components/input-link/src/ctx.d.ts +9 -3
- package/components/input-link/src/index.vue.d.ts +22 -7
- package/components/input-number/src/ctx.d.ts +10 -4
- package/components/input-number/src/index.vue.d.ts +22 -7
- package/components/monaco-editor/src/ctx.d.ts +9 -3
- package/components/monaco-editor/src/index.vue.d.ts +22 -7
- package/components/radio/src/ctx.d.ts +9 -3
- package/components/radio/src/index.vue.d.ts +22 -7
- package/components/select/index.cjs +38 -5
- package/components/select/index.mjs +40 -7
- package/components/select/src/ctx.d.ts +16 -3
- package/components/select/src/index.vue.d.ts +40 -8
- package/components/slider/src/ctx.d.ts +9 -3
- package/components/slider/src/index.vue.d.ts +22 -7
- package/components/switch/src/ctx.d.ts +9 -3
- package/components/switch/src/index.vue.d.ts +22 -7
- package/components/upload/src/ctx.d.ts +10 -4
- package/components/upload/src/index.vue.d.ts +22 -7
- package/components/upload-plus/src/ctx.d.ts +9 -3
- package/components/upload-plus/src/index.vue.d.ts +22 -7
- package/components/van-cascader/src/ctx.d.ts +9 -3
- package/components/van-cascader/src/index.vue.d.ts +22 -7
- package/components/var-datetime-picker/src/ctx.d.ts +9 -3
- package/components/var-datetime-picker/src/index.vue.d.ts +22 -7
- package/components/vditor/src/ctx.d.ts +9 -3
- package/components/vditor/src/index.vue.d.ts +22 -7
- package/index.css +11 -10
- package/package.json +1 -1
- package/shared/element-plus/index.cjs +0 -1
- package/shared/element-plus/index.mjs +0 -1
|
@@ -20,12 +20,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20
20
|
type: BooleanConstructor;
|
|
21
21
|
default: any;
|
|
22
22
|
};
|
|
23
|
-
|
|
24
|
-
type:
|
|
25
|
-
default:
|
|
23
|
+
formItemTip: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: any;
|
|
26
|
+
};
|
|
27
|
+
formItemTipClass: any;
|
|
28
|
+
labelTip: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: any;
|
|
26
31
|
};
|
|
27
32
|
label: StringConstructor;
|
|
28
33
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
34
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
29
35
|
prop: {
|
|
30
36
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
31
37
|
readonly required: false;
|
|
@@ -58,9 +64,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
58
64
|
}, "size">>, {
|
|
59
65
|
formItemBindProps: import("vue").ComputedRef<{
|
|
60
66
|
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
61
|
-
labelPosition: "right";
|
|
62
67
|
label: string;
|
|
63
68
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
69
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "top" | "left" | "right", unknown>;
|
|
64
70
|
prop: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>;
|
|
65
71
|
error: string;
|
|
66
72
|
validateStatus: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "error" | "validating", unknown>;
|
|
@@ -92,12 +98,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
92
98
|
type: BooleanConstructor;
|
|
93
99
|
default: any;
|
|
94
100
|
};
|
|
95
|
-
|
|
96
|
-
type:
|
|
97
|
-
default:
|
|
101
|
+
formItemTip: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: any;
|
|
104
|
+
};
|
|
105
|
+
formItemTipClass: any;
|
|
106
|
+
labelTip: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
default: any;
|
|
98
109
|
};
|
|
99
110
|
label: StringConstructor;
|
|
100
111
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
112
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
101
113
|
prop: {
|
|
102
114
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
103
115
|
readonly required: false;
|
|
@@ -133,8 +145,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
133
145
|
formItemSlots: import("./types").FormItemSlots;
|
|
134
146
|
inline: boolean;
|
|
135
147
|
readonly: boolean;
|
|
136
|
-
|
|
148
|
+
formItemTip: string;
|
|
149
|
+
formItemTipClass: any;
|
|
150
|
+
labelTip: string;
|
|
137
151
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
152
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "top" | "left" | "right", unknown>;
|
|
138
153
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
139
154
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
140
155
|
}, {}, {
|
|
@@ -299,5 +314,293 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
299
314
|
}): any;
|
|
300
315
|
};
|
|
301
316
|
})>;
|
|
317
|
+
ElIcon: import("element-plus/es/utils").SFCWithInstall<{
|
|
318
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
319
|
+
readonly size: {
|
|
320
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
|
|
321
|
+
readonly required: false;
|
|
322
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
323
|
+
__epPropKey: true;
|
|
324
|
+
};
|
|
325
|
+
readonly color: {
|
|
326
|
+
readonly type: import("vue").PropType<string>;
|
|
327
|
+
readonly required: false;
|
|
328
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
329
|
+
__epPropKey: true;
|
|
330
|
+
};
|
|
331
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
332
|
+
P: {};
|
|
333
|
+
B: {};
|
|
334
|
+
D: {};
|
|
335
|
+
C: {};
|
|
336
|
+
M: {};
|
|
337
|
+
Defaults: {};
|
|
338
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
339
|
+
readonly size: {
|
|
340
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
|
|
341
|
+
readonly required: false;
|
|
342
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
343
|
+
__epPropKey: true;
|
|
344
|
+
};
|
|
345
|
+
readonly color: {
|
|
346
|
+
readonly type: import("vue").PropType<string>;
|
|
347
|
+
readonly required: false;
|
|
348
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
349
|
+
__epPropKey: true;
|
|
350
|
+
};
|
|
351
|
+
}>>, {}, {}, {}, {}, {}>;
|
|
352
|
+
__isFragment?: never;
|
|
353
|
+
__isTeleport?: never;
|
|
354
|
+
__isSuspense?: never;
|
|
355
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
356
|
+
readonly size: {
|
|
357
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>>;
|
|
358
|
+
readonly required: false;
|
|
359
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
360
|
+
__epPropKey: true;
|
|
361
|
+
};
|
|
362
|
+
readonly color: {
|
|
363
|
+
readonly type: import("vue").PropType<string>;
|
|
364
|
+
readonly required: false;
|
|
365
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
366
|
+
__epPropKey: true;
|
|
367
|
+
};
|
|
368
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
369
|
+
$slots: {
|
|
370
|
+
default?(_: {}): any;
|
|
371
|
+
};
|
|
372
|
+
})>;
|
|
373
|
+
ElTooltip: never;
|
|
374
|
+
Warning: 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>;
|
|
375
|
+
ElButton: import("element-plus/es/utils").SFCWithInstall<{
|
|
376
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
377
|
+
readonly size: {
|
|
378
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
379
|
+
readonly required: false;
|
|
380
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
381
|
+
__epPropKey: true;
|
|
382
|
+
};
|
|
383
|
+
readonly disabled: BooleanConstructor;
|
|
384
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
385
|
+
readonly icon: {
|
|
386
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
|
|
387
|
+
readonly required: false;
|
|
388
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
389
|
+
__epPropKey: true;
|
|
390
|
+
};
|
|
391
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
392
|
+
readonly loading: BooleanConstructor;
|
|
393
|
+
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, () => any, boolean>;
|
|
394
|
+
readonly plain: BooleanConstructor;
|
|
395
|
+
readonly text: BooleanConstructor;
|
|
396
|
+
readonly link: BooleanConstructor;
|
|
397
|
+
readonly bg: BooleanConstructor;
|
|
398
|
+
readonly autofocus: BooleanConstructor;
|
|
399
|
+
readonly round: BooleanConstructor;
|
|
400
|
+
readonly circle: BooleanConstructor;
|
|
401
|
+
readonly color: StringConstructor;
|
|
402
|
+
readonly dark: BooleanConstructor;
|
|
403
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
404
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "button", boolean>;
|
|
405
|
+
}>> & {
|
|
406
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
407
|
+
}, {
|
|
408
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
409
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
410
|
+
type: import("vue").ComputedRef<"text" | "" | "default" | "success" | "warning" | "info" | "primary" | "danger">;
|
|
411
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
412
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
413
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
414
|
+
click: (evt: MouseEvent) => void;
|
|
415
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
416
|
+
readonly link: boolean;
|
|
417
|
+
readonly circle: boolean;
|
|
418
|
+
readonly text: boolean;
|
|
419
|
+
readonly disabled: boolean;
|
|
420
|
+
readonly round: boolean;
|
|
421
|
+
readonly dark: boolean;
|
|
422
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
423
|
+
readonly bg: boolean;
|
|
424
|
+
readonly loading: boolean;
|
|
425
|
+
readonly autofocus: boolean;
|
|
426
|
+
readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
427
|
+
readonly plain: boolean;
|
|
428
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
429
|
+
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
430
|
+
readonly loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
431
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
432
|
+
P: {};
|
|
433
|
+
B: {};
|
|
434
|
+
D: {};
|
|
435
|
+
C: {};
|
|
436
|
+
M: {};
|
|
437
|
+
Defaults: {};
|
|
438
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
439
|
+
readonly size: {
|
|
440
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
441
|
+
readonly required: false;
|
|
442
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
443
|
+
__epPropKey: true;
|
|
444
|
+
};
|
|
445
|
+
readonly disabled: BooleanConstructor;
|
|
446
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
447
|
+
readonly icon: {
|
|
448
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
|
|
449
|
+
readonly required: false;
|
|
450
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
451
|
+
__epPropKey: true;
|
|
452
|
+
};
|
|
453
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
454
|
+
readonly loading: BooleanConstructor;
|
|
455
|
+
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, () => any, boolean>;
|
|
456
|
+
readonly plain: BooleanConstructor;
|
|
457
|
+
readonly text: BooleanConstructor;
|
|
458
|
+
readonly link: BooleanConstructor;
|
|
459
|
+
readonly bg: BooleanConstructor;
|
|
460
|
+
readonly autofocus: BooleanConstructor;
|
|
461
|
+
readonly round: BooleanConstructor;
|
|
462
|
+
readonly circle: BooleanConstructor;
|
|
463
|
+
readonly color: StringConstructor;
|
|
464
|
+
readonly dark: BooleanConstructor;
|
|
465
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
466
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "button", boolean>;
|
|
467
|
+
}>> & {
|
|
468
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
469
|
+
}, {
|
|
470
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
471
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
472
|
+
type: import("vue").ComputedRef<"text" | "" | "default" | "success" | "warning" | "info" | "primary" | "danger">;
|
|
473
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
474
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
475
|
+
}, {}, {}, {}, {
|
|
476
|
+
readonly link: boolean;
|
|
477
|
+
readonly circle: boolean;
|
|
478
|
+
readonly text: boolean;
|
|
479
|
+
readonly disabled: boolean;
|
|
480
|
+
readonly round: boolean;
|
|
481
|
+
readonly dark: boolean;
|
|
482
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
483
|
+
readonly bg: boolean;
|
|
484
|
+
readonly loading: boolean;
|
|
485
|
+
readonly autofocus: boolean;
|
|
486
|
+
readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
487
|
+
readonly plain: boolean;
|
|
488
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
489
|
+
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
490
|
+
readonly loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
491
|
+
}>;
|
|
492
|
+
__isFragment?: never;
|
|
493
|
+
__isTeleport?: never;
|
|
494
|
+
__isSuspense?: never;
|
|
495
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
496
|
+
readonly size: {
|
|
497
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
498
|
+
readonly required: false;
|
|
499
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
500
|
+
__epPropKey: true;
|
|
501
|
+
};
|
|
502
|
+
readonly disabled: BooleanConstructor;
|
|
503
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
504
|
+
readonly icon: {
|
|
505
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
|
|
506
|
+
readonly required: false;
|
|
507
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
508
|
+
__epPropKey: true;
|
|
509
|
+
};
|
|
510
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
511
|
+
readonly loading: BooleanConstructor;
|
|
512
|
+
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, () => any, boolean>;
|
|
513
|
+
readonly plain: BooleanConstructor;
|
|
514
|
+
readonly text: BooleanConstructor;
|
|
515
|
+
readonly link: BooleanConstructor;
|
|
516
|
+
readonly bg: BooleanConstructor;
|
|
517
|
+
readonly autofocus: BooleanConstructor;
|
|
518
|
+
readonly round: BooleanConstructor;
|
|
519
|
+
readonly circle: BooleanConstructor;
|
|
520
|
+
readonly color: StringConstructor;
|
|
521
|
+
readonly dark: BooleanConstructor;
|
|
522
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
523
|
+
readonly tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "button", boolean>;
|
|
524
|
+
}>> & {
|
|
525
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
526
|
+
}, {
|
|
527
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
528
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
529
|
+
type: import("vue").ComputedRef<"text" | "" | "default" | "success" | "warning" | "info" | "primary" | "danger">;
|
|
530
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
531
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
532
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
533
|
+
click: (evt: MouseEvent) => void;
|
|
534
|
+
}, string, {
|
|
535
|
+
readonly link: boolean;
|
|
536
|
+
readonly circle: boolean;
|
|
537
|
+
readonly text: boolean;
|
|
538
|
+
readonly disabled: boolean;
|
|
539
|
+
readonly round: boolean;
|
|
540
|
+
readonly dark: boolean;
|
|
541
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
542
|
+
readonly bg: boolean;
|
|
543
|
+
readonly loading: boolean;
|
|
544
|
+
readonly autofocus: boolean;
|
|
545
|
+
readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
546
|
+
readonly plain: boolean;
|
|
547
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
548
|
+
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
549
|
+
readonly loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
550
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
551
|
+
$slots: {
|
|
552
|
+
loading?(_: {}): any;
|
|
553
|
+
icon?(_: {}): any;
|
|
554
|
+
default?(_: {}): any;
|
|
555
|
+
};
|
|
556
|
+
})> & {
|
|
557
|
+
ButtonGroup: {
|
|
558
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
559
|
+
readonly size: {
|
|
560
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
561
|
+
readonly required: false;
|
|
562
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
563
|
+
__epPropKey: true;
|
|
564
|
+
};
|
|
565
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
566
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
567
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
568
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
569
|
+
P: {};
|
|
570
|
+
B: {};
|
|
571
|
+
D: {};
|
|
572
|
+
C: {};
|
|
573
|
+
M: {};
|
|
574
|
+
Defaults: {};
|
|
575
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
576
|
+
readonly size: {
|
|
577
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
578
|
+
readonly required: false;
|
|
579
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
580
|
+
__epPropKey: true;
|
|
581
|
+
};
|
|
582
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
583
|
+
}>>, {}, {}, {}, {}, {
|
|
584
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
585
|
+
}>;
|
|
586
|
+
__isFragment?: never;
|
|
587
|
+
__isTeleport?: never;
|
|
588
|
+
__isSuspense?: never;
|
|
589
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
590
|
+
readonly size: {
|
|
591
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
592
|
+
readonly required: false;
|
|
593
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
594
|
+
__epPropKey: true;
|
|
595
|
+
};
|
|
596
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
597
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
598
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
599
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
600
|
+
$slots: {
|
|
601
|
+
default?(_: {}): any;
|
|
602
|
+
};
|
|
603
|
+
});
|
|
604
|
+
};
|
|
302
605
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
303
606
|
export default _default;
|
|
@@ -97,12 +97,18 @@ export declare const props: {
|
|
|
97
97
|
type: BooleanConstructor;
|
|
98
98
|
default: boolean;
|
|
99
99
|
};
|
|
100
|
-
|
|
101
|
-
type:
|
|
102
|
-
default:
|
|
100
|
+
formItemTip: {
|
|
101
|
+
type: StringConstructor;
|
|
102
|
+
default: any;
|
|
103
|
+
};
|
|
104
|
+
formItemTipClass: any;
|
|
105
|
+
labelTip: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
default: any;
|
|
103
108
|
};
|
|
104
109
|
label: StringConstructor;
|
|
105
110
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
111
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
106
112
|
prop: {
|
|
107
113
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
108
114
|
readonly required: false;
|
|
@@ -94,12 +94,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
94
94
|
type: BooleanConstructor;
|
|
95
95
|
default: boolean;
|
|
96
96
|
};
|
|
97
|
-
|
|
98
|
-
type:
|
|
99
|
-
default:
|
|
97
|
+
formItemTip: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: any;
|
|
100
|
+
};
|
|
101
|
+
formItemTipClass: any;
|
|
102
|
+
labelTip: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
default: any;
|
|
100
105
|
};
|
|
101
106
|
label: StringConstructor;
|
|
102
107
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
108
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
103
109
|
prop: {
|
|
104
110
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
105
111
|
readonly required: false;
|
|
@@ -329,12 +335,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
329
335
|
type: BooleanConstructor;
|
|
330
336
|
default: boolean;
|
|
331
337
|
};
|
|
332
|
-
|
|
333
|
-
type:
|
|
334
|
-
default:
|
|
338
|
+
formItemTip: {
|
|
339
|
+
type: StringConstructor;
|
|
340
|
+
default: any;
|
|
341
|
+
};
|
|
342
|
+
formItemTipClass: any;
|
|
343
|
+
labelTip: {
|
|
344
|
+
type: StringConstructor;
|
|
345
|
+
default: any;
|
|
335
346
|
};
|
|
336
347
|
label: StringConstructor;
|
|
337
348
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
349
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
338
350
|
prop: {
|
|
339
351
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
340
352
|
readonly required: false;
|
|
@@ -473,8 +485,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
473
485
|
formItemSlots: import("@vunk/form/components/form-item/src/types").FormItemSlots;
|
|
474
486
|
inline: boolean;
|
|
475
487
|
readonly: boolean;
|
|
476
|
-
|
|
488
|
+
formItemTip: string;
|
|
489
|
+
formItemTipClass: any;
|
|
490
|
+
labelTip: string;
|
|
477
491
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
492
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "top" | "left" | "right", unknown>;
|
|
478
493
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
479
494
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
480
495
|
multiple: boolean;
|
|
@@ -81,12 +81,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
81
81
|
type: BooleanConstructor;
|
|
82
82
|
default: any;
|
|
83
83
|
};
|
|
84
|
-
|
|
85
|
-
type:
|
|
86
|
-
default:
|
|
84
|
+
formItemTip: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: any;
|
|
87
|
+
};
|
|
88
|
+
formItemTipClass: any;
|
|
89
|
+
labelTip: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
default: any;
|
|
87
92
|
};
|
|
88
93
|
label: StringConstructor;
|
|
89
94
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
95
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
90
96
|
prop: {
|
|
91
97
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
92
98
|
readonly required: false;
|
|
@@ -186,9 +192,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
186
192
|
formItemSlots: import("@vunk/form/components/form-item/src/types").FormItemSlots;
|
|
187
193
|
elRef: any;
|
|
188
194
|
inline: boolean;
|
|
189
|
-
|
|
195
|
+
formItemTip: string;
|
|
196
|
+
formItemTipClass: any;
|
|
197
|
+
labelTip: string;
|
|
190
198
|
label: string;
|
|
191
199
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
200
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "top" | "left" | "right", unknown>;
|
|
192
201
|
prop: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>;
|
|
193
202
|
rules: unknown;
|
|
194
203
|
error: string;
|
|
@@ -345,12 +354,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
345
354
|
type: BooleanConstructor;
|
|
346
355
|
default: any;
|
|
347
356
|
};
|
|
348
|
-
|
|
349
|
-
type:
|
|
350
|
-
default:
|
|
357
|
+
formItemTip: {
|
|
358
|
+
type: StringConstructor;
|
|
359
|
+
default: any;
|
|
360
|
+
};
|
|
361
|
+
formItemTipClass: any;
|
|
362
|
+
labelTip: {
|
|
363
|
+
type: StringConstructor;
|
|
364
|
+
default: any;
|
|
351
365
|
};
|
|
352
366
|
label: StringConstructor;
|
|
353
367
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
368
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
354
369
|
prop: {
|
|
355
370
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
356
371
|
readonly required: false;
|
|
@@ -467,8 +482,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
467
482
|
formItemSlots: import("@vunk/form/components/form-item/src/types").FormItemSlots;
|
|
468
483
|
inline: boolean;
|
|
469
484
|
readonly: boolean;
|
|
470
|
-
|
|
485
|
+
formItemTip: string;
|
|
486
|
+
formItemTipClass: any;
|
|
487
|
+
labelTip: string;
|
|
471
488
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
489
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "top" | "left" | "right", unknown>;
|
|
472
490
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
473
491
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
474
492
|
id: string;
|
|
@@ -87,12 +87,18 @@ export declare const props: {
|
|
|
87
87
|
type: BooleanConstructor;
|
|
88
88
|
default: any;
|
|
89
89
|
};
|
|
90
|
-
|
|
91
|
-
type:
|
|
92
|
-
default:
|
|
90
|
+
formItemTip: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
default: any;
|
|
93
|
+
};
|
|
94
|
+
formItemTipClass: any;
|
|
95
|
+
labelTip: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: any;
|
|
93
98
|
};
|
|
94
99
|
label: StringConstructor;
|
|
95
100
|
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
101
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
96
102
|
prop: {
|
|
97
103
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => string | string[]) | (() => import("element-plus").FormItemProp))[], unknown, unknown>>;
|
|
98
104
|
readonly required: false;
|
|
@@ -182,7 +188,7 @@ export declare const props: {
|
|
|
182
188
|
inputStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
|
|
183
189
|
autofocus: BooleanConstructor;
|
|
184
190
|
};
|
|
185
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"size", keyof T2> | Extract<"disabled", keyof T2> | Extract<"type", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"required", keyof T2> | Extract<"data", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"
|
|
191
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"size", keyof T2> | Extract<"disabled", keyof T2> | Extract<"type", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"required", keyof T2> | Extract<"data", 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<"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<"id", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"formatter", keyof T2> | Extract<"parser", keyof T2> | Extract<"form", keyof T2> | Extract<"showPassword", keyof T2> | Extract<"showWordLimit", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"containerRole", keyof T2> | Extract<"inputStyle", keyof T2> | Extract<"rows", keyof T2> | Extract<"cursor", keyof T2> | Extract<"editTypes", keyof T2> | Extract<"showMap", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"editStyles", keyof T2> | Extract<"paint", keyof T2> | Extract<"custom", keyof T2> | Extract<"maxzoom", keyof T2> | Extract<"minzoom", keyof T2> | Extract<"before", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"size" | "disabled" | "type" | "autofocus" | "required" | "data" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "id" | "placeholder" | "clearable" | "validateEvent" | "modelValue" | "tabindex" | "ariaLabel" | "prefixIcon" | "maxlength" | "minlength" | "resize" | "autosize" | "autocomplete" | "formatter" | "parser" | "form" | "showPassword" | "showWordLimit" | "suffixIcon" | "containerRole" | "inputStyle" | "rows" | "cursor" | "editTypes" | "showMap" | "inputSlots" | "editStyles" | "paint" | "custom" | "maxzoom" | "minzoom" | "before", keyof T2>, KE> : Extract<"size" | "disabled" | "type" | "autofocus" | "required" | "data" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "id" | "placeholder" | "clearable" | "validateEvent" | "modelValue" | "tabindex" | "ariaLabel" | "prefixIcon" | "maxlength" | "minlength" | "resize" | "autosize" | "autocomplete" | "formatter" | "parser" | "form" | "showPassword" | "showWordLimit" | "suffixIcon" | "containerRole" | "inputStyle" | "rows" | "cursor" | "editTypes" | "showMap" | "inputSlots" | "editStyles" | "paint" | "custom" | "maxzoom" | "minzoom" | "before", keyof T2>]: { [k in Extract<"size" | "disabled" | "type" | "autofocus" | "required" | "data" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "id" | "placeholder" | "clearable" | "validateEvent" | "modelValue" | "tabindex" | "ariaLabel" | "prefixIcon" | "maxlength" | "minlength" | "resize" | "autosize" | "autocomplete" | "formatter" | "parser" | "form" | "showPassword" | "showWordLimit" | "suffixIcon" | "containerRole" | "inputStyle" | "rows" | "cursor" | "editTypes" | "showMap" | "inputSlots" | "editStyles" | "paint" | "custom" | "maxzoom" | "minzoom" | "before", keyof T2>]: T2[k]; }[P]; }>;
|
|
186
192
|
export declare const emits: {
|
|
187
193
|
layerChange: (layer: __VmGeojsonLayer.LoadEvent) => __VmGeojsonLayer.LoadEvent;
|
|
188
194
|
'update:modelValue': (e: FeatureCollection) => FeatureCollection<import("geojson").Geometry, {
|