@vunk/form 2.0.2 → 2.2.0
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/card-input-collection/index.cjs +256 -0
- package/components/card-input-collection/index.css +21 -0
- package/components/card-input-collection/index.d.ts +4 -0
- package/components/card-input-collection/index.mjs +250 -0
- package/components/card-input-collection/src/ctx.d.ts +82 -0
- package/components/card-input-collection/src/index.vue.d.ts +542 -0
- package/components/card-input-collection/src/types.d.ts +1 -0
- package/components/cascader/src/ctx.d.ts +1 -1
- package/components/cascader/src/index.vue.d.ts +1 -1
- package/components/checkbox/src/ctx.d.ts +1 -1
- package/components/checkbox/src/index.vue.d.ts +2 -2
- package/components/cloneDeep.cjs +2029 -0
- package/components/cloneDeep.mjs +2027 -0
- package/components/date-picker/src/ctx.d.ts +1 -1
- package/components/date-picker/src/index.vue.d.ts +2 -2
- package/components/esri-input-geojson/index.cjs +484 -2
- package/components/esri-input-geojson/index.mjs +483 -1
- package/components/esri-input-geojson/src/ctx.d.ts +1 -1
- package/components/esri-input-geojson/src/index.vue.d.ts +2 -2
- package/components/form/src/ctx.d.ts +1 -1
- package/components/form/src/index.vue.d.ts +1 -1
- package/components/index2.cjs +0 -19
- package/components/index2.mjs +1 -19
- package/components/input/src/ctx.d.ts +1 -1
- package/components/input/src/index.vue.d.ts +2 -2
- package/components/input-collection/index.cjs +4 -2029
- package/components/input-collection/index.mjs +4 -2029
- package/components/input-collection/src/index.vue.d.ts +1 -1
- package/components/input-link/src/index.vue.d.ts +1 -1
- package/components/input-number/src/ctx.d.ts +1 -1
- package/components/input-number/src/index.vue.d.ts +3 -3
- package/components/radio/src/index.vue.d.ts +1 -1
- package/components/select/index.cjs +12 -0
- package/components/select/index.d.ts +1 -0
- package/components/select/index.mjs +12 -1
- package/components/select/src/ctx.d.ts +2 -0
- package/components/select/src/index.vue.d.ts +2 -2
- package/components/slider/src/index.vue.d.ts +1 -1
- package/components/switch/src/index.vue.d.ts +1 -1
- package/components/tables-select/index.cjs +225 -0
- package/components/tables-select/index.css +3 -0
- package/components/tables-select/index.d.ts +4 -0
- package/components/tables-select/index.mjs +219 -0
- package/components/tables-select/src/ctx.d.ts +338 -0
- package/components/tables-select/src/index.vue.d.ts +4953 -0
- package/components/tables-select/src/types.d.ts +1 -0
- package/components/upload/index.mjs +1 -1
- package/components/upload-plus/index.mjs +1 -1
- package/components/vditor/src/index.vue.d.ts +1 -1
- package/index.css +26 -41
- package/package.json +17 -9
- package/shared/element-plus/ctx.d.ts +1 -1
- package/components/geoinput-update/index.cjs +0 -406
- package/components/geoinput-update/index.css +0 -40
- package/components/geoinput-update/index.d.ts +0 -5
- package/components/geoinput-update/index.mjs +0 -399
- package/components/geoinput-update/src/append.vue.d.ts +0 -815
- package/components/geoinput-update/src/ctx.d.ts +0 -219
- package/components/geoinput-update/src/index.vue.d.ts +0 -1143
- package/components/geoinput-update/src/types.d.ts +0 -6
- package/components/index3.cjs +0 -486
- package/components/index3.mjs +0 -484
|
@@ -0,0 +1,542 @@
|
|
|
1
|
+
import { NormalObject } from '@vunk/shared';
|
|
2
|
+
import { SetDataEvent } from '@vunk/core';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
formItems: {
|
|
5
|
+
type: import("vue").PropType<any[]>;
|
|
6
|
+
default: () => any[];
|
|
7
|
+
};
|
|
8
|
+
modelValue: {
|
|
9
|
+
type: import("vue").PropType<NormalObject[]>;
|
|
10
|
+
default: () => any[];
|
|
11
|
+
};
|
|
12
|
+
readonly: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: any;
|
|
15
|
+
};
|
|
16
|
+
splicable: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
inheritTemplates: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
25
|
+
formItemSize: {
|
|
26
|
+
type: import("vue").PropType<"default" | "small" | "large">;
|
|
27
|
+
default: "default" | "small" | "large";
|
|
28
|
+
};
|
|
29
|
+
formItemSlots: {
|
|
30
|
+
type: import("vue").PropType<import("@vunk/form/components/form-item/src/types").FormItemSlots>;
|
|
31
|
+
default: any;
|
|
32
|
+
};
|
|
33
|
+
elRef: {
|
|
34
|
+
type: import("vue").PropType<any>;
|
|
35
|
+
required: boolean;
|
|
36
|
+
};
|
|
37
|
+
inline: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
formItemTip: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: any;
|
|
44
|
+
};
|
|
45
|
+
formItemTipClass: any;
|
|
46
|
+
labelTip: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
label: StringConstructor;
|
|
51
|
+
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
52
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
53
|
+
prop: {
|
|
54
|
+
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>>;
|
|
55
|
+
readonly required: false;
|
|
56
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
57
|
+
__epPropKey: true;
|
|
58
|
+
};
|
|
59
|
+
rules: {
|
|
60
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => import("element-plus").FormItemRule | import("element-plus").FormItemRule[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").FormItemRule>) | ((new (...args: any[]) => import("element-plus").FormItemRule | import("element-plus").FormItemRule[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").FormItemRule>))[], unknown, unknown>>;
|
|
61
|
+
readonly required: false;
|
|
62
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
63
|
+
__epPropKey: true;
|
|
64
|
+
};
|
|
65
|
+
error: StringConstructor;
|
|
66
|
+
validateStatus: {
|
|
67
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
68
|
+
readonly required: false;
|
|
69
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
70
|
+
__epPropKey: true;
|
|
71
|
+
};
|
|
72
|
+
for: StringConstructor;
|
|
73
|
+
inlineMessage: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, BooleanConstructor], unknown, unknown, "", boolean>;
|
|
74
|
+
showMessage: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
75
|
+
}>, {
|
|
76
|
+
formItemBindProps: import("vue").ComputedRef<{}>;
|
|
77
|
+
addToFirst: () => void;
|
|
78
|
+
readonly: import("vue").ComputedRef<boolean>;
|
|
79
|
+
handleMinus: (index: number) => void;
|
|
80
|
+
handlePlus: (index: number) => void;
|
|
81
|
+
formData: import("vue").ComputedRef<NormalObject | NormalObject[]>;
|
|
82
|
+
handleFormSetData: (e: SetDataEvent) => void;
|
|
83
|
+
createTheFormItems: (index: number) => any[];
|
|
84
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
85
|
+
formItems: {
|
|
86
|
+
type: import("vue").PropType<any[]>;
|
|
87
|
+
default: () => any[];
|
|
88
|
+
};
|
|
89
|
+
modelValue: {
|
|
90
|
+
type: import("vue").PropType<NormalObject[]>;
|
|
91
|
+
default: () => any[];
|
|
92
|
+
};
|
|
93
|
+
readonly: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
default: any;
|
|
96
|
+
};
|
|
97
|
+
splicable: {
|
|
98
|
+
type: BooleanConstructor;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
101
|
+
inheritTemplates: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
105
|
+
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
106
|
+
formItemSize: {
|
|
107
|
+
type: import("vue").PropType<"default" | "small" | "large">;
|
|
108
|
+
default: "default" | "small" | "large";
|
|
109
|
+
};
|
|
110
|
+
formItemSlots: {
|
|
111
|
+
type: import("vue").PropType<import("@vunk/form/components/form-item/src/types").FormItemSlots>;
|
|
112
|
+
default: any;
|
|
113
|
+
};
|
|
114
|
+
elRef: {
|
|
115
|
+
type: import("vue").PropType<any>;
|
|
116
|
+
required: boolean;
|
|
117
|
+
};
|
|
118
|
+
inline: {
|
|
119
|
+
type: BooleanConstructor;
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
122
|
+
formItemTip: {
|
|
123
|
+
type: StringConstructor;
|
|
124
|
+
default: any;
|
|
125
|
+
};
|
|
126
|
+
formItemTipClass: any;
|
|
127
|
+
labelTip: {
|
|
128
|
+
type: StringConstructor;
|
|
129
|
+
default: any;
|
|
130
|
+
};
|
|
131
|
+
label: StringConstructor;
|
|
132
|
+
labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
133
|
+
labelPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "top" | "left" | "right", unknown, "", boolean>;
|
|
134
|
+
prop: {
|
|
135
|
+
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>>;
|
|
136
|
+
readonly required: false;
|
|
137
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
138
|
+
__epPropKey: true;
|
|
139
|
+
};
|
|
140
|
+
rules: {
|
|
141
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => import("element-plus").FormItemRule | import("element-plus").FormItemRule[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").FormItemRule>) | ((new (...args: any[]) => import("element-plus").FormItemRule | import("element-plus").FormItemRule[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").FormItemRule>))[], unknown, unknown>>;
|
|
142
|
+
readonly required: false;
|
|
143
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
144
|
+
__epPropKey: true;
|
|
145
|
+
};
|
|
146
|
+
error: StringConstructor;
|
|
147
|
+
validateStatus: {
|
|
148
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
149
|
+
readonly required: false;
|
|
150
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
151
|
+
__epPropKey: true;
|
|
152
|
+
};
|
|
153
|
+
for: StringConstructor;
|
|
154
|
+
inlineMessage: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, BooleanConstructor], unknown, unknown, "", boolean>;
|
|
155
|
+
showMessage: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
156
|
+
}>> & Readonly<{}>, {
|
|
157
|
+
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
158
|
+
formItemSize: "small" | "default" | "large";
|
|
159
|
+
formItemSlots: import("@vunk/form/components/form-item/src/types").FormItemSlots;
|
|
160
|
+
inline: boolean;
|
|
161
|
+
readonly: boolean;
|
|
162
|
+
formItemTip: string;
|
|
163
|
+
formItemTipClass: any;
|
|
164
|
+
labelTip: string;
|
|
165
|
+
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
166
|
+
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "top" | "left" | "right", unknown>;
|
|
167
|
+
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
168
|
+
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
169
|
+
formItems: any[];
|
|
170
|
+
modelValue: NormalObject[];
|
|
171
|
+
splicable: boolean;
|
|
172
|
+
inheritTemplates: boolean;
|
|
173
|
+
}, {}, {
|
|
174
|
+
VkfFormItem: {
|
|
175
|
+
new (...args: any[]): any;
|
|
176
|
+
__isFragment?: never;
|
|
177
|
+
__isTeleport?: never;
|
|
178
|
+
__isSuspense?: never;
|
|
179
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<Record<string | symbol, any>>>, Record<string | symbol, any>, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
180
|
+
[x: string]: any;
|
|
181
|
+
[x: symbol]: any;
|
|
182
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
183
|
+
install(app: import("vue").App): void;
|
|
184
|
+
};
|
|
185
|
+
ElCard: import("element-plus/es/utils").SFCWithInstall<{
|
|
186
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
187
|
+
readonly header: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
188
|
+
readonly footer: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
189
|
+
readonly bodyStyle: 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, "", boolean>;
|
|
190
|
+
readonly bodyClass: StringConstructor;
|
|
191
|
+
readonly shadow: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "always" | "never" | "hover", unknown, "always", boolean>;
|
|
192
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
193
|
+
readonly footer: string;
|
|
194
|
+
readonly header: string;
|
|
195
|
+
readonly bodyStyle: import("vue").StyleValue;
|
|
196
|
+
readonly shadow: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "always" | "never" | "hover", unknown>;
|
|
197
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
198
|
+
P: {};
|
|
199
|
+
B: {};
|
|
200
|
+
D: {};
|
|
201
|
+
C: {};
|
|
202
|
+
M: {};
|
|
203
|
+
Defaults: {};
|
|
204
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
205
|
+
readonly header: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
206
|
+
readonly footer: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
207
|
+
readonly bodyStyle: 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, "", boolean>;
|
|
208
|
+
readonly bodyClass: StringConstructor;
|
|
209
|
+
readonly shadow: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "always" | "never" | "hover", unknown, "always", boolean>;
|
|
210
|
+
}>>, {}, {}, {}, {}, {
|
|
211
|
+
readonly footer: string;
|
|
212
|
+
readonly header: string;
|
|
213
|
+
readonly bodyStyle: import("vue").StyleValue;
|
|
214
|
+
readonly shadow: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "always" | "never" | "hover", unknown>;
|
|
215
|
+
}>;
|
|
216
|
+
__isFragment?: never;
|
|
217
|
+
__isTeleport?: never;
|
|
218
|
+
__isSuspense?: never;
|
|
219
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
220
|
+
readonly header: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
221
|
+
readonly footer: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
222
|
+
readonly bodyStyle: 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, "", boolean>;
|
|
223
|
+
readonly bodyClass: StringConstructor;
|
|
224
|
+
readonly shadow: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "always" | "never" | "hover", unknown, "always", boolean>;
|
|
225
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
226
|
+
readonly footer: string;
|
|
227
|
+
readonly header: string;
|
|
228
|
+
readonly bodyStyle: import("vue").StyleValue;
|
|
229
|
+
readonly shadow: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "always" | "never" | "hover", unknown>;
|
|
230
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
231
|
+
$slots: {
|
|
232
|
+
header?(_: {}): any;
|
|
233
|
+
default?(_: {}): any;
|
|
234
|
+
footer?(_: {}): any;
|
|
235
|
+
};
|
|
236
|
+
})>;
|
|
237
|
+
ElButton: import("element-plus/es/utils").SFCWithInstall<{
|
|
238
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
239
|
+
readonly size: {
|
|
240
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
241
|
+
readonly required: false;
|
|
242
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
243
|
+
__epPropKey: true;
|
|
244
|
+
};
|
|
245
|
+
readonly disabled: BooleanConstructor;
|
|
246
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
247
|
+
readonly icon: {
|
|
248
|
+
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>>;
|
|
249
|
+
readonly required: false;
|
|
250
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
251
|
+
__epPropKey: true;
|
|
252
|
+
};
|
|
253
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
254
|
+
readonly loading: BooleanConstructor;
|
|
255
|
+
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>;
|
|
256
|
+
readonly plain: BooleanConstructor;
|
|
257
|
+
readonly text: BooleanConstructor;
|
|
258
|
+
readonly link: BooleanConstructor;
|
|
259
|
+
readonly bg: BooleanConstructor;
|
|
260
|
+
readonly autofocus: BooleanConstructor;
|
|
261
|
+
readonly round: BooleanConstructor;
|
|
262
|
+
readonly circle: BooleanConstructor;
|
|
263
|
+
readonly color: StringConstructor;
|
|
264
|
+
readonly dark: BooleanConstructor;
|
|
265
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
266
|
+
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>;
|
|
267
|
+
}>> & {
|
|
268
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
269
|
+
}, {
|
|
270
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
271
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
272
|
+
type: import("vue").ComputedRef<"text" | "" | "default" | "success" | "warning" | "info" | "primary" | "danger">;
|
|
273
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
274
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
275
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
276
|
+
click: (evt: MouseEvent) => void;
|
|
277
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
278
|
+
readonly link: boolean;
|
|
279
|
+
readonly circle: boolean;
|
|
280
|
+
readonly text: boolean;
|
|
281
|
+
readonly disabled: boolean;
|
|
282
|
+
readonly round: boolean;
|
|
283
|
+
readonly dark: boolean;
|
|
284
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
285
|
+
readonly bg: boolean;
|
|
286
|
+
readonly loading: boolean;
|
|
287
|
+
readonly autofocus: boolean;
|
|
288
|
+
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>;
|
|
289
|
+
readonly plain: boolean;
|
|
290
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
291
|
+
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
292
|
+
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>;
|
|
293
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
294
|
+
P: {};
|
|
295
|
+
B: {};
|
|
296
|
+
D: {};
|
|
297
|
+
C: {};
|
|
298
|
+
M: {};
|
|
299
|
+
Defaults: {};
|
|
300
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
301
|
+
readonly size: {
|
|
302
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
303
|
+
readonly required: false;
|
|
304
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
305
|
+
__epPropKey: true;
|
|
306
|
+
};
|
|
307
|
+
readonly disabled: BooleanConstructor;
|
|
308
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
309
|
+
readonly icon: {
|
|
310
|
+
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>>;
|
|
311
|
+
readonly required: false;
|
|
312
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
313
|
+
__epPropKey: true;
|
|
314
|
+
};
|
|
315
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
316
|
+
readonly loading: BooleanConstructor;
|
|
317
|
+
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>;
|
|
318
|
+
readonly plain: BooleanConstructor;
|
|
319
|
+
readonly text: BooleanConstructor;
|
|
320
|
+
readonly link: BooleanConstructor;
|
|
321
|
+
readonly bg: BooleanConstructor;
|
|
322
|
+
readonly autofocus: BooleanConstructor;
|
|
323
|
+
readonly round: BooleanConstructor;
|
|
324
|
+
readonly circle: BooleanConstructor;
|
|
325
|
+
readonly color: StringConstructor;
|
|
326
|
+
readonly dark: BooleanConstructor;
|
|
327
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
328
|
+
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>;
|
|
329
|
+
}>> & {
|
|
330
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
331
|
+
}, {
|
|
332
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
333
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
334
|
+
type: import("vue").ComputedRef<"text" | "" | "default" | "success" | "warning" | "info" | "primary" | "danger">;
|
|
335
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
336
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
337
|
+
}, {}, {}, {}, {
|
|
338
|
+
readonly link: boolean;
|
|
339
|
+
readonly circle: boolean;
|
|
340
|
+
readonly text: boolean;
|
|
341
|
+
readonly disabled: boolean;
|
|
342
|
+
readonly round: boolean;
|
|
343
|
+
readonly dark: boolean;
|
|
344
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
345
|
+
readonly bg: boolean;
|
|
346
|
+
readonly loading: boolean;
|
|
347
|
+
readonly autofocus: boolean;
|
|
348
|
+
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>;
|
|
349
|
+
readonly plain: boolean;
|
|
350
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
351
|
+
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
352
|
+
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>;
|
|
353
|
+
}>;
|
|
354
|
+
__isFragment?: never;
|
|
355
|
+
__isTeleport?: never;
|
|
356
|
+
__isSuspense?: never;
|
|
357
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
358
|
+
readonly size: {
|
|
359
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
360
|
+
readonly required: false;
|
|
361
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
362
|
+
__epPropKey: true;
|
|
363
|
+
};
|
|
364
|
+
readonly disabled: BooleanConstructor;
|
|
365
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
366
|
+
readonly icon: {
|
|
367
|
+
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>>;
|
|
368
|
+
readonly required: false;
|
|
369
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
370
|
+
__epPropKey: true;
|
|
371
|
+
};
|
|
372
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "button" | "reset" | "submit", unknown, "button", boolean>;
|
|
373
|
+
readonly loading: BooleanConstructor;
|
|
374
|
+
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>;
|
|
375
|
+
readonly plain: BooleanConstructor;
|
|
376
|
+
readonly text: BooleanConstructor;
|
|
377
|
+
readonly link: BooleanConstructor;
|
|
378
|
+
readonly bg: BooleanConstructor;
|
|
379
|
+
readonly autofocus: BooleanConstructor;
|
|
380
|
+
readonly round: BooleanConstructor;
|
|
381
|
+
readonly circle: BooleanConstructor;
|
|
382
|
+
readonly color: StringConstructor;
|
|
383
|
+
readonly dark: BooleanConstructor;
|
|
384
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
385
|
+
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>;
|
|
386
|
+
}>> & {
|
|
387
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
388
|
+
}, {
|
|
389
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
390
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
391
|
+
type: import("vue").ComputedRef<"text" | "" | "default" | "success" | "warning" | "info" | "primary" | "danger">;
|
|
392
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
393
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
394
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
395
|
+
click: (evt: MouseEvent) => void;
|
|
396
|
+
}, string, {
|
|
397
|
+
readonly link: boolean;
|
|
398
|
+
readonly circle: boolean;
|
|
399
|
+
readonly text: boolean;
|
|
400
|
+
readonly disabled: boolean;
|
|
401
|
+
readonly round: boolean;
|
|
402
|
+
readonly dark: boolean;
|
|
403
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
404
|
+
readonly bg: boolean;
|
|
405
|
+
readonly loading: boolean;
|
|
406
|
+
readonly autofocus: boolean;
|
|
407
|
+
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>;
|
|
408
|
+
readonly plain: boolean;
|
|
409
|
+
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
410
|
+
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
411
|
+
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>;
|
|
412
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
413
|
+
$slots: {
|
|
414
|
+
loading?(_: {}): any;
|
|
415
|
+
icon?(_: {}): any;
|
|
416
|
+
default?(_: {}): any;
|
|
417
|
+
};
|
|
418
|
+
})> & {
|
|
419
|
+
ButtonGroup: {
|
|
420
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
421
|
+
readonly size: {
|
|
422
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
423
|
+
readonly required: false;
|
|
424
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
425
|
+
__epPropKey: true;
|
|
426
|
+
};
|
|
427
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
428
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
429
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
430
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
431
|
+
P: {};
|
|
432
|
+
B: {};
|
|
433
|
+
D: {};
|
|
434
|
+
C: {};
|
|
435
|
+
M: {};
|
|
436
|
+
Defaults: {};
|
|
437
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
438
|
+
readonly size: {
|
|
439
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
440
|
+
readonly required: false;
|
|
441
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
442
|
+
__epPropKey: true;
|
|
443
|
+
};
|
|
444
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
445
|
+
}>>, {}, {}, {}, {}, {
|
|
446
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
447
|
+
}>;
|
|
448
|
+
__isFragment?: never;
|
|
449
|
+
__isTeleport?: never;
|
|
450
|
+
__isSuspense?: never;
|
|
451
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
452
|
+
readonly size: {
|
|
453
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
454
|
+
readonly required: false;
|
|
455
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
456
|
+
__epPropKey: true;
|
|
457
|
+
};
|
|
458
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown, "", boolean>;
|
|
459
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
460
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
461
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
462
|
+
$slots: {
|
|
463
|
+
default?(_: {}): any;
|
|
464
|
+
};
|
|
465
|
+
});
|
|
466
|
+
};
|
|
467
|
+
ElEmpty: import("element-plus/es/utils").SFCWithInstall<{
|
|
468
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
469
|
+
readonly image: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
470
|
+
readonly imageSize: NumberConstructor;
|
|
471
|
+
readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
472
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
473
|
+
readonly image: string;
|
|
474
|
+
readonly description: string;
|
|
475
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
476
|
+
P: {};
|
|
477
|
+
B: {};
|
|
478
|
+
D: {};
|
|
479
|
+
C: {};
|
|
480
|
+
M: {};
|
|
481
|
+
Defaults: {};
|
|
482
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
483
|
+
readonly image: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
484
|
+
readonly imageSize: NumberConstructor;
|
|
485
|
+
readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
486
|
+
}>>, {}, {}, {}, {}, {
|
|
487
|
+
readonly image: string;
|
|
488
|
+
readonly description: string;
|
|
489
|
+
}>;
|
|
490
|
+
__isFragment?: never;
|
|
491
|
+
__isTeleport?: never;
|
|
492
|
+
__isSuspense?: never;
|
|
493
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
494
|
+
readonly image: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
495
|
+
readonly imageSize: NumberConstructor;
|
|
496
|
+
readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
497
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
498
|
+
readonly image: string;
|
|
499
|
+
readonly description: string;
|
|
500
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
501
|
+
$slots: {
|
|
502
|
+
image?(_: {}): any;
|
|
503
|
+
description?(_: {}): any;
|
|
504
|
+
default?(_: {}): any;
|
|
505
|
+
};
|
|
506
|
+
})>;
|
|
507
|
+
VkfTemplateInstancesProvider: {
|
|
508
|
+
new (...args: any[]): any;
|
|
509
|
+
__isFragment?: never;
|
|
510
|
+
__isTeleport?: never;
|
|
511
|
+
__isSuspense?: never;
|
|
512
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<Record<string | symbol, any>>>, Record<string | symbol, any>, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
513
|
+
[x: string]: any;
|
|
514
|
+
[x: symbol]: any;
|
|
515
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
516
|
+
install(app: import("vue").App): void;
|
|
517
|
+
};
|
|
518
|
+
VkfTemplatesDefault: never;
|
|
519
|
+
VkfRendererData: {
|
|
520
|
+
new (...args: any[]): any;
|
|
521
|
+
__isFragment?: never;
|
|
522
|
+
__isTeleport?: never;
|
|
523
|
+
__isSuspense?: never;
|
|
524
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<Record<string | symbol, any>>>, Record<string | symbol, any>, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
525
|
+
[x: string]: any;
|
|
526
|
+
[x: symbol]: any;
|
|
527
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
528
|
+
install(app: import("vue").App): void;
|
|
529
|
+
};
|
|
530
|
+
VkfFormItemRenderer: {
|
|
531
|
+
new (...args: any[]): any;
|
|
532
|
+
__isFragment?: never;
|
|
533
|
+
__isTeleport?: never;
|
|
534
|
+
__isSuspense?: never;
|
|
535
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<Record<string | symbol, any>>>, Record<string | symbol, any>, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
536
|
+
[x: string]: any;
|
|
537
|
+
[x: symbol]: any;
|
|
538
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
539
|
+
install(app: import("vue").App): void;
|
|
540
|
+
};
|
|
541
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
542
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -123,7 +123,7 @@ export declare const props: {
|
|
|
123
123
|
options: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").CascaderOption[]) | (() => import("element-plus").CascaderOption[]) | ((new (...args: any[]) => import("element-plus").CascaderOption[]) | (() => import("element-plus").CascaderOption[]))[], unknown, unknown, () => import("element-plus").CascaderOption[], boolean>;
|
|
124
124
|
props: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").CascaderProps) | (() => import("element-plus").CascaderProps) | ((new (...args: any[]) => import("element-plus").CascaderProps) | (() => import("element-plus").CascaderProps))[], unknown, unknown, () => import("element-plus").CascaderProps, boolean>;
|
|
125
125
|
};
|
|
126
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"size", keyof T2> | Extract<"disabled", keyof T2> | Extract<"required", keyof T2> | Extract<"props", 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<"options", keyof T2> | Extract<"placement", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"filterable", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"teleported", keyof T2> | Extract<"tagType", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"persistent", keyof T2> | Extract<"
|
|
126
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"size", keyof T2> | Extract<"disabled", keyof T2> | Extract<"required", keyof T2> | Extract<"props", 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<"options", keyof T2> | Extract<"placement", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"filterable", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"separator", keyof T2> | Extract<"showAllLevels", keyof T2> | Extract<"collapseTags", keyof T2> | Extract<"maxCollapseTags", keyof T2> | Extract<"collapseTagsTooltip", keyof T2> | Extract<"debounce", keyof T2> | Extract<"beforeFilter", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"teleported", keyof T2> | Extract<"tagType", keyof T2> | Extract<"tagEffect", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"persistent", keyof T2> | Extract<"optionsUrl", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"size" | "disabled" | "required" | "props" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "options" | "placement" | "modelValue" | "emptyValues" | "valueOnClear" | "placeholder" | "clearable" | "filterable" | "filterMethod" | "separator" | "showAllLevels" | "collapseTags" | "maxCollapseTags" | "collapseTagsTooltip" | "debounce" | "beforeFilter" | "fallbackPlacements" | "popperClass" | "teleported" | "tagType" | "tagEffect" | "validateEvent" | "persistent" | "optionsUrl", keyof T2>, KE> : Extract<"size" | "disabled" | "required" | "props" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "options" | "placement" | "modelValue" | "emptyValues" | "valueOnClear" | "placeholder" | "clearable" | "filterable" | "filterMethod" | "separator" | "showAllLevels" | "collapseTags" | "maxCollapseTags" | "collapseTagsTooltip" | "debounce" | "beforeFilter" | "fallbackPlacements" | "popperClass" | "teleported" | "tagType" | "tagEffect" | "validateEvent" | "persistent" | "optionsUrl", keyof T2>]: { [k in Extract<"size" | "disabled" | "required" | "props" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "options" | "placement" | "modelValue" | "emptyValues" | "valueOnClear" | "placeholder" | "clearable" | "filterable" | "filterMethod" | "separator" | "showAllLevels" | "collapseTags" | "maxCollapseTags" | "collapseTagsTooltip" | "debounce" | "beforeFilter" | "fallbackPlacements" | "popperClass" | "teleported" | "tagType" | "tagEffect" | "validateEvent" | "persistent" | "optionsUrl", keyof T2>]: T2[k]; }[P]; }>;
|
|
127
127
|
export declare const emits: {
|
|
128
128
|
"update:modelValue": (_: import("element-plus").CascaderValue) => boolean;
|
|
129
129
|
change: (_: import("element-plus").CascaderValue) => boolean;
|
|
@@ -128,6 +128,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
128
128
|
disabled: boolean;
|
|
129
129
|
props: import("element-plus").CascaderProps;
|
|
130
130
|
placement: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown>;
|
|
131
|
+
modelValue: import("element-plus/es/components/cascader-panel/src/node").CascaderValue;
|
|
131
132
|
emptyValues: unknown[];
|
|
132
133
|
valueOnClear: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown>;
|
|
133
134
|
placeholder: string;
|
|
@@ -148,7 +149,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
148
149
|
tagEffect: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "plain" | "dark" | "light", unknown>;
|
|
149
150
|
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
150
151
|
persistent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
151
|
-
modelValue: import("element-plus/es/components/cascader-panel/src/node").CascaderValue;
|
|
152
152
|
}>;
|
|
153
153
|
coreOnEmits: {};
|
|
154
154
|
formItemBindProps: import("vue").ComputedRef<{}>;
|