@vunk/form 2.10.0 → 2.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/api-tables-select/index.cjs +37 -36
- package/components/api-tables-select/index.mjs +37 -36
- package/components/api-tables-select/src/ctx.d.ts +48 -13
- package/components/api-tables-select/src/index.vue.d.ts +568 -80
- package/components/button/src/ctx.d.ts +101 -17
- package/components/button/src/index.vue.d.ts +437 -101
- package/components/card-input-collection/index.cjs +67 -70
- package/components/card-input-collection/index.mjs +68 -71
- package/components/card-input-collection/src/ctx.d.ts +43 -8
- package/components/card-input-collection/src/index.vue.d.ts +718 -226
- package/components/cascader/src/ctx.d.ts +192 -46
- package/components/cascader/src/index.vue.d.ts +393 -118
- package/components/checkbox/index.cjs +2 -3
- package/components/checkbox/index.mjs +2 -3
- package/components/checkbox/src/ctx.d.ts +65 -13
- package/components/checkbox/src/index.vue.d.ts +339 -115
- package/components/color-picker/src/ctx.d.ts +76 -13
- package/components/color-picker/src/index.vue.d.ts +160 -34
- package/components/date-picker/src/ctx.d.ts +185 -36
- package/components/date-picker/src/index.vue.d.ts +974 -202
- package/components/date-picker-range/src/ctx.d.ts +168 -35
- package/components/date-picker-range/src/index.vue.d.ts +347 -82
- package/components/download-plus/index.cjs +4 -4
- package/components/download-plus/index.mjs +4 -4
- package/components/download-plus/src/ctx.d.ts +43 -8
- package/components/download-plus/src/index.vue.d.ts +618 -165
- package/components/editable-text/index.cjs +29 -15
- package/components/editable-text/index.mjs +29 -15
- package/components/editable-text/src/ctx.d.ts +51 -8
- package/components/editable-text/src/index.vue.d.ts +2827 -251
- package/components/esri-input-geojson/src/append.vue.d.ts +769 -418
- package/components/esri-input-geojson/src/ctx.d.ts +133 -32
- package/components/esri-input-geojson/src/index.vue.d.ts +262 -92
- package/components/esri-input-geojson/src/viewer.vue.d.ts +1 -1
- package/components/form/src/ctx.d.ts +59 -11
- package/components/form/src/index.vue.d.ts +3456 -186
- package/components/form-item/src/ctx.d.ts +45 -10
- package/components/form-item/src/index.vue.d.ts +484 -141
- package/components/information-collection/src/ctx.d.ts +45 -10
- package/components/information-collection/src/index.vue.d.ts +96 -26
- package/components/information-tag/src/ctx.d.ts +17 -3
- package/components/information-tag/src/index.vue.d.ts +38 -10
- package/components/input/src/ctx.d.ts +138 -33
- package/components/input/src/index.vue.d.ts +528 -152
- package/components/input-collection/index.cjs +105 -74
- package/components/input-collection/index.mjs +107 -76
- package/components/input-collection/src/ctx.d.ts +43 -8
- package/components/input-collection/src/index.vue.d.ts +756 -793
- package/components/input-link/src/ctx.d.ts +103 -25
- package/components/input-link/src/index.vue.d.ts +219 -63
- package/components/input-number/src/ctx.d.ts +123 -21
- package/components/input-number/src/index.vue.d.ts +468 -93
- package/components/input-tag/src/ctx.d.ts +141 -25
- package/components/input-tag/src/index.vue.d.ts +566 -126
- package/components/monaco-editor/src/ctx.d.ts +43 -8
- package/components/monaco-editor/src/index.vue.d.ts +91 -21
- package/components/radio/index.cjs +2 -3
- package/components/radio/index.mjs +2 -3
- package/components/radio/src/ctx.d.ts +84 -14
- package/components/radio/src/index.vue.d.ts +812 -168
- package/components/select/src/ctx.d.ts +63 -13
- package/components/select/src/index.vue.d.ts +549 -108
- package/components/slider/src/ctx.d.ts +170 -54
- package/components/slider/src/index.vue.d.ts +362 -137
- package/components/switch/src/ctx.d.ts +105 -21
- package/components/switch/src/index.vue.d.ts +453 -117
- package/components/tables-select/src/ctx.d.ts +72 -9
- package/components/tables-select/src/index.vue.d.ts +386 -82
- package/components/templates-element-plus/src/index.vue.d.ts +187 -40
- package/components/templates-layout/src/index.vue.d.ts +337 -64
- package/components/upload/index.cjs +2 -2
- package/components/upload/index.mjs +2 -2
- package/components/upload/src/ctx.d.ts +183 -89
- package/components/upload/src/file.vue.d.ts +269 -83
- package/components/upload/src/index.vue.d.ts +1246 -632
- package/components/upload-plus/index.cjs +79 -86
- package/components/upload-plus/index.mjs +79 -86
- package/components/upload-plus/src/ctx.d.ts +43 -8
- package/components/upload-plus/src/index.vue.d.ts +1008 -283
- package/components/van-cascader/src/ctx.d.ts +181 -44
- package/components/van-cascader/src/index.vue.d.ts +1532 -324
- package/components/var-datetime-picker/src/ctx.d.ts +43 -8
- package/components/var-datetime-picker/src/index.vue.d.ts +932 -190
- package/components/vditor/src/ctx.d.ts +43 -8
- package/components/vditor/src/index.vue.d.ts +91 -21
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +111 -30
- package/shared/element-plus/instances.d.ts +140 -28
|
@@ -3,7 +3,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3
3
|
type: import("vue").PropType<import("./types").DatePickerSlots>;
|
|
4
4
|
default: any;
|
|
5
5
|
};
|
|
6
|
-
required:
|
|
6
|
+
required: {
|
|
7
|
+
readonly type: import("vue").PropType<boolean>;
|
|
8
|
+
readonly required: false;
|
|
9
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
10
|
+
__epPropKey: true;
|
|
11
|
+
} & {
|
|
12
|
+
readonly default: undefined;
|
|
13
|
+
};
|
|
7
14
|
formItemSize: {
|
|
8
15
|
type: import("vue").PropType<"default" | "small" | "large">;
|
|
9
16
|
default: "default" | "small" | "large";
|
|
@@ -38,38 +45,80 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
38
45
|
default: boolean;
|
|
39
46
|
};
|
|
40
47
|
label: StringConstructor;
|
|
41
|
-
labelWidth:
|
|
42
|
-
|
|
48
|
+
labelWidth: {
|
|
49
|
+
readonly type: import("vue").PropType<string | number>;
|
|
50
|
+
readonly required: false;
|
|
51
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
52
|
+
__epPropKey: true;
|
|
53
|
+
} & {
|
|
54
|
+
readonly default: "";
|
|
55
|
+
};
|
|
56
|
+
labelPosition: {
|
|
57
|
+
readonly type: import("vue").PropType<"" | "top" | "left" | "right">;
|
|
58
|
+
readonly required: false;
|
|
59
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
60
|
+
__epPropKey: true;
|
|
61
|
+
} & {
|
|
62
|
+
readonly default: "";
|
|
63
|
+
};
|
|
43
64
|
prop: {
|
|
44
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
65
|
+
readonly type: import("vue").PropType<import("element-plus").FormItemProp>;
|
|
45
66
|
readonly required: false;
|
|
46
67
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
47
68
|
__epPropKey: true;
|
|
48
69
|
};
|
|
49
70
|
rules: {
|
|
50
|
-
readonly type: import("vue").PropType<
|
|
71
|
+
readonly type: import("vue").PropType<unknown>;
|
|
51
72
|
readonly required: false;
|
|
52
73
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
53
74
|
__epPropKey: true;
|
|
54
75
|
};
|
|
55
76
|
error: StringConstructor;
|
|
56
77
|
validateStatus: {
|
|
57
|
-
readonly type: import("vue").PropType<
|
|
78
|
+
readonly type: import("vue").PropType<"" | "error" | "success" | "validating">;
|
|
58
79
|
readonly required: false;
|
|
59
80
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
60
81
|
__epPropKey: true;
|
|
61
82
|
};
|
|
62
83
|
for: StringConstructor;
|
|
63
|
-
inlineMessage:
|
|
64
|
-
|
|
84
|
+
inlineMessage: {
|
|
85
|
+
readonly type: import("vue").PropType<string | boolean>;
|
|
86
|
+
readonly required: false;
|
|
87
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
88
|
+
__epPropKey: true;
|
|
89
|
+
} & {
|
|
90
|
+
readonly default: "";
|
|
91
|
+
};
|
|
92
|
+
showMessage: {
|
|
93
|
+
readonly type: import("vue").PropType<boolean>;
|
|
94
|
+
readonly required: false;
|
|
95
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
96
|
+
__epPropKey: true;
|
|
97
|
+
} & {
|
|
98
|
+
readonly default: true;
|
|
99
|
+
};
|
|
65
100
|
type: {
|
|
66
101
|
type: import("vue").PropType<import("element-plus").DatePickType>;
|
|
67
102
|
default: string;
|
|
68
103
|
};
|
|
69
|
-
showNow:
|
|
104
|
+
showNow: {
|
|
105
|
+
readonly type: import("vue").PropType<boolean>;
|
|
106
|
+
readonly required: false;
|
|
107
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
108
|
+
__epPropKey: true;
|
|
109
|
+
} & {
|
|
110
|
+
readonly default: true;
|
|
111
|
+
};
|
|
70
112
|
ariaLabel: StringConstructor;
|
|
71
113
|
emptyValues: ArrayConstructor;
|
|
72
|
-
valueOnClear:
|
|
114
|
+
valueOnClear: {
|
|
115
|
+
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
116
|
+
readonly required: false;
|
|
117
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
118
|
+
__epPropKey: true;
|
|
119
|
+
} & {
|
|
120
|
+
readonly default: undefined;
|
|
121
|
+
};
|
|
73
122
|
disabledDate: {
|
|
74
123
|
readonly type: import("vue").PropType<Function>;
|
|
75
124
|
readonly required: false;
|
|
@@ -82,78 +131,169 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
82
131
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
83
132
|
__epPropKey: true;
|
|
84
133
|
};
|
|
85
|
-
shortcuts:
|
|
134
|
+
shortcuts: {
|
|
135
|
+
readonly type: import("vue").PropType<unknown[]>;
|
|
136
|
+
readonly required: false;
|
|
137
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
138
|
+
__epPropKey: true;
|
|
139
|
+
} & {
|
|
140
|
+
readonly default: () => never[];
|
|
141
|
+
};
|
|
86
142
|
arrowControl: BooleanConstructor;
|
|
87
|
-
tabindex:
|
|
88
|
-
|
|
143
|
+
tabindex: {
|
|
144
|
+
readonly type: import("vue").PropType<string | number>;
|
|
145
|
+
readonly required: false;
|
|
146
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
147
|
+
__epPropKey: true;
|
|
148
|
+
} & {
|
|
149
|
+
readonly default: 0;
|
|
150
|
+
};
|
|
151
|
+
validateEvent: {
|
|
152
|
+
readonly type: import("vue").PropType<boolean>;
|
|
153
|
+
readonly required: false;
|
|
154
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
155
|
+
__epPropKey: true;
|
|
156
|
+
} & {
|
|
157
|
+
readonly default: true;
|
|
158
|
+
};
|
|
89
159
|
unlinkPanels: BooleanConstructor;
|
|
90
|
-
placement:
|
|
91
|
-
|
|
160
|
+
placement: {
|
|
161
|
+
readonly type: import("vue").PropType<import("element-plus").Placement>;
|
|
162
|
+
readonly required: false;
|
|
163
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
164
|
+
__epPropKey: true;
|
|
165
|
+
} & {
|
|
166
|
+
readonly default: "bottom";
|
|
167
|
+
};
|
|
168
|
+
fallbackPlacements: {
|
|
169
|
+
readonly type: import("vue").PropType<import("element-plus").Placement[]>;
|
|
170
|
+
readonly required: false;
|
|
171
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
172
|
+
__epPropKey: true;
|
|
173
|
+
} & {
|
|
174
|
+
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
175
|
+
};
|
|
92
176
|
disabledHours: {
|
|
93
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
177
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
94
178
|
readonly required: false;
|
|
95
179
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
96
180
|
__epPropKey: true;
|
|
97
181
|
};
|
|
98
182
|
disabledMinutes: {
|
|
99
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
183
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledMinutes>;
|
|
100
184
|
readonly required: false;
|
|
101
185
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
102
186
|
__epPropKey: true;
|
|
103
187
|
};
|
|
104
188
|
disabledSeconds: {
|
|
105
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
189
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledSeconds>;
|
|
106
190
|
readonly required: false;
|
|
107
191
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
108
192
|
__epPropKey: true;
|
|
109
193
|
};
|
|
110
194
|
id: {
|
|
111
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
195
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
112
196
|
readonly required: false;
|
|
113
197
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
114
198
|
__epPropKey: true;
|
|
115
199
|
};
|
|
116
200
|
name: {
|
|
117
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
201
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
202
|
+
readonly required: false;
|
|
203
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
204
|
+
__epPropKey: true;
|
|
205
|
+
};
|
|
206
|
+
popperClass: {
|
|
207
|
+
readonly type: import("vue").PropType<string>;
|
|
118
208
|
readonly required: false;
|
|
119
209
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
120
210
|
__epPropKey: true;
|
|
211
|
+
} & {
|
|
212
|
+
readonly default: "";
|
|
121
213
|
};
|
|
122
|
-
popperClass: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
123
214
|
format: StringConstructor;
|
|
124
215
|
valueFormat: StringConstructor;
|
|
125
216
|
dateFormat: StringConstructor;
|
|
126
217
|
timeFormat: StringConstructor;
|
|
127
|
-
clearable:
|
|
218
|
+
clearable: {
|
|
219
|
+
readonly type: import("vue").PropType<boolean>;
|
|
220
|
+
readonly required: false;
|
|
221
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
222
|
+
__epPropKey: true;
|
|
223
|
+
} & {
|
|
224
|
+
readonly default: true;
|
|
225
|
+
};
|
|
128
226
|
clearIcon: {
|
|
129
|
-
readonly type: import("vue").PropType<
|
|
227
|
+
readonly type: import("vue").PropType<unknown>;
|
|
228
|
+
readonly required: false;
|
|
229
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
230
|
+
__epPropKey: true;
|
|
231
|
+
};
|
|
232
|
+
editable: {
|
|
233
|
+
readonly type: import("vue").PropType<boolean>;
|
|
234
|
+
readonly required: false;
|
|
235
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
236
|
+
__epPropKey: true;
|
|
237
|
+
} & {
|
|
238
|
+
readonly default: true;
|
|
239
|
+
};
|
|
240
|
+
prefixIcon: {
|
|
241
|
+
readonly type: import("vue").PropType<unknown>;
|
|
130
242
|
readonly required: false;
|
|
131
243
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
132
244
|
__epPropKey: true;
|
|
245
|
+
} & {
|
|
246
|
+
readonly default: "";
|
|
133
247
|
};
|
|
134
|
-
editable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
135
|
-
prefixIcon: 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, "", boolean>;
|
|
136
248
|
size: {
|
|
137
|
-
readonly type: import("vue").PropType<
|
|
249
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
138
250
|
readonly required: false;
|
|
139
251
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
140
252
|
__epPropKey: true;
|
|
141
253
|
};
|
|
142
254
|
disabled: BooleanConstructor;
|
|
143
|
-
placeholder:
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
255
|
+
placeholder: {
|
|
256
|
+
readonly type: import("vue").PropType<string>;
|
|
257
|
+
readonly required: false;
|
|
258
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
259
|
+
__epPropKey: true;
|
|
260
|
+
} & {
|
|
261
|
+
readonly default: "";
|
|
262
|
+
};
|
|
263
|
+
popperOptions: {
|
|
264
|
+
readonly type: import("vue").PropType<Partial<import("element-plus").Options>>;
|
|
265
|
+
readonly required: false;
|
|
266
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
267
|
+
__epPropKey: true;
|
|
268
|
+
} & {
|
|
269
|
+
readonly default: () => {};
|
|
270
|
+
};
|
|
271
|
+
modelValue: {
|
|
272
|
+
readonly type: import("vue").PropType<import("element-plus").ModelValueType>;
|
|
273
|
+
readonly required: false;
|
|
274
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
275
|
+
__epPropKey: true;
|
|
276
|
+
} & {
|
|
277
|
+
readonly default: "";
|
|
278
|
+
};
|
|
279
|
+
rangeSeparator: {
|
|
280
|
+
readonly type: import("vue").PropType<string>;
|
|
281
|
+
readonly required: false;
|
|
282
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
283
|
+
__epPropKey: true;
|
|
284
|
+
} & {
|
|
285
|
+
readonly default: "-";
|
|
286
|
+
};
|
|
147
287
|
startPlaceholder: StringConstructor;
|
|
148
288
|
endPlaceholder: StringConstructor;
|
|
149
289
|
defaultValue: {
|
|
150
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
290
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
151
291
|
readonly required: false;
|
|
152
292
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
153
293
|
__epPropKey: true;
|
|
154
294
|
};
|
|
155
295
|
defaultTime: {
|
|
156
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
296
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
157
297
|
readonly required: false;
|
|
158
298
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
159
299
|
__epPropKey: true;
|
|
@@ -162,43 +302,43 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
162
302
|
}>, {
|
|
163
303
|
formItemBindProps: import("vue").ComputedRef<{}>;
|
|
164
304
|
datePickerBindProps: import("vue").ComputedRef<{
|
|
165
|
-
size:
|
|
305
|
+
size: "" | "default" | "small" | "large";
|
|
166
306
|
disabled: boolean;
|
|
167
|
-
id: import("element-plus
|
|
307
|
+
id: import("element-plus").SingleOrRange<string>;
|
|
168
308
|
ariaLabel: string;
|
|
169
309
|
popperClass: string;
|
|
170
310
|
fallbackPlacements: import("element-plus").Placement[];
|
|
171
|
-
placement: import("element-plus
|
|
311
|
+
placement: import("element-plus").Placement;
|
|
172
312
|
popperOptions: Partial<import("element-plus").Options>;
|
|
173
|
-
name: import("element-plus
|
|
174
|
-
modelValue: import("element-plus
|
|
175
|
-
clearable:
|
|
313
|
+
name: import("element-plus").SingleOrRange<string>;
|
|
314
|
+
modelValue: import("element-plus").ModelValueType;
|
|
315
|
+
clearable: boolean;
|
|
176
316
|
placeholder: string;
|
|
177
317
|
cellClassName: Function;
|
|
318
|
+
prefixIcon: "";
|
|
319
|
+
tabindex: string | number;
|
|
320
|
+
validateEvent: boolean;
|
|
321
|
+
clearIcon: unknown;
|
|
322
|
+
showNow: boolean;
|
|
178
323
|
emptyValues: unknown[];
|
|
179
|
-
valueOnClear:
|
|
180
|
-
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
181
|
-
tabindex: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
182
|
-
showNow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
324
|
+
valueOnClear: string | number | boolean | Function;
|
|
183
325
|
disabledDate: Function;
|
|
184
326
|
shortcuts: unknown[];
|
|
185
327
|
arrowControl: boolean;
|
|
186
328
|
unlinkPanels: boolean;
|
|
187
|
-
disabledHours: import("element-plus
|
|
188
|
-
disabledMinutes: import("element-plus
|
|
189
|
-
disabledSeconds: import("element-plus
|
|
329
|
+
disabledHours: import("element-plus").GetDisabledHours;
|
|
330
|
+
disabledMinutes: import("element-plus").GetDisabledMinutes;
|
|
331
|
+
disabledSeconds: import("element-plus").GetDisabledSeconds;
|
|
190
332
|
format: string;
|
|
191
333
|
valueFormat: string;
|
|
192
334
|
dateFormat: string;
|
|
193
335
|
timeFormat: string;
|
|
194
|
-
|
|
195
|
-
editable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
196
|
-
prefixIcon: "";
|
|
336
|
+
editable: boolean;
|
|
197
337
|
rangeSeparator: string;
|
|
198
338
|
startPlaceholder: string;
|
|
199
339
|
endPlaceholder: string;
|
|
200
|
-
defaultValue: import("element-plus
|
|
201
|
-
defaultTime: import("element-plus
|
|
340
|
+
defaultValue: import("element-plus").SingleOrRange<Date>;
|
|
341
|
+
defaultTime: import("element-plus").SingleOrRange<Date>;
|
|
202
342
|
isRange: boolean;
|
|
203
343
|
}>;
|
|
204
344
|
datePickerOnEmits: {};
|
|
@@ -217,7 +357,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
217
357
|
type: import("vue").PropType<import("./types").DatePickerSlots>;
|
|
218
358
|
default: any;
|
|
219
359
|
};
|
|
220
|
-
required:
|
|
360
|
+
required: {
|
|
361
|
+
readonly type: import("vue").PropType<boolean>;
|
|
362
|
+
readonly required: false;
|
|
363
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
364
|
+
__epPropKey: true;
|
|
365
|
+
} & {
|
|
366
|
+
readonly default: undefined;
|
|
367
|
+
};
|
|
221
368
|
formItemSize: {
|
|
222
369
|
type: import("vue").PropType<"default" | "small" | "large">;
|
|
223
370
|
default: "default" | "small" | "large";
|
|
@@ -252,38 +399,80 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
252
399
|
default: boolean;
|
|
253
400
|
};
|
|
254
401
|
label: StringConstructor;
|
|
255
|
-
labelWidth:
|
|
256
|
-
|
|
402
|
+
labelWidth: {
|
|
403
|
+
readonly type: import("vue").PropType<string | number>;
|
|
404
|
+
readonly required: false;
|
|
405
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
406
|
+
__epPropKey: true;
|
|
407
|
+
} & {
|
|
408
|
+
readonly default: "";
|
|
409
|
+
};
|
|
410
|
+
labelPosition: {
|
|
411
|
+
readonly type: import("vue").PropType<"" | "top" | "left" | "right">;
|
|
412
|
+
readonly required: false;
|
|
413
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
414
|
+
__epPropKey: true;
|
|
415
|
+
} & {
|
|
416
|
+
readonly default: "";
|
|
417
|
+
};
|
|
257
418
|
prop: {
|
|
258
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
419
|
+
readonly type: import("vue").PropType<import("element-plus").FormItemProp>;
|
|
259
420
|
readonly required: false;
|
|
260
421
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
261
422
|
__epPropKey: true;
|
|
262
423
|
};
|
|
263
424
|
rules: {
|
|
264
|
-
readonly type: import("vue").PropType<
|
|
425
|
+
readonly type: import("vue").PropType<unknown>;
|
|
265
426
|
readonly required: false;
|
|
266
427
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
267
428
|
__epPropKey: true;
|
|
268
429
|
};
|
|
269
430
|
error: StringConstructor;
|
|
270
431
|
validateStatus: {
|
|
271
|
-
readonly type: import("vue").PropType<
|
|
432
|
+
readonly type: import("vue").PropType<"" | "error" | "success" | "validating">;
|
|
272
433
|
readonly required: false;
|
|
273
434
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
274
435
|
__epPropKey: true;
|
|
275
436
|
};
|
|
276
437
|
for: StringConstructor;
|
|
277
|
-
inlineMessage:
|
|
278
|
-
|
|
438
|
+
inlineMessage: {
|
|
439
|
+
readonly type: import("vue").PropType<string | boolean>;
|
|
440
|
+
readonly required: false;
|
|
441
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
442
|
+
__epPropKey: true;
|
|
443
|
+
} & {
|
|
444
|
+
readonly default: "";
|
|
445
|
+
};
|
|
446
|
+
showMessage: {
|
|
447
|
+
readonly type: import("vue").PropType<boolean>;
|
|
448
|
+
readonly required: false;
|
|
449
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
450
|
+
__epPropKey: true;
|
|
451
|
+
} & {
|
|
452
|
+
readonly default: true;
|
|
453
|
+
};
|
|
279
454
|
type: {
|
|
280
455
|
type: import("vue").PropType<import("element-plus").DatePickType>;
|
|
281
456
|
default: string;
|
|
282
457
|
};
|
|
283
|
-
showNow:
|
|
458
|
+
showNow: {
|
|
459
|
+
readonly type: import("vue").PropType<boolean>;
|
|
460
|
+
readonly required: false;
|
|
461
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
462
|
+
__epPropKey: true;
|
|
463
|
+
} & {
|
|
464
|
+
readonly default: true;
|
|
465
|
+
};
|
|
284
466
|
ariaLabel: StringConstructor;
|
|
285
467
|
emptyValues: ArrayConstructor;
|
|
286
|
-
valueOnClear:
|
|
468
|
+
valueOnClear: {
|
|
469
|
+
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
470
|
+
readonly required: false;
|
|
471
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
472
|
+
__epPropKey: true;
|
|
473
|
+
} & {
|
|
474
|
+
readonly default: undefined;
|
|
475
|
+
};
|
|
287
476
|
disabledDate: {
|
|
288
477
|
readonly type: import("vue").PropType<Function>;
|
|
289
478
|
readonly required: false;
|
|
@@ -296,78 +485,169 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
296
485
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
297
486
|
__epPropKey: true;
|
|
298
487
|
};
|
|
299
|
-
shortcuts:
|
|
488
|
+
shortcuts: {
|
|
489
|
+
readonly type: import("vue").PropType<unknown[]>;
|
|
490
|
+
readonly required: false;
|
|
491
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
492
|
+
__epPropKey: true;
|
|
493
|
+
} & {
|
|
494
|
+
readonly default: () => never[];
|
|
495
|
+
};
|
|
300
496
|
arrowControl: BooleanConstructor;
|
|
301
|
-
tabindex:
|
|
302
|
-
|
|
497
|
+
tabindex: {
|
|
498
|
+
readonly type: import("vue").PropType<string | number>;
|
|
499
|
+
readonly required: false;
|
|
500
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
501
|
+
__epPropKey: true;
|
|
502
|
+
} & {
|
|
503
|
+
readonly default: 0;
|
|
504
|
+
};
|
|
505
|
+
validateEvent: {
|
|
506
|
+
readonly type: import("vue").PropType<boolean>;
|
|
507
|
+
readonly required: false;
|
|
508
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
509
|
+
__epPropKey: true;
|
|
510
|
+
} & {
|
|
511
|
+
readonly default: true;
|
|
512
|
+
};
|
|
303
513
|
unlinkPanels: BooleanConstructor;
|
|
304
|
-
placement:
|
|
305
|
-
|
|
514
|
+
placement: {
|
|
515
|
+
readonly type: import("vue").PropType<import("element-plus").Placement>;
|
|
516
|
+
readonly required: false;
|
|
517
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
518
|
+
__epPropKey: true;
|
|
519
|
+
} & {
|
|
520
|
+
readonly default: "bottom";
|
|
521
|
+
};
|
|
522
|
+
fallbackPlacements: {
|
|
523
|
+
readonly type: import("vue").PropType<import("element-plus").Placement[]>;
|
|
524
|
+
readonly required: false;
|
|
525
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
526
|
+
__epPropKey: true;
|
|
527
|
+
} & {
|
|
528
|
+
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
529
|
+
};
|
|
306
530
|
disabledHours: {
|
|
307
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
531
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
308
532
|
readonly required: false;
|
|
309
533
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
310
534
|
__epPropKey: true;
|
|
311
535
|
};
|
|
312
536
|
disabledMinutes: {
|
|
313
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
537
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledMinutes>;
|
|
314
538
|
readonly required: false;
|
|
315
539
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
316
540
|
__epPropKey: true;
|
|
317
541
|
};
|
|
318
542
|
disabledSeconds: {
|
|
319
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
543
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledSeconds>;
|
|
320
544
|
readonly required: false;
|
|
321
545
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
322
546
|
__epPropKey: true;
|
|
323
547
|
};
|
|
324
548
|
id: {
|
|
325
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
549
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
326
550
|
readonly required: false;
|
|
327
551
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
328
552
|
__epPropKey: true;
|
|
329
553
|
};
|
|
330
554
|
name: {
|
|
331
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
555
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
332
556
|
readonly required: false;
|
|
333
557
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
334
558
|
__epPropKey: true;
|
|
335
559
|
};
|
|
336
|
-
popperClass:
|
|
560
|
+
popperClass: {
|
|
561
|
+
readonly type: import("vue").PropType<string>;
|
|
562
|
+
readonly required: false;
|
|
563
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
564
|
+
__epPropKey: true;
|
|
565
|
+
} & {
|
|
566
|
+
readonly default: "";
|
|
567
|
+
};
|
|
337
568
|
format: StringConstructor;
|
|
338
569
|
valueFormat: StringConstructor;
|
|
339
570
|
dateFormat: StringConstructor;
|
|
340
571
|
timeFormat: StringConstructor;
|
|
341
|
-
clearable:
|
|
572
|
+
clearable: {
|
|
573
|
+
readonly type: import("vue").PropType<boolean>;
|
|
574
|
+
readonly required: false;
|
|
575
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
576
|
+
__epPropKey: true;
|
|
577
|
+
} & {
|
|
578
|
+
readonly default: true;
|
|
579
|
+
};
|
|
342
580
|
clearIcon: {
|
|
343
|
-
readonly type: import("vue").PropType<
|
|
581
|
+
readonly type: import("vue").PropType<unknown>;
|
|
344
582
|
readonly required: false;
|
|
345
583
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
346
584
|
__epPropKey: true;
|
|
347
585
|
};
|
|
348
|
-
editable:
|
|
349
|
-
|
|
586
|
+
editable: {
|
|
587
|
+
readonly type: import("vue").PropType<boolean>;
|
|
588
|
+
readonly required: false;
|
|
589
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
590
|
+
__epPropKey: true;
|
|
591
|
+
} & {
|
|
592
|
+
readonly default: true;
|
|
593
|
+
};
|
|
594
|
+
prefixIcon: {
|
|
595
|
+
readonly type: import("vue").PropType<unknown>;
|
|
596
|
+
readonly required: false;
|
|
597
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
598
|
+
__epPropKey: true;
|
|
599
|
+
} & {
|
|
600
|
+
readonly default: "";
|
|
601
|
+
};
|
|
350
602
|
size: {
|
|
351
|
-
readonly type: import("vue").PropType<
|
|
603
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
352
604
|
readonly required: false;
|
|
353
605
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
354
606
|
__epPropKey: true;
|
|
355
607
|
};
|
|
356
608
|
disabled: BooleanConstructor;
|
|
357
|
-
placeholder:
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
609
|
+
placeholder: {
|
|
610
|
+
readonly type: import("vue").PropType<string>;
|
|
611
|
+
readonly required: false;
|
|
612
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
613
|
+
__epPropKey: true;
|
|
614
|
+
} & {
|
|
615
|
+
readonly default: "";
|
|
616
|
+
};
|
|
617
|
+
popperOptions: {
|
|
618
|
+
readonly type: import("vue").PropType<Partial<import("element-plus").Options>>;
|
|
619
|
+
readonly required: false;
|
|
620
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
621
|
+
__epPropKey: true;
|
|
622
|
+
} & {
|
|
623
|
+
readonly default: () => {};
|
|
624
|
+
};
|
|
625
|
+
modelValue: {
|
|
626
|
+
readonly type: import("vue").PropType<import("element-plus").ModelValueType>;
|
|
627
|
+
readonly required: false;
|
|
628
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
629
|
+
__epPropKey: true;
|
|
630
|
+
} & {
|
|
631
|
+
readonly default: "";
|
|
632
|
+
};
|
|
633
|
+
rangeSeparator: {
|
|
634
|
+
readonly type: import("vue").PropType<string>;
|
|
635
|
+
readonly required: false;
|
|
636
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
637
|
+
__epPropKey: true;
|
|
638
|
+
} & {
|
|
639
|
+
readonly default: "-";
|
|
640
|
+
};
|
|
361
641
|
startPlaceholder: StringConstructor;
|
|
362
642
|
endPlaceholder: StringConstructor;
|
|
363
643
|
defaultValue: {
|
|
364
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
644
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
365
645
|
readonly required: false;
|
|
366
646
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
367
647
|
__epPropKey: true;
|
|
368
648
|
};
|
|
369
649
|
defaultTime: {
|
|
370
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
650
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
371
651
|
readonly required: false;
|
|
372
652
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
373
653
|
__epPropKey: true;
|
|
@@ -378,13 +658,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
378
658
|
"onUpdate:modelValue"?: (...args: any[] | unknown[]) => any;
|
|
379
659
|
onChange?: (...args: any[] | unknown[]) => any;
|
|
380
660
|
onBlur?: (...args: any[] | unknown[]) => any;
|
|
661
|
+
onKeydown?: (...args: any[] | unknown[]) => any;
|
|
662
|
+
"onVisible-change"?: (...args: any[] | unknown[]) => any;
|
|
381
663
|
"onCalendar-change"?: (...args: any[] | unknown[]) => any;
|
|
382
664
|
"onPanel-change"?: (...args: any[] | unknown[]) => any;
|
|
383
|
-
"onVisible-change"?: (...args: any[] | unknown[]) => any;
|
|
384
|
-
onKeydown?: (...args: any[] | unknown[]) => any;
|
|
385
665
|
}>, {
|
|
386
666
|
type: "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange";
|
|
387
|
-
required:
|
|
667
|
+
required: boolean;
|
|
388
668
|
formItemSize: "default" | "small" | "large";
|
|
389
669
|
formItemSlots: import("@vunk/form/components/form-item/src/types").FormItemSlots;
|
|
390
670
|
inline: boolean;
|
|
@@ -393,27 +673,27 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
393
673
|
formItemTipClass: any;
|
|
394
674
|
labelTip: string;
|
|
395
675
|
information: boolean;
|
|
396
|
-
labelWidth:
|
|
397
|
-
labelPosition:
|
|
398
|
-
inlineMessage:
|
|
399
|
-
showMessage:
|
|
676
|
+
labelWidth: string | number;
|
|
677
|
+
labelPosition: "" | "top" | "left" | "right";
|
|
678
|
+
inlineMessage: string | boolean;
|
|
679
|
+
showMessage: boolean;
|
|
400
680
|
disabled: boolean;
|
|
401
681
|
popperClass: string;
|
|
402
682
|
fallbackPlacements: import("element-plus").Placement[];
|
|
403
|
-
placement: import("element-plus
|
|
683
|
+
placement: import("element-plus").Placement;
|
|
404
684
|
popperOptions: Partial<import("element-plus").Options>;
|
|
405
|
-
modelValue: import("element-plus
|
|
406
|
-
clearable:
|
|
685
|
+
modelValue: import("element-plus").ModelValueType;
|
|
686
|
+
clearable: boolean;
|
|
407
687
|
placeholder: string;
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
showNow:
|
|
688
|
+
prefixIcon: "";
|
|
689
|
+
tabindex: string | number;
|
|
690
|
+
validateEvent: boolean;
|
|
691
|
+
showNow: boolean;
|
|
692
|
+
valueOnClear: string | number | boolean | Function;
|
|
412
693
|
shortcuts: unknown[];
|
|
413
694
|
arrowControl: boolean;
|
|
414
695
|
unlinkPanels: boolean;
|
|
415
|
-
editable:
|
|
416
|
-
prefixIcon: "";
|
|
696
|
+
editable: boolean;
|
|
417
697
|
rangeSeparator: string;
|
|
418
698
|
isRange: boolean;
|
|
419
699
|
datePickerSlots: import("./types").DatePickerSlots;
|
|
@@ -429,12 +709,509 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
429
709
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
430
710
|
install(app: import("vue").App): void;
|
|
431
711
|
};
|
|
432
|
-
ElDatePicker:
|
|
433
|
-
|
|
434
|
-
|
|
712
|
+
ElDatePicker: {
|
|
713
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
714
|
+
readonly type: {
|
|
715
|
+
readonly type: import("vue").PropType<"year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange">;
|
|
716
|
+
readonly required: false;
|
|
717
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
718
|
+
__epPropKey: true;
|
|
719
|
+
} & {
|
|
720
|
+
readonly default: "date";
|
|
721
|
+
};
|
|
722
|
+
readonly showNow: {
|
|
723
|
+
readonly type: import("vue").PropType<boolean>;
|
|
724
|
+
readonly required: false;
|
|
725
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
726
|
+
__epPropKey: true;
|
|
727
|
+
} & {
|
|
728
|
+
readonly default: true;
|
|
729
|
+
};
|
|
730
|
+
readonly ariaLabel: StringConstructor;
|
|
731
|
+
readonly emptyValues: ArrayConstructor;
|
|
732
|
+
readonly valueOnClear: {
|
|
733
|
+
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
734
|
+
readonly required: false;
|
|
735
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
736
|
+
__epPropKey: true;
|
|
737
|
+
} & {
|
|
738
|
+
readonly default: undefined;
|
|
739
|
+
};
|
|
740
|
+
readonly disabledDate: {
|
|
741
|
+
readonly type: import("vue").PropType<Function>;
|
|
742
|
+
readonly required: false;
|
|
743
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
744
|
+
__epPropKey: true;
|
|
745
|
+
};
|
|
746
|
+
readonly cellClassName: {
|
|
747
|
+
readonly type: import("vue").PropType<Function>;
|
|
748
|
+
readonly required: false;
|
|
749
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
750
|
+
__epPropKey: true;
|
|
751
|
+
};
|
|
752
|
+
readonly shortcuts: {
|
|
753
|
+
readonly type: import("vue").PropType<unknown[]>;
|
|
754
|
+
readonly required: false;
|
|
755
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
756
|
+
__epPropKey: true;
|
|
757
|
+
} & {
|
|
758
|
+
readonly default: () => never[];
|
|
759
|
+
};
|
|
760
|
+
readonly arrowControl: BooleanConstructor;
|
|
761
|
+
readonly tabindex: {
|
|
762
|
+
readonly type: import("vue").PropType<string | number>;
|
|
763
|
+
readonly required: false;
|
|
764
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
765
|
+
__epPropKey: true;
|
|
766
|
+
} & {
|
|
767
|
+
readonly default: 0;
|
|
768
|
+
};
|
|
769
|
+
readonly validateEvent: {
|
|
770
|
+
readonly type: import("vue").PropType<boolean>;
|
|
771
|
+
readonly required: false;
|
|
772
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
773
|
+
__epPropKey: true;
|
|
774
|
+
} & {
|
|
775
|
+
readonly default: true;
|
|
776
|
+
};
|
|
777
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
778
|
+
readonly placement: {
|
|
779
|
+
readonly type: import("vue").PropType<import("element-plus").Placement>;
|
|
780
|
+
readonly required: false;
|
|
781
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
782
|
+
__epPropKey: true;
|
|
783
|
+
} & {
|
|
784
|
+
readonly default: "bottom";
|
|
785
|
+
};
|
|
786
|
+
readonly fallbackPlacements: {
|
|
787
|
+
readonly type: import("vue").PropType<import("element-plus").Placement[]>;
|
|
788
|
+
readonly required: false;
|
|
789
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
790
|
+
__epPropKey: true;
|
|
791
|
+
} & {
|
|
792
|
+
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
793
|
+
};
|
|
794
|
+
readonly disabledHours: {
|
|
795
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
796
|
+
readonly required: false;
|
|
797
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
798
|
+
__epPropKey: true;
|
|
799
|
+
};
|
|
800
|
+
readonly disabledMinutes: {
|
|
801
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledMinutes>;
|
|
802
|
+
readonly required: false;
|
|
803
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
804
|
+
__epPropKey: true;
|
|
805
|
+
};
|
|
806
|
+
readonly disabledSeconds: {
|
|
807
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledSeconds>;
|
|
808
|
+
readonly required: false;
|
|
809
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
810
|
+
__epPropKey: true;
|
|
811
|
+
};
|
|
812
|
+
readonly id: {
|
|
813
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
814
|
+
readonly required: false;
|
|
815
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
816
|
+
__epPropKey: true;
|
|
817
|
+
};
|
|
818
|
+
readonly name: {
|
|
819
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
820
|
+
readonly required: false;
|
|
821
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
822
|
+
__epPropKey: true;
|
|
823
|
+
};
|
|
824
|
+
readonly popperClass: {
|
|
825
|
+
readonly type: import("vue").PropType<string>;
|
|
826
|
+
readonly required: false;
|
|
827
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
828
|
+
__epPropKey: true;
|
|
829
|
+
} & {
|
|
830
|
+
readonly default: "";
|
|
831
|
+
};
|
|
832
|
+
readonly format: StringConstructor;
|
|
833
|
+
readonly valueFormat: StringConstructor;
|
|
834
|
+
readonly dateFormat: StringConstructor;
|
|
835
|
+
readonly timeFormat: StringConstructor;
|
|
836
|
+
readonly clearable: {
|
|
837
|
+
readonly type: import("vue").PropType<boolean>;
|
|
838
|
+
readonly required: false;
|
|
839
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
840
|
+
__epPropKey: true;
|
|
841
|
+
} & {
|
|
842
|
+
readonly default: true;
|
|
843
|
+
};
|
|
844
|
+
readonly clearIcon: {
|
|
845
|
+
readonly type: import("vue").PropType<unknown>;
|
|
846
|
+
readonly required: false;
|
|
847
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
848
|
+
__epPropKey: true;
|
|
849
|
+
};
|
|
850
|
+
readonly editable: {
|
|
851
|
+
readonly type: import("vue").PropType<boolean>;
|
|
852
|
+
readonly required: false;
|
|
853
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
854
|
+
__epPropKey: true;
|
|
855
|
+
} & {
|
|
856
|
+
readonly default: true;
|
|
857
|
+
};
|
|
858
|
+
readonly prefixIcon: {
|
|
859
|
+
readonly type: import("vue").PropType<unknown>;
|
|
860
|
+
readonly required: false;
|
|
861
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
862
|
+
__epPropKey: true;
|
|
863
|
+
} & {
|
|
864
|
+
readonly default: "";
|
|
865
|
+
};
|
|
866
|
+
readonly size: {
|
|
867
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
868
|
+
readonly required: false;
|
|
869
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
870
|
+
__epPropKey: true;
|
|
871
|
+
};
|
|
872
|
+
readonly readonly: BooleanConstructor;
|
|
873
|
+
readonly disabled: BooleanConstructor;
|
|
874
|
+
readonly placeholder: {
|
|
875
|
+
readonly type: import("vue").PropType<string>;
|
|
876
|
+
readonly required: false;
|
|
877
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
878
|
+
__epPropKey: true;
|
|
879
|
+
} & {
|
|
880
|
+
readonly default: "";
|
|
881
|
+
};
|
|
882
|
+
readonly popperOptions: {
|
|
883
|
+
readonly type: import("vue").PropType<Partial<import("element-plus").Options>>;
|
|
884
|
+
readonly required: false;
|
|
885
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
886
|
+
__epPropKey: true;
|
|
887
|
+
} & {
|
|
888
|
+
readonly default: () => {};
|
|
889
|
+
};
|
|
890
|
+
readonly modelValue: {
|
|
891
|
+
readonly type: import("vue").PropType<import("element-plus").ModelValueType>;
|
|
892
|
+
readonly required: false;
|
|
893
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
894
|
+
__epPropKey: true;
|
|
895
|
+
} & {
|
|
896
|
+
readonly default: "";
|
|
897
|
+
};
|
|
898
|
+
readonly rangeSeparator: {
|
|
899
|
+
readonly type: import("vue").PropType<string>;
|
|
900
|
+
readonly required: false;
|
|
901
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
902
|
+
__epPropKey: true;
|
|
903
|
+
} & {
|
|
904
|
+
readonly default: "-";
|
|
905
|
+
};
|
|
906
|
+
readonly startPlaceholder: StringConstructor;
|
|
907
|
+
readonly endPlaceholder: StringConstructor;
|
|
908
|
+
readonly defaultValue: {
|
|
909
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
910
|
+
readonly required: false;
|
|
911
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
912
|
+
__epPropKey: true;
|
|
913
|
+
};
|
|
914
|
+
readonly defaultTime: {
|
|
915
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
916
|
+
readonly required: false;
|
|
917
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
918
|
+
__epPropKey: true;
|
|
919
|
+
};
|
|
920
|
+
readonly isRange: BooleanConstructor;
|
|
921
|
+
}>> & {
|
|
922
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
923
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
924
|
+
readonly disabled: boolean;
|
|
925
|
+
readonly type: "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange";
|
|
926
|
+
readonly placeholder: string;
|
|
927
|
+
readonly modelValue: import("element-plus").ModelValueType;
|
|
928
|
+
readonly placement: import("element-plus").Placement;
|
|
929
|
+
readonly tabindex: string | number;
|
|
930
|
+
readonly valueOnClear: string | number | boolean | Function;
|
|
931
|
+
readonly readonly: boolean;
|
|
932
|
+
readonly prefixIcon: unknown;
|
|
933
|
+
readonly validateEvent: boolean;
|
|
934
|
+
readonly clearable: boolean;
|
|
935
|
+
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
936
|
+
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
937
|
+
readonly popperClass: string;
|
|
938
|
+
readonly editable: boolean;
|
|
939
|
+
readonly rangeSeparator: string;
|
|
940
|
+
readonly shortcuts: unknown[];
|
|
941
|
+
readonly showNow: boolean;
|
|
942
|
+
readonly arrowControl: boolean;
|
|
943
|
+
readonly unlinkPanels: boolean;
|
|
944
|
+
readonly isRange: boolean;
|
|
945
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
946
|
+
P: {};
|
|
947
|
+
B: {};
|
|
948
|
+
D: {};
|
|
949
|
+
C: {};
|
|
950
|
+
M: {};
|
|
951
|
+
Defaults: {};
|
|
952
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
953
|
+
readonly type: {
|
|
954
|
+
readonly type: import("vue").PropType<"year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange">;
|
|
955
|
+
readonly required: false;
|
|
956
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
957
|
+
__epPropKey: true;
|
|
958
|
+
} & {
|
|
959
|
+
readonly default: "date";
|
|
960
|
+
};
|
|
961
|
+
readonly showNow: {
|
|
962
|
+
readonly type: import("vue").PropType<boolean>;
|
|
963
|
+
readonly required: false;
|
|
964
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
965
|
+
__epPropKey: true;
|
|
966
|
+
} & {
|
|
967
|
+
readonly default: true;
|
|
968
|
+
};
|
|
969
|
+
readonly ariaLabel: StringConstructor;
|
|
970
|
+
readonly emptyValues: ArrayConstructor;
|
|
971
|
+
readonly valueOnClear: {
|
|
972
|
+
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
973
|
+
readonly required: false;
|
|
974
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
975
|
+
__epPropKey: true;
|
|
976
|
+
} & {
|
|
977
|
+
readonly default: undefined;
|
|
978
|
+
};
|
|
979
|
+
readonly disabledDate: {
|
|
980
|
+
readonly type: import("vue").PropType<Function>;
|
|
981
|
+
readonly required: false;
|
|
982
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
983
|
+
__epPropKey: true;
|
|
984
|
+
};
|
|
985
|
+
readonly cellClassName: {
|
|
986
|
+
readonly type: import("vue").PropType<Function>;
|
|
987
|
+
readonly required: false;
|
|
988
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
989
|
+
__epPropKey: true;
|
|
990
|
+
};
|
|
991
|
+
readonly shortcuts: {
|
|
992
|
+
readonly type: import("vue").PropType<unknown[]>;
|
|
993
|
+
readonly required: false;
|
|
994
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
995
|
+
__epPropKey: true;
|
|
996
|
+
} & {
|
|
997
|
+
readonly default: () => never[];
|
|
998
|
+
};
|
|
999
|
+
readonly arrowControl: BooleanConstructor;
|
|
1000
|
+
readonly tabindex: {
|
|
1001
|
+
readonly type: import("vue").PropType<string | number>;
|
|
1002
|
+
readonly required: false;
|
|
1003
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1004
|
+
__epPropKey: true;
|
|
1005
|
+
} & {
|
|
1006
|
+
readonly default: 0;
|
|
1007
|
+
};
|
|
1008
|
+
readonly validateEvent: {
|
|
1009
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1010
|
+
readonly required: false;
|
|
1011
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1012
|
+
__epPropKey: true;
|
|
1013
|
+
} & {
|
|
1014
|
+
readonly default: true;
|
|
1015
|
+
};
|
|
1016
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
1017
|
+
readonly placement: {
|
|
1018
|
+
readonly type: import("vue").PropType<import("element-plus").Placement>;
|
|
1019
|
+
readonly required: false;
|
|
1020
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1021
|
+
__epPropKey: true;
|
|
1022
|
+
} & {
|
|
1023
|
+
readonly default: "bottom";
|
|
1024
|
+
};
|
|
1025
|
+
readonly fallbackPlacements: {
|
|
1026
|
+
readonly type: import("vue").PropType<import("element-plus").Placement[]>;
|
|
1027
|
+
readonly required: false;
|
|
1028
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1029
|
+
__epPropKey: true;
|
|
1030
|
+
} & {
|
|
1031
|
+
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
1032
|
+
};
|
|
1033
|
+
readonly disabledHours: {
|
|
1034
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
1035
|
+
readonly required: false;
|
|
1036
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1037
|
+
__epPropKey: true;
|
|
1038
|
+
};
|
|
1039
|
+
readonly disabledMinutes: {
|
|
1040
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledMinutes>;
|
|
1041
|
+
readonly required: false;
|
|
1042
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1043
|
+
__epPropKey: true;
|
|
1044
|
+
};
|
|
1045
|
+
readonly disabledSeconds: {
|
|
1046
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledSeconds>;
|
|
1047
|
+
readonly required: false;
|
|
1048
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1049
|
+
__epPropKey: true;
|
|
1050
|
+
};
|
|
1051
|
+
readonly id: {
|
|
1052
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
1053
|
+
readonly required: false;
|
|
1054
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1055
|
+
__epPropKey: true;
|
|
1056
|
+
};
|
|
1057
|
+
readonly name: {
|
|
1058
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
1059
|
+
readonly required: false;
|
|
1060
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1061
|
+
__epPropKey: true;
|
|
1062
|
+
};
|
|
1063
|
+
readonly popperClass: {
|
|
1064
|
+
readonly type: import("vue").PropType<string>;
|
|
1065
|
+
readonly required: false;
|
|
1066
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1067
|
+
__epPropKey: true;
|
|
1068
|
+
} & {
|
|
1069
|
+
readonly default: "";
|
|
1070
|
+
};
|
|
1071
|
+
readonly format: StringConstructor;
|
|
1072
|
+
readonly valueFormat: StringConstructor;
|
|
1073
|
+
readonly dateFormat: StringConstructor;
|
|
1074
|
+
readonly timeFormat: StringConstructor;
|
|
1075
|
+
readonly clearable: {
|
|
1076
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1077
|
+
readonly required: false;
|
|
1078
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1079
|
+
__epPropKey: true;
|
|
1080
|
+
} & {
|
|
1081
|
+
readonly default: true;
|
|
1082
|
+
};
|
|
1083
|
+
readonly clearIcon: {
|
|
1084
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1085
|
+
readonly required: false;
|
|
1086
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1087
|
+
__epPropKey: true;
|
|
1088
|
+
};
|
|
1089
|
+
readonly editable: {
|
|
1090
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1091
|
+
readonly required: false;
|
|
1092
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1093
|
+
__epPropKey: true;
|
|
1094
|
+
} & {
|
|
1095
|
+
readonly default: true;
|
|
1096
|
+
};
|
|
1097
|
+
readonly prefixIcon: {
|
|
1098
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1099
|
+
readonly required: false;
|
|
1100
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1101
|
+
__epPropKey: true;
|
|
1102
|
+
} & {
|
|
1103
|
+
readonly default: "";
|
|
1104
|
+
};
|
|
1105
|
+
readonly size: {
|
|
1106
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
1107
|
+
readonly required: false;
|
|
1108
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1109
|
+
__epPropKey: true;
|
|
1110
|
+
};
|
|
1111
|
+
readonly readonly: BooleanConstructor;
|
|
1112
|
+
readonly disabled: BooleanConstructor;
|
|
1113
|
+
readonly placeholder: {
|
|
1114
|
+
readonly type: import("vue").PropType<string>;
|
|
1115
|
+
readonly required: false;
|
|
1116
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1117
|
+
__epPropKey: true;
|
|
1118
|
+
} & {
|
|
1119
|
+
readonly default: "";
|
|
1120
|
+
};
|
|
1121
|
+
readonly popperOptions: {
|
|
1122
|
+
readonly type: import("vue").PropType<Partial<import("element-plus").Options>>;
|
|
1123
|
+
readonly required: false;
|
|
1124
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1125
|
+
__epPropKey: true;
|
|
1126
|
+
} & {
|
|
1127
|
+
readonly default: () => {};
|
|
1128
|
+
};
|
|
1129
|
+
readonly modelValue: {
|
|
1130
|
+
readonly type: import("vue").PropType<import("element-plus").ModelValueType>;
|
|
1131
|
+
readonly required: false;
|
|
1132
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1133
|
+
__epPropKey: true;
|
|
1134
|
+
} & {
|
|
1135
|
+
readonly default: "";
|
|
1136
|
+
};
|
|
1137
|
+
readonly rangeSeparator: {
|
|
1138
|
+
readonly type: import("vue").PropType<string>;
|
|
1139
|
+
readonly required: false;
|
|
1140
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1141
|
+
__epPropKey: true;
|
|
1142
|
+
} & {
|
|
1143
|
+
readonly default: "-";
|
|
1144
|
+
};
|
|
1145
|
+
readonly startPlaceholder: StringConstructor;
|
|
1146
|
+
readonly endPlaceholder: StringConstructor;
|
|
1147
|
+
readonly defaultValue: {
|
|
1148
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
1149
|
+
readonly required: false;
|
|
1150
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1151
|
+
__epPropKey: true;
|
|
1152
|
+
};
|
|
1153
|
+
readonly defaultTime: {
|
|
1154
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
1155
|
+
readonly required: false;
|
|
1156
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1157
|
+
__epPropKey: true;
|
|
1158
|
+
};
|
|
1159
|
+
readonly isRange: BooleanConstructor;
|
|
1160
|
+
}>> & {
|
|
1161
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1162
|
+
}, () => JSX.Element, {}, {}, {}, {
|
|
1163
|
+
readonly disabled: boolean;
|
|
1164
|
+
readonly type: "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange";
|
|
1165
|
+
readonly placeholder: string;
|
|
1166
|
+
readonly modelValue: import("element-plus").ModelValueType;
|
|
1167
|
+
readonly placement: import("element-plus").Placement;
|
|
1168
|
+
readonly tabindex: string | number;
|
|
1169
|
+
readonly valueOnClear: string | number | boolean | Function;
|
|
1170
|
+
readonly readonly: boolean;
|
|
1171
|
+
readonly prefixIcon: unknown;
|
|
1172
|
+
readonly validateEvent: boolean;
|
|
1173
|
+
readonly clearable: boolean;
|
|
1174
|
+
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
1175
|
+
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
1176
|
+
readonly popperClass: string;
|
|
1177
|
+
readonly editable: boolean;
|
|
1178
|
+
readonly rangeSeparator: string;
|
|
1179
|
+
readonly shortcuts: unknown[];
|
|
1180
|
+
readonly showNow: boolean;
|
|
1181
|
+
readonly arrowControl: boolean;
|
|
1182
|
+
readonly unlinkPanels: boolean;
|
|
1183
|
+
readonly isRange: boolean;
|
|
1184
|
+
}>;
|
|
1185
|
+
__isFragment?: never;
|
|
1186
|
+
__isTeleport?: never;
|
|
1187
|
+
__isSuspense?: never;
|
|
1188
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1189
|
+
readonly type: {
|
|
1190
|
+
readonly type: import("vue").PropType<"year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange">;
|
|
1191
|
+
readonly required: false;
|
|
1192
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1193
|
+
__epPropKey: true;
|
|
1194
|
+
} & {
|
|
1195
|
+
readonly default: "date";
|
|
1196
|
+
};
|
|
1197
|
+
readonly showNow: {
|
|
1198
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1199
|
+
readonly required: false;
|
|
1200
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1201
|
+
__epPropKey: true;
|
|
1202
|
+
} & {
|
|
1203
|
+
readonly default: true;
|
|
1204
|
+
};
|
|
435
1205
|
readonly ariaLabel: StringConstructor;
|
|
436
1206
|
readonly emptyValues: ArrayConstructor;
|
|
437
|
-
readonly valueOnClear:
|
|
1207
|
+
readonly valueOnClear: {
|
|
1208
|
+
readonly type: import("vue").PropType<string | number | boolean | Function>;
|
|
1209
|
+
readonly required: false;
|
|
1210
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1211
|
+
__epPropKey: true;
|
|
1212
|
+
} & {
|
|
1213
|
+
readonly default: undefined;
|
|
1214
|
+
};
|
|
438
1215
|
readonly disabledDate: {
|
|
439
1216
|
readonly type: import("vue").PropType<Function>;
|
|
440
1217
|
readonly required: false;
|
|
@@ -447,175 +1224,170 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
447
1224
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
448
1225
|
__epPropKey: true;
|
|
449
1226
|
};
|
|
450
|
-
readonly shortcuts:
|
|
1227
|
+
readonly shortcuts: {
|
|
1228
|
+
readonly type: import("vue").PropType<unknown[]>;
|
|
1229
|
+
readonly required: false;
|
|
1230
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1231
|
+
__epPropKey: true;
|
|
1232
|
+
} & {
|
|
1233
|
+
readonly default: () => never[];
|
|
1234
|
+
};
|
|
451
1235
|
readonly arrowControl: BooleanConstructor;
|
|
452
|
-
readonly tabindex:
|
|
453
|
-
|
|
454
|
-
readonly unlinkPanels: BooleanConstructor;
|
|
455
|
-
readonly placement: import("element-plus/es/utils").EpPropFinalized<(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, "bottom", boolean>;
|
|
456
|
-
readonly fallbackPlacements: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]) | ((new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
457
|
-
readonly disabledHours: {
|
|
458
|
-
readonly type: import("vue").PropType<import("element-plus/es/components/time-picker/src/props/shared").GetDisabledHours>;
|
|
1236
|
+
readonly tabindex: {
|
|
1237
|
+
readonly type: import("vue").PropType<string | number>;
|
|
459
1238
|
readonly required: false;
|
|
460
1239
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
461
1240
|
__epPropKey: true;
|
|
1241
|
+
} & {
|
|
1242
|
+
readonly default: 0;
|
|
462
1243
|
};
|
|
463
|
-
readonly
|
|
464
|
-
readonly type: import("vue").PropType<
|
|
1244
|
+
readonly validateEvent: {
|
|
1245
|
+
readonly type: import("vue").PropType<boolean>;
|
|
465
1246
|
readonly required: false;
|
|
466
1247
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
467
1248
|
__epPropKey: true;
|
|
1249
|
+
} & {
|
|
1250
|
+
readonly default: true;
|
|
468
1251
|
};
|
|
469
|
-
readonly
|
|
470
|
-
|
|
1252
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
1253
|
+
readonly placement: {
|
|
1254
|
+
readonly type: import("vue").PropType<import("element-plus").Placement>;
|
|
471
1255
|
readonly required: false;
|
|
472
1256
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
473
1257
|
__epPropKey: true;
|
|
1258
|
+
} & {
|
|
1259
|
+
readonly default: "bottom";
|
|
474
1260
|
};
|
|
475
|
-
readonly
|
|
476
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
1261
|
+
readonly fallbackPlacements: {
|
|
1262
|
+
readonly type: import("vue").PropType<import("element-plus").Placement[]>;
|
|
477
1263
|
readonly required: false;
|
|
478
1264
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
479
1265
|
__epPropKey: true;
|
|
1266
|
+
} & {
|
|
1267
|
+
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
480
1268
|
};
|
|
481
|
-
readonly
|
|
482
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
1269
|
+
readonly disabledHours: {
|
|
1270
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledHours>;
|
|
483
1271
|
readonly required: false;
|
|
484
1272
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
485
1273
|
__epPropKey: true;
|
|
486
1274
|
};
|
|
487
|
-
readonly
|
|
488
|
-
|
|
489
|
-
readonly valueFormat: StringConstructor;
|
|
490
|
-
readonly dateFormat: StringConstructor;
|
|
491
|
-
readonly timeFormat: StringConstructor;
|
|
492
|
-
readonly clearable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
493
|
-
readonly clearIcon: {
|
|
494
|
-
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>>;
|
|
1275
|
+
readonly disabledMinutes: {
|
|
1276
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledMinutes>;
|
|
495
1277
|
readonly required: false;
|
|
496
1278
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
497
1279
|
__epPropKey: true;
|
|
498
1280
|
};
|
|
499
|
-
readonly
|
|
500
|
-
|
|
501
|
-
readonly size: {
|
|
502
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
1281
|
+
readonly disabledSeconds: {
|
|
1282
|
+
readonly type: import("vue").PropType<import("element-plus").GetDisabledSeconds>;
|
|
503
1283
|
readonly required: false;
|
|
504
1284
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
505
1285
|
__epPropKey: true;
|
|
506
1286
|
};
|
|
507
|
-
readonly
|
|
508
|
-
|
|
509
|
-
readonly placeholder: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
510
|
-
readonly popperOptions: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>) | ((new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>))[], unknown, unknown, () => {}, boolean>;
|
|
511
|
-
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType))[], unknown, unknown, "", boolean>;
|
|
512
|
-
readonly rangeSeparator: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
513
|
-
readonly startPlaceholder: StringConstructor;
|
|
514
|
-
readonly endPlaceholder: StringConstructor;
|
|
515
|
-
readonly defaultValue: {
|
|
516
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>))[], unknown, unknown>>;
|
|
1287
|
+
readonly id: {
|
|
1288
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
517
1289
|
readonly required: false;
|
|
518
1290
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
519
1291
|
__epPropKey: true;
|
|
520
1292
|
};
|
|
521
|
-
readonly
|
|
522
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
1293
|
+
readonly name: {
|
|
1294
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<string>>;
|
|
523
1295
|
readonly required: false;
|
|
524
1296
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
525
1297
|
__epPropKey: true;
|
|
526
1298
|
};
|
|
527
|
-
readonly
|
|
528
|
-
|
|
529
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus/es/components/date-picker/src/date-picker.type").IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus/es/components/date-picker/src/date-picker.type").IDatePickerType))[], unknown, unknown, "date", boolean>;
|
|
530
|
-
readonly showNow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
531
|
-
readonly ariaLabel: StringConstructor;
|
|
532
|
-
readonly emptyValues: ArrayConstructor;
|
|
533
|
-
readonly valueOnClear: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
534
|
-
readonly disabledDate: {
|
|
535
|
-
readonly type: import("vue").PropType<Function>;
|
|
1299
|
+
readonly popperClass: {
|
|
1300
|
+
readonly type: import("vue").PropType<string>;
|
|
536
1301
|
readonly required: false;
|
|
537
1302
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
538
1303
|
__epPropKey: true;
|
|
1304
|
+
} & {
|
|
1305
|
+
readonly default: "";
|
|
539
1306
|
};
|
|
540
|
-
readonly
|
|
541
|
-
|
|
1307
|
+
readonly format: StringConstructor;
|
|
1308
|
+
readonly valueFormat: StringConstructor;
|
|
1309
|
+
readonly dateFormat: StringConstructor;
|
|
1310
|
+
readonly timeFormat: StringConstructor;
|
|
1311
|
+
readonly clearable: {
|
|
1312
|
+
readonly type: import("vue").PropType<boolean>;
|
|
542
1313
|
readonly required: false;
|
|
543
1314
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
544
1315
|
__epPropKey: true;
|
|
1316
|
+
} & {
|
|
1317
|
+
readonly default: true;
|
|
545
1318
|
};
|
|
546
|
-
readonly
|
|
547
|
-
|
|
548
|
-
readonly tabindex: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
549
|
-
readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
550
|
-
readonly unlinkPanels: BooleanConstructor;
|
|
551
|
-
readonly placement: import("element-plus/es/utils").EpPropFinalized<(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, "bottom", boolean>;
|
|
552
|
-
readonly fallbackPlacements: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]) | ((new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
553
|
-
readonly disabledHours: {
|
|
554
|
-
readonly type: import("vue").PropType<import("element-plus/es/components/time-picker/src/props/shared").GetDisabledHours>;
|
|
1319
|
+
readonly clearIcon: {
|
|
1320
|
+
readonly type: import("vue").PropType<unknown>;
|
|
555
1321
|
readonly required: false;
|
|
556
1322
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
557
1323
|
__epPropKey: true;
|
|
558
1324
|
};
|
|
559
|
-
readonly
|
|
560
|
-
readonly type: import("vue").PropType<
|
|
1325
|
+
readonly editable: {
|
|
1326
|
+
readonly type: import("vue").PropType<boolean>;
|
|
561
1327
|
readonly required: false;
|
|
562
1328
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
563
1329
|
__epPropKey: true;
|
|
1330
|
+
} & {
|
|
1331
|
+
readonly default: true;
|
|
564
1332
|
};
|
|
565
|
-
readonly
|
|
566
|
-
readonly type: import("vue").PropType<
|
|
1333
|
+
readonly prefixIcon: {
|
|
1334
|
+
readonly type: import("vue").PropType<unknown>;
|
|
567
1335
|
readonly required: false;
|
|
568
1336
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
569
1337
|
__epPropKey: true;
|
|
1338
|
+
} & {
|
|
1339
|
+
readonly default: "";
|
|
570
1340
|
};
|
|
571
|
-
readonly
|
|
572
|
-
readonly type: import("vue").PropType<
|
|
1341
|
+
readonly size: {
|
|
1342
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
573
1343
|
readonly required: false;
|
|
574
1344
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
575
1345
|
__epPropKey: true;
|
|
576
1346
|
};
|
|
577
|
-
readonly
|
|
578
|
-
|
|
1347
|
+
readonly readonly: BooleanConstructor;
|
|
1348
|
+
readonly disabled: BooleanConstructor;
|
|
1349
|
+
readonly placeholder: {
|
|
1350
|
+
readonly type: import("vue").PropType<string>;
|
|
579
1351
|
readonly required: false;
|
|
580
1352
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
581
1353
|
__epPropKey: true;
|
|
1354
|
+
} & {
|
|
1355
|
+
readonly default: "";
|
|
582
1356
|
};
|
|
583
|
-
readonly
|
|
584
|
-
|
|
585
|
-
readonly valueFormat: StringConstructor;
|
|
586
|
-
readonly dateFormat: StringConstructor;
|
|
587
|
-
readonly timeFormat: StringConstructor;
|
|
588
|
-
readonly clearable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
589
|
-
readonly clearIcon: {
|
|
590
|
-
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>>;
|
|
1357
|
+
readonly popperOptions: {
|
|
1358
|
+
readonly type: import("vue").PropType<Partial<import("element-plus").Options>>;
|
|
591
1359
|
readonly required: false;
|
|
592
1360
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
593
1361
|
__epPropKey: true;
|
|
1362
|
+
} & {
|
|
1363
|
+
readonly default: () => {};
|
|
594
1364
|
};
|
|
595
|
-
readonly
|
|
596
|
-
|
|
597
|
-
readonly size: {
|
|
598
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
1365
|
+
readonly modelValue: {
|
|
1366
|
+
readonly type: import("vue").PropType<import("element-plus").ModelValueType>;
|
|
599
1367
|
readonly required: false;
|
|
600
1368
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
601
1369
|
__epPropKey: true;
|
|
1370
|
+
} & {
|
|
1371
|
+
readonly default: "";
|
|
1372
|
+
};
|
|
1373
|
+
readonly rangeSeparator: {
|
|
1374
|
+
readonly type: import("vue").PropType<string>;
|
|
1375
|
+
readonly required: false;
|
|
1376
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1377
|
+
__epPropKey: true;
|
|
1378
|
+
} & {
|
|
1379
|
+
readonly default: "-";
|
|
602
1380
|
};
|
|
603
|
-
readonly readonly: BooleanConstructor;
|
|
604
|
-
readonly disabled: BooleanConstructor;
|
|
605
|
-
readonly placeholder: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
606
|
-
readonly popperOptions: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>) | ((new (...args: any[]) => Partial<import("element-plus").Options>) | (() => Partial<import("element-plus").Options>))[], unknown, unknown, () => {}, boolean>;
|
|
607
|
-
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import("element-plus").DateModelType, import("element-plus").DateModelType]) | (() => import("element-plus").ModelValueType))[], unknown, unknown, "", boolean>;
|
|
608
|
-
readonly rangeSeparator: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
609
1381
|
readonly startPlaceholder: StringConstructor;
|
|
610
1382
|
readonly endPlaceholder: StringConstructor;
|
|
611
1383
|
readonly defaultValue: {
|
|
612
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
1384
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
613
1385
|
readonly required: false;
|
|
614
1386
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
615
1387
|
__epPropKey: true;
|
|
616
1388
|
};
|
|
617
1389
|
readonly defaultTime: {
|
|
618
|
-
readonly type: import("vue").PropType<import("element-plus
|
|
1390
|
+
readonly type: import("vue").PropType<import("element-plus").SingleOrRange<Date>>;
|
|
619
1391
|
readonly required: false;
|
|
620
1392
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
621
1393
|
__epPropKey: true;
|
|
@@ -623,28 +1395,28 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
623
1395
|
readonly isRange: BooleanConstructor;
|
|
624
1396
|
}>> & {
|
|
625
1397
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
626
|
-
}, {
|
|
1398
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
|
|
627
1399
|
readonly disabled: boolean;
|
|
628
|
-
readonly type:
|
|
1400
|
+
readonly type: "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange";
|
|
629
1401
|
readonly placeholder: string;
|
|
630
|
-
readonly modelValue: import("element-plus
|
|
631
|
-
readonly placement: import("element-plus
|
|
632
|
-
readonly tabindex:
|
|
633
|
-
readonly valueOnClear:
|
|
1402
|
+
readonly modelValue: import("element-plus").ModelValueType;
|
|
1403
|
+
readonly placement: import("element-plus").Placement;
|
|
1404
|
+
readonly tabindex: string | number;
|
|
1405
|
+
readonly valueOnClear: string | number | boolean | Function;
|
|
634
1406
|
readonly readonly: boolean;
|
|
635
|
-
readonly prefixIcon:
|
|
636
|
-
readonly validateEvent:
|
|
637
|
-
readonly clearable:
|
|
1407
|
+
readonly prefixIcon: unknown;
|
|
1408
|
+
readonly validateEvent: boolean;
|
|
1409
|
+
readonly clearable: boolean;
|
|
638
1410
|
readonly fallbackPlacements: import("element-plus").Placement[];
|
|
639
1411
|
readonly popperOptions: Partial<import("element-plus").Options>;
|
|
640
1412
|
readonly popperClass: string;
|
|
641
|
-
readonly editable:
|
|
1413
|
+
readonly editable: boolean;
|
|
642
1414
|
readonly rangeSeparator: string;
|
|
643
1415
|
readonly shortcuts: unknown[];
|
|
644
|
-
readonly showNow:
|
|
1416
|
+
readonly showNow: boolean;
|
|
645
1417
|
readonly arrowControl: boolean;
|
|
646
1418
|
readonly unlinkPanels: boolean;
|
|
647
1419
|
readonly isRange: boolean;
|
|
648
|
-
}, {},
|
|
1420
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin;
|
|
649
1421
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
650
1422
|
export default _default;
|