@vuetify/nightly 3.8.2-master.2025-04-27 → 3.8.3-dev.2025-04-29

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 (57) hide show
  1. package/CHANGELOG.md +13 -32
  2. package/dist/json/attributes.json +2092 -2084
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +148 -148
  5. package/dist/json/tags.json +2 -0
  6. package/dist/json/web-types.json +3854 -3834
  7. package/dist/vuetify-labs.cjs +146 -36
  8. package/dist/vuetify-labs.css +3420 -3397
  9. package/dist/vuetify-labs.d.ts +101 -64
  10. package/dist/vuetify-labs.esm.js +147 -37
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +146 -36
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +146 -36
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3284 -3261
  17. package/dist/vuetify.d.ts +101 -64
  18. package/dist/vuetify.esm.js +147 -37
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +146 -36
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1201 -1188
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
  26. package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
  27. package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
  28. package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
  29. package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
  30. package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
  31. package/lib/components/VInput/VInput.d.ts +1 -1
  32. package/lib/components/VOverlay/VOverlay.css +1 -1
  33. package/lib/components/VOverlay/_variables.scss +1 -1
  34. package/lib/components/VOverlay/locationStrategies.d.ts +4 -0
  35. package/lib/components/VOverlay/locationStrategies.js +23 -3
  36. package/lib/components/VOverlay/locationStrategies.js.map +1 -1
  37. package/lib/composables/calendar.d.ts +1 -0
  38. package/lib/composables/calendar.js.map +1 -1
  39. package/lib/composables/defaults.js +6 -3
  40. package/lib/composables/defaults.js.map +1 -1
  41. package/lib/composables/theme.d.ts +6 -1
  42. package/lib/composables/theme.js +94 -26
  43. package/lib/composables/theme.js.map +1 -1
  44. package/lib/composables/virtual.js +6 -1
  45. package/lib/composables/virtual.js.map +1 -1
  46. package/lib/entry-bundler.js +1 -1
  47. package/lib/entry-bundler.js.map +1 -1
  48. package/lib/framework.d.ts +63 -54
  49. package/lib/framework.js +1 -1
  50. package/lib/framework.js.map +1 -1
  51. package/lib/util/globals.d.ts +1 -0
  52. package/lib/util/globals.js +1 -0
  53. package/lib/util/globals.js.map +1 -1
  54. package/lib/util/helpers.d.ts +2 -0
  55. package/lib/util/helpers.js +7 -0
  56. package/lib/util/helpers.js.map +1 -1
  57. package/package.json +3 -2
package/dist/vuetify.d.ts CHANGED
@@ -133,11 +133,12 @@ type DeepPartial<T> = T extends object ? {
133
133
  } : T;
134
134
  type ThemeOptions = false | {
135
135
  cspNonce?: string;
136
- defaultTheme?: string;
136
+ defaultTheme?: 'light' | 'dark' | 'system' | string;
137
137
  variations?: false | VariationsOptions;
138
138
  themes?: Record<string, ThemeDefinition>;
139
139
  stylesheetId?: string;
140
140
  scope?: string;
141
+ unimportant?: boolean;
141
142
  };
142
143
  type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
143
144
  interface VariationsOptions {
@@ -174,11 +175,15 @@ interface OnColors {
174
175
  'on-info': string;
175
176
  }
176
177
  interface ThemeInstance {
178
+ change: (themeName: string) => void;
179
+ cycle: (themeArray?: string[]) => void;
180
+ toggle: (themeArray?: [string, string]) => void;
177
181
  readonly isDisabled: boolean;
178
182
  readonly themes: Ref<Record<string, InternalThemeDefinition>>;
179
183
  readonly name: Readonly<Ref<string>>;
180
184
  readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
181
185
  readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
186
+ readonly prefix: string;
182
187
  readonly themeClasses: Readonly<Ref<string | undefined>>;
183
188
  readonly styles: Readonly<Ref<string>>;
184
189
  readonly global: {
@@ -1021,6 +1026,10 @@ declare function connectedLocationStrategy(data: LocationStrategyData, props: St
1021
1026
  y: number;
1022
1027
  };
1023
1028
  contentBox: Box;
1029
+ flipped: {
1030
+ x: boolean;
1031
+ y: boolean;
1032
+ };
1024
1033
  } | undefined;
1025
1034
  };
1026
1035
 
@@ -20692,6 +20701,7 @@ type VBtn = InstanceType<typeof VBtn>;
20692
20701
  declare const VBtnGroup: {
20693
20702
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
20694
20703
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20704
+ direction: "horizontal" | "vertical";
20695
20705
  style: vue.StyleValue;
20696
20706
  tag: string | JSXComponent;
20697
20707
  density: Density;
@@ -20716,6 +20726,7 @@ declare const VBtnGroup: {
20716
20726
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
20717
20727
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
20718
20728
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20729
+ direction: "horizontal" | "vertical";
20719
20730
  style: vue.StyleValue;
20720
20731
  tag: string | JSXComponent;
20721
20732
  density: Density;
@@ -20733,6 +20744,7 @@ declare const VBtnGroup: {
20733
20744
  Defaults: {};
20734
20745
  }, {
20735
20746
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20747
+ direction: "horizontal" | "vertical";
20736
20748
  style: vue.StyleValue;
20737
20749
  tag: string | JSXComponent;
20738
20750
  density: Density;
@@ -20757,6 +20769,7 @@ declare const VBtnGroup: {
20757
20769
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
20758
20770
  }, {}, {}, {}, {}, {
20759
20771
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20772
+ direction: "horizontal" | "vertical";
20760
20773
  style: vue.StyleValue;
20761
20774
  tag: string | JSXComponent;
20762
20775
  density: Density;
@@ -20769,6 +20782,7 @@ declare const VBtnGroup: {
20769
20782
  __isSuspense?: never;
20770
20783
  } & vue.ComponentOptionsBase<{
20771
20784
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20785
+ direction: "horizontal" | "vertical";
20772
20786
  style: vue.StyleValue;
20773
20787
  tag: string | JSXComponent;
20774
20788
  density: Density;
@@ -20793,6 +20807,7 @@ declare const VBtnGroup: {
20793
20807
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
20794
20808
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
20795
20809
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20810
+ direction: "horizontal" | "vertical";
20796
20811
  style: vue.StyleValue;
20797
20812
  tag: string | JSXComponent;
20798
20813
  density: Density;
@@ -20804,13 +20819,13 @@ declare const VBtnGroup: {
20804
20819
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
20805
20820
  color: StringConstructor;
20806
20821
  variant: {
20807
- type: vue.PropType<Variant$2>;
20822
+ type: PropType<Variant$2>;
20808
20823
  default: string;
20809
20824
  validator: (v: any) => boolean;
20810
20825
  };
20811
20826
  theme: StringConstructor;
20812
20827
  tag: {
20813
- type: vue.PropType<string | JSXComponent>;
20828
+ type: PropType<string | JSXComponent>;
20814
20829
  default: string;
20815
20830
  };
20816
20831
  rounded: {
@@ -20823,28 +20838,32 @@ declare const VBtnGroup: {
20823
20838
  validator(v: any): boolean;
20824
20839
  };
20825
20840
  density: {
20826
- type: vue.PropType<Density>;
20841
+ type: PropType<Density>;
20827
20842
  default: string;
20828
20843
  validator: (v: any) => boolean;
20829
20844
  };
20830
- class: vue.PropType<ClassValue>;
20845
+ class: PropType<ClassValue>;
20831
20846
  style: {
20832
- type: vue.PropType<vue.StyleValue>;
20847
+ type: PropType<vue.StyleValue>;
20833
20848
  default: null;
20834
20849
  };
20835
20850
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
20836
20851
  baseColor: StringConstructor;
20837
20852
  divided: BooleanConstructor;
20853
+ direction: {
20854
+ type: PropType<"horizontal" | "vertical">;
20855
+ default: string;
20856
+ };
20838
20857
  }, vue.ExtractPropTypes<{
20839
20858
  color: StringConstructor;
20840
20859
  variant: {
20841
- type: vue.PropType<Variant$2>;
20860
+ type: PropType<Variant$2>;
20842
20861
  default: string;
20843
20862
  validator: (v: any) => boolean;
20844
20863
  };
20845
20864
  theme: StringConstructor;
20846
20865
  tag: {
20847
- type: vue.PropType<string | JSXComponent>;
20866
+ type: PropType<string | JSXComponent>;
20848
20867
  default: string;
20849
20868
  };
20850
20869
  rounded: {
@@ -20857,18 +20876,22 @@ declare const VBtnGroup: {
20857
20876
  validator(v: any): boolean;
20858
20877
  };
20859
20878
  density: {
20860
- type: vue.PropType<Density>;
20879
+ type: PropType<Density>;
20861
20880
  default: string;
20862
20881
  validator: (v: any) => boolean;
20863
20882
  };
20864
- class: vue.PropType<ClassValue>;
20883
+ class: PropType<ClassValue>;
20865
20884
  style: {
20866
- type: vue.PropType<vue.StyleValue>;
20885
+ type: PropType<vue.StyleValue>;
20867
20886
  default: null;
20868
20887
  };
20869
20888
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
20870
20889
  baseColor: StringConstructor;
20871
20890
  divided: BooleanConstructor;
20891
+ direction: {
20892
+ type: PropType<"horizontal" | "vertical">;
20893
+ default: string;
20894
+ };
20872
20895
  }>>;
20873
20896
  type VBtnGroup = InstanceType<typeof VBtnGroup>;
20874
20897
 
@@ -20881,6 +20904,7 @@ type VBtnToggleSlots = {
20881
20904
  declare const VBtnToggle: {
20882
20905
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
20883
20906
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20907
+ direction: "horizontal" | "vertical";
20884
20908
  style: vue.StyleValue;
20885
20909
  disabled: boolean;
20886
20910
  multiple: boolean;
@@ -20907,6 +20931,7 @@ declare const VBtnToggle: {
20907
20931
  'update:modelValue': (value: any) => true;
20908
20932
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
20909
20933
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20934
+ direction: "horizontal" | "vertical";
20910
20935
  style: vue.StyleValue;
20911
20936
  disabled: boolean;
20912
20937
  multiple: boolean;
@@ -20926,6 +20951,7 @@ declare const VBtnToggle: {
20926
20951
  Defaults: {};
20927
20952
  }, {
20928
20953
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20954
+ direction: "horizontal" | "vertical";
20929
20955
  style: vue.StyleValue;
20930
20956
  disabled: boolean;
20931
20957
  multiple: boolean;
@@ -20950,6 +20976,7 @@ declare const VBtnToggle: {
20950
20976
  select: (id: string, value: boolean) => void;
20951
20977
  }, {}, {}, {}, {
20952
20978
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20979
+ direction: "horizontal" | "vertical";
20953
20980
  style: vue.StyleValue;
20954
20981
  disabled: boolean;
20955
20982
  multiple: boolean;
@@ -20964,6 +20991,7 @@ declare const VBtnToggle: {
20964
20991
  __isSuspense?: never;
20965
20992
  } & vue.ComponentOptionsBase<{
20966
20993
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20994
+ direction: "horizontal" | "vertical";
20967
20995
  style: vue.StyleValue;
20968
20996
  disabled: boolean;
20969
20997
  multiple: boolean;
@@ -20990,6 +21018,7 @@ declare const VBtnToggle: {
20990
21018
  'update:modelValue': (value: any) => true;
20991
21019
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, string, {
20992
21020
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
21021
+ direction: "horizontal" | "vertical";
20993
21022
  style: vue.StyleValue;
20994
21023
  disabled: boolean;
20995
21024
  multiple: boolean;
@@ -21046,6 +21075,10 @@ declare const VBtnToggle: {
21046
21075
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
21047
21076
  baseColor: StringConstructor;
21048
21077
  divided: BooleanConstructor;
21078
+ direction: {
21079
+ type: vue.PropType<"horizontal" | "vertical">;
21080
+ default: string;
21081
+ };
21049
21082
  }, vue.ExtractPropTypes<{
21050
21083
  modelValue: {
21051
21084
  type: null;
@@ -21089,6 +21122,10 @@ declare const VBtnToggle: {
21089
21122
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
21090
21123
  baseColor: StringConstructor;
21091
21124
  divided: BooleanConstructor;
21125
+ direction: {
21126
+ type: vue.PropType<"horizontal" | "vertical">;
21127
+ default: string;
21128
+ };
21092
21129
  }>>;
21093
21130
  type VBtnToggle = InstanceType<typeof VBtnToggle>;
21094
21131
 
@@ -82960,41 +82997,46 @@ declare module 'vue' {
82960
82997
  $children?: VNodeChild
82961
82998
  }
82962
82999
  export interface GlobalComponents {
83000
+ VApp: VApp
82963
83001
  VAppBar: VAppBar
82964
83002
  VAppBarNavIcon: VAppBarNavIcon
82965
83003
  VAppBarTitle: VAppBarTitle
82966
83004
  VAlert: VAlert
82967
83005
  VAlertTitle: VAlertTitle
82968
83006
  VAutocomplete: VAutocomplete
83007
+ VAvatar: VAvatar
83008
+ VBottomSheet: VBottomSheet
82969
83009
  VBanner: VBanner
82970
83010
  VBannerActions: VBannerActions
82971
83011
  VBannerText: VBannerText
82972
- VBadge: VBadge
82973
- VBottomSheet: VBottomSheet
82974
- VAvatar: VAvatar
82975
83012
  VBottomNavigation: VBottomNavigation
82976
83013
  VBreadcrumbs: VBreadcrumbs
82977
83014
  VBreadcrumbsItem: VBreadcrumbsItem
82978
83015
  VBreadcrumbsDivider: VBreadcrumbsDivider
82979
- VBtnToggle: VBtnToggle
83016
+ VBadge: VBadge
82980
83017
  VBtn: VBtn
83018
+ VBtnToggle: VBtnToggle
83019
+ VChip: VChip
83020
+ VCarousel: VCarousel
83021
+ VCarouselItem: VCarouselItem
82981
83022
  VCard: VCard
82982
83023
  VCardActions: VCardActions
82983
83024
  VCardItem: VCardItem
82984
83025
  VCardSubtitle: VCardSubtitle
82985
83026
  VCardText: VCardText
82986
83027
  VCardTitle: VCardTitle
82987
- VBtnGroup: VBtnGroup
82988
83028
  VCheckbox: VCheckbox
82989
83029
  VCheckboxBtn: VCheckboxBtn
82990
- VCarousel: VCarousel
82991
- VCarouselItem: VCarouselItem
82992
- VChip: VChip
83030
+ VCode: VCode
83031
+ VChipGroup: VChipGroup
82993
83032
  VColorPicker: VColorPicker
83033
+ VDatePicker: VDatePicker
83034
+ VDatePickerControls: VDatePickerControls
83035
+ VDatePickerHeader: VDatePickerHeader
83036
+ VDatePickerMonth: VDatePickerMonth
83037
+ VDatePickerMonths: VDatePickerMonths
83038
+ VDatePickerYears: VDatePickerYears
82994
83039
  VCombobox: VCombobox
82995
- VCounter: VCounter
82996
- VChipGroup: VChipGroup
82997
- VCode: VCode
82998
83040
  VDataTable: VDataTable
82999
83041
  VDataTableHeaders: VDataTableHeaders
83000
83042
  VDataTableFooter: VDataTableFooter
@@ -83002,24 +83044,18 @@ declare module 'vue' {
83002
83044
  VDataTableRow: VDataTableRow
83003
83045
  VDataTableVirtual: VDataTableVirtual
83004
83046
  VDataTableServer: VDataTableServer
83005
- VDatePicker: VDatePicker
83006
- VDatePickerControls: VDatePickerControls
83007
- VDatePickerHeader: VDatePickerHeader
83008
- VDatePickerMonth: VDatePickerMonth
83009
- VDatePickerMonths: VDatePickerMonths
83010
- VDatePickerYears: VDatePickerYears
83011
- VDivider: VDivider
83012
83047
  VDialog: VDialog
83048
+ VDivider: VDivider
83013
83049
  VExpansionPanels: VExpansionPanels
83014
83050
  VExpansionPanel: VExpansionPanel
83015
83051
  VExpansionPanelText: VExpansionPanelText
83016
83052
  VExpansionPanelTitle: VExpansionPanelTitle
83017
- VEmptyState: VEmptyState
83053
+ VCounter: VCounter
83018
83054
  VField: VField
83019
83055
  VFieldLabel: VFieldLabel
83056
+ VFab: VFab
83020
83057
  VFileInput: VFileInput
83021
83058
  VFooter: VFooter
83022
- VFab: VFab
83023
83059
  VIcon: VIcon
83024
83060
  VComponentIcon: VComponentIcon
83025
83061
  VSvgIcon: VSvgIcon
@@ -83029,9 +83065,9 @@ declare module 'vue' {
83029
83065
  VInfiniteScroll: VInfiniteScroll
83030
83066
  VItemGroup: VItemGroup
83031
83067
  VItem: VItem
83032
- VLabel: VLabel
83033
- VKbd: VKbd
83034
83068
  VInput: VInput
83069
+ VKbd: VKbd
83070
+ VLabel: VLabel
83035
83071
  VList: VList
83036
83072
  VListGroup: VListGroup
83037
83073
  VListImg: VListImg
@@ -83041,42 +83077,41 @@ declare module 'vue' {
83041
83077
  VListItemSubtitle: VListItemSubtitle
83042
83078
  VListItemTitle: VListItemTitle
83043
83079
  VListSubheader: VListSubheader
83080
+ VMenu: VMenu
83044
83081
  VMain: VMain
83045
83082
  VMessages: VMessages
83046
- VMenu: VMenu
83047
- VApp: VApp
83048
- VNavigationDrawer: VNavigationDrawer
83049
- VNumberInput: VNumberInput
83050
83083
  VOverlay: VOverlay
83051
- VOtpInput: VOtpInput
83084
+ VBtnGroup: VBtnGroup
83085
+ VNumberInput: VNumberInput
83052
83086
  VProgressLinear: VProgressLinear
83053
- VPagination: VPagination
83087
+ VOtpInput: VOtpInput
83054
83088
  VRadioGroup: VRadioGroup
83089
+ VProgressCircular: VProgressCircular
83090
+ VPagination: VPagination
83091
+ VSelectionControl: VSelectionControl
83092
+ VSelect: VSelect
83055
83093
  VRating: VRating
83056
83094
  VSelectionControlGroup: VSelectionControlGroup
83057
83095
  VSheet: VSheet
83058
- VSelectionControl: VSelectionControl
83059
- VSlideGroup: VSlideGroup
83060
- VSlideGroupItem: VSlideGroupItem
83061
- VSnackbar: VSnackbar
83062
- VProgressCircular: VProgressCircular
83063
- VSelect: VSelect
83064
- VSlider: VSlider
83065
83096
  VSkeletonLoader: VSkeletonLoader
83066
- VSwitch: VSwitch
83097
+ VSlider: VSlider
83067
83098
  VStepper: VStepper
83068
83099
  VStepperActions: VStepperActions
83069
83100
  VStepperHeader: VStepperHeader
83070
83101
  VStepperItem: VStepperItem
83071
83102
  VStepperWindow: VStepperWindow
83072
83103
  VStepperWindowItem: VStepperWindowItem
83073
- VSystemBar: VSystemBar
83104
+ VSwitch: VSwitch
83105
+ VSlideGroup: VSlideGroup
83106
+ VSlideGroupItem: VSlideGroupItem
83107
+ VSnackbar: VSnackbar
83074
83108
  VTab: VTab
83075
83109
  VTabs: VTabs
83076
83110
  VTabsWindow: VTabsWindow
83077
83111
  VTabsWindowItem: VTabsWindowItem
83078
- VTextarea: VTextarea
83112
+ VSystemBar: VSystemBar
83079
83113
  VTextField: VTextField
83114
+ VTextarea: VTextarea
83080
83115
  VTable: VTable
83081
83116
  VToolbar: VToolbar
83082
83117
  VToolbarTitle: VToolbarTitle
@@ -83086,25 +83121,30 @@ declare module 'vue' {
83086
83121
  VTimelineItem: VTimelineItem
83087
83122
  VWindow: VWindow
83088
83123
  VWindowItem: VWindowItem
83124
+ VEmptyState: VEmptyState
83089
83125
  VDataIterator: VDataIterator
83090
83126
  VDefaultsProvider: VDefaultsProvider
83091
- VForm: VForm
83127
+ VConfirmEdit: VConfirmEdit
83092
83128
  VContainer: VContainer
83093
83129
  VCol: VCol
83094
83130
  VRow: VRow
83095
83131
  VSpacer: VSpacer
83096
- VLazy: VLazy
83132
+ VForm: VForm
83133
+ VHover: VHover
83097
83134
  VLayout: VLayout
83098
83135
  VLayoutItem: VLayoutItem
83136
+ VLazy: VLazy
83099
83137
  VNoSsr: VNoSsr
83100
- VLocaleProvider: VLocaleProvider
83101
83138
  VParallax: VParallax
83102
- VRangeSlider: VRangeSlider
83103
83139
  VRadio: VRadio
83140
+ VRangeSlider: VRangeSlider
83104
83141
  VResponsive: VResponsive
83105
- VSpeedDial: VSpeedDial
83106
83142
  VSnackbarQueue: VSnackbarQueue
83143
+ VSparkline: VSparkline
83144
+ VSpeedDial: VSpeedDial
83107
83145
  VThemeProvider: VThemeProvider
83146
+ VValidation: VValidation
83147
+ VNavigationDrawer: VNavigationDrawer
83108
83148
  VVirtualScroll: VVirtualScroll
83109
83149
  VFabTransition: VFabTransition
83110
83150
  VDialogBottomTransition: VDialogBottomTransition
@@ -83122,30 +83162,27 @@ declare module 'vue' {
83122
83162
  VExpandTransition: VExpandTransition
83123
83163
  VExpandXTransition: VExpandXTransition
83124
83164
  VDialogTransition: VDialogTransition
83125
- VValidation: VValidation
83126
- VHover: VHover
83127
- VConfirmEdit: VConfirmEdit
83128
- VSparkline: VSparkline
83165
+ VLocaleProvider: VLocaleProvider
83129
83166
  VCalendar: VCalendar
83130
83167
  VCalendarDay: VCalendarDay
83131
83168
  VCalendarHeader: VCalendarHeader
83132
83169
  VCalendarInterval: VCalendarInterval
83133
83170
  VCalendarIntervalEvent: VCalendarIntervalEvent
83134
83171
  VCalendarMonthDay: VCalendarMonthDay
83135
- VIconBtn: VIconBtn
83136
- VStepperVertical: VStepperVertical
83137
- VStepperVerticalItem: VStepperVerticalItem
83138
- VStepperVerticalActions: VStepperVerticalActions
83139
83172
  VPicker: VPicker
83140
83173
  VPickerTitle: VPickerTitle
83174
+ VIconBtn: VIconBtn
83141
83175
  VTimePicker: VTimePicker
83142
83176
  VTimePickerClock: VTimePickerClock
83143
83177
  VTimePickerControls: VTimePickerControls
83144
- VFileUpload: VFileUpload
83145
- VFileUploadItem: VFileUploadItem
83146
83178
  VTreeview: VTreeview
83147
83179
  VTreeviewItem: VTreeviewItem
83148
83180
  VTreeviewGroup: VTreeviewGroup
83181
+ VStepperVertical: VStepperVertical
83182
+ VStepperVerticalItem: VStepperVerticalItem
83183
+ VStepperVerticalActions: VStepperVerticalActions
83184
+ VFileUpload: VFileUpload
83185
+ VFileUploadItem: VFileUploadItem
83149
83186
  VDateInput: VDateInput
83150
83187
  VPullToRefresh: VPullToRefresh
83151
83188
  }