@vunk/form 2.14.13 → 2.14.15
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 +27 -11
- package/components/card-input-collection/index.mjs +28 -12
- package/components/card-input-collection/src/core.vue.d.ts +1100 -0
- package/components/card-input-collection/src/ctx.d.ts +7 -7
- package/components/card-input-collection/src/index.vue.d.ts +17 -833
- package/components/card-input-collection/src/types.d.ts +1 -1
- package/components/dialog-input-collection/src/dialog-form.vue.d.ts +1 -1
- package/components/dialog-input-collection/src/index.vue.d.ts +1 -1
- package/components/form-item/index.cjs +4 -1
- package/components/form-item/index.css +3 -0
- package/components/form-item/index.mjs +4 -1
- package/components/input-collection/index.cjs +47 -8
- package/components/input-collection/index.mjs +48 -9
- package/components/input-collection/src/core.vue.d.ts +1178 -0
- package/components/input-collection/src/ctx.d.ts +22 -1
- package/components/input-collection/src/index.vue.d.ts +45 -879
- package/index.css +3 -0
- package/package.json +1 -1
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import { NormalObject } from '@vunk/shared';
|
|
2
|
-
import { SetDataEvent } from '@vunk/core';
|
|
3
1
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
2
|
columns: {
|
|
5
3
|
type: import("vue").PropType<any[]>;
|
|
6
4
|
default: () => any[];
|
|
7
5
|
};
|
|
8
6
|
modelValue: {
|
|
9
|
-
type: import("vue").PropType<NormalObject[]>;
|
|
7
|
+
type: import("vue").PropType<import("@vunk/shared").NormalObject[]>;
|
|
10
8
|
default: () => any[];
|
|
11
9
|
};
|
|
12
10
|
readonly: {
|
|
@@ -21,18 +19,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
21
19
|
type: import("vue").PropType<import("./types").Slots>;
|
|
22
20
|
default: () => {};
|
|
23
21
|
};
|
|
24
|
-
keepLast: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
default: boolean;
|
|
27
|
-
};
|
|
28
22
|
labelActions: {
|
|
29
23
|
type: BooleanConstructor;
|
|
30
24
|
default: boolean;
|
|
31
25
|
};
|
|
32
26
|
defaultItemValue: {
|
|
33
|
-
type: import("vue").PropType<NormalObject>;
|
|
27
|
+
type: import("vue").PropType<import("@vunk/shared").NormalObject>;
|
|
34
28
|
default: () => {};
|
|
35
29
|
};
|
|
30
|
+
keepLast: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
36
34
|
topSplicable: {
|
|
37
35
|
type: BooleanConstructor;
|
|
38
36
|
default: boolean;
|
|
@@ -126,823 +124,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
126
124
|
} & {
|
|
127
125
|
readonly default: true;
|
|
128
126
|
};
|
|
129
|
-
}>, {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
type: import("vue").PropType<any[]>;
|
|
133
|
-
default: () => any[];
|
|
134
|
-
};
|
|
135
|
-
modelValue: {
|
|
136
|
-
type: import("vue").PropType<NormalObject[]>;
|
|
137
|
-
default: () => any[];
|
|
138
|
-
};
|
|
139
|
-
readonly: {
|
|
140
|
-
type: BooleanConstructor;
|
|
141
|
-
default: any;
|
|
142
|
-
};
|
|
143
|
-
splicable: {
|
|
144
|
-
type: BooleanConstructor;
|
|
145
|
-
default: boolean;
|
|
146
|
-
};
|
|
147
|
-
slots: {
|
|
148
|
-
type: import("vue").PropType<import("./types").Slots>;
|
|
149
|
-
default: () => {};
|
|
150
|
-
};
|
|
151
|
-
keepLast: {
|
|
152
|
-
type: BooleanConstructor;
|
|
153
|
-
default: boolean;
|
|
154
|
-
};
|
|
155
|
-
labelActions: {
|
|
156
|
-
type: BooleanConstructor;
|
|
157
|
-
default: boolean;
|
|
158
|
-
};
|
|
159
|
-
defaultItemValue: {
|
|
160
|
-
type: import("vue").PropType<NormalObject>;
|
|
161
|
-
default: () => {};
|
|
162
|
-
};
|
|
163
|
-
topSplicable: {
|
|
164
|
-
type: BooleanConstructor;
|
|
165
|
-
default: boolean;
|
|
166
|
-
};
|
|
167
|
-
cardProps: {
|
|
168
|
-
type: import("vue").PropType<Partial<import("element-plus").CardProps>>;
|
|
169
|
-
default: () => {};
|
|
170
|
-
};
|
|
171
|
-
required: {
|
|
172
|
-
readonly type: import("vue").PropType<boolean>;
|
|
173
|
-
readonly required: false;
|
|
174
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
175
|
-
__epPropKey: true;
|
|
176
|
-
} & {
|
|
177
|
-
readonly default: undefined;
|
|
178
|
-
};
|
|
179
|
-
formItemSize: {
|
|
180
|
-
type: import("vue").PropType<"default" | "small" | "large">;
|
|
181
|
-
default: "default" | "small" | "large";
|
|
182
|
-
};
|
|
183
|
-
formItemSlots: {
|
|
184
|
-
type: import("vue").PropType<import("@vunk/form/components/form-item/src/types").FormItemSlots>;
|
|
185
|
-
default: any;
|
|
186
|
-
};
|
|
187
|
-
elRef: {
|
|
188
|
-
type: import("vue").PropType<any>;
|
|
189
|
-
required: boolean;
|
|
190
|
-
};
|
|
191
|
-
inline: {
|
|
192
|
-
type: BooleanConstructor;
|
|
193
|
-
default: boolean;
|
|
194
|
-
};
|
|
195
|
-
formItemTip: {
|
|
196
|
-
type: StringConstructor;
|
|
197
|
-
default: any;
|
|
198
|
-
};
|
|
199
|
-
formItemTipClass: any;
|
|
200
|
-
labelTip: {
|
|
201
|
-
type: StringConstructor;
|
|
202
|
-
default: any;
|
|
203
|
-
};
|
|
204
|
-
information: {
|
|
205
|
-
type: BooleanConstructor;
|
|
206
|
-
default: boolean;
|
|
207
|
-
};
|
|
208
|
-
prop: any;
|
|
209
|
-
label: StringConstructor;
|
|
210
|
-
labelWidth: {
|
|
211
|
-
readonly type: import("vue").PropType<string | number>;
|
|
212
|
-
readonly required: false;
|
|
213
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
214
|
-
__epPropKey: true;
|
|
215
|
-
} & {
|
|
216
|
-
readonly default: "";
|
|
217
|
-
};
|
|
218
|
-
labelPosition: {
|
|
219
|
-
readonly type: import("vue").PropType<"" | "top" | "left" | "right">;
|
|
220
|
-
readonly required: false;
|
|
221
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
222
|
-
__epPropKey: true;
|
|
223
|
-
} & {
|
|
224
|
-
readonly default: "";
|
|
225
|
-
};
|
|
226
|
-
rules: {
|
|
227
|
-
readonly type: import("vue").PropType<unknown>;
|
|
228
|
-
readonly required: false;
|
|
229
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
230
|
-
__epPropKey: true;
|
|
231
|
-
};
|
|
232
|
-
error: StringConstructor;
|
|
233
|
-
validateStatus: {
|
|
234
|
-
readonly type: import("vue").PropType<"" | "error" | "success" | "validating">;
|
|
235
|
-
readonly required: false;
|
|
236
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
237
|
-
__epPropKey: true;
|
|
238
|
-
};
|
|
239
|
-
for: StringConstructor;
|
|
240
|
-
inlineMessage: {
|
|
241
|
-
readonly type: import("vue").PropType<string | boolean>;
|
|
242
|
-
readonly required: false;
|
|
243
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
244
|
-
__epPropKey: true;
|
|
245
|
-
} & {
|
|
246
|
-
readonly default: "";
|
|
247
|
-
};
|
|
248
|
-
showMessage: {
|
|
249
|
-
readonly type: import("vue").PropType<boolean>;
|
|
250
|
-
readonly required: false;
|
|
251
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
252
|
-
__epPropKey: true;
|
|
253
|
-
} & {
|
|
254
|
-
readonly default: true;
|
|
255
|
-
};
|
|
256
|
-
}>> & Readonly<{
|
|
257
|
-
"onUpdate:modelValue"?: (...args: any[] | unknown[]) => any;
|
|
258
|
-
}> & {}>;
|
|
259
|
-
emit: ((event: "update:modelValue", ...args: unknown[]) => void) & ((event: "update:modelValue", ...args: any) => void) & ((event: "update:modelValue", ...args: any[]) => void);
|
|
260
|
-
formItemBindProps: import("vue").ComputedRef<{}>;
|
|
261
|
-
readonly: import("vue").ComputedRef<boolean>;
|
|
262
|
-
formData: import("vue").ComputedRef<NormalObject | NormalObject[]>;
|
|
263
|
-
handlePlus: (index: number) => void;
|
|
264
|
-
handleMinus: (index: number) => void;
|
|
265
|
-
handleFormSetData: (e: SetDataEvent) => void;
|
|
266
|
-
createTheFormItems: (index: number) => any[];
|
|
267
|
-
readonly VkfFormItem: {
|
|
268
|
-
new (...args: any[]): any;
|
|
269
|
-
__isFragment?: never;
|
|
270
|
-
__isTeleport?: never;
|
|
271
|
-
__isSuspense?: never;
|
|
272
|
-
} & 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, {
|
|
273
|
-
[x: string]: any;
|
|
274
|
-
[x: symbol]: any;
|
|
275
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
276
|
-
install(app: import("vue").App): void;
|
|
277
|
-
};
|
|
278
|
-
readonly ElButton: ({
|
|
279
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
280
|
-
readonly size: {
|
|
281
|
-
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
282
|
-
readonly required: false;
|
|
283
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
284
|
-
__epPropKey: true;
|
|
285
|
-
};
|
|
286
|
-
readonly disabled: BooleanConstructor;
|
|
287
|
-
readonly type: {
|
|
288
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
289
|
-
readonly required: false;
|
|
290
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
291
|
-
__epPropKey: true;
|
|
292
|
-
} & {
|
|
293
|
-
readonly default: "";
|
|
294
|
-
};
|
|
295
|
-
readonly icon: {
|
|
296
|
-
readonly type: import("vue").PropType<unknown>;
|
|
297
|
-
readonly required: false;
|
|
298
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
299
|
-
__epPropKey: true;
|
|
300
|
-
};
|
|
301
|
-
readonly nativeType: {
|
|
302
|
-
readonly type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
303
|
-
readonly required: false;
|
|
304
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
305
|
-
__epPropKey: true;
|
|
306
|
-
} & {
|
|
307
|
-
readonly default: "button";
|
|
308
|
-
};
|
|
309
|
-
readonly loading: BooleanConstructor;
|
|
310
|
-
readonly loadingIcon: {
|
|
311
|
-
readonly type: import("vue").PropType<unknown>;
|
|
312
|
-
readonly required: false;
|
|
313
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
314
|
-
__epPropKey: true;
|
|
315
|
-
} & {
|
|
316
|
-
readonly default: () => any;
|
|
317
|
-
};
|
|
318
|
-
readonly plain: {
|
|
319
|
-
readonly type: import("vue").PropType<boolean>;
|
|
320
|
-
readonly required: false;
|
|
321
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
322
|
-
__epPropKey: true;
|
|
323
|
-
} & {
|
|
324
|
-
readonly default: undefined;
|
|
325
|
-
};
|
|
326
|
-
readonly text: BooleanConstructor;
|
|
327
|
-
readonly link: BooleanConstructor;
|
|
328
|
-
readonly bg: BooleanConstructor;
|
|
329
|
-
readonly autofocus: BooleanConstructor;
|
|
330
|
-
readonly round: {
|
|
331
|
-
readonly type: import("vue").PropType<boolean>;
|
|
332
|
-
readonly required: false;
|
|
333
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
334
|
-
__epPropKey: true;
|
|
335
|
-
} & {
|
|
336
|
-
readonly default: undefined;
|
|
337
|
-
};
|
|
338
|
-
readonly circle: BooleanConstructor;
|
|
339
|
-
readonly color: StringConstructor;
|
|
340
|
-
readonly dark: BooleanConstructor;
|
|
341
|
-
readonly autoInsertSpace: {
|
|
342
|
-
readonly type: import("vue").PropType<boolean>;
|
|
343
|
-
readonly required: false;
|
|
344
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
345
|
-
__epPropKey: true;
|
|
346
|
-
} & {
|
|
347
|
-
readonly default: undefined;
|
|
348
|
-
};
|
|
349
|
-
readonly tag: {
|
|
350
|
-
readonly type: import("vue").PropType<unknown>;
|
|
351
|
-
readonly required: false;
|
|
352
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
353
|
-
__epPropKey: true;
|
|
354
|
-
} & {
|
|
355
|
-
readonly default: "button";
|
|
356
|
-
};
|
|
357
|
-
}>> & {
|
|
358
|
-
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
359
|
-
}, {
|
|
360
|
-
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
361
|
-
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
362
|
-
type: import("vue").ComputedRef<string>;
|
|
363
|
-
disabled: import("vue").ComputedRef<boolean>;
|
|
364
|
-
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
365
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
366
|
-
click: (evt: MouseEvent) => void;
|
|
367
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
368
|
-
readonly link: boolean;
|
|
369
|
-
readonly circle: boolean;
|
|
370
|
-
readonly text: boolean;
|
|
371
|
-
readonly disabled: boolean;
|
|
372
|
-
readonly round: boolean;
|
|
373
|
-
readonly dark: boolean;
|
|
374
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
375
|
-
readonly bg: boolean;
|
|
376
|
-
readonly loading: boolean;
|
|
377
|
-
readonly autofocus: boolean;
|
|
378
|
-
readonly tag: unknown;
|
|
379
|
-
readonly plain: boolean;
|
|
380
|
-
readonly nativeType: "button" | "reset" | "submit";
|
|
381
|
-
readonly loadingIcon: unknown;
|
|
382
|
-
readonly autoInsertSpace: boolean;
|
|
383
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
384
|
-
P: {};
|
|
385
|
-
B: {};
|
|
386
|
-
D: {};
|
|
387
|
-
C: {};
|
|
388
|
-
M: {};
|
|
389
|
-
Defaults: {};
|
|
390
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
391
|
-
readonly size: {
|
|
392
|
-
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
393
|
-
readonly required: false;
|
|
394
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
395
|
-
__epPropKey: true;
|
|
396
|
-
};
|
|
397
|
-
readonly disabled: BooleanConstructor;
|
|
398
|
-
readonly type: {
|
|
399
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
400
|
-
readonly required: false;
|
|
401
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
402
|
-
__epPropKey: true;
|
|
403
|
-
} & {
|
|
404
|
-
readonly default: "";
|
|
405
|
-
};
|
|
406
|
-
readonly icon: {
|
|
407
|
-
readonly type: import("vue").PropType<unknown>;
|
|
408
|
-
readonly required: false;
|
|
409
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
410
|
-
__epPropKey: true;
|
|
411
|
-
};
|
|
412
|
-
readonly nativeType: {
|
|
413
|
-
readonly type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
414
|
-
readonly required: false;
|
|
415
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
416
|
-
__epPropKey: true;
|
|
417
|
-
} & {
|
|
418
|
-
readonly default: "button";
|
|
419
|
-
};
|
|
420
|
-
readonly loading: BooleanConstructor;
|
|
421
|
-
readonly loadingIcon: {
|
|
422
|
-
readonly type: import("vue").PropType<unknown>;
|
|
423
|
-
readonly required: false;
|
|
424
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
425
|
-
__epPropKey: true;
|
|
426
|
-
} & {
|
|
427
|
-
readonly default: () => any;
|
|
428
|
-
};
|
|
429
|
-
readonly plain: {
|
|
430
|
-
readonly type: import("vue").PropType<boolean>;
|
|
431
|
-
readonly required: false;
|
|
432
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
433
|
-
__epPropKey: true;
|
|
434
|
-
} & {
|
|
435
|
-
readonly default: undefined;
|
|
436
|
-
};
|
|
437
|
-
readonly text: BooleanConstructor;
|
|
438
|
-
readonly link: BooleanConstructor;
|
|
439
|
-
readonly bg: BooleanConstructor;
|
|
440
|
-
readonly autofocus: BooleanConstructor;
|
|
441
|
-
readonly round: {
|
|
442
|
-
readonly type: import("vue").PropType<boolean>;
|
|
443
|
-
readonly required: false;
|
|
444
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
445
|
-
__epPropKey: true;
|
|
446
|
-
} & {
|
|
447
|
-
readonly default: undefined;
|
|
448
|
-
};
|
|
449
|
-
readonly circle: BooleanConstructor;
|
|
450
|
-
readonly color: StringConstructor;
|
|
451
|
-
readonly dark: BooleanConstructor;
|
|
452
|
-
readonly autoInsertSpace: {
|
|
453
|
-
readonly type: import("vue").PropType<boolean>;
|
|
454
|
-
readonly required: false;
|
|
455
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
456
|
-
__epPropKey: true;
|
|
457
|
-
} & {
|
|
458
|
-
readonly default: undefined;
|
|
459
|
-
};
|
|
460
|
-
readonly tag: {
|
|
461
|
-
readonly type: import("vue").PropType<unknown>;
|
|
462
|
-
readonly required: false;
|
|
463
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
464
|
-
__epPropKey: true;
|
|
465
|
-
} & {
|
|
466
|
-
readonly default: "button";
|
|
467
|
-
};
|
|
468
|
-
}>> & {
|
|
469
|
-
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
470
|
-
}, {
|
|
471
|
-
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
472
|
-
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
473
|
-
type: import("vue").ComputedRef<string>;
|
|
474
|
-
disabled: import("vue").ComputedRef<boolean>;
|
|
475
|
-
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
476
|
-
}, {}, {}, {}, {
|
|
477
|
-
readonly link: boolean;
|
|
478
|
-
readonly circle: boolean;
|
|
479
|
-
readonly text: boolean;
|
|
480
|
-
readonly disabled: boolean;
|
|
481
|
-
readonly round: boolean;
|
|
482
|
-
readonly dark: boolean;
|
|
483
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
484
|
-
readonly bg: boolean;
|
|
485
|
-
readonly loading: boolean;
|
|
486
|
-
readonly autofocus: boolean;
|
|
487
|
-
readonly tag: unknown;
|
|
488
|
-
readonly plain: boolean;
|
|
489
|
-
readonly nativeType: "button" | "reset" | "submit";
|
|
490
|
-
readonly loadingIcon: unknown;
|
|
491
|
-
readonly autoInsertSpace: boolean;
|
|
492
|
-
}>;
|
|
493
|
-
__isFragment?: never;
|
|
494
|
-
__isTeleport?: never;
|
|
495
|
-
__isSuspense?: never;
|
|
496
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
497
|
-
readonly size: {
|
|
498
|
-
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
499
|
-
readonly required: false;
|
|
500
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
501
|
-
__epPropKey: true;
|
|
502
|
-
};
|
|
503
|
-
readonly disabled: BooleanConstructor;
|
|
504
|
-
readonly type: {
|
|
505
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
506
|
-
readonly required: false;
|
|
507
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
508
|
-
__epPropKey: true;
|
|
509
|
-
} & {
|
|
510
|
-
readonly default: "";
|
|
511
|
-
};
|
|
512
|
-
readonly icon: {
|
|
513
|
-
readonly type: import("vue").PropType<unknown>;
|
|
514
|
-
readonly required: false;
|
|
515
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
516
|
-
__epPropKey: true;
|
|
517
|
-
};
|
|
518
|
-
readonly nativeType: {
|
|
519
|
-
readonly type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
520
|
-
readonly required: false;
|
|
521
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
522
|
-
__epPropKey: true;
|
|
523
|
-
} & {
|
|
524
|
-
readonly default: "button";
|
|
525
|
-
};
|
|
526
|
-
readonly loading: BooleanConstructor;
|
|
527
|
-
readonly loadingIcon: {
|
|
528
|
-
readonly type: import("vue").PropType<unknown>;
|
|
529
|
-
readonly required: false;
|
|
530
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
531
|
-
__epPropKey: true;
|
|
532
|
-
} & {
|
|
533
|
-
readonly default: () => any;
|
|
534
|
-
};
|
|
535
|
-
readonly plain: {
|
|
536
|
-
readonly type: import("vue").PropType<boolean>;
|
|
537
|
-
readonly required: false;
|
|
538
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
539
|
-
__epPropKey: true;
|
|
540
|
-
} & {
|
|
541
|
-
readonly default: undefined;
|
|
542
|
-
};
|
|
543
|
-
readonly text: BooleanConstructor;
|
|
544
|
-
readonly link: BooleanConstructor;
|
|
545
|
-
readonly bg: BooleanConstructor;
|
|
546
|
-
readonly autofocus: BooleanConstructor;
|
|
547
|
-
readonly round: {
|
|
548
|
-
readonly type: import("vue").PropType<boolean>;
|
|
549
|
-
readonly required: false;
|
|
550
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
551
|
-
__epPropKey: true;
|
|
552
|
-
} & {
|
|
553
|
-
readonly default: undefined;
|
|
554
|
-
};
|
|
555
|
-
readonly circle: BooleanConstructor;
|
|
556
|
-
readonly color: StringConstructor;
|
|
557
|
-
readonly dark: BooleanConstructor;
|
|
558
|
-
readonly autoInsertSpace: {
|
|
559
|
-
readonly type: import("vue").PropType<boolean>;
|
|
560
|
-
readonly required: false;
|
|
561
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
562
|
-
__epPropKey: true;
|
|
563
|
-
} & {
|
|
564
|
-
readonly default: undefined;
|
|
565
|
-
};
|
|
566
|
-
readonly tag: {
|
|
567
|
-
readonly type: import("vue").PropType<unknown>;
|
|
568
|
-
readonly required: false;
|
|
569
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
570
|
-
__epPropKey: true;
|
|
571
|
-
} & {
|
|
572
|
-
readonly default: "button";
|
|
573
|
-
};
|
|
574
|
-
}>> & {
|
|
575
|
-
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
576
|
-
}, {
|
|
577
|
-
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
578
|
-
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
579
|
-
type: import("vue").ComputedRef<string>;
|
|
580
|
-
disabled: import("vue").ComputedRef<boolean>;
|
|
581
|
-
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
582
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
583
|
-
click: (evt: MouseEvent) => void;
|
|
584
|
-
}, string, {
|
|
585
|
-
readonly link: boolean;
|
|
586
|
-
readonly circle: boolean;
|
|
587
|
-
readonly text: boolean;
|
|
588
|
-
readonly disabled: boolean;
|
|
589
|
-
readonly round: boolean;
|
|
590
|
-
readonly dark: boolean;
|
|
591
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
592
|
-
readonly bg: boolean;
|
|
593
|
-
readonly loading: boolean;
|
|
594
|
-
readonly autofocus: boolean;
|
|
595
|
-
readonly tag: unknown;
|
|
596
|
-
readonly plain: boolean;
|
|
597
|
-
readonly nativeType: "button" | "reset" | "submit";
|
|
598
|
-
readonly loadingIcon: unknown;
|
|
599
|
-
readonly autoInsertSpace: boolean;
|
|
600
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
601
|
-
$slots: {
|
|
602
|
-
loading?(_: {}): any;
|
|
603
|
-
icon?(_: {}): any;
|
|
604
|
-
default?(_: {}): any;
|
|
605
|
-
};
|
|
606
|
-
}) & import("vue").Plugin) & {
|
|
607
|
-
ButtonGroup: {
|
|
608
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
609
|
-
readonly size: {
|
|
610
|
-
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
611
|
-
readonly required: false;
|
|
612
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
613
|
-
__epPropKey: true;
|
|
614
|
-
};
|
|
615
|
-
readonly type: {
|
|
616
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
617
|
-
readonly required: false;
|
|
618
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
619
|
-
__epPropKey: true;
|
|
620
|
-
} & {
|
|
621
|
-
readonly default: "";
|
|
622
|
-
};
|
|
623
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
624
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
625
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
626
|
-
P: {};
|
|
627
|
-
B: {};
|
|
628
|
-
D: {};
|
|
629
|
-
C: {};
|
|
630
|
-
M: {};
|
|
631
|
-
Defaults: {};
|
|
632
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
633
|
-
readonly size: {
|
|
634
|
-
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
635
|
-
readonly required: false;
|
|
636
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
637
|
-
__epPropKey: true;
|
|
638
|
-
};
|
|
639
|
-
readonly type: {
|
|
640
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
641
|
-
readonly required: false;
|
|
642
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
643
|
-
__epPropKey: true;
|
|
644
|
-
} & {
|
|
645
|
-
readonly default: "";
|
|
646
|
-
};
|
|
647
|
-
}>>, {}, {}, {}, {}, {
|
|
648
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
649
|
-
}>;
|
|
650
|
-
__isFragment?: never;
|
|
651
|
-
__isTeleport?: never;
|
|
652
|
-
__isSuspense?: never;
|
|
653
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
654
|
-
readonly size: {
|
|
655
|
-
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
656
|
-
readonly required: false;
|
|
657
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
658
|
-
__epPropKey: true;
|
|
659
|
-
};
|
|
660
|
-
readonly type: {
|
|
661
|
-
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
662
|
-
readonly required: false;
|
|
663
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
664
|
-
__epPropKey: true;
|
|
665
|
-
} & {
|
|
666
|
-
readonly default: "";
|
|
667
|
-
};
|
|
668
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
669
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
670
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
671
|
-
$slots: {
|
|
672
|
-
default?(_: {}): any;
|
|
673
|
-
};
|
|
674
|
-
});
|
|
675
|
-
};
|
|
676
|
-
readonly ElCard: {
|
|
677
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
678
|
-
readonly header: {
|
|
679
|
-
readonly type: import("vue").PropType<string>;
|
|
680
|
-
readonly required: false;
|
|
681
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
682
|
-
__epPropKey: true;
|
|
683
|
-
} & {
|
|
684
|
-
readonly default: "";
|
|
685
|
-
};
|
|
686
|
-
readonly footer: {
|
|
687
|
-
readonly type: import("vue").PropType<string>;
|
|
688
|
-
readonly required: false;
|
|
689
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
690
|
-
__epPropKey: true;
|
|
691
|
-
} & {
|
|
692
|
-
readonly default: "";
|
|
693
|
-
};
|
|
694
|
-
readonly bodyStyle: {
|
|
695
|
-
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
696
|
-
readonly required: false;
|
|
697
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
698
|
-
__epPropKey: true;
|
|
699
|
-
} & {
|
|
700
|
-
readonly default: "";
|
|
701
|
-
};
|
|
702
|
-
readonly headerClass: StringConstructor;
|
|
703
|
-
readonly bodyClass: StringConstructor;
|
|
704
|
-
readonly footerClass: StringConstructor;
|
|
705
|
-
readonly shadow: {
|
|
706
|
-
readonly type: import("vue").PropType<"hover" | "always" | "never">;
|
|
707
|
-
readonly required: false;
|
|
708
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
709
|
-
__epPropKey: true;
|
|
710
|
-
} & {
|
|
711
|
-
readonly default: "always";
|
|
712
|
-
};
|
|
713
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
714
|
-
readonly footer: string;
|
|
715
|
-
readonly header: string;
|
|
716
|
-
readonly bodyStyle: import("vue").StyleValue;
|
|
717
|
-
readonly shadow: "hover" | "always" | "never";
|
|
718
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
719
|
-
P: {};
|
|
720
|
-
B: {};
|
|
721
|
-
D: {};
|
|
722
|
-
C: {};
|
|
723
|
-
M: {};
|
|
724
|
-
Defaults: {};
|
|
725
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
726
|
-
readonly header: {
|
|
727
|
-
readonly type: import("vue").PropType<string>;
|
|
728
|
-
readonly required: false;
|
|
729
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
730
|
-
__epPropKey: true;
|
|
731
|
-
} & {
|
|
732
|
-
readonly default: "";
|
|
733
|
-
};
|
|
734
|
-
readonly footer: {
|
|
735
|
-
readonly type: import("vue").PropType<string>;
|
|
736
|
-
readonly required: false;
|
|
737
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
738
|
-
__epPropKey: true;
|
|
739
|
-
} & {
|
|
740
|
-
readonly default: "";
|
|
741
|
-
};
|
|
742
|
-
readonly bodyStyle: {
|
|
743
|
-
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
744
|
-
readonly required: false;
|
|
745
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
746
|
-
__epPropKey: true;
|
|
747
|
-
} & {
|
|
748
|
-
readonly default: "";
|
|
749
|
-
};
|
|
750
|
-
readonly headerClass: StringConstructor;
|
|
751
|
-
readonly bodyClass: StringConstructor;
|
|
752
|
-
readonly footerClass: StringConstructor;
|
|
753
|
-
readonly shadow: {
|
|
754
|
-
readonly type: import("vue").PropType<"hover" | "always" | "never">;
|
|
755
|
-
readonly required: false;
|
|
756
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
757
|
-
__epPropKey: true;
|
|
758
|
-
} & {
|
|
759
|
-
readonly default: "always";
|
|
760
|
-
};
|
|
761
|
-
}>>, {}, {}, {}, {}, {
|
|
762
|
-
readonly footer: string;
|
|
763
|
-
readonly header: string;
|
|
764
|
-
readonly bodyStyle: import("vue").StyleValue;
|
|
765
|
-
readonly shadow: "hover" | "always" | "never";
|
|
766
|
-
}>;
|
|
767
|
-
__isFragment?: never;
|
|
768
|
-
__isTeleport?: never;
|
|
769
|
-
__isSuspense?: never;
|
|
770
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
771
|
-
readonly header: {
|
|
772
|
-
readonly type: import("vue").PropType<string>;
|
|
773
|
-
readonly required: false;
|
|
774
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
775
|
-
__epPropKey: true;
|
|
776
|
-
} & {
|
|
777
|
-
readonly default: "";
|
|
778
|
-
};
|
|
779
|
-
readonly footer: {
|
|
780
|
-
readonly type: import("vue").PropType<string>;
|
|
781
|
-
readonly required: false;
|
|
782
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
783
|
-
__epPropKey: true;
|
|
784
|
-
} & {
|
|
785
|
-
readonly default: "";
|
|
786
|
-
};
|
|
787
|
-
readonly bodyStyle: {
|
|
788
|
-
readonly type: import("vue").PropType<import("vue").StyleValue>;
|
|
789
|
-
readonly required: false;
|
|
790
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
791
|
-
__epPropKey: true;
|
|
792
|
-
} & {
|
|
793
|
-
readonly default: "";
|
|
794
|
-
};
|
|
795
|
-
readonly headerClass: StringConstructor;
|
|
796
|
-
readonly bodyClass: StringConstructor;
|
|
797
|
-
readonly footerClass: StringConstructor;
|
|
798
|
-
readonly shadow: {
|
|
799
|
-
readonly type: import("vue").PropType<"hover" | "always" | "never">;
|
|
800
|
-
readonly required: false;
|
|
801
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
802
|
-
__epPropKey: true;
|
|
803
|
-
} & {
|
|
804
|
-
readonly default: "always";
|
|
805
|
-
};
|
|
806
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
807
|
-
readonly footer: string;
|
|
808
|
-
readonly header: string;
|
|
809
|
-
readonly bodyStyle: import("vue").StyleValue;
|
|
810
|
-
readonly shadow: "hover" | "always" | "never";
|
|
811
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
812
|
-
$slots: {
|
|
813
|
-
header?(_: {}): any;
|
|
814
|
-
default?(_: {}): any;
|
|
815
|
-
footer?(_: {}): any;
|
|
816
|
-
};
|
|
817
|
-
}) & import("vue").Plugin;
|
|
818
|
-
readonly ElEmpty: {
|
|
819
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
820
|
-
readonly image: {
|
|
821
|
-
readonly type: import("vue").PropType<string>;
|
|
822
|
-
readonly required: false;
|
|
823
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
824
|
-
__epPropKey: true;
|
|
825
|
-
} & {
|
|
826
|
-
readonly default: "";
|
|
827
|
-
};
|
|
828
|
-
readonly imageSize: NumberConstructor;
|
|
829
|
-
readonly description: {
|
|
830
|
-
readonly type: import("vue").PropType<string>;
|
|
831
|
-
readonly required: false;
|
|
832
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
833
|
-
__epPropKey: true;
|
|
834
|
-
} & {
|
|
835
|
-
readonly default: "";
|
|
836
|
-
};
|
|
837
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
838
|
-
readonly image: string;
|
|
839
|
-
readonly description: string;
|
|
840
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
841
|
-
P: {};
|
|
842
|
-
B: {};
|
|
843
|
-
D: {};
|
|
844
|
-
C: {};
|
|
845
|
-
M: {};
|
|
846
|
-
Defaults: {};
|
|
847
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
848
|
-
readonly image: {
|
|
849
|
-
readonly type: import("vue").PropType<string>;
|
|
850
|
-
readonly required: false;
|
|
851
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
852
|
-
__epPropKey: true;
|
|
853
|
-
} & {
|
|
854
|
-
readonly default: "";
|
|
855
|
-
};
|
|
856
|
-
readonly imageSize: NumberConstructor;
|
|
857
|
-
readonly description: {
|
|
858
|
-
readonly type: import("vue").PropType<string>;
|
|
859
|
-
readonly required: false;
|
|
860
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
861
|
-
__epPropKey: true;
|
|
862
|
-
} & {
|
|
863
|
-
readonly default: "";
|
|
864
|
-
};
|
|
865
|
-
}>>, {}, {}, {}, {}, {
|
|
866
|
-
readonly image: string;
|
|
867
|
-
readonly description: string;
|
|
868
|
-
}>;
|
|
869
|
-
__isFragment?: never;
|
|
870
|
-
__isTeleport?: never;
|
|
871
|
-
__isSuspense?: never;
|
|
872
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
873
|
-
readonly image: {
|
|
874
|
-
readonly type: import("vue").PropType<string>;
|
|
875
|
-
readonly required: false;
|
|
876
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
877
|
-
__epPropKey: true;
|
|
878
|
-
} & {
|
|
879
|
-
readonly default: "";
|
|
880
|
-
};
|
|
881
|
-
readonly imageSize: NumberConstructor;
|
|
882
|
-
readonly description: {
|
|
883
|
-
readonly type: import("vue").PropType<string>;
|
|
884
|
-
readonly required: false;
|
|
885
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
886
|
-
__epPropKey: true;
|
|
887
|
-
} & {
|
|
888
|
-
readonly default: "";
|
|
889
|
-
};
|
|
890
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
891
|
-
readonly image: string;
|
|
892
|
-
readonly description: string;
|
|
893
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
894
|
-
$slots: {
|
|
895
|
-
image?(_: {}): any;
|
|
896
|
-
description?(_: {}): any;
|
|
897
|
-
default?(_: {}): any;
|
|
898
|
-
};
|
|
899
|
-
}) & import("vue").Plugin;
|
|
900
|
-
readonly VkfTemplatesDefault: {
|
|
901
|
-
new (...args: any[]): any;
|
|
902
|
-
__isFragment?: never;
|
|
903
|
-
__isTeleport?: never;
|
|
904
|
-
__isSuspense?: never;
|
|
905
|
-
} & 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, {
|
|
906
|
-
[x: string]: any;
|
|
907
|
-
[x: symbol]: any;
|
|
908
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
909
|
-
install(app: import("vue").App): void;
|
|
910
|
-
};
|
|
911
|
-
readonly VkfTemplateInstancesProvider: {
|
|
912
|
-
new (...args: any[]): any;
|
|
913
|
-
__isFragment?: never;
|
|
914
|
-
__isTeleport?: never;
|
|
915
|
-
__isSuspense?: never;
|
|
916
|
-
} & 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, {
|
|
917
|
-
[x: string]: any;
|
|
918
|
-
[x: symbol]: any;
|
|
919
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
920
|
-
install(app: import("vue").App): void;
|
|
921
|
-
};
|
|
922
|
-
readonly VkfFormItemRenderer: {
|
|
923
|
-
new (...args: any[]): any;
|
|
924
|
-
__isFragment?: never;
|
|
925
|
-
__isTeleport?: never;
|
|
926
|
-
__isSuspense?: never;
|
|
927
|
-
} & 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, {
|
|
928
|
-
[x: string]: any;
|
|
929
|
-
[x: symbol]: any;
|
|
930
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
931
|
-
install(app: import("vue").App): void;
|
|
932
|
-
};
|
|
933
|
-
readonly VkfRendererData: {
|
|
934
|
-
new (...args: any[]): any;
|
|
935
|
-
__isFragment?: never;
|
|
936
|
-
__isTeleport?: never;
|
|
937
|
-
__isSuspense?: never;
|
|
938
|
-
} & 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, {
|
|
939
|
-
[x: string]: any;
|
|
940
|
-
[x: symbol]: any;
|
|
941
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
942
|
-
install(app: import("vue").App): void;
|
|
943
|
-
};
|
|
944
|
-
readonly Plus: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
945
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
127
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
128
|
+
[key: string]: any;
|
|
129
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
946
130
|
'update:modelValue': any;
|
|
947
131
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
948
132
|
columns: {
|
|
@@ -950,7 +134,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
950
134
|
default: () => any[];
|
|
951
135
|
};
|
|
952
136
|
modelValue: {
|
|
953
|
-
type: import("vue").PropType<NormalObject[]>;
|
|
137
|
+
type: import("vue").PropType<import("@vunk/shared").NormalObject[]>;
|
|
954
138
|
default: () => any[];
|
|
955
139
|
};
|
|
956
140
|
readonly: {
|
|
@@ -965,18 +149,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
965
149
|
type: import("vue").PropType<import("./types").Slots>;
|
|
966
150
|
default: () => {};
|
|
967
151
|
};
|
|
968
|
-
keepLast: {
|
|
969
|
-
type: BooleanConstructor;
|
|
970
|
-
default: boolean;
|
|
971
|
-
};
|
|
972
152
|
labelActions: {
|
|
973
153
|
type: BooleanConstructor;
|
|
974
154
|
default: boolean;
|
|
975
155
|
};
|
|
976
156
|
defaultItemValue: {
|
|
977
|
-
type: import("vue").PropType<NormalObject>;
|
|
157
|
+
type: import("vue").PropType<import("@vunk/shared").NormalObject>;
|
|
978
158
|
default: () => {};
|
|
979
159
|
};
|
|
160
|
+
keepLast: {
|
|
161
|
+
type: BooleanConstructor;
|
|
162
|
+
default: boolean;
|
|
163
|
+
};
|
|
980
164
|
topSplicable: {
|
|
981
165
|
type: BooleanConstructor;
|
|
982
166
|
default: boolean;
|
|
@@ -1088,12 +272,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1088
272
|
inlineMessage: string | boolean;
|
|
1089
273
|
showMessage: boolean;
|
|
1090
274
|
slots: import("./types").Slots;
|
|
1091
|
-
modelValue: NormalObject[];
|
|
275
|
+
modelValue: import("@vunk/shared").NormalObject[];
|
|
1092
276
|
columns: any[];
|
|
1093
277
|
labelActions: boolean;
|
|
1094
278
|
splicable: boolean;
|
|
279
|
+
defaultItemValue: import("@vunk/shared").NormalObject;
|
|
1095
280
|
keepLast: boolean;
|
|
1096
|
-
defaultItemValue: NormalObject;
|
|
1097
281
|
topSplicable: boolean;
|
|
1098
282
|
cardProps: Partial<import("element-plus").CardProps>;
|
|
1099
283
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|