@vuetify/nightly 3.11.8-dev.2026-02-11 → 3.11.8-dev.2026-02-12

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 +7 -3
  2. package/dist/json/attributes.json +3838 -3838
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +160 -160
  5. package/dist/json/web-types.json +7160 -7160
  6. package/dist/vuetify-labs.cjs +21 -12
  7. package/dist/vuetify-labs.css +3922 -3920
  8. package/dist/vuetify-labs.d.ts +62 -62
  9. package/dist/vuetify-labs.esm.js +21 -12
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +21 -12
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +21 -12
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +2481 -2479
  16. package/dist/vuetify.d.ts +62 -62
  17. package/dist/vuetify.esm.js +21 -12
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +21 -12
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +15 -12
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VCard/VCard.js +4 -2
  25. package/lib/components/VCard/VCard.js.map +1 -1
  26. package/lib/components/VDatePicker/VDatePickerYears.js +8 -3
  27. package/lib/components/VDatePicker/VDatePickerYears.js.map +1 -1
  28. package/lib/components/VDialog/VDialog.css +2 -2
  29. package/lib/components/VDialog/VDialog.sass +2 -2
  30. package/lib/components/VTabs/VTab.js +7 -5
  31. package/lib/components/VTabs/VTab.js.map +1 -1
  32. package/lib/components/VTabs/VTabs.css +2 -0
  33. package/lib/components/VTabs/VTabs.sass +2 -0
  34. package/lib/entry-bundler.js +1 -1
  35. package/lib/framework.d.ts +62 -62
  36. package/lib/framework.js +1 -1
  37. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.11.8-dev.2026-02-11
2
+ * Vuetify v3.11.8-dev.2026-02-12
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -20075,7 +20075,9 @@
20075
20075
  'v-card--hover': props.hover && !(props.disabled || props.flat),
20076
20076
  'v-card--link': isClickable
20077
20077
  }, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, elevationClasses.value, loaderClasses.value, positionClasses.value, roundedClasses.value, variantClasses.value, props.class],
20078
- "style": [colorStyles.value, dimensionStyles.value, locationStyles.value, props.style],
20078
+ "style": [colorStyles.value, dimensionStyles.value, locationStyles.value, {
20079
+ '--v-card-height': convertToUnit(props.height)
20080
+ }, props.style],
20079
20081
  "onClick": isClickable && link.navigate,
20080
20082
  "tabindex": props.disabled ? -1 : undefined
20081
20083
  }), {
@@ -27708,11 +27710,15 @@
27708
27710
  vue.watchEffect(() => {
27709
27711
  model.value = model.value ?? adapter.getYear(adapter.date());
27710
27712
  });
27713
+ const containerRef = templateRef();
27711
27714
  const yearRef = templateRef();
27712
27715
  function focusSelectedYear() {
27713
- yearRef.el?.scrollIntoView({
27714
- block: 'center'
27715
- });
27716
+ const container = containerRef.el;
27717
+ const target = yearRef.el;
27718
+ if (!container || !target) return;
27719
+ const containerRect = container.getBoundingClientRect();
27720
+ const targetRect = target.getBoundingClientRect();
27721
+ container.scrollTop += targetRect.top - containerRect.top - container.clientHeight / 2 + targetRect.height / 2;
27716
27722
  }
27717
27723
  function isYearAllowed(year) {
27718
27724
  if (Array.isArray(props.allowedYears) && props.allowedYears.length) {
@@ -27725,6 +27731,7 @@
27725
27731
  }
27726
27732
  useRender(() => vue.withDirectives(vue.createElementVNode("div", {
27727
27733
  "class": "v-date-picker-years",
27734
+ "ref": containerRef,
27728
27735
  "style": {
27729
27736
  height: convertToUnit(props.height)
27730
27737
  }
@@ -33797,7 +33804,7 @@
33797
33804
  const prevEl = rootEl.value?.$el.parentElement?.querySelector('.v-tab--selected .v-tab__slider');
33798
33805
  const nextEl = sliderEl.value;
33799
33806
  if (!prevEl || !nextEl) return;
33800
- const color = getComputedStyle(prevEl).color;
33807
+ const color = getComputedStyle(prevEl).backgroundColor;
33801
33808
  const keyframes = {
33802
33809
  fade,
33803
33810
  grow,
@@ -33809,7 +33816,7 @@
33809
33816
  shift: 225
33810
33817
  }[props.sliderTransition ?? 'shift'] ?? 225);
33811
33818
  animate(nextEl, {
33812
- backgroundColor: [color, 'currentcolor'],
33819
+ backgroundColor: [color, color],
33813
33820
  ...keyframes(nextEl, prevEl)
33814
33821
  }, {
33815
33822
  duration,
@@ -33823,7 +33830,9 @@
33823
33830
  "symbol": VTabsSymbol,
33824
33831
  "ref": rootEl,
33825
33832
  "class": ['v-tab', props.class, isSelected.value && props.inset ? insetColorClasses.value : []],
33826
- "style": [props.style, isSelected.value && props.inset ? insetColorStyles.value : []],
33833
+ "style": [props.style, isSelected.value && props.inset ? insetColorStyles.value : [], {
33834
+ backgroundColor: isSelected.value && props.inset ? 'transparent !important' : undefined
33835
+ }],
33827
33836
  "tabindex": isSelected.value ? 0 : -1,
33828
33837
  "role": "tab",
33829
33838
  "aria-selected": String(isSelected.value),
@@ -33836,8 +33845,8 @@
33836
33845
  ...slots,
33837
33846
  default: () => vue.createElementVNode(vue.Fragment, null, [slots.default?.() ?? props.text, !props.hideSlider && vue.createElementVNode("div", {
33838
33847
  "ref": sliderEl,
33839
- "class": vue.normalizeClass(['v-tab__slider', sliderColorClasses.value]),
33840
- "style": vue.normalizeStyle(sliderColorStyles.value)
33848
+ "class": vue.normalizeClass(['v-tab__slider', props.inset ? insetColorClasses.value : sliderColorClasses.value]),
33849
+ "style": vue.normalizeStyle([sliderColorStyles.value, props.inset ? insetColorStyles.value : sliderColorClasses.value])
33841
33850
  }, null)])
33842
33851
  });
33843
33852
  });
@@ -40057,7 +40066,7 @@
40057
40066
  };
40058
40067
  });
40059
40068
  }
40060
- const version$1 = "3.11.8-dev.2026-02-11";
40069
+ const version$1 = "3.11.8-dev.2026-02-12";
40061
40070
  createVuetify$1.version = version$1;
40062
40071
 
40063
40072
  // Vue's inject() can only be used in setup
@@ -40360,7 +40369,7 @@
40360
40369
 
40361
40370
  /* eslint-disable local-rules/sort-imports */
40362
40371
 
40363
- const version = "3.11.8-dev.2026-02-11";
40372
+ const version = "3.11.8-dev.2026-02-12";
40364
40373
 
40365
40374
  /* eslint-disable local-rules/sort-imports */
40366
40375