@vuetify/nightly 3.9.0-dev.2025-07-08 → 3.9.0-dev.2025-07-16

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 (55) hide show
  1. package/CHANGELOG.md +14 -3
  2. package/dist/json/attributes.json +3826 -3806
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +168 -168
  5. package/dist/json/tags.json +5 -0
  6. package/dist/json/web-types.json +6992 -6922
  7. package/dist/vuetify-labs.cjs +216 -27
  8. package/dist/vuetify-labs.css +4659 -4657
  9. package/dist/vuetify-labs.d.ts +119 -57
  10. package/dist/vuetify-labs.esm.js +216 -27
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +216 -27
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +178 -18
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +4036 -4034
  17. package/dist/vuetify.d.ts +109 -57
  18. package/dist/vuetify.esm.js +178 -18
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +178 -18
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +718 -696
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.js +1 -0
  26. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  27. package/lib/components/VCombobox/VCombobox.js +1 -0
  28. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  29. package/lib/components/VFileInput/VFileInput.d.ts +15 -0
  30. package/lib/components/VFileInput/VFileInput.js +38 -9
  31. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  32. package/lib/components/VList/VList.js +2 -1
  33. package/lib/components/VList/VList.js.map +1 -1
  34. package/lib/components/VList/VListItem.js +7 -1
  35. package/lib/components/VList/VListItem.js.map +1 -1
  36. package/lib/components/VProgressLinear/VProgressLinear.css +1 -1
  37. package/lib/components/VProgressLinear/VProgressLinear.d.ts +75 -0
  38. package/lib/components/VProgressLinear/VProgressLinear.js +32 -6
  39. package/lib/components/VProgressLinear/VProgressLinear.js.map +1 -1
  40. package/lib/components/VProgressLinear/VProgressLinear.sass +2 -2
  41. package/lib/components/VProgressLinear/chunks.d.ts +55 -0
  42. package/lib/components/VProgressLinear/chunks.js +62 -0
  43. package/lib/components/VProgressLinear/chunks.js.map +1 -0
  44. package/lib/components/VSelect/VSelect.js +1 -0
  45. package/lib/components/VSelect/VSelect.js.map +1 -1
  46. package/lib/composables/fileFilter.d.ts +18 -0
  47. package/lib/composables/fileFilter.js +38 -0
  48. package/lib/composables/fileFilter.js.map +1 -0
  49. package/lib/entry-bundler.js +1 -1
  50. package/lib/framework.d.ts +57 -57
  51. package/lib/framework.js +1 -1
  52. package/lib/labs/VFileUpload/VFileUpload.d.ts +15 -0
  53. package/lib/labs/VFileUpload/VFileUpload.js +39 -9
  54. package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
  55. package/package.json +1 -1
@@ -47380,6 +47380,7 @@ declare const VFileInput: {
47380
47380
  centerAffix?: boolean | undefined;
47381
47381
  hint?: string | undefined;
47382
47382
  hideDetails?: boolean | "auto" | undefined;
47383
+ filterByType?: string | undefined;
47383
47384
  } & {
47384
47385
  $children?: vue.VNodeChild | {
47385
47386
  default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
@@ -47454,6 +47455,7 @@ declare const VFileInput: {
47454
47455
  "onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
47455
47456
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
47456
47457
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
47458
+ onRejected?: ((files: File[]) => any) | undefined;
47457
47459
  }, Omit<Omit<{
47458
47460
  $: vue.ComponentInternalInstance;
47459
47461
  $data: {};
@@ -47690,6 +47692,7 @@ declare const VFileInput: {
47690
47692
  'mousedown:control': (e: MouseEvent) => true;
47691
47693
  'update:focused': (focused: boolean) => true;
47692
47694
  'update:modelValue': (files: File | File[]) => true;
47695
+ rejected: (files: File[]) => true;
47693
47696
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
47694
47697
  flat: boolean;
47695
47698
  reverse: boolean;
@@ -47818,6 +47821,7 @@ declare const VFileInput: {
47818
47821
  centerAffix?: boolean | undefined;
47819
47822
  hint?: string | undefined;
47820
47823
  hideDetails?: boolean | "auto" | undefined;
47824
+ filterByType?: string | undefined;
47821
47825
  } & {
47822
47826
  $children?: vue.VNodeChild | {
47823
47827
  default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
@@ -47892,6 +47896,7 @@ declare const VFileInput: {
47892
47896
  "onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
47893
47897
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
47894
47898
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
47899
+ onRejected?: ((files: File[]) => any) | undefined;
47895
47900
  }, Omit<Omit<{
47896
47901
  $: vue.ComponentInternalInstance;
47897
47902
  $data: {};
@@ -48226,6 +48231,7 @@ declare const VFileInput: {
48226
48231
  centerAffix?: boolean | undefined;
48227
48232
  hint?: string | undefined;
48228
48233
  hideDetails?: boolean | "auto" | undefined;
48234
+ filterByType?: string | undefined;
48229
48235
  } & {
48230
48236
  $children?: vue.VNodeChild | {
48231
48237
  default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
@@ -48300,6 +48306,7 @@ declare const VFileInput: {
48300
48306
  "onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
48301
48307
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
48302
48308
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
48309
+ onRejected?: ((files: File[]) => any) | undefined;
48303
48310
  }, Omit<Omit<{
48304
48311
  $: vue.ComponentInternalInstance;
48305
48312
  $data: {};
@@ -48536,6 +48543,7 @@ declare const VFileInput: {
48536
48543
  'mousedown:control': (e: MouseEvent) => true;
48537
48544
  'update:focused': (focused: boolean) => true;
48538
48545
  'update:modelValue': (files: File | File[]) => true;
48546
+ rejected: (files: File[]) => true;
48539
48547
  }, string, {
48540
48548
  flat: boolean;
48541
48549
  reverse: boolean;
@@ -48646,6 +48654,7 @@ declare const VFileInput: {
48646
48654
  'onClick:clear': PropType<(args_0: MouseEvent) => void>;
48647
48655
  'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
48648
48656
  'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
48657
+ filterByType: StringConstructor;
48649
48658
  modelValue: {
48650
48659
  type: PropType<File[] | File | null>;
48651
48660
  default: (props: any) => never[] | null;
@@ -48770,6 +48779,7 @@ declare const VFileInput: {
48770
48779
  'onClick:clear': PropType<(args_0: MouseEvent) => void>;
48771
48780
  'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
48772
48781
  'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
48782
+ filterByType: StringConstructor;
48773
48783
  modelValue: {
48774
48784
  type: PropType<File[] | File | null>;
48775
48785
  default: (props: any) => never[] | null;
@@ -61435,6 +61445,9 @@ declare const VProgressLinear: {
61435
61445
  indeterminate: boolean;
61436
61446
  modelValue: string | number;
61437
61447
  tile: boolean;
61448
+ chunkCount: string | number;
61449
+ chunkWidth: string | number;
61450
+ chunkGap: string | number;
61438
61451
  bufferValue: string | number;
61439
61452
  clickable: boolean;
61440
61453
  striped: boolean;
@@ -61488,6 +61501,9 @@ declare const VProgressLinear: {
61488
61501
  modelValue: string | number;
61489
61502
  rounded: string | number | boolean;
61490
61503
  tile: boolean;
61504
+ chunkCount: string | number;
61505
+ chunkWidth: string | number;
61506
+ chunkGap: string | number;
61491
61507
  bufferValue: string | number;
61492
61508
  clickable: boolean;
61493
61509
  striped: boolean;
@@ -61517,6 +61533,9 @@ declare const VProgressLinear: {
61517
61533
  indeterminate: boolean;
61518
61534
  modelValue: string | number;
61519
61535
  tile: boolean;
61536
+ chunkCount: string | number;
61537
+ chunkWidth: string | number;
61538
+ chunkGap: string | number;
61520
61539
  bufferValue: string | number;
61521
61540
  clickable: boolean;
61522
61541
  striped: boolean;
@@ -61568,6 +61587,9 @@ declare const VProgressLinear: {
61568
61587
  modelValue: string | number;
61569
61588
  rounded: string | number | boolean;
61570
61589
  tile: boolean;
61590
+ chunkCount: string | number;
61591
+ chunkWidth: string | number;
61592
+ chunkGap: string | number;
61571
61593
  bufferValue: string | number;
61572
61594
  clickable: boolean;
61573
61595
  striped: boolean;
@@ -61589,6 +61611,9 @@ declare const VProgressLinear: {
61589
61611
  indeterminate: boolean;
61590
61612
  modelValue: string | number;
61591
61613
  tile: boolean;
61614
+ chunkCount: string | number;
61615
+ chunkWidth: string | number;
61616
+ chunkGap: string | number;
61592
61617
  bufferValue: string | number;
61593
61618
  clickable: boolean;
61594
61619
  striped: boolean;
@@ -61642,6 +61667,9 @@ declare const VProgressLinear: {
61642
61667
  modelValue: string | number;
61643
61668
  rounded: string | number | boolean;
61644
61669
  tile: boolean;
61670
+ chunkCount: string | number;
61671
+ chunkWidth: string | number;
61672
+ chunkGap: string | number;
61645
61673
  bufferValue: string | number;
61646
61674
  clickable: boolean;
61647
61675
  striped: boolean;
@@ -61671,6 +61699,18 @@ declare const VProgressLinear: {
61671
61699
  type: vue.PropType<vue.StyleValue>;
61672
61700
  default: null;
61673
61701
  };
61702
+ chunkCount: {
61703
+ type: (StringConstructor | NumberConstructor)[];
61704
+ default: null;
61705
+ };
61706
+ chunkWidth: {
61707
+ type: (StringConstructor | NumberConstructor)[];
61708
+ default: null;
61709
+ };
61710
+ chunkGap: {
61711
+ type: (StringConstructor | NumberConstructor)[];
61712
+ default: number;
61713
+ };
61674
61714
  absolute: BooleanConstructor;
61675
61715
  active: {
61676
61716
  type: BooleanConstructor;
@@ -61724,6 +61764,18 @@ declare const VProgressLinear: {
61724
61764
  type: vue.PropType<vue.StyleValue>;
61725
61765
  default: null;
61726
61766
  };
61767
+ chunkCount: {
61768
+ type: (StringConstructor | NumberConstructor)[];
61769
+ default: null;
61770
+ };
61771
+ chunkWidth: {
61772
+ type: (StringConstructor | NumberConstructor)[];
61773
+ default: null;
61774
+ };
61775
+ chunkGap: {
61776
+ type: (StringConstructor | NumberConstructor)[];
61777
+ default: number;
61778
+ };
61727
61779
  absolute: BooleanConstructor;
61728
61780
  active: {
61729
61781
  type: BooleanConstructor;
@@ -104371,6 +104423,7 @@ declare const VFileUpload: {
104371
104423
  openDelay?: string | number | undefined;
104372
104424
  thickness?: string | number | undefined;
104373
104425
  subtitle?: string | undefined;
104426
+ filterByType?: string | undefined;
104374
104427
  } & {
104375
104428
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
104376
104429
  browse?: ((arg: {
@@ -104433,8 +104486,10 @@ declare const VFileUpload: {
104433
104486
  "v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
104434
104487
  } & {
104435
104488
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
104489
+ onRejected?: ((files: File[]) => any) | undefined;
104436
104490
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
104437
104491
  'update:modelValue': (files: File[]) => true;
104492
+ rejected: (files: File[]) => true;
104438
104493
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
104439
104494
  length: string | number;
104440
104495
  style: vue.StyleValue;
@@ -104517,6 +104572,7 @@ declare const VFileUpload: {
104517
104572
  openDelay?: string | number | undefined;
104518
104573
  thickness?: string | number | undefined;
104519
104574
  subtitle?: string | undefined;
104575
+ filterByType?: string | undefined;
104520
104576
  } & {
104521
104577
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
104522
104578
  browse?: ((arg: {
@@ -104579,6 +104635,7 @@ declare const VFileUpload: {
104579
104635
  "v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
104580
104636
  } & {
104581
104637
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
104638
+ onRejected?: ((files: File[]) => any) | undefined;
104582
104639
  }, {}, {}, {}, {}, {
104583
104640
  length: string | number;
104584
104641
  style: vue.StyleValue;
@@ -104639,6 +104696,7 @@ declare const VFileUpload: {
104639
104696
  openDelay?: string | number | undefined;
104640
104697
  thickness?: string | number | undefined;
104641
104698
  subtitle?: string | undefined;
104699
+ filterByType?: string | undefined;
104642
104700
  } & {
104643
104701
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
104644
104702
  browse?: ((arg: {
@@ -104701,8 +104759,10 @@ declare const VFileUpload: {
104701
104759
  "v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
104702
104760
  } & {
104703
104761
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
104762
+ onRejected?: ((files: File[]) => any) | undefined;
104704
104763
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
104705
104764
  'update:modelValue': (files: File[]) => true;
104765
+ rejected: (files: File[]) => true;
104706
104766
  }, string, {
104707
104767
  length: string | number;
104708
104768
  style: vue.StyleValue;
@@ -104786,6 +104846,7 @@ declare const VFileUpload: {
104786
104846
  };
104787
104847
  closeDelay: (StringConstructor | NumberConstructor)[];
104788
104848
  openDelay: (StringConstructor | NumberConstructor)[];
104849
+ filterByType: StringConstructor;
104789
104850
  browseText: {
104790
104851
  type: StringConstructor;
104791
104852
  default: string;
@@ -104864,6 +104925,7 @@ declare const VFileUpload: {
104864
104925
  };
104865
104926
  closeDelay: (StringConstructor | NumberConstructor)[];
104866
104927
  openDelay: (StringConstructor | NumberConstructor)[];
104928
+ filterByType: StringConstructor;
104867
104929
  browseText: {
104868
104930
  type: StringConstructor;
104869
104931
  default: string;
@@ -114153,35 +114215,32 @@ declare module 'vue' {
114153
114215
  VAppBar: VAppBar
114154
114216
  VAppBarNavIcon: VAppBarNavIcon
114155
114217
  VAppBarTitle: VAppBarTitle
114156
- VAvatar: VAvatar
114157
114218
  VAutocomplete: VAutocomplete
114219
+ VAvatar: VAvatar
114220
+ VBadge: VBadge
114221
+ VBottomNavigation: VBottomNavigation
114158
114222
  VBottomSheet: VBottomSheet
114159
114223
  VBreadcrumbs: VBreadcrumbs
114160
114224
  VBreadcrumbsItem: VBreadcrumbsItem
114161
114225
  VBreadcrumbsDivider: VBreadcrumbsDivider
114162
- VBottomNavigation: VBottomNavigation
114163
- VBtnGroup: VBtnGroup
114164
- VBanner: VBanner
114165
- VBannerActions: VBannerActions
114166
- VBannerText: VBannerText
114167
- VBadge: VBadge
114168
- VCarousel: VCarousel
114169
- VCarouselItem: VCarouselItem
114170
114226
  VBtn: VBtn
114227
+ VBtnToggle: VBtnToggle
114171
114228
  VCheckbox: VCheckbox
114172
114229
  VCheckboxBtn: VCheckboxBtn
114173
- VChipGroup: VChipGroup
114174
114230
  VCard: VCard
114175
114231
  VCardActions: VCardActions
114176
114232
  VCardItem: VCardItem
114177
114233
  VCardSubtitle: VCardSubtitle
114178
114234
  VCardText: VCardText
114179
114235
  VCardTitle: VCardTitle
114180
- VBtnToggle: VBtnToggle
114236
+ VBtnGroup: VBtnGroup
114237
+ VCarousel: VCarousel
114238
+ VCarouselItem: VCarouselItem
114239
+ VChipGroup: VChipGroup
114181
114240
  VChip: VChip
114182
- VCode: VCode
114183
114241
  VCombobox: VCombobox
114184
- VCounter: VCounter
114242
+ VCode: VCode
114243
+ VColorPicker: VColorPicker
114185
114244
  VDataTable: VDataTable
114186
114245
  VDataTableHeaders: VDataTableHeaders
114187
114246
  VDataTableFooter: VDataTableFooter
@@ -114189,36 +114248,36 @@ declare module 'vue' {
114189
114248
  VDataTableRow: VDataTableRow
114190
114249
  VDataTableVirtual: VDataTableVirtual
114191
114250
  VDataTableServer: VDataTableServer
114251
+ VCounter: VCounter
114192
114252
  VDialog: VDialog
114193
- VColorPicker: VColorPicker
114194
- VDivider: VDivider
114195
114253
  VDatePicker: VDatePicker
114196
114254
  VDatePickerControls: VDatePickerControls
114197
114255
  VDatePickerHeader: VDatePickerHeader
114198
114256
  VDatePickerMonth: VDatePickerMonth
114199
114257
  VDatePickerMonths: VDatePickerMonths
114200
114258
  VDatePickerYears: VDatePickerYears
114259
+ VDivider: VDivider
114260
+ VEmptyState: VEmptyState
114261
+ VFab: VFab
114201
114262
  VExpansionPanels: VExpansionPanels
114202
114263
  VExpansionPanel: VExpansionPanel
114203
114264
  VExpansionPanelText: VExpansionPanelText
114204
114265
  VExpansionPanelTitle: VExpansionPanelTitle
114205
114266
  VField: VField
114206
114267
  VFieldLabel: VFieldLabel
114207
- VFab: VFab
114208
- VEmptyState: VEmptyState
114268
+ VFileInput: VFileInput
114209
114269
  VFooter: VFooter
114270
+ VImg: VImg
114210
114271
  VIcon: VIcon
114211
114272
  VComponentIcon: VComponentIcon
114212
114273
  VSvgIcon: VSvgIcon
114213
114274
  VLigatureIcon: VLigatureIcon
114214
114275
  VClassIcon: VClassIcon
114215
- VFileInput: VFileInput
114216
- VInfiniteScroll: VInfiniteScroll
114217
- VInput: VInput
114218
114276
  VKbd: VKbd
114219
- VImg: VImg
114277
+ VInput: VInput
114220
114278
  VItemGroup: VItemGroup
114221
114279
  VItem: VItem
114280
+ VLabel: VLabel
114222
114281
  VList: VList
114223
114282
  VListGroup: VListGroup
114224
114283
  VListImg: VListImg
@@ -114228,61 +114287,59 @@ declare module 'vue' {
114228
114287
  VListItemSubtitle: VListItemSubtitle
114229
114288
  VListItemTitle: VListItemTitle
114230
114289
  VListSubheader: VListSubheader
114231
- VLabel: VLabel
114232
- VMenu: VMenu
114233
114290
  VMain: VMain
114234
- VMessages: VMessages
114235
114291
  VNavigationDrawer: VNavigationDrawer
114292
+ VMessages: VMessages
114293
+ VMenu: VMenu
114236
114294
  VOtpInput: VOtpInput
114237
- VNumberInput: VNumberInput
114238
114295
  VOverlay: VOverlay
114239
114296
  VPagination: VPagination
114297
+ VNumberInput: VNumberInput
114298
+ VProgressLinear: VProgressLinear
114240
114299
  VProgressCircular: VProgressCircular
114241
114300
  VRadioGroup: VRadioGroup
114242
- VProgressLinear: VProgressLinear
114243
- VSelect: VSelect
114244
- VRating: VRating
114245
- VSelectionControl: VSelectionControl
114246
- VSheet: VSheet
114247
114301
  VSelectionControlGroup: VSelectionControlGroup
114248
- VSlider: VSlider
114302
+ VRating: VRating
114303
+ VSelect: VSelect
114249
114304
  VSlideGroup: VSlideGroup
114250
114305
  VSlideGroupItem: VSlideGroupItem
114306
+ VSelectionControl: VSelectionControl
114251
114307
  VSkeletonLoader: VSkeletonLoader
114308
+ VSlider: VSlider
114309
+ VSheet: VSheet
114252
114310
  VSnackbar: VSnackbar
114253
- VSwitch: VSwitch
114254
- VTab: VTab
114255
- VTabs: VTabs
114256
- VTabsWindow: VTabsWindow
114257
- VTabsWindowItem: VTabsWindowItem
114258
- VTextField: VTextField
114259
114311
  VStepper: VStepper
114260
114312
  VStepperActions: VStepperActions
114261
114313
  VStepperHeader: VStepperHeader
114262
114314
  VStepperItem: VStepperItem
114263
114315
  VStepperWindow: VStepperWindow
114264
114316
  VStepperWindowItem: VStepperWindowItem
114265
- VTable: VTable
114266
- VTimeline: VTimeline
114267
- VTimelineItem: VTimelineItem
114268
114317
  VSystemBar: VSystemBar
114318
+ VSwitch: VSwitch
114319
+ VTable: VTable
114320
+ VTab: VTab
114321
+ VTabs: VTabs
114322
+ VTabsWindow: VTabsWindow
114323
+ VTabsWindowItem: VTabsWindowItem
114324
+ VTextField: VTextField
114325
+ VTextarea: VTextarea
114269
114326
  VTimePicker: VTimePicker
114270
114327
  VTimePickerClock: VTimePickerClock
114271
114328
  VTimePickerControls: VTimePickerControls
114272
- VWindow: VWindow
114273
- VWindowItem: VWindowItem
114274
- VTextarea: VTextarea
114275
- VTooltip: VTooltip
114329
+ VTimeline: VTimeline
114330
+ VTimelineItem: VTimelineItem
114276
114331
  VToolbar: VToolbar
114277
114332
  VToolbarTitle: VToolbarTitle
114278
114333
  VToolbarItems: VToolbarItems
114334
+ VTooltip: VTooltip
114279
114335
  VTreeview: VTreeview
114280
114336
  VTreeviewItem: VTreeviewItem
114281
114337
  VTreeviewGroup: VTreeviewGroup
114338
+ VWindow: VWindow
114339
+ VWindowItem: VWindowItem
114282
114340
  VConfirmEdit: VConfirmEdit
114283
114341
  VDataIterator: VDataIterator
114284
114342
  VDefaultsProvider: VDefaultsProvider
114285
- VForm: VForm
114286
114343
  VContainer: VContainer
114287
114344
  VCol: VCol
114288
114345
  VRow: VRow
@@ -114290,19 +114347,23 @@ declare module 'vue' {
114290
114347
  VHover: VHover
114291
114348
  VLayout: VLayout
114292
114349
  VLayoutItem: VLayoutItem
114293
- VLazy: VLazy
114350
+ VForm: VForm
114294
114351
  VLocaleProvider: VLocaleProvider
114295
- VNoSsr: VNoSsr
114352
+ VLazy: VLazy
114296
114353
  VParallax: VParallax
114297
- VRangeSlider: VRangeSlider
114298
114354
  VRadio: VRadio
114299
- VSparkline: VSparkline
114355
+ VRangeSlider: VRangeSlider
114356
+ VNoSsr: VNoSsr
114300
114357
  VSnackbarQueue: VSnackbarQueue
114301
- VSpeedDial: VSpeedDial
114302
114358
  VResponsive: VResponsive
114359
+ VBanner: VBanner
114360
+ VBannerActions: VBannerActions
114361
+ VBannerText: VBannerText
114362
+ VSparkline: VSparkline
114363
+ VSpeedDial: VSpeedDial
114364
+ VValidation: VValidation
114303
114365
  VThemeProvider: VThemeProvider
114304
114366
  VVirtualScroll: VVirtualScroll
114305
- VValidation: VValidation
114306
114367
  VFabTransition: VFabTransition
114307
114368
  VDialogBottomTransition: VDialogBottomTransition
114308
114369
  VDialogTopTransition: VDialogTopTransition
@@ -114319,25 +114380,26 @@ declare module 'vue' {
114319
114380
  VExpandTransition: VExpandTransition
114320
114381
  VExpandXTransition: VExpandXTransition
114321
114382
  VDialogTransition: VDialogTransition
114322
- VFileUpload: VFileUpload
114323
- VFileUploadItem: VFileUploadItem
114383
+ VInfiniteScroll: VInfiniteScroll
114324
114384
  VCalendar: VCalendar
114325
114385
  VCalendarDay: VCalendarDay
114326
114386
  VCalendarHeader: VCalendarHeader
114327
114387
  VCalendarInterval: VCalendarInterval
114328
114388
  VCalendarIntervalEvent: VCalendarIntervalEvent
114329
114389
  VCalendarMonthDay: VCalendarMonthDay
114390
+ VColorInput: VColorInput
114330
114391
  VIconBtn: VIconBtn
114392
+ VPicker: VPicker
114393
+ VPickerTitle: VPickerTitle
114394
+ VFileUpload: VFileUpload
114395
+ VFileUploadItem: VFileUploadItem
114331
114396
  VStepperVertical: VStepperVertical
114332
114397
  VStepperVerticalItem: VStepperVerticalItem
114333
114398
  VStepperVerticalActions: VStepperVerticalActions
114334
- VPicker: VPicker
114335
- VPickerTitle: VPickerTitle
114336
- VColorInput: VColorInput
114337
114399
  VHotkey: VHotkey
114400
+ VMaskInput: VMaskInput
114338
114401
  VDateInput: VDateInput
114339
114402
  VPullToRefresh: VPullToRefresh
114340
- VMaskInput: VMaskInput
114341
114403
  }
114342
114404
  export interface GlobalDirectives {
114343
114405
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']