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