@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.cjs CHANGED
@@ -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
  */
@@ -6182,7 +6182,9 @@
6182
6182
  href,
6183
6183
  linkProps: vue.reactive({
6184
6184
  href
6185
- })
6185
+ }),
6186
+ route: vue.toRef(() => undefined),
6187
+ navigate: vue.toRef(() => undefined)
6186
6188
  };
6187
6189
  }
6188
6190
 
@@ -6207,8 +6209,8 @@
6207
6209
  isRouterLink,
6208
6210
  isClickable,
6209
6211
  isActive,
6210
- route: link.value?.route,
6211
- navigate: link.value?.navigate,
6212
+ route: vue.toRef(() => link.value?.route.value),
6213
+ navigate: vue.toRef(() => link.value?.navigate),
6212
6214
  href,
6213
6215
  linkProps: vue.reactive({
6214
6216
  href,
@@ -6695,7 +6697,7 @@
6695
6697
  function onClick(e) {
6696
6698
  if (isDisabled.value || link.isLink.value && (e.metaKey || e.ctrlKey || e.shiftKey || e.button !== 0 || attrs.target === '_blank')) return;
6697
6699
  if (link.isRouterLink.value) {
6698
- link.navigate?.(e);
6700
+ link.navigate.value?.(e);
6699
6701
  } else {
6700
6702
  // Group active state for links is handled by useSelectLink
6701
6703
  group?.toggle();
@@ -9186,7 +9188,7 @@
9186
9188
  function onClick(e) {
9187
9189
  emit('click', e);
9188
9190
  if (!isClickable.value) return;
9189
- link.navigate?.(e);
9191
+ link.navigate.value?.(e);
9190
9192
  group?.toggle();
9191
9193
  }
9192
9194
  function onKeyDown(e) {
@@ -10567,7 +10569,7 @@
10567
10569
  emit('click', e);
10568
10570
  if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
10569
10571
  if (!isClickable.value) return;
10570
- link.navigate?.(e);
10572
+ link.navigate.value?.(e);
10571
10573
  if (isGroupActivator) return;
10572
10574
  if (root.activatable.value) {
10573
10575
  activate(!isActivated.value, e);
@@ -16011,7 +16013,7 @@
16011
16013
  }, {
16012
16014
  default: () => [!link.isLink.value ? slots.default?.() ?? props.title : vue.createElementVNode("a", vue.mergeProps({
16013
16015
  "class": "v-breadcrumbs-item--link",
16014
- "onClick": link.navigate
16016
+ "onClick": link.navigate.value
16015
16017
  }, link.linkProps), [slots.default?.() ?? props.title])]
16016
16018
  });
16017
16019
  });
@@ -20421,7 +20423,7 @@
20421
20423
  "style": [colorStyles.value, dimensionStyles.value, locationStyles.value, {
20422
20424
  '--v-card-height': convertToUnit(props.height)
20423
20425
  }, props.style],
20424
- "onClick": isClickable && link.navigate,
20426
+ "onClick": isClickable && link.navigate.value,
20425
20427
  "tabindex": props.disabled ? -1 : undefined
20426
20428
  }), {
20427
20429
  default: () => [hasImage && vue.createElementVNode("div", {
@@ -37073,7 +37075,7 @@
37073
37075
  };
37074
37076
  });
37075
37077
  }
37076
- const version$1 = "3.11.8-dev.2026-02-18";
37078
+ const version$1 = "3.11.8-dev.2026-02-19";
37077
37079
  createVuetify$1.version = version$1;
37078
37080
 
37079
37081
  // Vue's inject() can only be used in setup
@@ -37098,7 +37100,7 @@
37098
37100
  ...options
37099
37101
  });
37100
37102
  };
37101
- const version = "3.11.8-dev.2026-02-18";
37103
+ const version = "3.11.8-dev.2026-02-19";
37102
37104
  createVuetify.version = version;
37103
37105
 
37104
37106
  exports.blueprints = index;