@vuetify/nightly 3.9.3-master.2025-08-03 → 3.9.3-master.2025-08-04

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 (38) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/json/attributes.json +3449 -3445
  3. package/dist/json/importMap-labs.json +50 -50
  4. package/dist/json/importMap.json +140 -140
  5. package/dist/json/tags.json +1 -0
  6. package/dist/json/web-types.json +6332 -6323
  7. package/dist/vuetify-labs.cjs +14 -11
  8. package/dist/vuetify-labs.css +3682 -3681
  9. package/dist/vuetify-labs.d.ts +65 -60
  10. package/dist/vuetify-labs.esm.js +14 -11
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +14 -11
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +10 -10
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +4880 -4879
  17. package/dist/vuetify.d.ts +60 -60
  18. package/dist/vuetify.esm.js +10 -10
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +10 -10
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +459 -459
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VColorPicker/VColorPickerCanvas.css +1 -0
  26. package/lib/components/VColorPicker/VColorPickerCanvas.sass +1 -0
  27. package/lib/components/VOverlay/scrollStrategies.js +7 -7
  28. package/lib/components/VOverlay/scrollStrategies.js.map +1 -1
  29. package/lib/entry-bundler.js +1 -1
  30. package/lib/framework.d.ts +60 -60
  31. package/lib/framework.js +1 -1
  32. package/lib/labs/VVideo/VVideo.css +3 -3
  33. package/lib/labs/VVideo/VVideo.d.ts +10 -0
  34. package/lib/labs/VVideo/VVideo.js +4 -1
  35. package/lib/labs/VVideo/VVideo.js.map +1 -1
  36. package/lib/labs/VVideo/VVideo.sass +2 -2
  37. package/lib/labs/VVideo/_variables.scss +3 -2
  38. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.3-master.2025-08-03
2
+ * Vuetify v3.9.3-master.2025-08-04
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -10933,11 +10933,11 @@
10933
10933
  function onScroll(e) {
10934
10934
  data.isActive.value = false;
10935
10935
  }
10936
- bindScroll(data.target.value ?? data.contentEl.value, onScroll);
10936
+ bindScroll(getTargetEl(data.target.value, data.contentEl.value), onScroll);
10937
10937
  }
10938
10938
  function blockScrollStrategy(data, props) {
10939
10939
  const offsetParent = data.root.value?.offsetParent;
10940
- const target = Array.isArray(data.target.value) ? document.elementFromPoint(...data.target.value) : data.target.value;
10940
+ const target = getTargetEl(data.target.value, data.contentEl.value);
10941
10941
  const scrollElements = [...new Set([...getScrollParents(target, props.contained ? offsetParent : undefined), ...getScrollParents(data.contentEl.value, props.contained ? offsetParent : undefined)])].filter(el => !el.classList.contains('v-overlay-scroll-blocked'));
10942
10942
  const scrollbarWidth = window.innerWidth - document.documentElement.offsetWidth;
10943
10943
  const scrollableParent = (el => hasScrollbar(el) && el)(offsetParent || document.documentElement);
@@ -10985,7 +10985,7 @@
10985
10985
  }
10986
10986
  ric = (typeof requestIdleCallback === 'undefined' ? cb => cb() : requestIdleCallback)(() => {
10987
10987
  scope.run(() => {
10988
- bindScroll(data.target.value ?? data.contentEl.value, e => {
10988
+ bindScroll(getTargetEl(data.target.value, data.contentEl.value), e => {
10989
10989
  if (slow) {
10990
10990
  // If the position calculation is slow,
10991
10991
  // defer updates until scrolling is finished.
@@ -11008,10 +11008,10 @@
11008
11008
  cancelAnimationFrame(raf);
11009
11009
  });
11010
11010
  }
11011
-
11012
- /** @private */
11013
- function bindScroll(target, onScroll) {
11014
- const el = Array.isArray(target) ? document.elementFromPoint(...target) : target;
11011
+ function getTargetEl(target, contentEl) {
11012
+ return Array.isArray(target) ? document.elementsFromPoint(...target).find(el => !contentEl?.contains(el)) : target ?? contentEl;
11013
+ }
11014
+ function bindScroll(el, onScroll) {
11015
11015
  const scrollElements = [document, ...getScrollParents(el)];
11016
11016
  scrollElements.forEach(el => {
11017
11017
  el.addEventListener('scroll', onScroll, {
@@ -34457,6 +34457,7 @@
34457
34457
 
34458
34458
  const allowedVariants = ['background', 'player'];
34459
34459
  const makeVVideoProps = propsFactory({
34460
+ aspectRatio: [String, Number],
34460
34461
  autoplay: Boolean,
34461
34462
  muted: Boolean,
34462
34463
  eager: Boolean,
@@ -34773,7 +34774,9 @@
34773
34774
  "class": vue.normalizeClass(['v-video', `v-video--variant-${props.variant}`, `v-video--${state.value}`, {
34774
34775
  'v-video--playing': playing.value
34775
34776
  }, themeClasses.value, densityClasses.value, roundedContainerClasses.value, props.class]),
34776
- "style": vue.normalizeStyle([props.variant === 'background' ? [] : pick(dimensionStyles.value, ['width', 'min-width', 'max-width']), props.style]),
34777
+ "style": vue.normalizeStyle([{
34778
+ '--v-video-aspect-ratio': props.aspectRatio
34779
+ }, props.variant === 'background' ? [] : pick(dimensionStyles.value, ['width', 'minWidth', 'maxWidth']), props.style]),
34777
34780
  "onKeydown": onKeydown,
34778
34781
  "onClick": onClick
34779
34782
  }, [vue.createElementVNode("div", {
@@ -35287,7 +35290,7 @@
35287
35290
  };
35288
35291
  });
35289
35292
  }
35290
- const version$1 = "3.9.3-master.2025-08-03";
35293
+ const version$1 = "3.9.3-master.2025-08-04";
35291
35294
  createVuetify$1.version = version$1;
35292
35295
 
35293
35296
  // Vue's inject() can only be used in setup
@@ -35585,7 +35588,7 @@
35585
35588
 
35586
35589
  /* eslint-disable local-rules/sort-imports */
35587
35590
 
35588
- const version = "3.9.3-master.2025-08-03";
35591
+ const version = "3.9.3-master.2025-08-04";
35589
35592
 
35590
35593
  /* eslint-disable local-rules/sort-imports */
35591
35594