@vuetify/nightly 3.9.3-master.2025-08-02 → 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 (41) hide show
  1. package/CHANGELOG.md +8 -3
  2. package/dist/json/attributes.json +4001 -3997
  3. package/dist/json/importMap-labs.json +32 -32
  4. package/dist/json/importMap.json +158 -158
  5. package/dist/json/tags.json +1 -0
  6. package/dist/json/web-types.json +6836 -6827
  7. package/dist/vuetify-labs.cjs +22 -14
  8. package/dist/vuetify-labs.css +3841 -3840
  9. package/dist/vuetify-labs.d.ts +63 -58
  10. package/dist/vuetify-labs.esm.js +22 -14
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +22 -14
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +18 -13
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3353 -3352
  17. package/dist/vuetify.d.ts +58 -58
  18. package/dist/vuetify.esm.js +18 -13
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +18 -13
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +461 -460
  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 +58 -58
  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/lib/labs/rules/rules.d.ts +10 -3
  39. package/lib/labs/rules/rules.js +13 -5
  40. package/lib/labs/rules/rules.js.map +1 -1
  41. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.3-master.2025-08-02
2
+ * Vuetify v3.9.3-master.2025-08-04
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -7100,9 +7100,14 @@
7100
7100
  // Utilities
7101
7101
  const RulesSymbol = Symbol.for('vuetify:rules');
7102
7102
  function useRules(fn) {
7103
- const resolveRules = vue.inject(RulesSymbol, null);
7104
- if (!resolveRules) return vue.toRef(fn);
7105
- return resolveRules(fn);
7103
+ const rules = vue.inject(RulesSymbol, null);
7104
+ if (!fn) {
7105
+ if (!rules) {
7106
+ throw new Error('Could not find Vuetify rules injection');
7107
+ }
7108
+ return rules.aliases;
7109
+ }
7110
+ return rules?.resolve(fn) ?? vue.toRef(fn);
7106
7111
  }
7107
7112
 
7108
7113
  // Composables
@@ -10928,11 +10933,11 @@
10928
10933
  function onScroll(e) {
10929
10934
  data.isActive.value = false;
10930
10935
  }
10931
- bindScroll(data.target.value ?? data.contentEl.value, onScroll);
10936
+ bindScroll(getTargetEl(data.target.value, data.contentEl.value), onScroll);
10932
10937
  }
10933
10938
  function blockScrollStrategy(data, props) {
10934
10939
  const offsetParent = data.root.value?.offsetParent;
10935
- 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);
10936
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'));
10937
10942
  const scrollbarWidth = window.innerWidth - document.documentElement.offsetWidth;
10938
10943
  const scrollableParent = (el => hasScrollbar(el) && el)(offsetParent || document.documentElement);
@@ -10980,7 +10985,7 @@
10980
10985
  }
10981
10986
  ric = (typeof requestIdleCallback === 'undefined' ? cb => cb() : requestIdleCallback)(() => {
10982
10987
  scope.run(() => {
10983
- bindScroll(data.target.value ?? data.contentEl.value, e => {
10988
+ bindScroll(getTargetEl(data.target.value, data.contentEl.value), e => {
10984
10989
  if (slow) {
10985
10990
  // If the position calculation is slow,
10986
10991
  // defer updates until scrolling is finished.
@@ -11003,10 +11008,10 @@
11003
11008
  cancelAnimationFrame(raf);
11004
11009
  });
11005
11010
  }
11006
-
11007
- /** @private */
11008
- function bindScroll(target, onScroll) {
11009
- 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) {
11010
11015
  const scrollElements = [document, ...getScrollParents(el)];
11011
11016
  scrollElements.forEach(el => {
11012
11017
  el.addEventListener('scroll', onScroll, {
@@ -34452,6 +34457,7 @@
34452
34457
 
34453
34458
  const allowedVariants = ['background', 'player'];
34454
34459
  const makeVVideoProps = propsFactory({
34460
+ aspectRatio: [String, Number],
34455
34461
  autoplay: Boolean,
34456
34462
  muted: Boolean,
34457
34463
  eager: Boolean,
@@ -34768,7 +34774,9 @@
34768
34774
  "class": vue.normalizeClass(['v-video', `v-video--variant-${props.variant}`, `v-video--${state.value}`, {
34769
34775
  'v-video--playing': playing.value
34770
34776
  }, themeClasses.value, densityClasses.value, roundedContainerClasses.value, props.class]),
34771
- "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]),
34772
34780
  "onKeydown": onKeydown,
34773
34781
  "onClick": onClick
34774
34782
  }, [vue.createElementVNode("div", {
@@ -35282,7 +35290,7 @@
35282
35290
  };
35283
35291
  });
35284
35292
  }
35285
- const version$1 = "3.9.3-master.2025-08-02";
35293
+ const version$1 = "3.9.3-master.2025-08-04";
35286
35294
  createVuetify$1.version = version$1;
35287
35295
 
35288
35296
  // Vue's inject() can only be used in setup
@@ -35580,7 +35588,7 @@
35580
35588
 
35581
35589
  /* eslint-disable local-rules/sort-imports */
35582
35590
 
35583
- const version = "3.9.3-master.2025-08-02";
35591
+ const version = "3.9.3-master.2025-08-04";
35584
35592
 
35585
35593
  /* eslint-disable local-rules/sort-imports */
35586
35594