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

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 +3632 -3632
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +174 -174
  5. package/dist/json/web-types.json +6553 -6517
  6. package/dist/vuetify-labs.css +3094 -3095
  7. package/dist/vuetify-labs.d.ts +295 -688
  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 +4486 -4487
  13. package/dist/vuetify.d.ts +350 -743
  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 +61 -61
  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
@@ -8014,17 +8014,20 @@ declare const VAutocomplete: {
8014
8014
  'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
8015
8015
  'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
8016
8016
  item: (arg: {
8017
- item: ListItem<unknown>;
8017
+ item: unknown;
8018
+ internalItem: ListItem<unknown>;
8018
8019
  index: number;
8019
8020
  props: Record<string, unknown>;
8020
8021
  }) => vue.VNode[];
8021
8022
  chip: (arg: {
8022
- item: ListItem<unknown>;
8023
+ item: unknown;
8024
+ internalItem: ListItem<unknown>;
8023
8025
  index: number;
8024
8026
  props: Record<string, unknown>;
8025
8027
  }) => vue.VNode[];
8026
8028
  selection: (arg: {
8027
- item: ListItem<unknown>;
8029
+ item: unknown;
8030
+ internalItem: ListItem<unknown>;
8028
8031
  index: number;
8029
8032
  }) => vue.VNode[];
8030
8033
  'prepend-item': () => vue.VNode[];
@@ -8888,17 +8891,20 @@ declare const VAutocomplete: {
8888
8891
  'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
8889
8892
  'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
8890
8893
  item: (arg: {
8891
- item: ListItem<unknown>;
8894
+ item: unknown;
8895
+ internalItem: ListItem<unknown>;
8892
8896
  index: number;
8893
8897
  props: Record<string, unknown>;
8894
8898
  }) => vue.VNode[];
8895
8899
  chip: (arg: {
8896
- item: ListItem<unknown>;
8900
+ item: unknown;
8901
+ internalItem: ListItem<unknown>;
8897
8902
  index: number;
8898
8903
  props: Record<string, unknown>;
8899
8904
  }) => vue.VNode[];
8900
8905
  selection: (arg: {
8901
- item: ListItem<unknown>;
8906
+ item: unknown;
8907
+ internalItem: ListItem<unknown>;
8902
8908
  index: number;
8903
8909
  }) => vue.VNode[];
8904
8910
  'prepend-item': () => vue.VNode[];
@@ -8915,17 +8921,20 @@ declare const VAutocomplete: {
8915
8921
  "onUpdate:modelValue"?: (value: V) => void;
8916
8922
  }, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
8917
8923
  item: {
8918
- item: ListItem<Item>;
8924
+ item: Item;
8925
+ internalItem: ListItem<Item>;
8919
8926
  index: number;
8920
8927
  props: Record<string, unknown>;
8921
8928
  };
8922
8929
  chip: {
8923
- item: ListItem<Item>;
8930
+ item: Item;
8931
+ internalItem: ListItem<Item>;
8924
8932
  index: number;
8925
8933
  props: Record<string, unknown>;
8926
8934
  };
8927
8935
  selection: {
8928
- item: ListItem<Item>;
8936
+ item: Item;
8937
+ internalItem: ListItem<Item>;
8929
8938
  index: number;
8930
8939
  };
8931
8940
  "prepend-item": never;
@@ -18074,17 +18083,20 @@ declare const VCombobox: {
18074
18083
  'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
18075
18084
  'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
18076
18085
  item: (arg: {
18077
- item: ListItem<unknown>;
18086
+ item: unknown;
18087
+ internalItem: ListItem<unknown>;
18078
18088
  index: number;
18079
18089
  props: Record<string, unknown>;
18080
18090
  }) => vue.VNode[];
18081
18091
  chip: (arg: {
18082
- item: ListItem<unknown>;
18092
+ item: unknown;
18093
+ internalItem: ListItem<unknown>;
18083
18094
  index: number;
18084
18095
  props: Record<string, unknown>;
18085
18096
  }) => vue.VNode[];
18086
18097
  selection: (arg: {
18087
- item: ListItem<unknown>;
18098
+ item: unknown;
18099
+ internalItem: ListItem<unknown>;
18088
18100
  index: number;
18089
18101
  }) => vue.VNode[];
18090
18102
  'prepend-item': () => vue.VNode[];
@@ -18948,17 +18960,20 @@ declare const VCombobox: {
18948
18960
  'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
18949
18961
  'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
18950
18962
  item: (arg: {
18951
- item: ListItem<unknown>;
18963
+ item: unknown;
18964
+ internalItem: ListItem<unknown>;
18952
18965
  index: number;
18953
18966
  props: Record<string, unknown>;
18954
18967
  }) => vue.VNode[];
18955
18968
  chip: (arg: {
18956
- item: ListItem<unknown>;
18969
+ item: unknown;
18970
+ internalItem: ListItem<unknown>;
18957
18971
  index: number;
18958
18972
  props: Record<string, unknown>;
18959
18973
  }) => vue.VNode[];
18960
18974
  selection: (arg: {
18961
- item: ListItem<unknown>;
18975
+ item: unknown;
18976
+ internalItem: ListItem<unknown>;
18962
18977
  index: number;
18963
18978
  }) => vue.VNode[];
18964
18979
  'prepend-item': () => vue.VNode[];
@@ -18975,17 +18990,20 @@ declare const VCombobox: {
18975
18990
  "onUpdate:modelValue"?: (value: V) => void;
18976
18991
  }, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
18977
18992
  item: {
18978
- item: ListItem<Item>;
18993
+ item: Item;
18994
+ internalItem: ListItem<Item>;
18979
18995
  index: number;
18980
18996
  props: Record<string, unknown>;
18981
18997
  };
18982
18998
  chip: {
18983
- item: ListItem<Item>;
18999
+ item: Item;
19000
+ internalItem: ListItem<Item>;
18984
19001
  index: number;
18985
19002
  props: Record<string, unknown>;
18986
19003
  };
18987
19004
  selection: {
18988
- item: ListItem<Item>;
19005
+ item: Item;
19006
+ internalItem: ListItem<Item>;
18989
19007
  index: number;
18990
19008
  };
18991
19009
  "prepend-item": never;
@@ -31076,169 +31094,49 @@ declare const VForm: {
31076
31094
  } & {
31077
31095
  $children?: vue.VNodeChild | {
31078
31096
  default?: ((arg: {
31079
- errors: vue.Ref<{
31080
- id: number | string;
31081
- errorMessages: string[];
31082
- }[], FieldValidationResult[] | {
31083
- id: number | string;
31084
- errorMessages: string[];
31085
- }[]>;
31086
- isDisabled: vue.ComputedRef<boolean>;
31087
- isReadonly: vue.ComputedRef<boolean>;
31088
- isValidating: vue.ShallowRef<boolean, boolean>;
31089
- isValid: vue.Ref<boolean | null, boolean | null> & {
31090
- readonly externalValue: boolean | null;
31091
- };
31092
- items: vue.Ref<{
31093
- id: number | string;
31094
- validate: () => Promise<string[]>;
31095
- reset: () => Promise<void>;
31096
- resetValidation: () => Promise<void>;
31097
- vm: vue.Raw<vue.ComponentInternalInstance>;
31098
- isValid: boolean | null;
31099
- errorMessages: string[];
31100
- }[], FormField[] | {
31101
- id: number | string;
31102
- validate: () => Promise<string[]>;
31103
- reset: () => Promise<void>;
31104
- resetValidation: () => Promise<void>;
31105
- vm: vue.Raw<vue.ComponentInternalInstance>;
31106
- isValid: boolean | null;
31107
- errorMessages: string[];
31108
- }[]>;
31109
- validate: () => Promise<{
31110
- valid: boolean;
31111
- errors: {
31112
- id: number | string;
31113
- errorMessages: string[];
31114
- }[];
31115
- }>;
31097
+ errors: FieldValidationResult[];
31098
+ isDisabled: boolean;
31099
+ isReadonly: boolean;
31100
+ isValidating: boolean;
31101
+ isValid: boolean | null;
31102
+ items: FormField[];
31103
+ validate: () => Promise<FormValidationResult>;
31116
31104
  reset: () => void;
31117
31105
  resetValidation: () => void;
31118
31106
  }) => vue.VNodeChild) | undefined;
31119
31107
  } | ((arg: {
31120
- errors: vue.Ref<{
31121
- id: number | string;
31122
- errorMessages: string[];
31123
- }[], FieldValidationResult[] | {
31124
- id: number | string;
31125
- errorMessages: string[];
31126
- }[]>;
31127
- isDisabled: vue.ComputedRef<boolean>;
31128
- isReadonly: vue.ComputedRef<boolean>;
31129
- isValidating: vue.ShallowRef<boolean, boolean>;
31130
- isValid: vue.Ref<boolean | null, boolean | null> & {
31131
- readonly externalValue: boolean | null;
31132
- };
31133
- items: vue.Ref<{
31134
- id: number | string;
31135
- validate: () => Promise<string[]>;
31136
- reset: () => Promise<void>;
31137
- resetValidation: () => Promise<void>;
31138
- vm: vue.Raw<vue.ComponentInternalInstance>;
31139
- isValid: boolean | null;
31140
- errorMessages: string[];
31141
- }[], FormField[] | {
31142
- id: number | string;
31143
- validate: () => Promise<string[]>;
31144
- reset: () => Promise<void>;
31145
- resetValidation: () => Promise<void>;
31146
- vm: vue.Raw<vue.ComponentInternalInstance>;
31147
- isValid: boolean | null;
31148
- errorMessages: string[];
31149
- }[]>;
31150
- validate: () => Promise<{
31151
- valid: boolean;
31152
- errors: {
31153
- id: number | string;
31154
- errorMessages: string[];
31155
- }[];
31156
- }>;
31108
+ errors: FieldValidationResult[];
31109
+ isDisabled: boolean;
31110
+ isReadonly: boolean;
31111
+ isValidating: boolean;
31112
+ isValid: boolean | null;
31113
+ items: FormField[];
31114
+ validate: () => Promise<FormValidationResult>;
31157
31115
  reset: () => void;
31158
31116
  resetValidation: () => void;
31159
31117
  }) => vue.VNodeChild);
31160
31118
  'v-slots'?: {
31161
31119
  default?: false | ((arg: {
31162
- errors: vue.Ref<{
31163
- id: number | string;
31164
- errorMessages: string[];
31165
- }[], FieldValidationResult[] | {
31166
- id: number | string;
31167
- errorMessages: string[];
31168
- }[]>;
31169
- isDisabled: vue.ComputedRef<boolean>;
31170
- isReadonly: vue.ComputedRef<boolean>;
31171
- isValidating: vue.ShallowRef<boolean, boolean>;
31172
- isValid: vue.Ref<boolean | null, boolean | null> & {
31173
- readonly externalValue: boolean | null;
31174
- };
31175
- items: vue.Ref<{
31176
- id: number | string;
31177
- validate: () => Promise<string[]>;
31178
- reset: () => Promise<void>;
31179
- resetValidation: () => Promise<void>;
31180
- vm: vue.Raw<vue.ComponentInternalInstance>;
31181
- isValid: boolean | null;
31182
- errorMessages: string[];
31183
- }[], FormField[] | {
31184
- id: number | string;
31185
- validate: () => Promise<string[]>;
31186
- reset: () => Promise<void>;
31187
- resetValidation: () => Promise<void>;
31188
- vm: vue.Raw<vue.ComponentInternalInstance>;
31189
- isValid: boolean | null;
31190
- errorMessages: string[];
31191
- }[]>;
31192
- validate: () => Promise<{
31193
- valid: boolean;
31194
- errors: {
31195
- id: number | string;
31196
- errorMessages: string[];
31197
- }[];
31198
- }>;
31120
+ errors: FieldValidationResult[];
31121
+ isDisabled: boolean;
31122
+ isReadonly: boolean;
31123
+ isValidating: boolean;
31124
+ isValid: boolean | null;
31125
+ items: FormField[];
31126
+ validate: () => Promise<FormValidationResult>;
31199
31127
  reset: () => void;
31200
31128
  resetValidation: () => void;
31201
31129
  }) => vue.VNodeChild) | undefined;
31202
31130
  } | undefined;
31203
31131
  } & {
31204
31132
  "v-slot:default"?: false | ((arg: {
31205
- errors: vue.Ref<{
31206
- id: number | string;
31207
- errorMessages: string[];
31208
- }[], FieldValidationResult[] | {
31209
- id: number | string;
31210
- errorMessages: string[];
31211
- }[]>;
31212
- isDisabled: vue.ComputedRef<boolean>;
31213
- isReadonly: vue.ComputedRef<boolean>;
31214
- isValidating: vue.ShallowRef<boolean, boolean>;
31215
- isValid: vue.Ref<boolean | null, boolean | null> & {
31216
- readonly externalValue: boolean | null;
31217
- };
31218
- items: vue.Ref<{
31219
- id: number | string;
31220
- validate: () => Promise<string[]>;
31221
- reset: () => Promise<void>;
31222
- resetValidation: () => Promise<void>;
31223
- vm: vue.Raw<vue.ComponentInternalInstance>;
31224
- isValid: boolean | null;
31225
- errorMessages: string[];
31226
- }[], FormField[] | {
31227
- id: number | string;
31228
- validate: () => Promise<string[]>;
31229
- reset: () => Promise<void>;
31230
- resetValidation: () => Promise<void>;
31231
- vm: vue.Raw<vue.ComponentInternalInstance>;
31232
- isValid: boolean | null;
31233
- errorMessages: string[];
31234
- }[]>;
31235
- validate: () => Promise<{
31236
- valid: boolean;
31237
- errors: {
31238
- id: number | string;
31239
- errorMessages: string[];
31240
- }[];
31241
- }>;
31133
+ errors: FieldValidationResult[];
31134
+ isDisabled: boolean;
31135
+ isReadonly: boolean;
31136
+ isValidating: boolean;
31137
+ isValid: boolean | null;
31138
+ items: FormField[];
31139
+ validate: () => Promise<FormValidationResult>;
31242
31140
  reset: () => void;
31243
31141
  resetValidation: () => void;
31244
31142
  }) => vue.VNodeChild) | undefined;
@@ -31339,43 +31237,13 @@ declare const VForm: {
31339
31237
  fastFail: boolean;
31340
31238
  }, true, {}, vue.SlotsType<Partial<{
31341
31239
  default: (arg: {
31342
- errors: vue.Ref<{
31343
- id: number | string;
31344
- errorMessages: string[];
31345
- }[], FieldValidationResult[] | {
31346
- id: number | string;
31347
- errorMessages: string[];
31348
- }[]>;
31349
- isDisabled: vue.ComputedRef<boolean>;
31350
- isReadonly: vue.ComputedRef<boolean>;
31351
- isValidating: vue.ShallowRef<boolean, boolean>;
31352
- isValid: vue.Ref<boolean | null, boolean | null> & {
31353
- readonly externalValue: boolean | null;
31354
- };
31355
- items: vue.Ref<{
31356
- id: number | string;
31357
- validate: () => Promise<string[]>;
31358
- reset: () => Promise<void>;
31359
- resetValidation: () => Promise<void>;
31360
- vm: vue.Raw<vue.ComponentInternalInstance>;
31361
- isValid: boolean | null;
31362
- errorMessages: string[];
31363
- }[], FormField[] | {
31364
- id: number | string;
31365
- validate: () => Promise<string[]>;
31366
- reset: () => Promise<void>;
31367
- resetValidation: () => Promise<void>;
31368
- vm: vue.Raw<vue.ComponentInternalInstance>;
31369
- isValid: boolean | null;
31370
- errorMessages: string[];
31371
- }[]>;
31372
- validate: () => Promise<{
31373
- valid: boolean;
31374
- errors: {
31375
- id: number | string;
31376
- errorMessages: string[];
31377
- }[];
31378
- }>;
31240
+ errors: FieldValidationResult[];
31241
+ isDisabled: boolean;
31242
+ isReadonly: boolean;
31243
+ isValidating: boolean;
31244
+ isValid: boolean | null;
31245
+ items: FormField[];
31246
+ validate: () => Promise<FormValidationResult>;
31379
31247
  reset: () => void;
31380
31248
  resetValidation: () => void;
31381
31249
  }) => vue.VNode[];
@@ -31398,169 +31266,49 @@ declare const VForm: {
31398
31266
  } & {
31399
31267
  $children?: vue.VNodeChild | {
31400
31268
  default?: ((arg: {
31401
- errors: vue.Ref<{
31402
- id: number | string;
31403
- errorMessages: string[];
31404
- }[], FieldValidationResult[] | {
31405
- id: number | string;
31406
- errorMessages: string[];
31407
- }[]>;
31408
- isDisabled: vue.ComputedRef<boolean>;
31409
- isReadonly: vue.ComputedRef<boolean>;
31410
- isValidating: vue.ShallowRef<boolean, boolean>;
31411
- isValid: vue.Ref<boolean | null, boolean | null> & {
31412
- readonly externalValue: boolean | null;
31413
- };
31414
- items: vue.Ref<{
31415
- id: number | string;
31416
- validate: () => Promise<string[]>;
31417
- reset: () => Promise<void>;
31418
- resetValidation: () => Promise<void>;
31419
- vm: vue.Raw<vue.ComponentInternalInstance>;
31420
- isValid: boolean | null;
31421
- errorMessages: string[];
31422
- }[], FormField[] | {
31423
- id: number | string;
31424
- validate: () => Promise<string[]>;
31425
- reset: () => Promise<void>;
31426
- resetValidation: () => Promise<void>;
31427
- vm: vue.Raw<vue.ComponentInternalInstance>;
31428
- isValid: boolean | null;
31429
- errorMessages: string[];
31430
- }[]>;
31431
- validate: () => Promise<{
31432
- valid: boolean;
31433
- errors: {
31434
- id: number | string;
31435
- errorMessages: string[];
31436
- }[];
31437
- }>;
31269
+ errors: FieldValidationResult[];
31270
+ isDisabled: boolean;
31271
+ isReadonly: boolean;
31272
+ isValidating: boolean;
31273
+ isValid: boolean | null;
31274
+ items: FormField[];
31275
+ validate: () => Promise<FormValidationResult>;
31438
31276
  reset: () => void;
31439
31277
  resetValidation: () => void;
31440
31278
  }) => vue.VNodeChild) | undefined;
31441
31279
  } | ((arg: {
31442
- errors: vue.Ref<{
31443
- id: number | string;
31444
- errorMessages: string[];
31445
- }[], FieldValidationResult[] | {
31446
- id: number | string;
31447
- errorMessages: string[];
31448
- }[]>;
31449
- isDisabled: vue.ComputedRef<boolean>;
31450
- isReadonly: vue.ComputedRef<boolean>;
31451
- isValidating: vue.ShallowRef<boolean, boolean>;
31452
- isValid: vue.Ref<boolean | null, boolean | null> & {
31453
- readonly externalValue: boolean | null;
31454
- };
31455
- items: vue.Ref<{
31456
- id: number | string;
31457
- validate: () => Promise<string[]>;
31458
- reset: () => Promise<void>;
31459
- resetValidation: () => Promise<void>;
31460
- vm: vue.Raw<vue.ComponentInternalInstance>;
31461
- isValid: boolean | null;
31462
- errorMessages: string[];
31463
- }[], FormField[] | {
31464
- id: number | string;
31465
- validate: () => Promise<string[]>;
31466
- reset: () => Promise<void>;
31467
- resetValidation: () => Promise<void>;
31468
- vm: vue.Raw<vue.ComponentInternalInstance>;
31469
- isValid: boolean | null;
31470
- errorMessages: string[];
31471
- }[]>;
31472
- validate: () => Promise<{
31473
- valid: boolean;
31474
- errors: {
31475
- id: number | string;
31476
- errorMessages: string[];
31477
- }[];
31478
- }>;
31280
+ errors: FieldValidationResult[];
31281
+ isDisabled: boolean;
31282
+ isReadonly: boolean;
31283
+ isValidating: boolean;
31284
+ isValid: boolean | null;
31285
+ items: FormField[];
31286
+ validate: () => Promise<FormValidationResult>;
31479
31287
  reset: () => void;
31480
31288
  resetValidation: () => void;
31481
31289
  }) => vue.VNodeChild);
31482
31290
  'v-slots'?: {
31483
31291
  default?: false | ((arg: {
31484
- errors: vue.Ref<{
31485
- id: number | string;
31486
- errorMessages: string[];
31487
- }[], FieldValidationResult[] | {
31488
- id: number | string;
31489
- errorMessages: string[];
31490
- }[]>;
31491
- isDisabled: vue.ComputedRef<boolean>;
31492
- isReadonly: vue.ComputedRef<boolean>;
31493
- isValidating: vue.ShallowRef<boolean, boolean>;
31494
- isValid: vue.Ref<boolean | null, boolean | null> & {
31495
- readonly externalValue: boolean | null;
31496
- };
31497
- items: vue.Ref<{
31498
- id: number | string;
31499
- validate: () => Promise<string[]>;
31500
- reset: () => Promise<void>;
31501
- resetValidation: () => Promise<void>;
31502
- vm: vue.Raw<vue.ComponentInternalInstance>;
31503
- isValid: boolean | null;
31504
- errorMessages: string[];
31505
- }[], FormField[] | {
31506
- id: number | string;
31507
- validate: () => Promise<string[]>;
31508
- reset: () => Promise<void>;
31509
- resetValidation: () => Promise<void>;
31510
- vm: vue.Raw<vue.ComponentInternalInstance>;
31511
- isValid: boolean | null;
31512
- errorMessages: string[];
31513
- }[]>;
31514
- validate: () => Promise<{
31515
- valid: boolean;
31516
- errors: {
31517
- id: number | string;
31518
- errorMessages: string[];
31519
- }[];
31520
- }>;
31292
+ errors: FieldValidationResult[];
31293
+ isDisabled: boolean;
31294
+ isReadonly: boolean;
31295
+ isValidating: boolean;
31296
+ isValid: boolean | null;
31297
+ items: FormField[];
31298
+ validate: () => Promise<FormValidationResult>;
31521
31299
  reset: () => void;
31522
31300
  resetValidation: () => void;
31523
31301
  }) => vue.VNodeChild) | undefined;
31524
31302
  } | undefined;
31525
31303
  } & {
31526
31304
  "v-slot:default"?: false | ((arg: {
31527
- errors: vue.Ref<{
31528
- id: number | string;
31529
- errorMessages: string[];
31530
- }[], FieldValidationResult[] | {
31531
- id: number | string;
31532
- errorMessages: string[];
31533
- }[]>;
31534
- isDisabled: vue.ComputedRef<boolean>;
31535
- isReadonly: vue.ComputedRef<boolean>;
31536
- isValidating: vue.ShallowRef<boolean, boolean>;
31537
- isValid: vue.Ref<boolean | null, boolean | null> & {
31538
- readonly externalValue: boolean | null;
31539
- };
31540
- items: vue.Ref<{
31541
- id: number | string;
31542
- validate: () => Promise<string[]>;
31543
- reset: () => Promise<void>;
31544
- resetValidation: () => Promise<void>;
31545
- vm: vue.Raw<vue.ComponentInternalInstance>;
31546
- isValid: boolean | null;
31547
- errorMessages: string[];
31548
- }[], FormField[] | {
31549
- id: number | string;
31550
- validate: () => Promise<string[]>;
31551
- reset: () => Promise<void>;
31552
- resetValidation: () => Promise<void>;
31553
- vm: vue.Raw<vue.ComponentInternalInstance>;
31554
- isValid: boolean | null;
31555
- errorMessages: string[];
31556
- }[]>;
31557
- validate: () => Promise<{
31558
- valid: boolean;
31559
- errors: {
31560
- id: number | string;
31561
- errorMessages: string[];
31562
- }[];
31563
- }>;
31305
+ errors: FieldValidationResult[];
31306
+ isDisabled: boolean;
31307
+ isReadonly: boolean;
31308
+ isValidating: boolean;
31309
+ isValid: boolean | null;
31310
+ items: FormField[];
31311
+ validate: () => Promise<FormValidationResult>;
31564
31312
  reset: () => void;
31565
31313
  resetValidation: () => void;
31566
31314
  }) => vue.VNodeChild) | undefined;
@@ -31607,236 +31355,116 @@ declare const VForm: {
31607
31355
  }>;
31608
31356
  reset: () => void;
31609
31357
  resetValidation: () => void;
31610
- } & HTMLFormElement & {
31611
- _allExposed: {
31612
- errors: vue.Ref<{
31613
- id: number | string;
31614
- errorMessages: string[];
31615
- }[], FieldValidationResult[] | {
31616
- id: number | string;
31617
- errorMessages: string[];
31618
- }[]>;
31619
- isDisabled: vue.ComputedRef<boolean>;
31620
- isReadonly: vue.ComputedRef<boolean>;
31621
- isValidating: vue.ShallowRef<boolean, boolean>;
31622
- isValid: vue.Ref<boolean | null, boolean | null> & {
31623
- readonly externalValue: boolean | null;
31624
- };
31625
- items: vue.Ref<{
31626
- id: number | string;
31627
- validate: () => Promise<string[]>;
31628
- reset: () => Promise<void>;
31629
- resetValidation: () => Promise<void>;
31630
- vm: vue.Raw<vue.ComponentInternalInstance>;
31631
- isValid: boolean | null;
31632
- errorMessages: string[];
31633
- }[], FormField[] | {
31634
- id: number | string;
31635
- validate: () => Promise<string[]>;
31636
- reset: () => Promise<void>;
31637
- resetValidation: () => Promise<void>;
31638
- vm: vue.Raw<vue.ComponentInternalInstance>;
31639
- isValid: boolean | null;
31640
- errorMessages: string[];
31641
- }[]>;
31642
- validate: () => Promise<{
31643
- valid: boolean;
31644
- errors: {
31645
- id: number | string;
31646
- errorMessages: string[];
31647
- }[];
31648
- }>;
31649
- reset: () => void;
31650
- resetValidation: () => void;
31651
- };
31652
- }, {}, {}, {}, {
31653
- style: vue.StyleValue;
31654
- disabled: boolean;
31655
- readonly: boolean;
31656
- modelValue: boolean | null;
31657
- validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
31658
- fastFail: boolean;
31659
- }>;
31660
- __isFragment?: never;
31661
- __isTeleport?: never;
31662
- __isSuspense?: never;
31663
- } & vue.ComponentOptionsBase<{
31664
- style: vue.StyleValue;
31665
- disabled: boolean;
31666
- readonly: boolean;
31667
- modelValue: boolean | null;
31668
- validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
31669
- fastFail: boolean;
31670
- } & {
31671
- class?: any;
31672
- } & {
31673
- $children?: vue.VNodeChild | {
31674
- default?: ((arg: {
31675
- errors: vue.Ref<{
31676
- id: number | string;
31677
- errorMessages: string[];
31678
- }[], FieldValidationResult[] | {
31679
- id: number | string;
31680
- errorMessages: string[];
31681
- }[]>;
31682
- isDisabled: vue.ComputedRef<boolean>;
31683
- isReadonly: vue.ComputedRef<boolean>;
31684
- isValidating: vue.ShallowRef<boolean, boolean>;
31685
- isValid: vue.Ref<boolean | null, boolean | null> & {
31686
- readonly externalValue: boolean | null;
31687
- };
31688
- items: vue.Ref<{
31689
- id: number | string;
31690
- validate: () => Promise<string[]>;
31691
- reset: () => Promise<void>;
31692
- resetValidation: () => Promise<void>;
31693
- vm: vue.Raw<vue.ComponentInternalInstance>;
31694
- isValid: boolean | null;
31695
- errorMessages: string[];
31696
- }[], FormField[] | {
31697
- id: number | string;
31698
- validate: () => Promise<string[]>;
31699
- reset: () => Promise<void>;
31700
- resetValidation: () => Promise<void>;
31701
- vm: vue.Raw<vue.ComponentInternalInstance>;
31702
- isValid: boolean | null;
31703
- errorMessages: string[];
31704
- }[]>;
31705
- validate: () => Promise<{
31706
- valid: boolean;
31707
- errors: {
31708
- id: number | string;
31709
- errorMessages: string[];
31710
- }[];
31711
- }>;
31712
- reset: () => void;
31713
- resetValidation: () => void;
31714
- }) => vue.VNodeChild) | undefined;
31715
- } | ((arg: {
31716
- errors: vue.Ref<{
31717
- id: number | string;
31718
- errorMessages: string[];
31719
- }[], FieldValidationResult[] | {
31720
- id: number | string;
31721
- errorMessages: string[];
31722
- }[]>;
31723
- isDisabled: vue.ComputedRef<boolean>;
31724
- isReadonly: vue.ComputedRef<boolean>;
31725
- isValidating: vue.ShallowRef<boolean, boolean>;
31726
- isValid: vue.Ref<boolean | null, boolean | null> & {
31727
- readonly externalValue: boolean | null;
31728
- };
31729
- items: vue.Ref<{
31730
- id: number | string;
31731
- validate: () => Promise<string[]>;
31732
- reset: () => Promise<void>;
31733
- resetValidation: () => Promise<void>;
31734
- vm: vue.Raw<vue.ComponentInternalInstance>;
31735
- isValid: boolean | null;
31736
- errorMessages: string[];
31737
- }[], FormField[] | {
31738
- id: number | string;
31739
- validate: () => Promise<string[]>;
31740
- reset: () => Promise<void>;
31741
- resetValidation: () => Promise<void>;
31742
- vm: vue.Raw<vue.ComponentInternalInstance>;
31743
- isValid: boolean | null;
31744
- errorMessages: string[];
31745
- }[]>;
31746
- validate: () => Promise<{
31747
- valid: boolean;
31748
- errors: {
31749
- id: number | string;
31750
- errorMessages: string[];
31751
- }[];
31752
- }>;
31753
- reset: () => void;
31754
- resetValidation: () => void;
31755
- }) => vue.VNodeChild);
31756
- 'v-slots'?: {
31757
- default?: false | ((arg: {
31758
- errors: vue.Ref<{
31759
- id: number | string;
31760
- errorMessages: string[];
31761
- }[], FieldValidationResult[] | {
31762
- id: number | string;
31763
- errorMessages: string[];
31764
- }[]>;
31765
- isDisabled: vue.ComputedRef<boolean>;
31766
- isReadonly: vue.ComputedRef<boolean>;
31767
- isValidating: vue.ShallowRef<boolean, boolean>;
31768
- isValid: vue.Ref<boolean | null, boolean | null> & {
31769
- readonly externalValue: boolean | null;
31770
- };
31771
- items: vue.Ref<{
31772
- id: number | string;
31773
- validate: () => Promise<string[]>;
31774
- reset: () => Promise<void>;
31775
- resetValidation: () => Promise<void>;
31776
- vm: vue.Raw<vue.ComponentInternalInstance>;
31777
- isValid: boolean | null;
31778
- errorMessages: string[];
31779
- }[], FormField[] | {
31780
- id: number | string;
31781
- validate: () => Promise<string[]>;
31782
- reset: () => Promise<void>;
31783
- resetValidation: () => Promise<void>;
31784
- vm: vue.Raw<vue.ComponentInternalInstance>;
31785
- isValid: boolean | null;
31786
- errorMessages: string[];
31787
- }[]>;
31788
- validate: () => Promise<{
31789
- valid: boolean;
31790
- errors: {
31791
- id: number | string;
31792
- errorMessages: string[];
31793
- }[];
31794
- }>;
31795
- reset: () => void;
31796
- resetValidation: () => void;
31797
- }) => vue.VNodeChild) | undefined;
31798
- } | undefined;
31799
- } & {
31800
- "v-slot:default"?: false | ((arg: {
31801
- errors: vue.Ref<{
31802
- id: number | string;
31803
- errorMessages: string[];
31804
- }[], FieldValidationResult[] | {
31805
- id: number | string;
31806
- errorMessages: string[];
31807
- }[]>;
31808
- isDisabled: vue.ComputedRef<boolean>;
31809
- isReadonly: vue.ComputedRef<boolean>;
31810
- isValidating: vue.ShallowRef<boolean, boolean>;
31811
- isValid: vue.Ref<boolean | null, boolean | null> & {
31812
- readonly externalValue: boolean | null;
31813
- };
31814
- items: vue.Ref<{
31815
- id: number | string;
31816
- validate: () => Promise<string[]>;
31817
- reset: () => Promise<void>;
31818
- resetValidation: () => Promise<void>;
31819
- vm: vue.Raw<vue.ComponentInternalInstance>;
31820
- isValid: boolean | null;
31821
- errorMessages: string[];
31822
- }[], FormField[] | {
31823
- id: number | string;
31824
- validate: () => Promise<string[]>;
31825
- reset: () => Promise<void>;
31826
- resetValidation: () => Promise<void>;
31827
- vm: vue.Raw<vue.ComponentInternalInstance>;
31828
- isValid: boolean | null;
31829
- errorMessages: string[];
31830
- }[]>;
31831
- validate: () => Promise<{
31832
- valid: boolean;
31833
- errors: {
31834
- id: number | string;
31835
- errorMessages: string[];
31836
- }[];
31837
- }>;
31838
- reset: () => void;
31839
- resetValidation: () => void;
31358
+ } & HTMLFormElement & {
31359
+ _allExposed: {
31360
+ errors: vue.Ref<{
31361
+ id: number | string;
31362
+ errorMessages: string[];
31363
+ }[], FieldValidationResult[] | {
31364
+ id: number | string;
31365
+ errorMessages: string[];
31366
+ }[]>;
31367
+ isDisabled: vue.ComputedRef<boolean>;
31368
+ isReadonly: vue.ComputedRef<boolean>;
31369
+ isValidating: vue.ShallowRef<boolean, boolean>;
31370
+ isValid: vue.Ref<boolean | null, boolean | null> & {
31371
+ readonly externalValue: boolean | null;
31372
+ };
31373
+ items: vue.Ref<{
31374
+ id: number | string;
31375
+ validate: () => Promise<string[]>;
31376
+ reset: () => Promise<void>;
31377
+ resetValidation: () => Promise<void>;
31378
+ vm: vue.Raw<vue.ComponentInternalInstance>;
31379
+ isValid: boolean | null;
31380
+ errorMessages: string[];
31381
+ }[], FormField[] | {
31382
+ id: number | string;
31383
+ validate: () => Promise<string[]>;
31384
+ reset: () => Promise<void>;
31385
+ resetValidation: () => Promise<void>;
31386
+ vm: vue.Raw<vue.ComponentInternalInstance>;
31387
+ isValid: boolean | null;
31388
+ errorMessages: string[];
31389
+ }[]>;
31390
+ validate: () => Promise<{
31391
+ valid: boolean;
31392
+ errors: {
31393
+ id: number | string;
31394
+ errorMessages: string[];
31395
+ }[];
31396
+ }>;
31397
+ reset: () => void;
31398
+ resetValidation: () => void;
31399
+ };
31400
+ }, {}, {}, {}, {
31401
+ style: vue.StyleValue;
31402
+ disabled: boolean;
31403
+ readonly: boolean;
31404
+ modelValue: boolean | null;
31405
+ validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
31406
+ fastFail: boolean;
31407
+ }>;
31408
+ __isFragment?: never;
31409
+ __isTeleport?: never;
31410
+ __isSuspense?: never;
31411
+ } & vue.ComponentOptionsBase<{
31412
+ style: vue.StyleValue;
31413
+ disabled: boolean;
31414
+ readonly: boolean;
31415
+ modelValue: boolean | null;
31416
+ validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
31417
+ fastFail: boolean;
31418
+ } & {
31419
+ class?: any;
31420
+ } & {
31421
+ $children?: vue.VNodeChild | {
31422
+ default?: ((arg: {
31423
+ errors: FieldValidationResult[];
31424
+ isDisabled: boolean;
31425
+ isReadonly: boolean;
31426
+ isValidating: boolean;
31427
+ isValid: boolean | null;
31428
+ items: FormField[];
31429
+ validate: () => Promise<FormValidationResult>;
31430
+ reset: () => void;
31431
+ resetValidation: () => void;
31432
+ }) => vue.VNodeChild) | undefined;
31433
+ } | ((arg: {
31434
+ errors: FieldValidationResult[];
31435
+ isDisabled: boolean;
31436
+ isReadonly: boolean;
31437
+ isValidating: boolean;
31438
+ isValid: boolean | null;
31439
+ items: FormField[];
31440
+ validate: () => Promise<FormValidationResult>;
31441
+ reset: () => void;
31442
+ resetValidation: () => void;
31443
+ }) => vue.VNodeChild);
31444
+ 'v-slots'?: {
31445
+ default?: false | ((arg: {
31446
+ errors: FieldValidationResult[];
31447
+ isDisabled: boolean;
31448
+ isReadonly: boolean;
31449
+ isValidating: boolean;
31450
+ isValid: boolean | null;
31451
+ items: FormField[];
31452
+ validate: () => Promise<FormValidationResult>;
31453
+ reset: () => void;
31454
+ resetValidation: () => void;
31455
+ }) => vue.VNodeChild) | undefined;
31456
+ } | undefined;
31457
+ } & {
31458
+ "v-slot:default"?: false | ((arg: {
31459
+ errors: FieldValidationResult[];
31460
+ isDisabled: boolean;
31461
+ isReadonly: boolean;
31462
+ isValidating: boolean;
31463
+ isValid: boolean | null;
31464
+ items: FormField[];
31465
+ validate: () => Promise<FormValidationResult>;
31466
+ reset: () => void;
31467
+ resetValidation: () => void;
31840
31468
  }) => vue.VNodeChild) | undefined;
31841
31469
  } & {
31842
31470
  onSubmit?: ((e: SubmitEventPromise) => any) | undefined;
@@ -31935,43 +31563,13 @@ declare const VForm: {
31935
31563
  fastFail: boolean;
31936
31564
  }, {}, string, vue.SlotsType<Partial<{
31937
31565
  default: (arg: {
31938
- errors: vue.Ref<{
31939
- id: number | string;
31940
- errorMessages: string[];
31941
- }[], FieldValidationResult[] | {
31942
- id: number | string;
31943
- errorMessages: string[];
31944
- }[]>;
31945
- isDisabled: vue.ComputedRef<boolean>;
31946
- isReadonly: vue.ComputedRef<boolean>;
31947
- isValidating: vue.ShallowRef<boolean, boolean>;
31948
- isValid: vue.Ref<boolean | null, boolean | null> & {
31949
- readonly externalValue: boolean | null;
31950
- };
31951
- items: vue.Ref<{
31952
- id: number | string;
31953
- validate: () => Promise<string[]>;
31954
- reset: () => Promise<void>;
31955
- resetValidation: () => Promise<void>;
31956
- vm: vue.Raw<vue.ComponentInternalInstance>;
31957
- isValid: boolean | null;
31958
- errorMessages: string[];
31959
- }[], FormField[] | {
31960
- id: number | string;
31961
- validate: () => Promise<string[]>;
31962
- reset: () => Promise<void>;
31963
- resetValidation: () => Promise<void>;
31964
- vm: vue.Raw<vue.ComponentInternalInstance>;
31965
- isValid: boolean | null;
31966
- errorMessages: string[];
31967
- }[]>;
31968
- validate: () => Promise<{
31969
- valid: boolean;
31970
- errors: {
31971
- id: number | string;
31972
- errorMessages: string[];
31973
- }[];
31974
- }>;
31566
+ errors: FieldValidationResult[];
31567
+ isDisabled: boolean;
31568
+ isReadonly: boolean;
31569
+ isValidating: boolean;
31570
+ isValid: boolean | null;
31571
+ items: FormField[];
31572
+ validate: () => Promise<FormValidationResult>;
31975
31573
  reset: () => void;
31976
31574
  resetValidation: () => void;
31977
31575
  }) => vue.VNode[];
@@ -39475,17 +39073,20 @@ declare const VSelect: {
39475
39073
  'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
39476
39074
  'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
39477
39075
  item: (arg: {
39478
- item: ListItem<unknown>;
39076
+ item: unknown;
39077
+ internalItem: ListItem<unknown>;
39479
39078
  index: number;
39480
39079
  props: Record<string, unknown>;
39481
39080
  }) => vue.VNode[];
39482
39081
  chip: (arg: {
39483
- item: ListItem<unknown>;
39082
+ item: unknown;
39083
+ internalItem: ListItem<unknown>;
39484
39084
  index: number;
39485
39085
  props: Record<string, unknown>;
39486
39086
  }) => vue.VNode[];
39487
39087
  selection: (arg: {
39488
- item: ListItem<unknown>;
39088
+ item: unknown;
39089
+ internalItem: ListItem<unknown>;
39489
39090
  index: number;
39490
39091
  }) => vue.VNode[];
39491
39092
  'prepend-item': () => vue.VNode[];
@@ -40330,17 +39931,20 @@ declare const VSelect: {
40330
39931
  'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
40331
39932
  'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
40332
39933
  item: (arg: {
40333
- item: ListItem<unknown>;
39934
+ item: unknown;
39935
+ internalItem: ListItem<unknown>;
40334
39936
  index: number;
40335
39937
  props: Record<string, unknown>;
40336
39938
  }) => vue.VNode[];
40337
39939
  chip: (arg: {
40338
- item: ListItem<unknown>;
39940
+ item: unknown;
39941
+ internalItem: ListItem<unknown>;
40339
39942
  index: number;
40340
39943
  props: Record<string, unknown>;
40341
39944
  }) => vue.VNode[];
40342
39945
  selection: (arg: {
40343
- item: ListItem<unknown>;
39946
+ item: unknown;
39947
+ internalItem: ListItem<unknown>;
40344
39948
  index: number;
40345
39949
  }) => vue.VNode[];
40346
39950
  'prepend-item': () => vue.VNode[];
@@ -40357,17 +39961,20 @@ declare const VSelect: {
40357
39961
  "onUpdate:modelValue"?: (value: V) => void;
40358
39962
  }, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
40359
39963
  item: {
40360
- item: ListItem<Item>;
39964
+ item: Item;
39965
+ internalItem: ListItem<Item>;
40361
39966
  index: number;
40362
39967
  props: Record<string, unknown>;
40363
39968
  };
40364
39969
  chip: {
40365
- item: ListItem<Item>;
39970
+ item: Item;
39971
+ internalItem: ListItem<Item>;
40366
39972
  index: number;
40367
39973
  props: Record<string, unknown>;
40368
39974
  };
40369
39975
  selection: {
40370
- item: ListItem<Item>;
39976
+ item: Item;
39977
+ internalItem: ListItem<Item>;
40371
39978
  index: number;
40372
39979
  };
40373
39980
  "prepend-item": never;
@@ -72160,49 +71767,44 @@ declare module 'vue' {
72160
71767
  VAlert: VAlert
72161
71768
  VAlertTitle: VAlertTitle
72162
71769
  VAutocomplete: VAutocomplete
72163
- VAppBar: VAppBar
72164
- VAppBarNavIcon: VAppBarNavIcon
72165
- VAppBarTitle: VAppBarTitle
72166
- VBreadcrumbs: VBreadcrumbs
72167
- VBreadcrumbsItem: VBreadcrumbsItem
72168
- VBreadcrumbsDivider: VBreadcrumbsDivider
72169
71770
  VBanner: VBanner
72170
71771
  VBannerActions: VBannerActions
72171
71772
  VBannerText: VBannerText
72172
71773
  VBottomSheet: VBottomSheet
72173
- VBadge: VBadge
72174
- VAvatar: VAvatar
72175
71774
  VBottomNavigation: VBottomNavigation
72176
- VBtnGroup: VBtnGroup
72177
- VBtnToggle: VBtnToggle
72178
- VCarousel: VCarousel
72179
- VCarouselItem: VCarouselItem
71775
+ VAvatar: VAvatar
71776
+ VBreadcrumbs: VBreadcrumbs
71777
+ VBreadcrumbsItem: VBreadcrumbsItem
71778
+ VBreadcrumbsDivider: VBreadcrumbsDivider
71779
+ VBadge: VBadge
72180
71780
  VBtn: VBtn
71781
+ VBtnGroup: VBtnGroup
72181
71782
  VCard: VCard
72182
71783
  VCardActions: VCardActions
72183
71784
  VCardItem: VCardItem
72184
71785
  VCardSubtitle: VCardSubtitle
72185
71786
  VCardText: VCardText
72186
71787
  VCardTitle: VCardTitle
71788
+ VBtnToggle: VBtnToggle
71789
+ VCarousel: VCarousel
71790
+ VCarouselItem: VCarouselItem
71791
+ VChipGroup: VChipGroup
71792
+ VAppBar: VAppBar
71793
+ VAppBarNavIcon: VAppBarNavIcon
71794
+ VAppBarTitle: VAppBarTitle
71795
+ VCombobox: VCombobox
71796
+ VCode: VCode
72187
71797
  VChip: VChip
72188
71798
  VCheckbox: VCheckbox
72189
71799
  VCheckboxBtn: VCheckboxBtn
72190
- VCode: VCode
72191
- VChipGroup: VChipGroup
72192
- VCounter: VCounter
72193
71800
  VColorPicker: VColorPicker
72194
- VCombobox: VCombobox
71801
+ VCounter: VCounter
72195
71802
  VDatePicker: VDatePicker
72196
71803
  VDatePickerControls: VDatePickerControls
72197
71804
  VDatePickerHeader: VDatePickerHeader
72198
71805
  VDatePickerMonth: VDatePickerMonth
72199
71806
  VDatePickerMonths: VDatePickerMonths
72200
71807
  VDatePickerYears: VDatePickerYears
72201
- VDivider: VDivider
72202
- VDialog: VDialog
72203
- VField: VField
72204
- VFieldLabel: VFieldLabel
72205
- VEmptyState: VEmptyState
72206
71808
  VDataTable: VDataTable
72207
71809
  VDataTableHeaders: VDataTableHeaders
72208
71810
  VDataTableFooter: VDataTableFooter
@@ -72210,27 +71812,33 @@ declare module 'vue' {
72210
71812
  VDataTableRow: VDataTableRow
72211
71813
  VDataTableVirtual: VDataTableVirtual
72212
71814
  VDataTableServer: VDataTableServer
71815
+ VDialog: VDialog
72213
71816
  VExpansionPanels: VExpansionPanels
72214
71817
  VExpansionPanel: VExpansionPanel
72215
71818
  VExpansionPanelText: VExpansionPanelText
72216
71819
  VExpansionPanelTitle: VExpansionPanelTitle
71820
+ VDivider: VDivider
71821
+ VField: VField
71822
+ VFieldLabel: VFieldLabel
71823
+ VEmptyState: VEmptyState
72217
71824
  VFooter: VFooter
72218
- VFab: VFab
72219
71825
  VFileInput: VFileInput
72220
- VInput: VInput
71826
+ VFab: VFab
71827
+ VLabel: VLabel
71828
+ VInfiniteScroll: VInfiniteScroll
71829
+ VItemGroup: VItemGroup
71830
+ VItem: VItem
71831
+ VImg: VImg
72221
71832
  VIcon: VIcon
72222
71833
  VComponentIcon: VComponentIcon
72223
71834
  VSvgIcon: VSvgIcon
72224
71835
  VLigatureIcon: VLigatureIcon
72225
71836
  VClassIcon: VClassIcon
72226
- VItemGroup: VItemGroup
72227
- VItem: VItem
72228
- VImg: VImg
72229
- VInfiniteScroll: VInfiniteScroll
72230
- VKbd: VKbd
71837
+ VMenu: VMenu
71838
+ VInput: VInput
72231
71839
  VMain: VMain
72232
71840
  VMessages: VMessages
72233
- VLabel: VLabel
71841
+ VKbd: VKbd
72234
71842
  VList: VList
72235
71843
  VListGroup: VListGroup
72236
71844
  VListImg: VListImg
@@ -72240,68 +71848,67 @@ declare module 'vue' {
72240
71848
  VListItemSubtitle: VListItemSubtitle
72241
71849
  VListItemTitle: VListItemTitle
72242
71850
  VListSubheader: VListSubheader
71851
+ VNavigationDrawer: VNavigationDrawer
72243
71852
  VOverlay: VOverlay
72244
71853
  VProgressCircular: VProgressCircular
72245
- VNavigationDrawer: VNavigationDrawer
72246
- VPagination: VPagination
72247
- VMenu: VMenu
72248
- VRadioGroup: VRadioGroup
72249
71854
  VOtpInput: VOtpInput
71855
+ VRadioGroup: VRadioGroup
71856
+ VPagination: VPagination
72250
71857
  VRating: VRating
72251
71858
  VProgressLinear: VProgressLinear
72252
- VSheet: VSheet
72253
- VSelectionControl: VSelectionControl
72254
71859
  VSelect: VSelect
72255
- VSelectionControlGroup: VSelectionControlGroup
72256
- VSlideGroup: VSlideGroup
72257
- VSlideGroupItem: VSlideGroupItem
72258
- VSnackbar: VSnackbar
72259
- VSkeletonLoader: VSkeletonLoader
72260
- VSwitch: VSwitch
72261
- VTab: VTab
72262
- VTabs: VTabs
72263
- VTabsWindow: VTabsWindow
72264
- VTabsWindowItem: VTabsWindowItem
72265
- VSlider: VSlider
72266
- VTable: VTable
71860
+ VSelectionControl: VSelectionControl
71861
+ VSheet: VSheet
72267
71862
  VStepper: VStepper
72268
71863
  VStepperActions: VStepperActions
72269
71864
  VStepperHeader: VStepperHeader
72270
71865
  VStepperItem: VStepperItem
72271
71866
  VStepperWindow: VStepperWindow
72272
71867
  VStepperWindowItem: VStepperWindowItem
71868
+ VSnackbar: VSnackbar
71869
+ VSkeletonLoader: VSkeletonLoader
71870
+ VSlideGroup: VSlideGroup
71871
+ VSlideGroupItem: VSlideGroupItem
71872
+ VSlider: VSlider
72273
71873
  VSystemBar: VSystemBar
72274
- VTextarea: VTextarea
71874
+ VSelectionControlGroup: VSelectionControlGroup
71875
+ VTab: VTab
71876
+ VTabs: VTabs
71877
+ VTabsWindow: VTabsWindow
71878
+ VTabsWindowItem: VTabsWindowItem
71879
+ VSwitch: VSwitch
72275
71880
  VTextField: VTextField
72276
- VToolbar: VToolbar
72277
- VToolbarTitle: VToolbarTitle
72278
- VToolbarItems: VToolbarItems
71881
+ VTable: VTable
71882
+ VTextarea: VTextarea
72279
71883
  VTimeline: VTimeline
72280
71884
  VTimelineItem: VTimelineItem
72281
71885
  VTooltip: VTooltip
71886
+ VToolbar: VToolbar
71887
+ VToolbarTitle: VToolbarTitle
71888
+ VToolbarItems: VToolbarItems
72282
71889
  VWindow: VWindow
72283
71890
  VWindowItem: VWindowItem
72284
- VDataIterator: VDataIterator
72285
71891
  VConfirmEdit: VConfirmEdit
71892
+ VDataIterator: VDataIterator
72286
71893
  VDefaultsProvider: VDefaultsProvider
72287
71894
  VContainer: VContainer
72288
71895
  VCol: VCol
72289
71896
  VRow: VRow
72290
71897
  VSpacer: VSpacer
72291
- VHover: VHover
72292
71898
  VForm: VForm
72293
- VLazy: VLazy
71899
+ VHover: VHover
72294
71900
  VLayout: VLayout
72295
71901
  VLayoutItem: VLayoutItem
71902
+ VLazy: VLazy
72296
71903
  VLocaleProvider: VLocaleProvider
72297
71904
  VNoSsr: VNoSsr
72298
71905
  VParallax: VParallax
72299
71906
  VRadio: VRadio
72300
- VResponsive: VResponsive
72301
71907
  VRangeSlider: VRangeSlider
72302
- VSparkline: VSparkline
71908
+ VResponsive: VResponsive
72303
71909
  VSpeedDial: VSpeedDial
72304
71910
  VThemeProvider: VThemeProvider
71911
+ VSparkline: VSparkline
72305
71912
  VValidation: VValidation
72306
71913
  VVirtualScroll: VVirtualScroll
72307
71914
  VFabTransition: VFabTransition
@@ -72326,17 +71933,17 @@ declare module 'vue' {
72326
71933
  VCalendarInterval: VCalendarInterval
72327
71934
  VCalendarIntervalEvent: VCalendarIntervalEvent
72328
71935
  VCalendarMonthDay: VCalendarMonthDay
71936
+ VFileUpload: VFileUpload
71937
+ VFileUploadItem: VFileUploadItem
72329
71938
  VNumberInput: VNumberInput
71939
+ VTimePicker: VTimePicker
71940
+ VTimePickerClock: VTimePickerClock
71941
+ VTimePickerControls: VTimePickerControls
72330
71942
  VPicker: VPicker
72331
71943
  VPickerTitle: VPickerTitle
72332
- VFileUpload: VFileUpload
72333
- VFileUploadItem: VFileUploadItem
72334
71944
  VStepperVertical: VStepperVertical
72335
71945
  VStepperVerticalItem: VStepperVerticalItem
72336
71946
  VStepperVerticalActions: VStepperVerticalActions
72337
- VTimePicker: VTimePicker
72338
- VTimePickerClock: VTimePickerClock
72339
- VTimePickerControls: VTimePickerControls
72340
71947
  VTreeview: VTreeview
72341
71948
  VTreeviewItem: VTreeviewItem
72342
71949
  VTreeviewGroup: VTreeviewGroup