@vuetify/nightly 3.11.8-dev.2026-02-18 → 3.11.8-dev.2026-02-19

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 (40) hide show
  1. package/CHANGELOG.md +4 -3
  2. package/dist/json/attributes.json +1722 -1722
  3. package/dist/json/importMap-labs.json +16 -16
  4. package/dist/json/importMap.json +186 -186
  5. package/dist/json/web-types.json +3151 -3151
  6. package/dist/vuetify-labs.cjs +13 -11
  7. package/dist/vuetify-labs.css +6068 -6068
  8. package/dist/vuetify-labs.d.ts +73 -69
  9. package/dist/vuetify-labs.esm.js +13 -11
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +13 -11
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +13 -11
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +5073 -5073
  16. package/dist/vuetify.d.ts +73 -69
  17. package/dist/vuetify.esm.js +13 -11
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +13 -11
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +10 -10
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js +1 -1
  25. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js.map +1 -1
  26. package/lib/components/VBtn/VBtn.js +1 -1
  27. package/lib/components/VBtn/VBtn.js.map +1 -1
  28. package/lib/components/VCard/VCard.js +1 -1
  29. package/lib/components/VCard/VCard.js.map +1 -1
  30. package/lib/components/VChip/VChip.js +1 -1
  31. package/lib/components/VChip/VChip.js.map +1 -1
  32. package/lib/components/VList/VListItem.js +1 -1
  33. package/lib/components/VList/VListItem.js.map +1 -1
  34. package/lib/composables/router.d.ts +6 -2
  35. package/lib/composables/router.js +5 -3
  36. package/lib/composables/router.js.map +1 -1
  37. package/lib/entry-bundler.js +1 -1
  38. package/lib/framework.d.ts +67 -67
  39. package/lib/framework.js +1 -1
  40. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"router.js","names":["computed","nextTick","onScopeDispose","reactive","resolveDynamicComponent","toRef","deepEqual","getCurrentInstance","hasEvent","IN_BROWSER","propsFactory","useRoute","vm","proxy","$route","useRouter","$router","useLink","props","attrs","RouterLink","isLink","href","to","isClickable","value","isRouterLink","linkProps","routerLink","replace","link","undefined","route","isActive","exact","isExactActive","query","navigate","disabled","tabindex","makeRouterProps","String","Boolean","Object","inTransition","useBackButton","router","cb","popped","removeBefore","removeAfter","beforeEach","window","addEventListener","onPopstate","from","next","setTimeout","afterEach","removeEventListener","e","state","replaced"],"sources":["../../src/composables/router.tsx"],"sourcesContent":["// Utilities\nimport {\n computed,\n nextTick,\n onScopeDispose, reactive,\n resolveDynamicComponent,\n toRef,\n} from 'vue'\nimport { deepEqual, getCurrentInstance, hasEvent, IN_BROWSER, propsFactory } from '@/util'\n\n// Types\nimport type { PropType, Ref, SetupContext } from 'vue'\nimport type {\n RouterLink as _RouterLink,\n useLink as _useLink,\n NavigationGuardNext,\n RouteLocationNormalizedLoaded,\n RouteLocationRaw,\n Router,\n} from 'vue-router'\nimport type { EventProp } from '@/util'\n\nexport function useRoute (): Ref<RouteLocationNormalizedLoaded | undefined> {\n const vm = getCurrentInstance('useRoute')\n\n return computed(() => vm?.proxy?.$route)\n}\n\nexport function useRouter (): Router | undefined {\n return getCurrentInstance('useRouter')?.proxy?.$router\n}\n\nexport interface LinkProps {\n href: string | undefined\n replace: boolean | undefined\n to: RouteLocationRaw | undefined\n exact: boolean | undefined\n disabled: boolean | undefined\n}\n\nexport interface LinkListeners {\n onClick?: EventProp | undefined\n onClickOnce?: EventProp | undefined\n}\n\nexport interface UseLink extends Omit<Partial<ReturnType<typeof _useLink>>, 'href'> {\n isLink: Readonly<Ref<boolean>>\n isRouterLink: Readonly<Ref<boolean>>\n isClickable: Readonly<Ref<boolean>>\n href: Ref<string | undefined>\n linkProps: Record<string, string | undefined>\n}\n\nexport function useLink (props: LinkProps & LinkListeners, attrs: SetupContext['attrs']): UseLink {\n const RouterLink = resolveDynamicComponent('RouterLink') as typeof _RouterLink | string\n\n const isLink = toRef(() => !!(props.href || props.to))\n const isClickable = computed(() => {\n return isLink?.value || hasEvent(attrs, 'click') || hasEvent(props, 'click')\n })\n\n if (typeof RouterLink === 'string' || !('useLink' in RouterLink)) {\n const href = toRef(() => props.href)\n return {\n isLink,\n isRouterLink: toRef(() => false),\n isClickable,\n href,\n linkProps: reactive({ href }),\n }\n }\n\n // vue-router useLink `to` prop needs to be reactive and useLink will crash if undefined\n const routerLink = RouterLink.useLink({\n to: toRef(() => props.to || ''),\n replace: toRef(() => props.replace),\n })\n // Actual link needs to be undefined when to prop is not used\n const link = computed(() => props.to ? routerLink : undefined)\n const route = useRoute()\n const isActive = computed(() => {\n if (!link.value) return false\n if (!props.exact) return link.value.isActive?.value ?? false\n if (!route.value) return link.value.isExactActive?.value ?? false\n\n return link.value.isExactActive?.value && deepEqual(link.value.route.value.query, route.value.query)\n })\n const href = computed(() => props.to ? link.value?.route.value.href : props.href)\n const isRouterLink = toRef(() => !!props.to)\n\n return {\n isLink,\n isRouterLink,\n isClickable,\n isActive,\n route: link.value?.route,\n navigate: link.value?.navigate,\n href,\n linkProps: reactive({\n href,\n 'aria-current': toRef(() => isActive.value ? 'page' : undefined),\n 'aria-disabled': toRef(() => props.disabled && isLink.value ? 'true' : undefined),\n tabindex: toRef(() => props.disabled && isLink.value ? '-1' : undefined),\n }),\n }\n}\n\nexport const makeRouterProps = propsFactory({\n href: String,\n replace: Boolean,\n to: [String, Object] as PropType<RouteLocationRaw>,\n exact: Boolean,\n}, 'router')\n\nlet inTransition = false\nexport function useBackButton (router: Router | undefined, cb: (next: NavigationGuardNext) => void) {\n let popped = false\n let removeBefore: (() => void) | undefined\n let removeAfter: (() => void) | undefined\n\n if (IN_BROWSER && router?.beforeEach) {\n nextTick(() => {\n window.addEventListener('popstate', onPopstate)\n removeBefore = router.beforeEach((to, from, next) => {\n if (!inTransition) {\n setTimeout(() => popped ? cb(next) : next())\n } else {\n popped ? cb(next) : next()\n }\n inTransition = true\n })\n removeAfter = router?.afterEach(() => {\n inTransition = false\n })\n })\n onScopeDispose(() => {\n window.removeEventListener('popstate', onPopstate)\n removeBefore?.()\n removeAfter?.()\n })\n }\n\n function onPopstate (e: PopStateEvent) {\n if (e.state?.replaced) return\n\n popped = true\n setTimeout(() => (popped = false))\n }\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"router.js","names":["computed","nextTick","onScopeDispose","reactive","resolveDynamicComponent","toRef","deepEqual","getCurrentInstance","hasEvent","IN_BROWSER","propsFactory","useRoute","vm","proxy","$route","useRouter","$router","useLink","props","attrs","RouterLink","isLink","href","to","isClickable","value","isRouterLink","linkProps","route","undefined","navigate","routerLink","replace","link","isActive","exact","isExactActive","query","disabled","tabindex","makeRouterProps","String","Boolean","Object","inTransition","useBackButton","router","cb","popped","removeBefore","removeAfter","beforeEach","window","addEventListener","onPopstate","from","next","setTimeout","afterEach","removeEventListener","e","state","replaced"],"sources":["../../src/composables/router.tsx"],"sourcesContent":["// Utilities\nimport {\n computed,\n nextTick,\n onScopeDispose, reactive,\n resolveDynamicComponent,\n toRef,\n} from 'vue'\nimport { deepEqual, getCurrentInstance, hasEvent, IN_BROWSER, propsFactory } from '@/util'\n\n// Types\nimport type { PropType, Ref, SetupContext } from 'vue'\nimport type {\n RouterLink as _RouterLink,\n useLink as _useLink,\n NavigationGuardNext,\n RouteLocation,\n RouteLocationNormalizedLoaded,\n RouteLocationRaw,\n Router,\n} from 'vue-router'\nimport type { EventProp } from '@/util'\n\nexport function useRoute (): Ref<RouteLocationNormalizedLoaded | undefined> {\n const vm = getCurrentInstance('useRoute')\n\n return computed(() => vm?.proxy?.$route)\n}\n\nexport function useRouter (): Router | undefined {\n return getCurrentInstance('useRouter')?.proxy?.$router\n}\n\nexport interface LinkProps {\n href: string | undefined\n replace: boolean | undefined\n to: RouteLocationRaw | undefined\n exact: boolean | undefined\n disabled: boolean | undefined\n}\n\nexport interface LinkListeners {\n onClick?: EventProp | undefined\n onClickOnce?: EventProp | undefined\n}\n\nexport interface UseLink extends Omit<Partial<ReturnType<typeof _useLink>>, 'href'|'route'|'navigate'> {\n isLink: Readonly<Ref<boolean>>\n isRouterLink: Readonly<Ref<boolean>>\n isClickable: Readonly<Ref<boolean>>\n href: Ref<string | undefined>\n linkProps: Record<string, string | undefined>\n route: Readonly<Ref<RouteLocation & { href: string} | undefined>>\n navigate: Readonly<Ref<ReturnType<typeof _useLink>['navigate'] | undefined>>\n}\n\nexport function useLink (props: LinkProps & LinkListeners, attrs: SetupContext['attrs']): UseLink {\n const RouterLink = resolveDynamicComponent('RouterLink') as typeof _RouterLink | string\n\n const isLink = toRef(() => !!(props.href || props.to))\n const isClickable = computed(() => {\n return isLink?.value || hasEvent(attrs, 'click') || hasEvent(props, 'click')\n })\n\n if (typeof RouterLink === 'string' || !('useLink' in RouterLink)) {\n const href = toRef(() => props.href)\n return {\n isLink,\n isRouterLink: toRef(() => false),\n isClickable,\n href,\n linkProps: reactive({ href }),\n route: toRef(() => undefined),\n navigate: toRef(() => undefined),\n }\n }\n\n // vue-router useLink `to` prop needs to be reactive and useLink will crash if undefined\n const routerLink = RouterLink.useLink({\n to: toRef(() => props.to || ''),\n replace: toRef(() => props.replace),\n })\n // Actual link needs to be undefined when to prop is not used\n const link = computed(() => props.to ? routerLink : undefined)\n const route = useRoute()\n const isActive = computed(() => {\n if (!link.value) return false\n if (!props.exact) return link.value.isActive?.value ?? false\n if (!route.value) return link.value.isExactActive?.value ?? false\n\n return link.value.isExactActive?.value && deepEqual(link.value.route.value.query, route.value.query)\n })\n const href = computed(() => props.to ? link.value?.route.value.href : props.href)\n const isRouterLink = toRef(() => !!props.to)\n\n return {\n isLink,\n isRouterLink,\n isClickable,\n isActive,\n route: toRef(() => link.value?.route.value),\n navigate: toRef(() => link.value?.navigate),\n href,\n linkProps: reactive({\n href,\n 'aria-current': toRef(() => isActive.value ? 'page' : undefined),\n 'aria-disabled': toRef(() => props.disabled && isLink.value ? 'true' : undefined),\n tabindex: toRef(() => props.disabled && isLink.value ? '-1' : undefined),\n }),\n }\n}\n\nexport const makeRouterProps = propsFactory({\n href: String,\n replace: Boolean,\n to: [String, Object] as PropType<RouteLocationRaw>,\n exact: Boolean,\n}, 'router')\n\nlet inTransition = false\nexport function useBackButton (router: Router | undefined, cb: (next: NavigationGuardNext) => void) {\n let popped = false\n let removeBefore: (() => void) | undefined\n let removeAfter: (() => void) | undefined\n\n if (IN_BROWSER && router?.beforeEach) {\n nextTick(() => {\n window.addEventListener('popstate', onPopstate)\n removeBefore = router.beforeEach((to, from, next) => {\n if (!inTransition) {\n setTimeout(() => popped ? cb(next) : next())\n } else {\n popped ? cb(next) : next()\n }\n inTransition = true\n })\n removeAfter = router?.afterEach(() => {\n inTransition = false\n })\n })\n onScopeDispose(() => {\n window.removeEventListener('popstate', onPopstate)\n removeBefore?.()\n removeAfter?.()\n })\n }\n\n function onPopstate (e: PopStateEvent) {\n if (e.state?.replaced) return\n\n popped = true\n setTimeout(() => (popped = false))\n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.11.8-dev.2026-02-18";
19
+ export const version = "3.11.8-dev.2026-02-19";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.js";
@@ -2779,39 +2779,46 @@ declare module 'vue' {
2779
2779
  $children?: VNodeChild
2780
2780
  }
2781
2781
  export interface GlobalComponents {
2782
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2783
- VAlert: typeof import('vuetify/components')['VAlert']
2784
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2785
2782
  VAppBar: typeof import('vuetify/components')['VAppBar']
2786
2783
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2787
2784
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2788
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2789
2785
  VBadge: typeof import('vuetify/components')['VBadge']
2786
+ VAvatar: typeof import('vuetify/components')['VAvatar']
2787
+ VAlert: typeof import('vuetify/components')['VAlert']
2788
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2790
2789
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2791
2790
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2792
2791
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2793
- VAvatar: typeof import('vuetify/components')['VAvatar']
2792
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2793
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2794
+ VBtn: typeof import('vuetify/components')['VBtn']
2795
+ VCalendar: typeof import('vuetify/components')['VCalendar']
2796
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2794
2797
  VApp: typeof import('vuetify/components')['VApp']
2795
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2798
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2796
2799
  VCard: typeof import('vuetify/components')['VCard']
2797
2800
  VCardActions: typeof import('vuetify/components')['VCardActions']
2798
2801
  VCardItem: typeof import('vuetify/components')['VCardItem']
2799
2802
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2800
2803
  VCardText: typeof import('vuetify/components')['VCardText']
2801
2804
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2802
- VCalendar: typeof import('vuetify/components')['VCalendar']
2803
- VCarousel: typeof import('vuetify/components')['VCarousel']
2804
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2805
- VBtn: typeof import('vuetify/components')['VBtn']
2806
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2807
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
2808
- VCombobox: typeof import('vuetify/components')['VCombobox']
2809
2805
  VBanner: typeof import('vuetify/components')['VBanner']
2810
2806
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2811
2807
  VBannerText: typeof import('vuetify/components')['VBannerText']
2812
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2808
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2813
2809
  VCode: typeof import('vuetify/components')['VCode']
2810
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
2811
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2814
2812
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
2813
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
2814
+ VCombobox: typeof import('vuetify/components')['VCombobox']
2815
+ VCounter: typeof import('vuetify/components')['VCounter']
2816
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
2817
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2818
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2819
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2820
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2821
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2815
2822
  VDataTable: typeof import('vuetify/components')['VDataTable']
2816
2823
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2817
2824
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2820,39 +2827,33 @@ declare module 'vue' {
2820
2827
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2821
2828
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2822
2829
  VChip: typeof import('vuetify/components')['VChip']
2823
- VCounter: typeof import('vuetify/components')['VCounter']
2830
+ VCarousel: typeof import('vuetify/components')['VCarousel']
2831
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2824
2832
  VDivider: typeof import('vuetify/components')['VDivider']
2825
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
2826
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2827
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2828
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2829
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2830
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2831
- VDialog: typeof import('vuetify/components')['VDialog']
2832
2833
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
2833
- VFab: typeof import('vuetify/components')['VFab']
2834
- VFooter: typeof import('vuetify/components')['VFooter']
2835
2834
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2836
2835
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2837
2836
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2838
2837
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2838
+ VFab: typeof import('vuetify/components')['VFab']
2839
+ VDialog: typeof import('vuetify/components')['VDialog']
2839
2840
  VFileInput: typeof import('vuetify/components')['VFileInput']
2840
2841
  VField: typeof import('vuetify/components')['VField']
2841
2842
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2842
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
2843
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2844
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
2845
- VItem: typeof import('vuetify/components')['VItem']
2846
- VInput: typeof import('vuetify/components')['VInput']
2843
+ VFooter: typeof import('vuetify/components')['VFooter']
2844
+ VHotkey: typeof import('vuetify/components')['VHotkey']
2847
2845
  VImg: typeof import('vuetify/components')['VImg']
2848
2846
  VIcon: typeof import('vuetify/components')['VIcon']
2849
2847
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2850
2848
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2851
2849
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2852
2850
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2853
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2851
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
2852
+ VItem: typeof import('vuetify/components')['VItem']
2853
+ VLabel: typeof import('vuetify/components')['VLabel']
2854
+ VInput: typeof import('vuetify/components')['VInput']
2854
2855
  VKbd: typeof import('vuetify/components')['VKbd']
2855
- VMessages: typeof import('vuetify/components')['VMessages']
2856
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2856
2857
  VList: typeof import('vuetify/components')['VList']
2857
2858
  VListGroup: typeof import('vuetify/components')['VListGroup']
2858
2859
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2862,81 +2863,80 @@ declare module 'vue' {
2862
2863
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2863
2864
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2864
2865
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2865
- VHotkey: typeof import('vuetify/components')['VHotkey']
2866
- VLabel: typeof import('vuetify/components')['VLabel']
2867
- VMain: typeof import('vuetify/components')['VMain']
2868
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2869
2866
  VMenu: typeof import('vuetify/components')['VMenu']
2870
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2867
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2868
+ VMain: typeof import('vuetify/components')['VMain']
2869
+ VMessages: typeof import('vuetify/components')['VMessages']
2870
+ VOverlay: typeof import('vuetify/components')['VOverlay']
2871
2871
  VNumberInput: typeof import('vuetify/components')['VNumberInput']
2872
2872
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2873
- VOverlay: typeof import('vuetify/components')['VOverlay']
2874
- VPagination: typeof import('vuetify/components')['VPagination']
2873
+ VRating: typeof import('vuetify/components')['VRating']
2875
2874
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2875
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2876
+ VPagination: typeof import('vuetify/components')['VPagination']
2877
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2876
2878
  VSelect: typeof import('vuetify/components')['VSelect']
2877
- VRating: typeof import('vuetify/components')['VRating']
2878
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2879
- VSlider: typeof import('vuetify/components')['VSlider']
2879
+ VSheet: typeof import('vuetify/components')['VSheet']
2880
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2880
2881
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2881
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2882
+ VSlider: typeof import('vuetify/components')['VSlider']
2882
2883
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
2883
- VSheet: typeof import('vuetify/components')['VSheet']
2884
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2885
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2886
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2884
2887
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2885
2888
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2886
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2887
2889
  VStepper: typeof import('vuetify/components')['VStepper']
2888
2890
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2889
2891
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2890
2892
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2891
2893
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2892
2894
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2893
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2895
+ VTextField: typeof import('vuetify/components')['VTextField']
2896
+ VTable: typeof import('vuetify/components')['VTable']
2894
2897
  VTab: typeof import('vuetify/components')['VTab']
2895
2898
  VTabs: typeof import('vuetify/components')['VTabs']
2896
2899
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2897
2900
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2898
- VTable: typeof import('vuetify/components')['VTable']
2899
- VTextField: typeof import('vuetify/components')['VTextField']
2900
- VSwitch: typeof import('vuetify/components')['VSwitch']
2901
2901
  VTimePicker: typeof import('vuetify/components')['VTimePicker']
2902
2902
  VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2903
2903
  VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2904
+ VTextarea: typeof import('vuetify/components')['VTextarea']
2905
+ VTooltip: typeof import('vuetify/components')['VTooltip']
2904
2906
  VTimeline: typeof import('vuetify/components')['VTimeline']
2905
2907
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2906
- VTreeview: typeof import('vuetify/components')['VTreeview']
2907
- VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2908
- VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2908
+ VWindow: typeof import('vuetify/components')['VWindow']
2909
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
2909
2910
  VToolbar: typeof import('vuetify/components')['VToolbar']
2910
2911
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2911
2912
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2912
- VWindow: typeof import('vuetify/components')['VWindow']
2913
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
2914
- VTooltip: typeof import('vuetify/components')['VTooltip']
2915
- VTextarea: typeof import('vuetify/components')['VTextarea']
2916
- VDataIterator: typeof import('vuetify/components')['VDataIterator']
2913
+ VTreeview: typeof import('vuetify/components')['VTreeview']
2914
+ VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2915
+ VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2917
2916
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2917
+ VDataIterator: typeof import('vuetify/components')['VDataIterator']
2918
2918
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2919
- VForm: typeof import('vuetify/components')['VForm']
2920
- VHover: typeof import('vuetify/components')['VHover']
2921
2919
  VContainer: typeof import('vuetify/components')['VContainer']
2922
2920
  VCol: typeof import('vuetify/components')['VCol']
2923
2921
  VRow: typeof import('vuetify/components')['VRow']
2924
2922
  VSpacer: typeof import('vuetify/components')['VSpacer']
2925
- VLazy: typeof import('vuetify/components')['VLazy']
2923
+ VForm: typeof import('vuetify/components')['VForm']
2924
+ VHover: typeof import('vuetify/components')['VHover']
2926
2925
  VLayout: typeof import('vuetify/components')['VLayout']
2927
2926
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2928
- VNoSsr: typeof import('vuetify/components')['VNoSsr']
2927
+ VLazy: typeof import('vuetify/components')['VLazy']
2929
2928
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2929
+ VNoSsr: typeof import('vuetify/components')['VNoSsr']
2930
2930
  VParallax: typeof import('vuetify/components')['VParallax']
2931
2931
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2932
- VResponsive: typeof import('vuetify/components')['VResponsive']
2933
2932
  VRadio: typeof import('vuetify/components')['VRadio']
2933
+ VResponsive: typeof import('vuetify/components')['VResponsive']
2934
2934
  VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2935
2935
  VSparkline: typeof import('vuetify/components')['VSparkline']
2936
2936
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2937
+ VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2937
2938
  VValidation: typeof import('vuetify/components')['VValidation']
2938
2939
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2939
- VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2940
2940
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2941
2941
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
2942
2942
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -2954,21 +2954,21 @@ declare module 'vue' {
2954
2954
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2955
2955
  VExpandBothTransition: typeof import('vuetify/components')['VExpandBothTransition']
2956
2956
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2957
+ VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2957
2958
  VAvatarGroup: typeof import('vuetify/labs/components')['VAvatarGroup']
2958
2959
  VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2959
- VPicker: typeof import('vuetify/labs/components')['VPicker']
2960
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2960
+ VCommandPalette: typeof import('vuetify/labs/components')['VCommandPalette']
2961
+ VCommandPaletteItemComponent: typeof import('vuetify/labs/components')['VCommandPaletteItemComponent']
2961
2962
  VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2962
2963
  VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2963
- VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2964
2964
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2965
2965
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2966
2966
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2967
- VCommandPalette: typeof import('vuetify/labs/components')['VCommandPalette']
2968
- VCommandPaletteItemComponent: typeof import('vuetify/labs/components')['VCommandPaletteItemComponent']
2969
2967
  VPie: typeof import('vuetify/labs/components')['VPie']
2970
2968
  VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
2971
2969
  VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
2970
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
2971
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2972
2972
  VVideo: typeof import('vuetify/labs/components')['VVideo']
2973
2973
  VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
2974
2974
  VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
package/lib/framework.js CHANGED
@@ -110,7 +110,7 @@ export function createVuetify() {
110
110
  };
111
111
  });
112
112
  }
113
- export const version = "3.11.8-dev.2026-02-18";
113
+ export const version = "3.11.8-dev.2026-02-19";
114
114
  createVuetify.version = version;
115
115
 
116
116
  // Vue's inject() can only be used in setup
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.11.8-dev.2026-02-18",
4
+ "version": "3.11.8-dev.2026-02-19",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"