@vuetify/nightly 3.11.8-dev.2026-02-01 → 3.11.8-dev.2026-02-07

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 (37) hide show
  1. package/CHANGELOG.md +4 -3
  2. package/dist/_component-variables-labs.sass +1 -0
  3. package/dist/json/attributes.json +3962 -3918
  4. package/dist/json/importMap-labs.json +18 -14
  5. package/dist/json/importMap.json +156 -156
  6. package/dist/json/tags.json +16 -0
  7. package/dist/json/web-types.json +7051 -6886
  8. package/dist/vuetify-labs.cjs +86 -3
  9. package/dist/vuetify-labs.css +4728 -4680
  10. package/dist/vuetify-labs.d.ts +350 -55
  11. package/dist/vuetify-labs.esm.js +86 -3
  12. package/dist/vuetify-labs.esm.js.map +1 -1
  13. package/dist/vuetify-labs.js +86 -3
  14. package/dist/vuetify-labs.min.css +2 -2
  15. package/dist/vuetify.cjs +3 -3
  16. package/dist/vuetify.css +3116 -3116
  17. package/dist/vuetify.d.ts +55 -54
  18. package/dist/vuetify.esm.js +3 -3
  19. package/dist/vuetify.js +3 -3
  20. package/dist/vuetify.min.css +2 -2
  21. package/dist/vuetify.min.js +3 -3
  22. package/lib/entry-bundler.js +1 -1
  23. package/lib/framework.d.ts +55 -54
  24. package/lib/framework.js +1 -1
  25. package/lib/labs/VAvatarGroup/VAvatarGroup.css +49 -0
  26. package/lib/labs/VAvatarGroup/VAvatarGroup.d.ts +401 -0
  27. package/lib/labs/VAvatarGroup/VAvatarGroup.js +91 -0
  28. package/lib/labs/VAvatarGroup/VAvatarGroup.js.map +1 -0
  29. package/lib/labs/VAvatarGroup/VAvatarGroup.scss +79 -0
  30. package/lib/labs/VAvatarGroup/_variables.scss +6 -0
  31. package/lib/labs/VAvatarGroup/index.d.ts +1 -0
  32. package/lib/labs/VAvatarGroup/index.js +2 -0
  33. package/lib/labs/VAvatarGroup/index.js.map +1 -0
  34. package/lib/labs/components.d.ts +1 -0
  35. package/lib/labs/components.js +1 -0
  36. package/lib/labs/components.js.map +1 -1
  37. package/package.json +1 -1
@@ -114733,6 +114733,299 @@ declare const VExpandXTransition: {
114733
114733
  }>>;
114734
114734
  type VExpandXTransition = InstanceType<typeof VExpandXTransition>;
114735
114735
 
114736
+ type AvatarGroupItem = string | Record<string, any>;
114737
+ declare const VAvatarGroup: {
114738
+ new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
114739
+ style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
114740
+ tag: string | JSXComponent;
114741
+ hoverable: boolean;
114742
+ items: AvatarGroupItem[];
114743
+ itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
114744
+ reverse: boolean;
114745
+ vertical: boolean;
114746
+ } & {
114747
+ class?: any;
114748
+ border?: string | number | boolean | undefined;
114749
+ gap?: string | number | undefined;
114750
+ limit?: number | undefined;
114751
+ overflowText?: string | undefined;
114752
+ size?: string | number | undefined;
114753
+ } & {
114754
+ $children?: {
114755
+ default?: (() => vue.VNodeChild) | undefined;
114756
+ prepend?: (() => vue.VNodeChild) | undefined;
114757
+ append?: (() => vue.VNodeChild) | undefined;
114758
+ item?: ((arg: {
114759
+ props: any;
114760
+ index: number;
114761
+ }) => vue.VNodeChild) | undefined;
114762
+ overflow?: ((arg: {
114763
+ overflow: number;
114764
+ }) => vue.VNodeChild) | undefined;
114765
+ } | {
114766
+ $stable?: boolean | undefined;
114767
+ } | (() => vue.VNodeChild) | vue.VNodeChild;
114768
+ "v-slots"?: {
114769
+ default?: false | (() => vue.VNodeChild) | undefined;
114770
+ prepend?: false | (() => vue.VNodeChild) | undefined;
114771
+ append?: false | (() => vue.VNodeChild) | undefined;
114772
+ item?: false | ((arg: {
114773
+ props: any;
114774
+ index: number;
114775
+ }) => vue.VNodeChild) | undefined;
114776
+ overflow?: false | ((arg: {
114777
+ overflow: number;
114778
+ }) => vue.VNodeChild) | undefined;
114779
+ } | undefined;
114780
+ } & {
114781
+ "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
114782
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
114783
+ "v-slot:item"?: false | ((arg: {
114784
+ props: any;
114785
+ index: number;
114786
+ }) => vue.VNodeChild) | undefined;
114787
+ "v-slot:overflow"?: false | ((arg: {
114788
+ overflow: number;
114789
+ }) => vue.VNodeChild) | undefined;
114790
+ "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
114791
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
114792
+ style: vue.StyleValue;
114793
+ tag: string | JSXComponent;
114794
+ hoverable: boolean;
114795
+ items: AvatarGroupItem[];
114796
+ itemProps: SelectItemKey;
114797
+ reverse: boolean;
114798
+ vertical: boolean;
114799
+ }, true, {}, vue.SlotsType<Partial<{
114800
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
114801
+ [key: string]: any;
114802
+ }>[];
114803
+ prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
114804
+ [key: string]: any;
114805
+ }>[];
114806
+ append: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
114807
+ [key: string]: any;
114808
+ }>[];
114809
+ item: (arg: {
114810
+ props: any;
114811
+ index: number;
114812
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
114813
+ [key: string]: any;
114814
+ }>[];
114815
+ overflow: (arg: {
114816
+ overflow: number;
114817
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
114818
+ [key: string]: any;
114819
+ }>[];
114820
+ }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
114821
+ P: {};
114822
+ B: {};
114823
+ D: {};
114824
+ C: {};
114825
+ M: {};
114826
+ Defaults: {};
114827
+ }, {
114828
+ style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
114829
+ tag: string | JSXComponent;
114830
+ hoverable: boolean;
114831
+ items: AvatarGroupItem[];
114832
+ itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
114833
+ reverse: boolean;
114834
+ vertical: boolean;
114835
+ } & {
114836
+ class?: any;
114837
+ border?: string | number | boolean | undefined;
114838
+ gap?: string | number | undefined;
114839
+ limit?: number | undefined;
114840
+ overflowText?: string | undefined;
114841
+ size?: string | number | undefined;
114842
+ } & {
114843
+ $children?: {
114844
+ default?: (() => vue.VNodeChild) | undefined;
114845
+ prepend?: (() => vue.VNodeChild) | undefined;
114846
+ append?: (() => vue.VNodeChild) | undefined;
114847
+ item?: ((arg: {
114848
+ props: any;
114849
+ index: number;
114850
+ }) => vue.VNodeChild) | undefined;
114851
+ overflow?: ((arg: {
114852
+ overflow: number;
114853
+ }) => vue.VNodeChild) | undefined;
114854
+ } | {
114855
+ $stable?: boolean | undefined;
114856
+ } | (() => vue.VNodeChild) | vue.VNodeChild;
114857
+ "v-slots"?: {
114858
+ default?: false | (() => vue.VNodeChild) | undefined;
114859
+ prepend?: false | (() => vue.VNodeChild) | undefined;
114860
+ append?: false | (() => vue.VNodeChild) | undefined;
114861
+ item?: false | ((arg: {
114862
+ props: any;
114863
+ index: number;
114864
+ }) => vue.VNodeChild) | undefined;
114865
+ overflow?: false | ((arg: {
114866
+ overflow: number;
114867
+ }) => vue.VNodeChild) | undefined;
114868
+ } | undefined;
114869
+ } & {
114870
+ "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
114871
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
114872
+ "v-slot:item"?: false | ((arg: {
114873
+ props: any;
114874
+ index: number;
114875
+ }) => vue.VNodeChild) | undefined;
114876
+ "v-slot:overflow"?: false | ((arg: {
114877
+ overflow: number;
114878
+ }) => vue.VNodeChild) | undefined;
114879
+ "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
114880
+ }, {}, {}, {}, {}, {
114881
+ style: vue.StyleValue;
114882
+ tag: string | JSXComponent;
114883
+ hoverable: boolean;
114884
+ items: AvatarGroupItem[];
114885
+ itemProps: SelectItemKey;
114886
+ reverse: boolean;
114887
+ vertical: boolean;
114888
+ }>;
114889
+ __isFragment?: undefined;
114890
+ __isTeleport?: undefined;
114891
+ __isSuspense?: undefined;
114892
+ } & vue.ComponentOptionsBase<{
114893
+ style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
114894
+ tag: string | JSXComponent;
114895
+ hoverable: boolean;
114896
+ items: AvatarGroupItem[];
114897
+ itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
114898
+ reverse: boolean;
114899
+ vertical: boolean;
114900
+ } & {
114901
+ class?: any;
114902
+ border?: string | number | boolean | undefined;
114903
+ gap?: string | number | undefined;
114904
+ limit?: number | undefined;
114905
+ overflowText?: string | undefined;
114906
+ size?: string | number | undefined;
114907
+ } & {
114908
+ $children?: {
114909
+ default?: (() => vue.VNodeChild) | undefined;
114910
+ prepend?: (() => vue.VNodeChild) | undefined;
114911
+ append?: (() => vue.VNodeChild) | undefined;
114912
+ item?: ((arg: {
114913
+ props: any;
114914
+ index: number;
114915
+ }) => vue.VNodeChild) | undefined;
114916
+ overflow?: ((arg: {
114917
+ overflow: number;
114918
+ }) => vue.VNodeChild) | undefined;
114919
+ } | {
114920
+ $stable?: boolean | undefined;
114921
+ } | (() => vue.VNodeChild) | vue.VNodeChild;
114922
+ "v-slots"?: {
114923
+ default?: false | (() => vue.VNodeChild) | undefined;
114924
+ prepend?: false | (() => vue.VNodeChild) | undefined;
114925
+ append?: false | (() => vue.VNodeChild) | undefined;
114926
+ item?: false | ((arg: {
114927
+ props: any;
114928
+ index: number;
114929
+ }) => vue.VNodeChild) | undefined;
114930
+ overflow?: false | ((arg: {
114931
+ overflow: number;
114932
+ }) => vue.VNodeChild) | undefined;
114933
+ } | undefined;
114934
+ } & {
114935
+ "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
114936
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
114937
+ "v-slot:item"?: false | ((arg: {
114938
+ props: any;
114939
+ index: number;
114940
+ }) => vue.VNodeChild) | undefined;
114941
+ "v-slot:overflow"?: false | ((arg: {
114942
+ overflow: number;
114943
+ }) => vue.VNodeChild) | undefined;
114944
+ "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
114945
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
114946
+ style: vue.StyleValue;
114947
+ tag: string | JSXComponent;
114948
+ hoverable: boolean;
114949
+ items: AvatarGroupItem[];
114950
+ itemProps: SelectItemKey;
114951
+ reverse: boolean;
114952
+ vertical: boolean;
114953
+ }, {}, string, vue.SlotsType<Partial<{
114954
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
114955
+ [key: string]: any;
114956
+ }>[];
114957
+ prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
114958
+ [key: string]: any;
114959
+ }>[];
114960
+ append: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
114961
+ [key: string]: any;
114962
+ }>[];
114963
+ item: (arg: {
114964
+ props: any;
114965
+ index: number;
114966
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
114967
+ [key: string]: any;
114968
+ }>[];
114969
+ overflow: (arg: {
114970
+ overflow: number;
114971
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
114972
+ [key: string]: any;
114973
+ }>[];
114974
+ }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
114975
+ class: PropType<any>;
114976
+ style: {
114977
+ type: PropType<vue.StyleValue>;
114978
+ default: null;
114979
+ };
114980
+ tag: {
114981
+ type: PropType<string | JSXComponent>;
114982
+ default: string;
114983
+ };
114984
+ border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
114985
+ gap: (NumberConstructor | StringConstructor)[];
114986
+ hoverable: BooleanConstructor;
114987
+ items: {
114988
+ type: PropType<AvatarGroupItem[]>;
114989
+ default: () => never[];
114990
+ };
114991
+ itemProps: {
114992
+ type: PropType<SelectItemKey>;
114993
+ default: null;
114994
+ };
114995
+ limit: NumberConstructor;
114996
+ overflowText: StringConstructor;
114997
+ reverse: BooleanConstructor;
114998
+ size: (NumberConstructor | StringConstructor)[];
114999
+ vertical: BooleanConstructor;
115000
+ }, vue.ExtractPropTypes<{
115001
+ class: PropType<any>;
115002
+ style: {
115003
+ type: PropType<vue.StyleValue>;
115004
+ default: null;
115005
+ };
115006
+ tag: {
115007
+ type: PropType<string | JSXComponent>;
115008
+ default: string;
115009
+ };
115010
+ border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
115011
+ gap: (NumberConstructor | StringConstructor)[];
115012
+ hoverable: BooleanConstructor;
115013
+ items: {
115014
+ type: PropType<AvatarGroupItem[]>;
115015
+ default: () => never[];
115016
+ };
115017
+ itemProps: {
115018
+ type: PropType<SelectItemKey>;
115019
+ default: null;
115020
+ };
115021
+ limit: NumberConstructor;
115022
+ overflowText: StringConstructor;
115023
+ reverse: BooleanConstructor;
115024
+ size: (NumberConstructor | StringConstructor)[];
115025
+ vertical: BooleanConstructor;
115026
+ }>>;
115027
+ type VAvatarGroup = InstanceType<typeof VAvatarGroup>;
115028
+
114736
115029
  type VColorInputActionsSlot = {
114737
115030
  save: () => void;
114738
115031
  cancel: () => void;
@@ -151109,6 +151402,7 @@ declare const allComponents_d_VAppBarNavIcon: typeof VAppBarNavIcon;
151109
151402
  declare const allComponents_d_VAppBarTitle: typeof VAppBarTitle;
151110
151403
  declare const allComponents_d_VAutocomplete: typeof VAutocomplete;
151111
151404
  declare const allComponents_d_VAvatar: typeof VAvatar;
151405
+ declare const allComponents_d_VAvatarGroup: typeof VAvatarGroup;
151112
151406
  declare const allComponents_d_VBadge: typeof VBadge;
151113
151407
  declare const allComponents_d_VBanner: typeof VBanner;
151114
151408
  declare const allComponents_d_VBannerActions: typeof VBannerActions;
@@ -151296,7 +151590,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
151296
151590
  declare const allComponents_d_VWindow: typeof VWindow;
151297
151591
  declare const allComponents_d_VWindowItem: typeof VWindowItem;
151298
151592
  declare namespace allComponents_d {
151299
- export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorInput as VColorInput, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VCommandPalette as VCommandPalette, allComponents_d_VCommandPaletteItemComponent as VCommandPaletteItemComponent, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHotkey as VHotkey, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VIconBtn as VIconBtn, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMaskInput as VMaskInput, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VPie as VPie, allComponents_d_VPieSegment as VPieSegment, allComponents_d_VPieTooltip as VPieTooltip, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVideo as VVideo, allComponents_d_VVideoControls as VVideoControls, allComponents_d_VVideoVolume as VVideoVolume, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
151593
+ export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VAvatarGroup as VAvatarGroup, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorInput as VColorInput, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VCommandPalette as VCommandPalette, allComponents_d_VCommandPaletteItemComponent as VCommandPaletteItemComponent, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHotkey as VHotkey, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VIconBtn as VIconBtn, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMaskInput as VMaskInput, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VPie as VPie, allComponents_d_VPieSegment as VPieSegment, allComponents_d_VPieTooltip as VPieTooltip, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVideo as VVideo, allComponents_d_VVideoControls as VVideoControls, allComponents_d_VVideoVolume as VVideoVolume, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
151300
151594
  }
151301
151595
 
151302
151596
  // Types
@@ -151633,39 +151927,37 @@ declare module 'vue' {
151633
151927
  $children?: VNodeChild
151634
151928
  }
151635
151929
  export interface GlobalComponents {
151636
- VApp: VApp
151637
151930
  VAppBar: VAppBar
151638
151931
  VAppBarNavIcon: VAppBarNavIcon
151639
151932
  VAppBarTitle: VAppBarTitle
151640
151933
  VAlert: VAlert
151641
151934
  VAlertTitle: VAlertTitle
151642
151935
  VAutocomplete: VAutocomplete
151936
+ VApp: VApp
151643
151937
  VAvatar: VAvatar
151644
151938
  VBanner: VBanner
151645
151939
  VBannerActions: VBannerActions
151646
151940
  VBannerText: VBannerText
151647
- VBadge: VBadge
151648
151941
  VBreadcrumbs: VBreadcrumbs
151649
151942
  VBreadcrumbsItem: VBreadcrumbsItem
151650
151943
  VBreadcrumbsDivider: VBreadcrumbsDivider
151651
- VBottomSheet: VBottomSheet
151652
151944
  VBottomNavigation: VBottomNavigation
151945
+ VBottomSheet: VBottomSheet
151653
151946
  VBtnToggle: VBtnToggle
151654
- VBtn: VBtn
151947
+ VBadge: VBadge
151655
151948
  VBtnGroup: VBtnGroup
151656
- VCarousel: VCarousel
151657
- VCarouselItem: VCarouselItem
151658
- VColorPicker: VColorPicker
151659
- VChip: VChip
151949
+ VBtn: VBtn
151660
151950
  VCard: VCard
151661
151951
  VCardActions: VCardActions
151662
151952
  VCardItem: VCardItem
151663
151953
  VCardSubtitle: VCardSubtitle
151664
151954
  VCardText: VCardText
151665
151955
  VCardTitle: VCardTitle
151666
- VCheckbox: VCheckbox
151667
- VCheckboxBtn: VCheckboxBtn
151668
- VCombobox: VCombobox
151956
+ VCalendar: VCalendar
151957
+ VCarousel: VCarousel
151958
+ VCarouselItem: VCarouselItem
151959
+ VCode: VCode
151960
+ VColorPicker: VColorPicker
151669
151961
  VDataTable: VDataTable
151670
151962
  VDataTableHeaders: VDataTableHeaders
151671
151963
  VDataTableFooter: VDataTableFooter
@@ -151673,40 +151965,43 @@ declare module 'vue' {
151673
151965
  VDataTableRow: VDataTableRow
151674
151966
  VDataTableVirtual: VDataTableVirtual
151675
151967
  VDataTableServer: VDataTableServer
151676
- VCalendar: VCalendar
151677
151968
  VChipGroup: VChipGroup
151678
- VCode: VCode
151969
+ VChip: VChip
151970
+ VCounter: VCounter
151971
+ VCombobox: VCombobox
151972
+ VEmptyState: VEmptyState
151973
+ VCheckbox: VCheckbox
151974
+ VCheckboxBtn: VCheckboxBtn
151975
+ VFab: VFab
151679
151976
  VDatePicker: VDatePicker
151680
151977
  VDatePickerControls: VDatePickerControls
151681
151978
  VDatePickerHeader: VDatePickerHeader
151682
151979
  VDatePickerMonth: VDatePickerMonth
151683
151980
  VDatePickerMonths: VDatePickerMonths
151684
151981
  VDatePickerYears: VDatePickerYears
151685
- VCounter: VCounter
151982
+ VDivider: VDivider
151686
151983
  VDialog: VDialog
151687
151984
  VExpansionPanels: VExpansionPanels
151688
151985
  VExpansionPanel: VExpansionPanel
151689
151986
  VExpansionPanelText: VExpansionPanelText
151690
151987
  VExpansionPanelTitle: VExpansionPanelTitle
151691
- VDivider: VDivider
151692
- VEmptyState: VEmptyState
151693
151988
  VFileInput: VFileInput
151694
- VFab: VFab
151989
+ VHotkey: VHotkey
151695
151990
  VField: VField
151696
151991
  VFieldLabel: VFieldLabel
151697
- VHotkey: VHotkey
151698
- VInfiniteScroll: VInfiniteScroll
151699
151992
  VFooter: VFooter
151700
- VImg: VImg
151993
+ VInfiniteScroll: VInfiniteScroll
151994
+ VInput: VInput
151701
151995
  VIcon: VIcon
151702
151996
  VComponentIcon: VComponentIcon
151703
151997
  VSvgIcon: VSvgIcon
151704
151998
  VLigatureIcon: VLigatureIcon
151705
151999
  VClassIcon: VClassIcon
151706
152000
  VKbd: VKbd
151707
- VInput: VInput
151708
152001
  VItemGroup: VItemGroup
151709
152002
  VItem: VItem
152003
+ VImg: VImg
152004
+ VMain: VMain
151710
152005
  VLabel: VLabel
151711
152006
  VList: VList
151712
152007
  VListGroup: VListGroup
@@ -151717,80 +152012,78 @@ declare module 'vue' {
151717
152012
  VListItemSubtitle: VListItemSubtitle
151718
152013
  VListItemTitle: VListItemTitle
151719
152014
  VListSubheader: VListSubheader
151720
- VMenu: VMenu
151721
- VMain: VMain
151722
152015
  VNavigationDrawer: VNavigationDrawer
152016
+ VOtpInput: VOtpInput
152017
+ VMenu: VMenu
151723
152018
  VMessages: VMessages
151724
- VPagination: VPagination
151725
152019
  VNumberInput: VNumberInput
151726
- VOtpInput: VOtpInput
151727
152020
  VOverlay: VOverlay
151728
- VProgressLinear: VProgressLinear
151729
- VProgressCircular: VProgressCircular
151730
152021
  VRadioGroup: VRadioGroup
151731
- VSelectionControlGroup: VSelectionControlGroup
151732
- VSelect: VSelect
152022
+ VPagination: VPagination
152023
+ VProgressCircular: VProgressCircular
151733
152024
  VRating: VRating
151734
- VSheet: VSheet
151735
152025
  VSelectionControl: VSelectionControl
152026
+ VProgressLinear: VProgressLinear
152027
+ VSelect: VSelect
152028
+ VSkeletonLoader: VSkeletonLoader
152029
+ VSelectionControlGroup: VSelectionControlGroup
152030
+ VSheet: VSheet
151736
152031
  VSlideGroup: VSlideGroup
151737
152032
  VSlideGroupItem: VSlideGroupItem
151738
- VSnackbar: VSnackbar
151739
152033
  VSlider: VSlider
151740
- VSwitch: VSwitch
151741
- VSystemBar: VSystemBar
151742
- VSkeletonLoader: VSkeletonLoader
151743
- VTab: VTab
151744
- VTabs: VTabs
151745
- VTabsWindow: VTabsWindow
151746
- VTabsWindowItem: VTabsWindowItem
151747
- VTable: VTable
152034
+ VSnackbar: VSnackbar
151748
152035
  VStepper: VStepper
151749
152036
  VStepperActions: VStepperActions
151750
152037
  VStepperHeader: VStepperHeader
151751
152038
  VStepperItem: VStepperItem
151752
152039
  VStepperWindow: VStepperWindow
151753
152040
  VStepperWindowItem: VStepperWindowItem
152041
+ VSwitch: VSwitch
152042
+ VSystemBar: VSystemBar
152043
+ VTab: VTab
152044
+ VTabs: VTabs
152045
+ VTabsWindow: VTabsWindow
152046
+ VTabsWindowItem: VTabsWindowItem
151754
152047
  VTextarea: VTextarea
151755
- VToolbar: VToolbar
151756
- VToolbarTitle: VToolbarTitle
151757
- VToolbarItems: VToolbarItems
152048
+ VTable: VTable
151758
152049
  VTextField: VTextField
152050
+ VTooltip: VTooltip
151759
152051
  VTimeline: VTimeline
151760
152052
  VTimelineItem: VTimelineItem
152053
+ VToolbar: VToolbar
152054
+ VToolbarTitle: VToolbarTitle
152055
+ VToolbarItems: VToolbarItems
151761
152056
  VTimePicker: VTimePicker
151762
152057
  VTimePickerClock: VTimePickerClock
151763
152058
  VTimePickerControls: VTimePickerControls
151764
152059
  VTreeview: VTreeview
151765
152060
  VTreeviewItem: VTreeviewItem
151766
152061
  VTreeviewGroup: VTreeviewGroup
151767
- VTooltip: VTooltip
151768
152062
  VWindow: VWindow
151769
152063
  VWindowItem: VWindowItem
151770
152064
  VDataIterator: VDataIterator
151771
- VConfirmEdit: VConfirmEdit
151772
152065
  VDefaultsProvider: VDefaultsProvider
151773
- VForm: VForm
152066
+ VConfirmEdit: VConfirmEdit
151774
152067
  VContainer: VContainer
151775
152068
  VCol: VCol
151776
152069
  VRow: VRow
151777
152070
  VSpacer: VSpacer
152071
+ VForm: VForm
151778
152072
  VHover: VHover
151779
- VLazy: VLazy
151780
- VNoSsr: VNoSsr
151781
152073
  VLayout: VLayout
151782
152074
  VLayoutItem: VLayoutItem
152075
+ VLazy: VLazy
152076
+ VNoSsr: VNoSsr
151783
152077
  VLocaleProvider: VLocaleProvider
151784
152078
  VParallax: VParallax
151785
- VRangeSlider: VRangeSlider
151786
152079
  VRadio: VRadio
152080
+ VRangeSlider: VRangeSlider
151787
152081
  VResponsive: VResponsive
151788
152082
  VSnackbarQueue: VSnackbarQueue
151789
152083
  VSparkline: VSparkline
151790
152084
  VSpeedDial: VSpeedDial
151791
- VValidation: VValidation
151792
152085
  VThemeProvider: VThemeProvider
151793
- VVirtualScroll: VVirtualScroll
152086
+ VValidation: VValidation
151794
152087
  VFabTransition: VFabTransition
151795
152088
  VDialogBottomTransition: VDialogBottomTransition
151796
152089
  VDialogTopTransition: VDialogTopTransition
@@ -151807,17 +152100,19 @@ declare module 'vue' {
151807
152100
  VExpandTransition: VExpandTransition
151808
152101
  VExpandXTransition: VExpandXTransition
151809
152102
  VDialogTransition: VDialogTransition
152103
+ VVirtualScroll: VVirtualScroll
151810
152104
  VCommandPalette: VCommandPalette
151811
152105
  VCommandPaletteItemComponent: VCommandPaletteItemComponent
152106
+ VColorInput: VColorInput
152107
+ VAvatarGroup: VAvatarGroup
151812
152108
  VFileUpload: VFileUpload
151813
152109
  VFileUploadItem: VFileUploadItem
151814
- VIconBtn: VIconBtn
151815
- VPicker: VPicker
151816
- VPickerTitle: VPickerTitle
151817
152110
  VPie: VPie
151818
152111
  VPieSegment: VPieSegment
151819
152112
  VPieTooltip: VPieTooltip
151820
- VColorInput: VColorInput
152113
+ VIconBtn: VIconBtn
152114
+ VPicker: VPicker
152115
+ VPickerTitle: VPickerTitle
151821
152116
  VStepperVertical: VStepperVertical
151822
152117
  VStepperVerticalItem: VStepperVerticalItem
151823
152118
  VStepperVerticalActions: VStepperVerticalActions