@vuetify/nightly 3.7.10-next.2025-02-04 → 3.7.10-next.2025-02-05

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +6 -3
  2. package/dist/json/attributes.json +1607 -1607
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +168 -168
  5. package/dist/json/web-types.json +3006 -2970
  6. package/dist/vuetify-labs.css +3416 -3417
  7. package/dist/vuetify-labs.d.ts +258 -651
  8. package/dist/vuetify-labs.esm.js +32 -13
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +32 -13
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +3986 -3987
  13. package/dist/vuetify.d.ts +347 -740
  14. package/dist/vuetify.esm.js +32 -13
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +32 -13
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +10 -10
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/VAutocomplete.d.ts +18 -9
  22. package/lib/components/VAutocomplete/VAutocomplete.js +6 -3
  23. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  24. package/lib/components/VCombobox/VCombobox.d.ts +18 -9
  25. package/lib/components/VCombobox/VCombobox.js +6 -3
  26. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  27. package/lib/components/VForm/VForm.d.ts +111 -531
  28. package/lib/components/VForm/VForm.js +11 -1
  29. package/lib/components/VForm/VForm.js.map +1 -1
  30. package/lib/components/VSelect/VSelect.d.ts +18 -9
  31. package/lib/components/VSelect/VSelect.js +6 -3
  32. package/lib/components/VSelect/VSelect.js.map +1 -1
  33. package/lib/entry-bundler.js +1 -1
  34. package/lib/framework.d.ts +58 -58
  35. package/lib/framework.js +1 -1
  36. package/lib/styles/generic/_reset.scss +0 -1
  37. package/lib/styles/main.css +0 -1
  38. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import type { SubmitEventPromise } from "../../composables/form";
1
+ import type { FieldValidationResult, FormField, FormValidationResult, SubmitEventPromise } from "../../composables/form";
2
2
  export declare const makeVFormProps: <Defaults extends {
3
3
  disabled?: unknown;
4
4
  fastFail?: unknown;
@@ -68,169 +68,49 @@ export declare const VForm: {
68
68
  } & {
69
69
  $children?: import("vue").VNodeChild | {
70
70
  default?: ((arg: {
71
- errors: import("vue").Ref<{
72
- id: number | string;
73
- errorMessages: string[];
74
- }[], import("../../composables/form").FieldValidationResult[] | {
75
- id: number | string;
76
- errorMessages: string[];
77
- }[]>;
78
- isDisabled: import("vue").ComputedRef<boolean>;
79
- isReadonly: import("vue").ComputedRef<boolean>;
80
- isValidating: import("vue").ShallowRef<boolean, boolean>;
81
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
82
- readonly externalValue: boolean | null;
83
- };
84
- items: import("vue").Ref<{
85
- id: number | string;
86
- validate: () => Promise<string[]>;
87
- reset: () => Promise<void>;
88
- resetValidation: () => Promise<void>;
89
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
90
- isValid: boolean | null;
91
- errorMessages: string[];
92
- }[], import("../../composables/form").FormField[] | {
93
- id: number | string;
94
- validate: () => Promise<string[]>;
95
- reset: () => Promise<void>;
96
- resetValidation: () => Promise<void>;
97
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
98
- isValid: boolean | null;
99
- errorMessages: string[];
100
- }[]>;
101
- validate: () => Promise<{
102
- valid: boolean;
103
- errors: {
104
- id: number | string;
105
- errorMessages: string[];
106
- }[];
107
- }>;
71
+ errors: FieldValidationResult[];
72
+ isDisabled: boolean;
73
+ isReadonly: boolean;
74
+ isValidating: boolean;
75
+ isValid: boolean | null;
76
+ items: FormField[];
77
+ validate: () => Promise<FormValidationResult>;
108
78
  reset: () => void;
109
79
  resetValidation: () => void;
110
80
  }) => import("vue").VNodeChild) | undefined;
111
81
  } | ((arg: {
112
- errors: import("vue").Ref<{
113
- id: number | string;
114
- errorMessages: string[];
115
- }[], import("../../composables/form").FieldValidationResult[] | {
116
- id: number | string;
117
- errorMessages: string[];
118
- }[]>;
119
- isDisabled: import("vue").ComputedRef<boolean>;
120
- isReadonly: import("vue").ComputedRef<boolean>;
121
- isValidating: import("vue").ShallowRef<boolean, boolean>;
122
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
123
- readonly externalValue: boolean | null;
124
- };
125
- items: import("vue").Ref<{
126
- id: number | string;
127
- validate: () => Promise<string[]>;
128
- reset: () => Promise<void>;
129
- resetValidation: () => Promise<void>;
130
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
131
- isValid: boolean | null;
132
- errorMessages: string[];
133
- }[], import("../../composables/form").FormField[] | {
134
- id: number | string;
135
- validate: () => Promise<string[]>;
136
- reset: () => Promise<void>;
137
- resetValidation: () => Promise<void>;
138
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
139
- isValid: boolean | null;
140
- errorMessages: string[];
141
- }[]>;
142
- validate: () => Promise<{
143
- valid: boolean;
144
- errors: {
145
- id: number | string;
146
- errorMessages: string[];
147
- }[];
148
- }>;
82
+ errors: FieldValidationResult[];
83
+ isDisabled: boolean;
84
+ isReadonly: boolean;
85
+ isValidating: boolean;
86
+ isValid: boolean | null;
87
+ items: FormField[];
88
+ validate: () => Promise<FormValidationResult>;
149
89
  reset: () => void;
150
90
  resetValidation: () => void;
151
91
  }) => import("vue").VNodeChild);
152
92
  'v-slots'?: {
153
93
  default?: false | ((arg: {
154
- errors: import("vue").Ref<{
155
- id: number | string;
156
- errorMessages: string[];
157
- }[], import("../../composables/form").FieldValidationResult[] | {
158
- id: number | string;
159
- errorMessages: string[];
160
- }[]>;
161
- isDisabled: import("vue").ComputedRef<boolean>;
162
- isReadonly: import("vue").ComputedRef<boolean>;
163
- isValidating: import("vue").ShallowRef<boolean, boolean>;
164
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
165
- readonly externalValue: boolean | null;
166
- };
167
- items: import("vue").Ref<{
168
- id: number | string;
169
- validate: () => Promise<string[]>;
170
- reset: () => Promise<void>;
171
- resetValidation: () => Promise<void>;
172
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
173
- isValid: boolean | null;
174
- errorMessages: string[];
175
- }[], import("../../composables/form").FormField[] | {
176
- id: number | string;
177
- validate: () => Promise<string[]>;
178
- reset: () => Promise<void>;
179
- resetValidation: () => Promise<void>;
180
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
181
- isValid: boolean | null;
182
- errorMessages: string[];
183
- }[]>;
184
- validate: () => Promise<{
185
- valid: boolean;
186
- errors: {
187
- id: number | string;
188
- errorMessages: string[];
189
- }[];
190
- }>;
94
+ errors: FieldValidationResult[];
95
+ isDisabled: boolean;
96
+ isReadonly: boolean;
97
+ isValidating: boolean;
98
+ isValid: boolean | null;
99
+ items: FormField[];
100
+ validate: () => Promise<FormValidationResult>;
191
101
  reset: () => void;
192
102
  resetValidation: () => void;
193
103
  }) => import("vue").VNodeChild) | undefined;
194
104
  } | undefined;
195
105
  } & {
196
106
  "v-slot:default"?: false | ((arg: {
197
- errors: import("vue").Ref<{
198
- id: number | string;
199
- errorMessages: string[];
200
- }[], import("../../composables/form").FieldValidationResult[] | {
201
- id: number | string;
202
- errorMessages: string[];
203
- }[]>;
204
- isDisabled: import("vue").ComputedRef<boolean>;
205
- isReadonly: import("vue").ComputedRef<boolean>;
206
- isValidating: import("vue").ShallowRef<boolean, boolean>;
207
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
208
- readonly externalValue: boolean | null;
209
- };
210
- items: import("vue").Ref<{
211
- id: number | string;
212
- validate: () => Promise<string[]>;
213
- reset: () => Promise<void>;
214
- resetValidation: () => Promise<void>;
215
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
216
- isValid: boolean | null;
217
- errorMessages: string[];
218
- }[], import("../../composables/form").FormField[] | {
219
- id: number | string;
220
- validate: () => Promise<string[]>;
221
- reset: () => Promise<void>;
222
- resetValidation: () => Promise<void>;
223
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
224
- isValid: boolean | null;
225
- errorMessages: string[];
226
- }[]>;
227
- validate: () => Promise<{
228
- valid: boolean;
229
- errors: {
230
- id: number | string;
231
- errorMessages: string[];
232
- }[];
233
- }>;
107
+ errors: FieldValidationResult[];
108
+ isDisabled: boolean;
109
+ isReadonly: boolean;
110
+ isValidating: boolean;
111
+ isValid: boolean | null;
112
+ items: FormField[];
113
+ validate: () => Promise<FormValidationResult>;
234
114
  reset: () => void;
235
115
  resetValidation: () => void;
236
116
  }) => import("vue").VNodeChild) | undefined;
@@ -241,7 +121,7 @@ export declare const VForm: {
241
121
  errors: import("vue").Ref<{
242
122
  id: number | string;
243
123
  errorMessages: string[];
244
- }[], import("../../composables/form").FieldValidationResult[] | {
124
+ }[], FieldValidationResult[] | {
245
125
  id: number | string;
246
126
  errorMessages: string[];
247
127
  }[]>;
@@ -259,7 +139,7 @@ export declare const VForm: {
259
139
  vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
260
140
  isValid: boolean | null;
261
141
  errorMessages: string[];
262
- }[], import("../../composables/form").FormField[] | {
142
+ }[], FormField[] | {
263
143
  id: number | string;
264
144
  validate: () => Promise<string[]>;
265
145
  reset: () => Promise<void>;
@@ -282,7 +162,7 @@ export declare const VForm: {
282
162
  errors: import("vue").Ref<{
283
163
  id: number | string;
284
164
  errorMessages: string[];
285
- }[], import("../../composables/form").FieldValidationResult[] | {
165
+ }[], FieldValidationResult[] | {
286
166
  id: number | string;
287
167
  errorMessages: string[];
288
168
  }[]>;
@@ -300,7 +180,7 @@ export declare const VForm: {
300
180
  vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
301
181
  isValid: boolean | null;
302
182
  errorMessages: string[];
303
- }[], import("../../composables/form").FormField[] | {
183
+ }[], FormField[] | {
304
184
  id: number | string;
305
185
  validate: () => Promise<string[]>;
306
186
  reset: () => Promise<void>;
@@ -331,43 +211,13 @@ export declare const VForm: {
331
211
  fastFail: boolean;
332
212
  }, true, {}, import("vue").SlotsType<Partial<{
333
213
  default: (arg: {
334
- errors: import("vue").Ref<{
335
- id: number | string;
336
- errorMessages: string[];
337
- }[], import("../../composables/form").FieldValidationResult[] | {
338
- id: number | string;
339
- errorMessages: string[];
340
- }[]>;
341
- isDisabled: import("vue").ComputedRef<boolean>;
342
- isReadonly: import("vue").ComputedRef<boolean>;
343
- isValidating: import("vue").ShallowRef<boolean, boolean>;
344
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
345
- readonly externalValue: boolean | null;
346
- };
347
- items: import("vue").Ref<{
348
- id: number | string;
349
- validate: () => Promise<string[]>;
350
- reset: () => Promise<void>;
351
- resetValidation: () => Promise<void>;
352
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
353
- isValid: boolean | null;
354
- errorMessages: string[];
355
- }[], import("../../composables/form").FormField[] | {
356
- id: number | string;
357
- validate: () => Promise<string[]>;
358
- reset: () => Promise<void>;
359
- resetValidation: () => Promise<void>;
360
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
361
- isValid: boolean | null;
362
- errorMessages: string[];
363
- }[]>;
364
- validate: () => Promise<{
365
- valid: boolean;
366
- errors: {
367
- id: number | string;
368
- errorMessages: string[];
369
- }[];
370
- }>;
214
+ errors: FieldValidationResult[];
215
+ isDisabled: boolean;
216
+ isReadonly: boolean;
217
+ isValidating: boolean;
218
+ isValid: boolean | null;
219
+ items: FormField[];
220
+ validate: () => Promise<FormValidationResult>;
371
221
  reset: () => void;
372
222
  resetValidation: () => void;
373
223
  }) => import("vue").VNode[];
@@ -390,169 +240,49 @@ export declare const VForm: {
390
240
  } & {
391
241
  $children?: import("vue").VNodeChild | {
392
242
  default?: ((arg: {
393
- errors: import("vue").Ref<{
394
- id: number | string;
395
- errorMessages: string[];
396
- }[], import("../../composables/form").FieldValidationResult[] | {
397
- id: number | string;
398
- errorMessages: string[];
399
- }[]>;
400
- isDisabled: import("vue").ComputedRef<boolean>;
401
- isReadonly: import("vue").ComputedRef<boolean>;
402
- isValidating: import("vue").ShallowRef<boolean, boolean>;
403
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
404
- readonly externalValue: boolean | null;
405
- };
406
- items: import("vue").Ref<{
407
- id: number | string;
408
- validate: () => Promise<string[]>;
409
- reset: () => Promise<void>;
410
- resetValidation: () => Promise<void>;
411
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
412
- isValid: boolean | null;
413
- errorMessages: string[];
414
- }[], import("../../composables/form").FormField[] | {
415
- id: number | string;
416
- validate: () => Promise<string[]>;
417
- reset: () => Promise<void>;
418
- resetValidation: () => Promise<void>;
419
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
420
- isValid: boolean | null;
421
- errorMessages: string[];
422
- }[]>;
423
- validate: () => Promise<{
424
- valid: boolean;
425
- errors: {
426
- id: number | string;
427
- errorMessages: string[];
428
- }[];
429
- }>;
243
+ errors: FieldValidationResult[];
244
+ isDisabled: boolean;
245
+ isReadonly: boolean;
246
+ isValidating: boolean;
247
+ isValid: boolean | null;
248
+ items: FormField[];
249
+ validate: () => Promise<FormValidationResult>;
430
250
  reset: () => void;
431
251
  resetValidation: () => void;
432
252
  }) => import("vue").VNodeChild) | undefined;
433
253
  } | ((arg: {
434
- errors: import("vue").Ref<{
435
- id: number | string;
436
- errorMessages: string[];
437
- }[], import("../../composables/form").FieldValidationResult[] | {
438
- id: number | string;
439
- errorMessages: string[];
440
- }[]>;
441
- isDisabled: import("vue").ComputedRef<boolean>;
442
- isReadonly: import("vue").ComputedRef<boolean>;
443
- isValidating: import("vue").ShallowRef<boolean, boolean>;
444
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
445
- readonly externalValue: boolean | null;
446
- };
447
- items: import("vue").Ref<{
448
- id: number | string;
449
- validate: () => Promise<string[]>;
450
- reset: () => Promise<void>;
451
- resetValidation: () => Promise<void>;
452
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
453
- isValid: boolean | null;
454
- errorMessages: string[];
455
- }[], import("../../composables/form").FormField[] | {
456
- id: number | string;
457
- validate: () => Promise<string[]>;
458
- reset: () => Promise<void>;
459
- resetValidation: () => Promise<void>;
460
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
461
- isValid: boolean | null;
462
- errorMessages: string[];
463
- }[]>;
464
- validate: () => Promise<{
465
- valid: boolean;
466
- errors: {
467
- id: number | string;
468
- errorMessages: string[];
469
- }[];
470
- }>;
254
+ errors: FieldValidationResult[];
255
+ isDisabled: boolean;
256
+ isReadonly: boolean;
257
+ isValidating: boolean;
258
+ isValid: boolean | null;
259
+ items: FormField[];
260
+ validate: () => Promise<FormValidationResult>;
471
261
  reset: () => void;
472
262
  resetValidation: () => void;
473
263
  }) => import("vue").VNodeChild);
474
264
  'v-slots'?: {
475
265
  default?: false | ((arg: {
476
- errors: import("vue").Ref<{
477
- id: number | string;
478
- errorMessages: string[];
479
- }[], import("../../composables/form").FieldValidationResult[] | {
480
- id: number | string;
481
- errorMessages: string[];
482
- }[]>;
483
- isDisabled: import("vue").ComputedRef<boolean>;
484
- isReadonly: import("vue").ComputedRef<boolean>;
485
- isValidating: import("vue").ShallowRef<boolean, boolean>;
486
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
487
- readonly externalValue: boolean | null;
488
- };
489
- items: import("vue").Ref<{
490
- id: number | string;
491
- validate: () => Promise<string[]>;
492
- reset: () => Promise<void>;
493
- resetValidation: () => Promise<void>;
494
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
495
- isValid: boolean | null;
496
- errorMessages: string[];
497
- }[], import("../../composables/form").FormField[] | {
498
- id: number | string;
499
- validate: () => Promise<string[]>;
500
- reset: () => Promise<void>;
501
- resetValidation: () => Promise<void>;
502
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
503
- isValid: boolean | null;
504
- errorMessages: string[];
505
- }[]>;
506
- validate: () => Promise<{
507
- valid: boolean;
508
- errors: {
509
- id: number | string;
510
- errorMessages: string[];
511
- }[];
512
- }>;
266
+ errors: FieldValidationResult[];
267
+ isDisabled: boolean;
268
+ isReadonly: boolean;
269
+ isValidating: boolean;
270
+ isValid: boolean | null;
271
+ items: FormField[];
272
+ validate: () => Promise<FormValidationResult>;
513
273
  reset: () => void;
514
274
  resetValidation: () => void;
515
275
  }) => import("vue").VNodeChild) | undefined;
516
276
  } | undefined;
517
277
  } & {
518
278
  "v-slot:default"?: false | ((arg: {
519
- errors: import("vue").Ref<{
520
- id: number | string;
521
- errorMessages: string[];
522
- }[], import("../../composables/form").FieldValidationResult[] | {
523
- id: number | string;
524
- errorMessages: string[];
525
- }[]>;
526
- isDisabled: import("vue").ComputedRef<boolean>;
527
- isReadonly: import("vue").ComputedRef<boolean>;
528
- isValidating: import("vue").ShallowRef<boolean, boolean>;
529
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
530
- readonly externalValue: boolean | null;
531
- };
532
- items: import("vue").Ref<{
533
- id: number | string;
534
- validate: () => Promise<string[]>;
535
- reset: () => Promise<void>;
536
- resetValidation: () => Promise<void>;
537
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
538
- isValid: boolean | null;
539
- errorMessages: string[];
540
- }[], import("../../composables/form").FormField[] | {
541
- id: number | string;
542
- validate: () => Promise<string[]>;
543
- reset: () => Promise<void>;
544
- resetValidation: () => Promise<void>;
545
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
546
- isValid: boolean | null;
547
- errorMessages: string[];
548
- }[]>;
549
- validate: () => Promise<{
550
- valid: boolean;
551
- errors: {
552
- id: number | string;
553
- errorMessages: string[];
554
- }[];
555
- }>;
279
+ errors: FieldValidationResult[];
280
+ isDisabled: boolean;
281
+ isReadonly: boolean;
282
+ isValidating: boolean;
283
+ isValid: boolean | null;
284
+ items: FormField[];
285
+ validate: () => Promise<FormValidationResult>;
556
286
  reset: () => void;
557
287
  resetValidation: () => void;
558
288
  }) => import("vue").VNodeChild) | undefined;
@@ -563,7 +293,7 @@ export declare const VForm: {
563
293
  errors: import("vue").Ref<{
564
294
  id: number | string;
565
295
  errorMessages: string[];
566
- }[], import("../../composables/form").FieldValidationResult[] | {
296
+ }[], FieldValidationResult[] | {
567
297
  id: number | string;
568
298
  errorMessages: string[];
569
299
  }[]>;
@@ -581,7 +311,7 @@ export declare const VForm: {
581
311
  vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
582
312
  isValid: boolean | null;
583
313
  errorMessages: string[];
584
- }[], import("../../composables/form").FormField[] | {
314
+ }[], FormField[] | {
585
315
  id: number | string;
586
316
  validate: () => Promise<string[]>;
587
317
  reset: () => Promise<void>;
@@ -604,7 +334,7 @@ export declare const VForm: {
604
334
  errors: import("vue").Ref<{
605
335
  id: number | string;
606
336
  errorMessages: string[];
607
- }[], import("../../composables/form").FieldValidationResult[] | {
337
+ }[], FieldValidationResult[] | {
608
338
  id: number | string;
609
339
  errorMessages: string[];
610
340
  }[]>;
@@ -622,7 +352,7 @@ export declare const VForm: {
622
352
  vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
623
353
  isValid: boolean | null;
624
354
  errorMessages: string[];
625
- }[], import("../../composables/form").FormField[] | {
355
+ }[], FormField[] | {
626
356
  id: number | string;
627
357
  validate: () => Promise<string[]>;
628
358
  reset: () => Promise<void>;
@@ -664,169 +394,49 @@ export declare const VForm: {
664
394
  } & {
665
395
  $children?: import("vue").VNodeChild | {
666
396
  default?: ((arg: {
667
- errors: import("vue").Ref<{
668
- id: number | string;
669
- errorMessages: string[];
670
- }[], import("../../composables/form").FieldValidationResult[] | {
671
- id: number | string;
672
- errorMessages: string[];
673
- }[]>;
674
- isDisabled: import("vue").ComputedRef<boolean>;
675
- isReadonly: import("vue").ComputedRef<boolean>;
676
- isValidating: import("vue").ShallowRef<boolean, boolean>;
677
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
678
- readonly externalValue: boolean | null;
679
- };
680
- items: import("vue").Ref<{
681
- id: number | string;
682
- validate: () => Promise<string[]>;
683
- reset: () => Promise<void>;
684
- resetValidation: () => Promise<void>;
685
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
686
- isValid: boolean | null;
687
- errorMessages: string[];
688
- }[], import("../../composables/form").FormField[] | {
689
- id: number | string;
690
- validate: () => Promise<string[]>;
691
- reset: () => Promise<void>;
692
- resetValidation: () => Promise<void>;
693
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
694
- isValid: boolean | null;
695
- errorMessages: string[];
696
- }[]>;
697
- validate: () => Promise<{
698
- valid: boolean;
699
- errors: {
700
- id: number | string;
701
- errorMessages: string[];
702
- }[];
703
- }>;
397
+ errors: FieldValidationResult[];
398
+ isDisabled: boolean;
399
+ isReadonly: boolean;
400
+ isValidating: boolean;
401
+ isValid: boolean | null;
402
+ items: FormField[];
403
+ validate: () => Promise<FormValidationResult>;
704
404
  reset: () => void;
705
405
  resetValidation: () => void;
706
406
  }) => import("vue").VNodeChild) | undefined;
707
407
  } | ((arg: {
708
- errors: import("vue").Ref<{
709
- id: number | string;
710
- errorMessages: string[];
711
- }[], import("../../composables/form").FieldValidationResult[] | {
712
- id: number | string;
713
- errorMessages: string[];
714
- }[]>;
715
- isDisabled: import("vue").ComputedRef<boolean>;
716
- isReadonly: import("vue").ComputedRef<boolean>;
717
- isValidating: import("vue").ShallowRef<boolean, boolean>;
718
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
719
- readonly externalValue: boolean | null;
720
- };
721
- items: import("vue").Ref<{
722
- id: number | string;
723
- validate: () => Promise<string[]>;
724
- reset: () => Promise<void>;
725
- resetValidation: () => Promise<void>;
726
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
727
- isValid: boolean | null;
728
- errorMessages: string[];
729
- }[], import("../../composables/form").FormField[] | {
730
- id: number | string;
731
- validate: () => Promise<string[]>;
732
- reset: () => Promise<void>;
733
- resetValidation: () => Promise<void>;
734
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
735
- isValid: boolean | null;
736
- errorMessages: string[];
737
- }[]>;
738
- validate: () => Promise<{
739
- valid: boolean;
740
- errors: {
741
- id: number | string;
742
- errorMessages: string[];
743
- }[];
744
- }>;
408
+ errors: FieldValidationResult[];
409
+ isDisabled: boolean;
410
+ isReadonly: boolean;
411
+ isValidating: boolean;
412
+ isValid: boolean | null;
413
+ items: FormField[];
414
+ validate: () => Promise<FormValidationResult>;
745
415
  reset: () => void;
746
416
  resetValidation: () => void;
747
417
  }) => import("vue").VNodeChild);
748
418
  'v-slots'?: {
749
419
  default?: false | ((arg: {
750
- errors: import("vue").Ref<{
751
- id: number | string;
752
- errorMessages: string[];
753
- }[], import("../../composables/form").FieldValidationResult[] | {
754
- id: number | string;
755
- errorMessages: string[];
756
- }[]>;
757
- isDisabled: import("vue").ComputedRef<boolean>;
758
- isReadonly: import("vue").ComputedRef<boolean>;
759
- isValidating: import("vue").ShallowRef<boolean, boolean>;
760
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
761
- readonly externalValue: boolean | null;
762
- };
763
- items: import("vue").Ref<{
764
- id: number | string;
765
- validate: () => Promise<string[]>;
766
- reset: () => Promise<void>;
767
- resetValidation: () => Promise<void>;
768
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
769
- isValid: boolean | null;
770
- errorMessages: string[];
771
- }[], import("../../composables/form").FormField[] | {
772
- id: number | string;
773
- validate: () => Promise<string[]>;
774
- reset: () => Promise<void>;
775
- resetValidation: () => Promise<void>;
776
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
777
- isValid: boolean | null;
778
- errorMessages: string[];
779
- }[]>;
780
- validate: () => Promise<{
781
- valid: boolean;
782
- errors: {
783
- id: number | string;
784
- errorMessages: string[];
785
- }[];
786
- }>;
420
+ errors: FieldValidationResult[];
421
+ isDisabled: boolean;
422
+ isReadonly: boolean;
423
+ isValidating: boolean;
424
+ isValid: boolean | null;
425
+ items: FormField[];
426
+ validate: () => Promise<FormValidationResult>;
787
427
  reset: () => void;
788
428
  resetValidation: () => void;
789
429
  }) => import("vue").VNodeChild) | undefined;
790
430
  } | undefined;
791
431
  } & {
792
432
  "v-slot:default"?: false | ((arg: {
793
- errors: import("vue").Ref<{
794
- id: number | string;
795
- errorMessages: string[];
796
- }[], import("../../composables/form").FieldValidationResult[] | {
797
- id: number | string;
798
- errorMessages: string[];
799
- }[]>;
800
- isDisabled: import("vue").ComputedRef<boolean>;
801
- isReadonly: import("vue").ComputedRef<boolean>;
802
- isValidating: import("vue").ShallowRef<boolean, boolean>;
803
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
804
- readonly externalValue: boolean | null;
805
- };
806
- items: import("vue").Ref<{
807
- id: number | string;
808
- validate: () => Promise<string[]>;
809
- reset: () => Promise<void>;
810
- resetValidation: () => Promise<void>;
811
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
812
- isValid: boolean | null;
813
- errorMessages: string[];
814
- }[], import("../../composables/form").FormField[] | {
815
- id: number | string;
816
- validate: () => Promise<string[]>;
817
- reset: () => Promise<void>;
818
- resetValidation: () => Promise<void>;
819
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
820
- isValid: boolean | null;
821
- errorMessages: string[];
822
- }[]>;
823
- validate: () => Promise<{
824
- valid: boolean;
825
- errors: {
826
- id: number | string;
827
- errorMessages: string[];
828
- }[];
829
- }>;
433
+ errors: FieldValidationResult[];
434
+ isDisabled: boolean;
435
+ isReadonly: boolean;
436
+ isValidating: boolean;
437
+ isValid: boolean | null;
438
+ items: FormField[];
439
+ validate: () => Promise<FormValidationResult>;
830
440
  reset: () => void;
831
441
  resetValidation: () => void;
832
442
  }) => import("vue").VNodeChild) | undefined;
@@ -837,7 +447,7 @@ export declare const VForm: {
837
447
  errors: import("vue").Ref<{
838
448
  id: number | string;
839
449
  errorMessages: string[];
840
- }[], import("../../composables/form").FieldValidationResult[] | {
450
+ }[], FieldValidationResult[] | {
841
451
  id: number | string;
842
452
  errorMessages: string[];
843
453
  }[]>;
@@ -855,7 +465,7 @@ export declare const VForm: {
855
465
  vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
856
466
  isValid: boolean | null;
857
467
  errorMessages: string[];
858
- }[], import("../../composables/form").FormField[] | {
468
+ }[], FormField[] | {
859
469
  id: number | string;
860
470
  validate: () => Promise<string[]>;
861
471
  reset: () => Promise<void>;
@@ -878,7 +488,7 @@ export declare const VForm: {
878
488
  errors: import("vue").Ref<{
879
489
  id: number | string;
880
490
  errorMessages: string[];
881
- }[], import("../../composables/form").FieldValidationResult[] | {
491
+ }[], FieldValidationResult[] | {
882
492
  id: number | string;
883
493
  errorMessages: string[];
884
494
  }[]>;
@@ -896,7 +506,7 @@ export declare const VForm: {
896
506
  vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
897
507
  isValid: boolean | null;
898
508
  errorMessages: string[];
899
- }[], import("../../composables/form").FormField[] | {
509
+ }[], FormField[] | {
900
510
  id: number | string;
901
511
  validate: () => Promise<string[]>;
902
512
  reset: () => Promise<void>;
@@ -927,43 +537,13 @@ export declare const VForm: {
927
537
  fastFail: boolean;
928
538
  }, {}, string, import("vue").SlotsType<Partial<{
929
539
  default: (arg: {
930
- errors: import("vue").Ref<{
931
- id: number | string;
932
- errorMessages: string[];
933
- }[], import("../../composables/form").FieldValidationResult[] | {
934
- id: number | string;
935
- errorMessages: string[];
936
- }[]>;
937
- isDisabled: import("vue").ComputedRef<boolean>;
938
- isReadonly: import("vue").ComputedRef<boolean>;
939
- isValidating: import("vue").ShallowRef<boolean, boolean>;
940
- isValid: import("vue").Ref<boolean | null, boolean | null> & {
941
- readonly externalValue: boolean | null;
942
- };
943
- items: import("vue").Ref<{
944
- id: number | string;
945
- validate: () => Promise<string[]>;
946
- reset: () => Promise<void>;
947
- resetValidation: () => Promise<void>;
948
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
949
- isValid: boolean | null;
950
- errorMessages: string[];
951
- }[], import("../../composables/form").FormField[] | {
952
- id: number | string;
953
- validate: () => Promise<string[]>;
954
- reset: () => Promise<void>;
955
- resetValidation: () => Promise<void>;
956
- vm: import("vue").Raw<import("vue").ComponentInternalInstance>;
957
- isValid: boolean | null;
958
- errorMessages: string[];
959
- }[]>;
960
- validate: () => Promise<{
961
- valid: boolean;
962
- errors: {
963
- id: number | string;
964
- errorMessages: string[];
965
- }[];
966
- }>;
540
+ errors: FieldValidationResult[];
541
+ isDisabled: boolean;
542
+ isReadonly: boolean;
543
+ isValidating: boolean;
544
+ isValid: boolean | null;
545
+ items: FormField[];
546
+ validate: () => Promise<FormValidationResult>;
967
547
  reset: () => void;
968
548
  resetValidation: () => void;
969
549
  }) => import("vue").VNode[];