@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
package/dist/vuetify.d.ts CHANGED
@@ -3,7 +3,7 @@ import { ShallowRef, Ref, DeepReadonly, ComponentPublicInstance, FunctionalCompo
3
3
  // @ts-ignore
4
4
  import * as vue_router from 'vue-router';
5
5
  // @ts-ignore
6
- import { RouteLocationRaw, useLink } from 'vue-router';
6
+ import { RouteLocationRaw, useLink, RouteLocation } from 'vue-router';
7
7
  import * as _vue_reactivity from '@vue/reactivity';
8
8
 
9
9
  interface DateAdapter<T = unknown> {
@@ -6943,12 +6943,16 @@ interface LinkProps {
6943
6943
  exact: boolean | undefined;
6944
6944
  disabled: boolean | undefined;
6945
6945
  }
6946
- interface UseLink extends Omit<Partial<ReturnType<typeof useLink>>, 'href'> {
6946
+ interface UseLink extends Omit<Partial<ReturnType<typeof useLink>>, 'href' | 'route' | 'navigate'> {
6947
6947
  isLink: Readonly<Ref<boolean>>;
6948
6948
  isRouterLink: Readonly<Ref<boolean>>;
6949
6949
  isClickable: Readonly<Ref<boolean>>;
6950
6950
  href: Ref<string | undefined>;
6951
6951
  linkProps: Record<string, string | undefined>;
6952
+ route: Readonly<Ref<(RouteLocation & {
6953
+ href: string;
6954
+ }) | undefined>>;
6955
+ navigate: Readonly<Ref<ReturnType<typeof useLink>['navigate'] | undefined>>;
6952
6956
  }
6953
6957
 
6954
6958
  interface ListItem<T = any> extends InternalItem<T> {
@@ -114784,39 +114788,46 @@ declare module 'vue' {
114784
114788
  $children?: VNodeChild
114785
114789
  }
114786
114790
  export interface GlobalComponents {
114787
- VBottomNavigation: VBottomNavigation
114788
- VAlert: VAlert
114789
- VAlertTitle: VAlertTitle
114790
114791
  VAppBar: VAppBar
114791
114792
  VAppBarNavIcon: VAppBarNavIcon
114792
114793
  VAppBarTitle: VAppBarTitle
114793
- VAutocomplete: VAutocomplete
114794
114794
  VBadge: VBadge
114795
+ VAvatar: VAvatar
114796
+ VAlert: VAlert
114797
+ VAlertTitle: VAlertTitle
114795
114798
  VBreadcrumbs: VBreadcrumbs
114796
114799
  VBreadcrumbsItem: VBreadcrumbsItem
114797
114800
  VBreadcrumbsDivider: VBreadcrumbsDivider
114798
- VAvatar: VAvatar
114801
+ VAutocomplete: VAutocomplete
114802
+ VBottomNavigation: VBottomNavigation
114803
+ VBtn: VBtn
114804
+ VCalendar: VCalendar
114805
+ VBtnToggle: VBtnToggle
114799
114806
  VApp: VApp
114800
- VBtnGroup: VBtnGroup
114807
+ VBottomSheet: VBottomSheet
114801
114808
  VCard: VCard
114802
114809
  VCardActions: VCardActions
114803
114810
  VCardItem: VCardItem
114804
114811
  VCardSubtitle: VCardSubtitle
114805
114812
  VCardText: VCardText
114806
114813
  VCardTitle: VCardTitle
114807
- VCalendar: VCalendar
114808
- VCarousel: VCarousel
114809
- VCarouselItem: VCarouselItem
114810
- VBtn: VBtn
114811
- VBottomSheet: VBottomSheet
114812
- VChipGroup: VChipGroup
114813
- VCombobox: VCombobox
114814
114814
  VBanner: VBanner
114815
114815
  VBannerActions: VBannerActions
114816
114816
  VBannerText: VBannerText
114817
- VBtnToggle: VBtnToggle
114817
+ VBtnGroup: VBtnGroup
114818
114818
  VCode: VCode
114819
+ VCheckbox: VCheckbox
114820
+ VCheckboxBtn: VCheckboxBtn
114819
114821
  VColorPicker: VColorPicker
114822
+ VChipGroup: VChipGroup
114823
+ VCombobox: VCombobox
114824
+ VCounter: VCounter
114825
+ VDatePicker: VDatePicker
114826
+ VDatePickerControls: VDatePickerControls
114827
+ VDatePickerHeader: VDatePickerHeader
114828
+ VDatePickerMonth: VDatePickerMonth
114829
+ VDatePickerMonths: VDatePickerMonths
114830
+ VDatePickerYears: VDatePickerYears
114820
114831
  VDataTable: VDataTable
114821
114832
  VDataTableHeaders: VDataTableHeaders
114822
114833
  VDataTableFooter: VDataTableFooter
@@ -114825,39 +114836,33 @@ declare module 'vue' {
114825
114836
  VDataTableVirtual: VDataTableVirtual
114826
114837
  VDataTableServer: VDataTableServer
114827
114838
  VChip: VChip
114828
- VCounter: VCounter
114839
+ VCarousel: VCarousel
114840
+ VCarouselItem: VCarouselItem
114829
114841
  VDivider: VDivider
114830
- VDatePicker: VDatePicker
114831
- VDatePickerControls: VDatePickerControls
114832
- VDatePickerHeader: VDatePickerHeader
114833
- VDatePickerMonth: VDatePickerMonth
114834
- VDatePickerMonths: VDatePickerMonths
114835
- VDatePickerYears: VDatePickerYears
114836
- VDialog: VDialog
114837
114842
  VEmptyState: VEmptyState
114838
- VFab: VFab
114839
- VFooter: VFooter
114840
114843
  VExpansionPanels: VExpansionPanels
114841
114844
  VExpansionPanel: VExpansionPanel
114842
114845
  VExpansionPanelText: VExpansionPanelText
114843
114846
  VExpansionPanelTitle: VExpansionPanelTitle
114847
+ VFab: VFab
114848
+ VDialog: VDialog
114844
114849
  VFileInput: VFileInput
114845
114850
  VField: VField
114846
114851
  VFieldLabel: VFieldLabel
114847
- VCheckbox: VCheckbox
114848
- VCheckboxBtn: VCheckboxBtn
114849
- VItemGroup: VItemGroup
114850
- VItem: VItem
114851
- VInput: VInput
114852
+ VFooter: VFooter
114853
+ VHotkey: VHotkey
114852
114854
  VImg: VImg
114853
114855
  VIcon: VIcon
114854
114856
  VComponentIcon: VComponentIcon
114855
114857
  VSvgIcon: VSvgIcon
114856
114858
  VLigatureIcon: VLigatureIcon
114857
114859
  VClassIcon: VClassIcon
114858
- VInfiniteScroll: VInfiniteScroll
114860
+ VItemGroup: VItemGroup
114861
+ VItem: VItem
114862
+ VLabel: VLabel
114863
+ VInput: VInput
114859
114864
  VKbd: VKbd
114860
- VMessages: VMessages
114865
+ VInfiniteScroll: VInfiniteScroll
114861
114866
  VList: VList
114862
114867
  VListGroup: VListGroup
114863
114868
  VListImg: VListImg
@@ -114867,81 +114872,80 @@ declare module 'vue' {
114867
114872
  VListItemSubtitle: VListItemSubtitle
114868
114873
  VListItemTitle: VListItemTitle
114869
114874
  VListSubheader: VListSubheader
114870
- VHotkey: VHotkey
114871
- VLabel: VLabel
114872
- VMain: VMain
114873
- VNavigationDrawer: VNavigationDrawer
114874
114875
  VMenu: VMenu
114875
- VOtpInput: VOtpInput
114876
+ VNavigationDrawer: VNavigationDrawer
114877
+ VMain: VMain
114878
+ VMessages: VMessages
114879
+ VOverlay: VOverlay
114876
114880
  VNumberInput: VNumberInput
114877
114881
  VProgressCircular: VProgressCircular
114878
- VOverlay: VOverlay
114879
- VPagination: VPagination
114882
+ VRating: VRating
114880
114883
  VRadioGroup: VRadioGroup
114884
+ VOtpInput: VOtpInput
114885
+ VPagination: VPagination
114886
+ VSelectionControl: VSelectionControl
114881
114887
  VSelect: VSelect
114882
- VRating: VRating
114883
- VProgressLinear: VProgressLinear
114884
- VSlider: VSlider
114888
+ VSheet: VSheet
114889
+ VSelectionControlGroup: VSelectionControlGroup
114885
114890
  VSkeletonLoader: VSkeletonLoader
114886
- VSelectionControl: VSelectionControl
114891
+ VSlider: VSlider
114887
114892
  VSnackbar: VSnackbar
114888
- VSheet: VSheet
114893
+ VProgressLinear: VProgressLinear
114894
+ VSwitch: VSwitch
114895
+ VSystemBar: VSystemBar
114889
114896
  VSlideGroup: VSlideGroup
114890
114897
  VSlideGroupItem: VSlideGroupItem
114891
- VSelectionControlGroup: VSelectionControlGroup
114892
114898
  VStepper: VStepper
114893
114899
  VStepperActions: VStepperActions
114894
114900
  VStepperHeader: VStepperHeader
114895
114901
  VStepperItem: VStepperItem
114896
114902
  VStepperWindow: VStepperWindow
114897
114903
  VStepperWindowItem: VStepperWindowItem
114898
- VSystemBar: VSystemBar
114904
+ VTextField: VTextField
114905
+ VTable: VTable
114899
114906
  VTab: VTab
114900
114907
  VTabs: VTabs
114901
114908
  VTabsWindow: VTabsWindow
114902
114909
  VTabsWindowItem: VTabsWindowItem
114903
- VTable: VTable
114904
- VTextField: VTextField
114905
- VSwitch: VSwitch
114906
114910
  VTimePicker: VTimePicker
114907
114911
  VTimePickerClock: VTimePickerClock
114908
114912
  VTimePickerControls: VTimePickerControls
114913
+ VTextarea: VTextarea
114914
+ VTooltip: VTooltip
114909
114915
  VTimeline: VTimeline
114910
114916
  VTimelineItem: VTimelineItem
114911
- VTreeview: VTreeview
114912
- VTreeviewItem: VTreeviewItem
114913
- VTreeviewGroup: VTreeviewGroup
114917
+ VWindow: VWindow
114918
+ VWindowItem: VWindowItem
114914
114919
  VToolbar: VToolbar
114915
114920
  VToolbarTitle: VToolbarTitle
114916
114921
  VToolbarItems: VToolbarItems
114917
- VWindow: VWindow
114918
- VWindowItem: VWindowItem
114919
- VTooltip: VTooltip
114920
- VTextarea: VTextarea
114921
- VDataIterator: VDataIterator
114922
+ VTreeview: VTreeview
114923
+ VTreeviewItem: VTreeviewItem
114924
+ VTreeviewGroup: VTreeviewGroup
114922
114925
  VConfirmEdit: VConfirmEdit
114926
+ VDataIterator: VDataIterator
114923
114927
  VDefaultsProvider: VDefaultsProvider
114924
- VForm: VForm
114925
- VHover: VHover
114926
114928
  VContainer: VContainer
114927
114929
  VCol: VCol
114928
114930
  VRow: VRow
114929
114931
  VSpacer: VSpacer
114930
- VLazy: VLazy
114932
+ VForm: VForm
114933
+ VHover: VHover
114931
114934
  VLayout: VLayout
114932
114935
  VLayoutItem: VLayoutItem
114933
- VNoSsr: VNoSsr
114936
+ VLazy: VLazy
114934
114937
  VLocaleProvider: VLocaleProvider
114938
+ VNoSsr: VNoSsr
114935
114939
  VParallax: VParallax
114936
114940
  VRangeSlider: VRangeSlider
114937
- VResponsive: VResponsive
114938
114941
  VRadio: VRadio
114942
+ VResponsive: VResponsive
114939
114943
  VSnackbarQueue: VSnackbarQueue
114940
114944
  VSparkline: VSparkline
114941
114945
  VSpeedDial: VSpeedDial
114946
+ VThemeProvider: VThemeProvider
114942
114947
  VValidation: VValidation
114943
114948
  VVirtualScroll: VVirtualScroll
114944
- VThemeProvider: VThemeProvider
114945
114949
  VFabTransition: VFabTransition
114946
114950
  VDialogBottomTransition: VDialogBottomTransition
114947
114951
  VDialogTopTransition: VDialogTopTransition
@@ -114959,21 +114963,21 @@ declare module 'vue' {
114959
114963
  VExpandXTransition: VExpandXTransition
114960
114964
  VExpandBothTransition: VExpandBothTransition
114961
114965
  VDialogTransition: VDialogTransition
114966
+ VColorInput: VColorInput
114962
114967
  VAvatarGroup: VAvatarGroup
114963
114968
  VIconBtn: VIconBtn
114964
- VPicker: VPicker
114965
- VPickerTitle: VPickerTitle
114969
+ VCommandPalette: VCommandPalette
114970
+ VCommandPaletteItemComponent: VCommandPaletteItemComponent
114966
114971
  VFileUpload: VFileUpload
114967
114972
  VFileUploadItem: VFileUploadItem
114968
- VColorInput: VColorInput
114969
114973
  VStepperVertical: VStepperVertical
114970
114974
  VStepperVerticalItem: VStepperVerticalItem
114971
114975
  VStepperVerticalActions: VStepperVerticalActions
114972
- VCommandPalette: VCommandPalette
114973
- VCommandPaletteItemComponent: VCommandPaletteItemComponent
114974
114976
  VPie: VPie
114975
114977
  VPieSegment: VPieSegment
114976
114978
  VPieTooltip: VPieTooltip
114979
+ VPicker: VPicker
114980
+ VPickerTitle: VPickerTitle
114977
114981
  VVideo: VVideo
114978
114982
  VVideoControls: VVideoControls
114979
114983
  VVideoVolume: VVideoVolume
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.11.8-dev.2026-02-18
2
+ * Vuetify v3.11.8-dev.2026-02-19
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -6178,7 +6178,9 @@ function useLink(props, attrs) {
6178
6178
  href,
6179
6179
  linkProps: reactive({
6180
6180
  href
6181
- })
6181
+ }),
6182
+ route: toRef(() => undefined),
6183
+ navigate: toRef(() => undefined)
6182
6184
  };
6183
6185
  }
6184
6186
 
@@ -6203,8 +6205,8 @@ function useLink(props, attrs) {
6203
6205
  isRouterLink,
6204
6206
  isClickable,
6205
6207
  isActive,
6206
- route: link.value?.route,
6207
- navigate: link.value?.navigate,
6208
+ route: toRef(() => link.value?.route.value),
6209
+ navigate: toRef(() => link.value?.navigate),
6208
6210
  href,
6209
6211
  linkProps: reactive({
6210
6212
  href,
@@ -6691,7 +6693,7 @@ const VBtn = genericComponent()({
6691
6693
  function onClick(e) {
6692
6694
  if (isDisabled.value || link.isLink.value && (e.metaKey || e.ctrlKey || e.shiftKey || e.button !== 0 || attrs.target === '_blank')) return;
6693
6695
  if (link.isRouterLink.value) {
6694
- link.navigate?.(e);
6696
+ link.navigate.value?.(e);
6695
6697
  } else {
6696
6698
  // Group active state for links is handled by useSelectLink
6697
6699
  group?.toggle();
@@ -9182,7 +9184,7 @@ const VChip = genericComponent()({
9182
9184
  function onClick(e) {
9183
9185
  emit('click', e);
9184
9186
  if (!isClickable.value) return;
9185
- link.navigate?.(e);
9187
+ link.navigate.value?.(e);
9186
9188
  group?.toggle();
9187
9189
  }
9188
9190
  function onKeyDown(e) {
@@ -10563,7 +10565,7 @@ const VListItem = genericComponent()({
10563
10565
  emit('click', e);
10564
10566
  if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
10565
10567
  if (!isClickable.value) return;
10566
- link.navigate?.(e);
10568
+ link.navigate.value?.(e);
10567
10569
  if (isGroupActivator) return;
10568
10570
  if (root.activatable.value) {
10569
10571
  activate(!isActivated.value, e);
@@ -16007,7 +16009,7 @@ const VBreadcrumbsItem = genericComponent()({
16007
16009
  }, {
16008
16010
  default: () => [!link.isLink.value ? slots.default?.() ?? props.title : createElementVNode("a", mergeProps({
16009
16011
  "class": "v-breadcrumbs-item--link",
16010
- "onClick": link.navigate
16012
+ "onClick": link.navigate.value
16011
16013
  }, link.linkProps), [slots.default?.() ?? props.title])]
16012
16014
  });
16013
16015
  });
@@ -20417,7 +20419,7 @@ const VCard = genericComponent()({
20417
20419
  "style": [colorStyles.value, dimensionStyles.value, locationStyles.value, {
20418
20420
  '--v-card-height': convertToUnit(props.height)
20419
20421
  }, props.style],
20420
- "onClick": isClickable && link.navigate,
20422
+ "onClick": isClickable && link.navigate.value,
20421
20423
  "tabindex": props.disabled ? -1 : undefined
20422
20424
  }), {
20423
20425
  default: () => [hasImage && createElementVNode("div", {
@@ -37069,7 +37071,7 @@ function createVuetify$1() {
37069
37071
  };
37070
37072
  });
37071
37073
  }
37072
- const version$1 = "3.11.8-dev.2026-02-18";
37074
+ const version$1 = "3.11.8-dev.2026-02-19";
37073
37075
  createVuetify$1.version = version$1;
37074
37076
 
37075
37077
  // Vue's inject() can only be used in setup
@@ -37094,7 +37096,7 @@ const createVuetify = function () {
37094
37096
  ...options
37095
37097
  });
37096
37098
  };
37097
- const version = "3.11.8-dev.2026-02-18";
37099
+ const version = "3.11.8-dev.2026-02-19";
37098
37100
  createVuetify.version = version;
37099
37101
 
37100
37102
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version };