@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
@@ -3,7 +3,7 @@ import { ShallowRef, Ref, DeepReadonly, ComponentPropsOptions, ExtractPropTypes,
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> {
@@ -7234,12 +7234,16 @@ interface LinkProps {
7234
7234
  exact: boolean | undefined;
7235
7235
  disabled: boolean | undefined;
7236
7236
  }
7237
- interface UseLink extends Omit<Partial<ReturnType<typeof useLink>>, 'href'> {
7237
+ interface UseLink extends Omit<Partial<ReturnType<typeof useLink>>, 'href' | 'route' | 'navigate'> {
7238
7238
  isLink: Readonly<Ref<boolean>>;
7239
7239
  isRouterLink: Readonly<Ref<boolean>>;
7240
7240
  isClickable: Readonly<Ref<boolean>>;
7241
7241
  href: Ref<string | undefined>;
7242
7242
  linkProps: Record<string, string | undefined>;
7243
+ route: Readonly<Ref<(RouteLocation & {
7244
+ href: string;
7245
+ }) | undefined>>;
7246
+ navigate: Readonly<Ref<ReturnType<typeof useLink>['navigate'] | undefined>>;
7243
7247
  }
7244
7248
 
7245
7249
  interface ListItem<T = any> extends InternalItem<T> {
@@ -152091,39 +152095,46 @@ declare module 'vue' {
152091
152095
  $children?: VNodeChild
152092
152096
  }
152093
152097
  export interface GlobalComponents {
152094
- VBottomNavigation: VBottomNavigation
152095
- VAlert: VAlert
152096
- VAlertTitle: VAlertTitle
152097
152098
  VAppBar: VAppBar
152098
152099
  VAppBarNavIcon: VAppBarNavIcon
152099
152100
  VAppBarTitle: VAppBarTitle
152100
- VAutocomplete: VAutocomplete
152101
152101
  VBadge: VBadge
152102
+ VAvatar: VAvatar
152103
+ VAlert: VAlert
152104
+ VAlertTitle: VAlertTitle
152102
152105
  VBreadcrumbs: VBreadcrumbs
152103
152106
  VBreadcrumbsItem: VBreadcrumbsItem
152104
152107
  VBreadcrumbsDivider: VBreadcrumbsDivider
152105
- VAvatar: VAvatar
152108
+ VAutocomplete: VAutocomplete
152109
+ VBottomNavigation: VBottomNavigation
152110
+ VBtn: VBtn
152111
+ VCalendar: VCalendar
152112
+ VBtnToggle: VBtnToggle
152106
152113
  VApp: VApp
152107
- VBtnGroup: VBtnGroup
152114
+ VBottomSheet: VBottomSheet
152108
152115
  VCard: VCard
152109
152116
  VCardActions: VCardActions
152110
152117
  VCardItem: VCardItem
152111
152118
  VCardSubtitle: VCardSubtitle
152112
152119
  VCardText: VCardText
152113
152120
  VCardTitle: VCardTitle
152114
- VCalendar: VCalendar
152115
- VCarousel: VCarousel
152116
- VCarouselItem: VCarouselItem
152117
- VBtn: VBtn
152118
- VBottomSheet: VBottomSheet
152119
- VChipGroup: VChipGroup
152120
- VCombobox: VCombobox
152121
152121
  VBanner: VBanner
152122
152122
  VBannerActions: VBannerActions
152123
152123
  VBannerText: VBannerText
152124
- VBtnToggle: VBtnToggle
152124
+ VBtnGroup: VBtnGroup
152125
152125
  VCode: VCode
152126
+ VCheckbox: VCheckbox
152127
+ VCheckboxBtn: VCheckboxBtn
152126
152128
  VColorPicker: VColorPicker
152129
+ VChipGroup: VChipGroup
152130
+ VCombobox: VCombobox
152131
+ VCounter: VCounter
152132
+ VDatePicker: VDatePicker
152133
+ VDatePickerControls: VDatePickerControls
152134
+ VDatePickerHeader: VDatePickerHeader
152135
+ VDatePickerMonth: VDatePickerMonth
152136
+ VDatePickerMonths: VDatePickerMonths
152137
+ VDatePickerYears: VDatePickerYears
152127
152138
  VDataTable: VDataTable
152128
152139
  VDataTableHeaders: VDataTableHeaders
152129
152140
  VDataTableFooter: VDataTableFooter
@@ -152132,39 +152143,33 @@ declare module 'vue' {
152132
152143
  VDataTableVirtual: VDataTableVirtual
152133
152144
  VDataTableServer: VDataTableServer
152134
152145
  VChip: VChip
152135
- VCounter: VCounter
152146
+ VCarousel: VCarousel
152147
+ VCarouselItem: VCarouselItem
152136
152148
  VDivider: VDivider
152137
- VDatePicker: VDatePicker
152138
- VDatePickerControls: VDatePickerControls
152139
- VDatePickerHeader: VDatePickerHeader
152140
- VDatePickerMonth: VDatePickerMonth
152141
- VDatePickerMonths: VDatePickerMonths
152142
- VDatePickerYears: VDatePickerYears
152143
- VDialog: VDialog
152144
152149
  VEmptyState: VEmptyState
152145
- VFab: VFab
152146
- VFooter: VFooter
152147
152150
  VExpansionPanels: VExpansionPanels
152148
152151
  VExpansionPanel: VExpansionPanel
152149
152152
  VExpansionPanelText: VExpansionPanelText
152150
152153
  VExpansionPanelTitle: VExpansionPanelTitle
152154
+ VFab: VFab
152155
+ VDialog: VDialog
152151
152156
  VFileInput: VFileInput
152152
152157
  VField: VField
152153
152158
  VFieldLabel: VFieldLabel
152154
- VCheckbox: VCheckbox
152155
- VCheckboxBtn: VCheckboxBtn
152156
- VItemGroup: VItemGroup
152157
- VItem: VItem
152158
- VInput: VInput
152159
+ VFooter: VFooter
152160
+ VHotkey: VHotkey
152159
152161
  VImg: VImg
152160
152162
  VIcon: VIcon
152161
152163
  VComponentIcon: VComponentIcon
152162
152164
  VSvgIcon: VSvgIcon
152163
152165
  VLigatureIcon: VLigatureIcon
152164
152166
  VClassIcon: VClassIcon
152165
- VInfiniteScroll: VInfiniteScroll
152167
+ VItemGroup: VItemGroup
152168
+ VItem: VItem
152169
+ VLabel: VLabel
152170
+ VInput: VInput
152166
152171
  VKbd: VKbd
152167
- VMessages: VMessages
152172
+ VInfiniteScroll: VInfiniteScroll
152168
152173
  VList: VList
152169
152174
  VListGroup: VListGroup
152170
152175
  VListImg: VListImg
@@ -152174,81 +152179,80 @@ declare module 'vue' {
152174
152179
  VListItemSubtitle: VListItemSubtitle
152175
152180
  VListItemTitle: VListItemTitle
152176
152181
  VListSubheader: VListSubheader
152177
- VHotkey: VHotkey
152178
- VLabel: VLabel
152179
- VMain: VMain
152180
- VNavigationDrawer: VNavigationDrawer
152181
152182
  VMenu: VMenu
152182
- VOtpInput: VOtpInput
152183
+ VNavigationDrawer: VNavigationDrawer
152184
+ VMain: VMain
152185
+ VMessages: VMessages
152186
+ VOverlay: VOverlay
152183
152187
  VNumberInput: VNumberInput
152184
152188
  VProgressCircular: VProgressCircular
152185
- VOverlay: VOverlay
152186
- VPagination: VPagination
152189
+ VRating: VRating
152187
152190
  VRadioGroup: VRadioGroup
152191
+ VOtpInput: VOtpInput
152192
+ VPagination: VPagination
152193
+ VSelectionControl: VSelectionControl
152188
152194
  VSelect: VSelect
152189
- VRating: VRating
152190
- VProgressLinear: VProgressLinear
152191
- VSlider: VSlider
152195
+ VSheet: VSheet
152196
+ VSelectionControlGroup: VSelectionControlGroup
152192
152197
  VSkeletonLoader: VSkeletonLoader
152193
- VSelectionControl: VSelectionControl
152198
+ VSlider: VSlider
152194
152199
  VSnackbar: VSnackbar
152195
- VSheet: VSheet
152200
+ VProgressLinear: VProgressLinear
152201
+ VSwitch: VSwitch
152202
+ VSystemBar: VSystemBar
152196
152203
  VSlideGroup: VSlideGroup
152197
152204
  VSlideGroupItem: VSlideGroupItem
152198
- VSelectionControlGroup: VSelectionControlGroup
152199
152205
  VStepper: VStepper
152200
152206
  VStepperActions: VStepperActions
152201
152207
  VStepperHeader: VStepperHeader
152202
152208
  VStepperItem: VStepperItem
152203
152209
  VStepperWindow: VStepperWindow
152204
152210
  VStepperWindowItem: VStepperWindowItem
152205
- VSystemBar: VSystemBar
152211
+ VTextField: VTextField
152212
+ VTable: VTable
152206
152213
  VTab: VTab
152207
152214
  VTabs: VTabs
152208
152215
  VTabsWindow: VTabsWindow
152209
152216
  VTabsWindowItem: VTabsWindowItem
152210
- VTable: VTable
152211
- VTextField: VTextField
152212
- VSwitch: VSwitch
152213
152217
  VTimePicker: VTimePicker
152214
152218
  VTimePickerClock: VTimePickerClock
152215
152219
  VTimePickerControls: VTimePickerControls
152220
+ VTextarea: VTextarea
152221
+ VTooltip: VTooltip
152216
152222
  VTimeline: VTimeline
152217
152223
  VTimelineItem: VTimelineItem
152218
- VTreeview: VTreeview
152219
- VTreeviewItem: VTreeviewItem
152220
- VTreeviewGroup: VTreeviewGroup
152224
+ VWindow: VWindow
152225
+ VWindowItem: VWindowItem
152221
152226
  VToolbar: VToolbar
152222
152227
  VToolbarTitle: VToolbarTitle
152223
152228
  VToolbarItems: VToolbarItems
152224
- VWindow: VWindow
152225
- VWindowItem: VWindowItem
152226
- VTooltip: VTooltip
152227
- VTextarea: VTextarea
152228
- VDataIterator: VDataIterator
152229
+ VTreeview: VTreeview
152230
+ VTreeviewItem: VTreeviewItem
152231
+ VTreeviewGroup: VTreeviewGroup
152229
152232
  VConfirmEdit: VConfirmEdit
152233
+ VDataIterator: VDataIterator
152230
152234
  VDefaultsProvider: VDefaultsProvider
152231
- VForm: VForm
152232
- VHover: VHover
152233
152235
  VContainer: VContainer
152234
152236
  VCol: VCol
152235
152237
  VRow: VRow
152236
152238
  VSpacer: VSpacer
152237
- VLazy: VLazy
152239
+ VForm: VForm
152240
+ VHover: VHover
152238
152241
  VLayout: VLayout
152239
152242
  VLayoutItem: VLayoutItem
152240
- VNoSsr: VNoSsr
152243
+ VLazy: VLazy
152241
152244
  VLocaleProvider: VLocaleProvider
152245
+ VNoSsr: VNoSsr
152242
152246
  VParallax: VParallax
152243
152247
  VRangeSlider: VRangeSlider
152244
- VResponsive: VResponsive
152245
152248
  VRadio: VRadio
152249
+ VResponsive: VResponsive
152246
152250
  VSnackbarQueue: VSnackbarQueue
152247
152251
  VSparkline: VSparkline
152248
152252
  VSpeedDial: VSpeedDial
152253
+ VThemeProvider: VThemeProvider
152249
152254
  VValidation: VValidation
152250
152255
  VVirtualScroll: VVirtualScroll
152251
- VThemeProvider: VThemeProvider
152252
152256
  VFabTransition: VFabTransition
152253
152257
  VDialogBottomTransition: VDialogBottomTransition
152254
152258
  VDialogTopTransition: VDialogTopTransition
@@ -152266,21 +152270,21 @@ declare module 'vue' {
152266
152270
  VExpandXTransition: VExpandXTransition
152267
152271
  VExpandBothTransition: VExpandBothTransition
152268
152272
  VDialogTransition: VDialogTransition
152273
+ VColorInput: VColorInput
152269
152274
  VAvatarGroup: VAvatarGroup
152270
152275
  VIconBtn: VIconBtn
152271
- VPicker: VPicker
152272
- VPickerTitle: VPickerTitle
152276
+ VCommandPalette: VCommandPalette
152277
+ VCommandPaletteItemComponent: VCommandPaletteItemComponent
152273
152278
  VFileUpload: VFileUpload
152274
152279
  VFileUploadItem: VFileUploadItem
152275
- VColorInput: VColorInput
152276
152280
  VStepperVertical: VStepperVertical
152277
152281
  VStepperVerticalItem: VStepperVerticalItem
152278
152282
  VStepperVerticalActions: VStepperVerticalActions
152279
- VCommandPalette: VCommandPalette
152280
- VCommandPaletteItemComponent: VCommandPaletteItemComponent
152281
152283
  VPie: VPie
152282
152284
  VPieSegment: VPieSegment
152283
152285
  VPieTooltip: VPieTooltip
152286
+ VPicker: VPicker
152287
+ VPickerTitle: VPickerTitle
152284
152288
  VVideo: VVideo
152285
152289
  VVideoControls: VVideoControls
152286
152290
  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
  */
@@ -5848,7 +5848,9 @@ function useLink(props, attrs) {
5848
5848
  href,
5849
5849
  linkProps: reactive({
5850
5850
  href
5851
- })
5851
+ }),
5852
+ route: toRef(() => undefined),
5853
+ navigate: toRef(() => undefined)
5852
5854
  };
5853
5855
  }
5854
5856
 
@@ -5873,8 +5875,8 @@ function useLink(props, attrs) {
5873
5875
  isRouterLink,
5874
5876
  isClickable,
5875
5877
  isActive,
5876
- route: link.value?.route,
5877
- navigate: link.value?.navigate,
5878
+ route: toRef(() => link.value?.route.value),
5879
+ navigate: toRef(() => link.value?.navigate),
5878
5880
  href,
5879
5881
  linkProps: reactive({
5880
5882
  href,
@@ -6361,7 +6363,7 @@ const VBtn = genericComponent()({
6361
6363
  function onClick(e) {
6362
6364
  if (isDisabled.value || link.isLink.value && (e.metaKey || e.ctrlKey || e.shiftKey || e.button !== 0 || attrs.target === '_blank')) return;
6363
6365
  if (link.isRouterLink.value) {
6364
- link.navigate?.(e);
6366
+ link.navigate.value?.(e);
6365
6367
  } else {
6366
6368
  // Group active state for links is handled by useSelectLink
6367
6369
  group?.toggle();
@@ -8852,7 +8854,7 @@ const VChip = genericComponent()({
8852
8854
  function onClick(e) {
8853
8855
  emit('click', e);
8854
8856
  if (!isClickable.value) return;
8855
- link.navigate?.(e);
8857
+ link.navigate.value?.(e);
8856
8858
  group?.toggle();
8857
8859
  }
8858
8860
  function onKeyDown(e) {
@@ -10233,7 +10235,7 @@ const VListItem = genericComponent()({
10233
10235
  emit('click', e);
10234
10236
  if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
10235
10237
  if (!isClickable.value) return;
10236
- link.navigate?.(e);
10238
+ link.navigate.value?.(e);
10237
10239
  if (isGroupActivator) return;
10238
10240
  if (root.activatable.value) {
10239
10241
  activate(!isActivated.value, e);
@@ -15677,7 +15679,7 @@ const VBreadcrumbsItem = genericComponent()({
15677
15679
  }, {
15678
15680
  default: () => [!link.isLink.value ? slots.default?.() ?? props.title : createElementVNode("a", mergeProps({
15679
15681
  "class": "v-breadcrumbs-item--link",
15680
- "onClick": link.navigate
15682
+ "onClick": link.navigate.value
15681
15683
  }, link.linkProps), [slots.default?.() ?? props.title])]
15682
15684
  });
15683
15685
  });
@@ -20096,7 +20098,7 @@ const VCard = genericComponent()({
20096
20098
  "style": [colorStyles.value, dimensionStyles.value, locationStyles.value, {
20097
20099
  '--v-card-height': convertToUnit(props.height)
20098
20100
  }, props.style],
20099
- "onClick": isClickable && link.navigate,
20101
+ "onClick": isClickable && link.navigate.value,
20100
20102
  "tabindex": props.disabled ? -1 : undefined
20101
20103
  }), {
20102
20104
  default: () => [hasImage && createElementVNode("div", {
@@ -40090,7 +40092,7 @@ function createVuetify$1() {
40090
40092
  };
40091
40093
  });
40092
40094
  }
40093
- const version$1 = "3.11.8-dev.2026-02-18";
40095
+ const version$1 = "3.11.8-dev.2026-02-19";
40094
40096
  createVuetify$1.version = version$1;
40095
40097
 
40096
40098
  // Vue's inject() can only be used in setup
@@ -40393,7 +40395,7 @@ var index = /*#__PURE__*/Object.freeze({
40393
40395
 
40394
40396
  /* eslint-disable local-rules/sort-imports */
40395
40397
 
40396
- const version = "3.11.8-dev.2026-02-18";
40398
+ const version = "3.11.8-dev.2026-02-19";
40397
40399
 
40398
40400
  /* eslint-disable local-rules/sort-imports */
40399
40401