@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
package/dist/vuetify.cjs CHANGED
@@ -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
  */
@@ -7340,9 +7340,14 @@
7340
7340
  // Utilities
7341
7341
  const RulesSymbol = Symbol.for('vuetify:rules');
7342
7342
  function useRules(fn) {
7343
- const resolveRules = vue.inject(RulesSymbol, null);
7344
- if (!resolveRules) return vue.toRef(fn);
7345
- return resolveRules(fn);
7343
+ const rules = vue.inject(RulesSymbol, null);
7344
+ if (!fn) {
7345
+ if (!rules) {
7346
+ throw new Error('Could not find Vuetify rules injection');
7347
+ }
7348
+ return rules.aliases;
7349
+ }
7350
+ return rules?.resolve(fn) ?? vue.toRef(fn);
7346
7351
  }
7347
7352
 
7348
7353
  // Composables
@@ -11168,11 +11173,11 @@
11168
11173
  function onScroll(e) {
11169
11174
  data.isActive.value = false;
11170
11175
  }
11171
- bindScroll(data.target.value ?? data.contentEl.value, onScroll);
11176
+ bindScroll(getTargetEl(data.target.value, data.contentEl.value), onScroll);
11172
11177
  }
11173
11178
  function blockScrollStrategy(data, props) {
11174
11179
  const offsetParent = data.root.value?.offsetParent;
11175
- const target = Array.isArray(data.target.value) ? document.elementFromPoint(...data.target.value) : data.target.value;
11180
+ const target = getTargetEl(data.target.value, data.contentEl.value);
11176
11181
  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'));
11177
11182
  const scrollbarWidth = window.innerWidth - document.documentElement.offsetWidth;
11178
11183
  const scrollableParent = (el => hasScrollbar(el) && el)(offsetParent || document.documentElement);
@@ -11220,7 +11225,7 @@
11220
11225
  }
11221
11226
  ric = (typeof requestIdleCallback === 'undefined' ? cb => cb() : requestIdleCallback)(() => {
11222
11227
  scope.run(() => {
11223
- bindScroll(data.target.value ?? data.contentEl.value, e => {
11228
+ bindScroll(getTargetEl(data.target.value, data.contentEl.value), e => {
11224
11229
  if (slow) {
11225
11230
  // If the position calculation is slow,
11226
11231
  // defer updates until scrolling is finished.
@@ -11243,10 +11248,10 @@
11243
11248
  cancelAnimationFrame(raf);
11244
11249
  });
11245
11250
  }
11246
-
11247
- /** @private */
11248
- function bindScroll(target, onScroll) {
11249
- const el = Array.isArray(target) ? document.elementFromPoint(...target) : target;
11251
+ function getTargetEl(target, contentEl) {
11252
+ return Array.isArray(target) ? document.elementsFromPoint(...target).find(el => !contentEl?.contains(el)) : target ?? contentEl;
11253
+ }
11254
+ function bindScroll(el, onScroll) {
11250
11255
  const scrollElements = [document, ...getScrollParents(el)];
11251
11256
  scrollElements.forEach(el => {
11252
11257
  el.addEventListener('scroll', onScroll, {
@@ -31582,7 +31587,7 @@
31582
31587
  };
31583
31588
  });
31584
31589
  }
31585
- const version$1 = "3.9.3-master.2025-08-02";
31590
+ const version$1 = "3.9.3-master.2025-08-04";
31586
31591
  createVuetify$1.version = version$1;
31587
31592
 
31588
31593
  // Vue's inject() can only be used in setup
@@ -31607,7 +31612,7 @@
31607
31612
  ...options
31608
31613
  });
31609
31614
  };
31610
- const version = "3.9.3-master.2025-08-02";
31615
+ const version = "3.9.3-master.2025-08-04";
31611
31616
  createVuetify.version = version;
31612
31617
 
31613
31618
  exports.blueprints = index;