@vuetify/nightly 3.7.14-master.2025-02-27 → 3.7.14-master.2025-03-02

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 +13 -3
  2. package/dist/json/attributes.json +1090 -1090
  3. package/dist/json/importMap-labs.json +34 -34
  4. package/dist/json/importMap.json +208 -208
  5. package/dist/json/web-types.json +2092 -2092
  6. package/dist/vuetify-labs.css +3237 -3233
  7. package/dist/vuetify-labs.d.ts +15 -9
  8. package/dist/vuetify-labs.esm.js +97 -24
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +97 -24
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +2908 -2908
  13. package/dist/vuetify.d.ts +74 -74
  14. package/dist/vuetify.esm.js +6 -3
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +6 -3
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +5 -5
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VList/VListItem.mjs +2 -0
  22. package/lib/components/VList/VListItem.mjs.map +1 -1
  23. package/lib/components/VSlider/slider.mjs +1 -0
  24. package/lib/components/VSlider/slider.mjs.map +1 -1
  25. package/lib/entry-bundler.mjs +1 -1
  26. package/lib/framework.mjs +1 -1
  27. package/lib/index.d.mts +74 -74
  28. package/lib/labs/VFileUpload/VFileUpload.css +5 -1
  29. package/lib/labs/VFileUpload/VFileUpload.sass +4 -0
  30. package/lib/labs/VFileUpload/_variables.scss +1 -1
  31. package/lib/labs/VNumberInput/VNumberInput.mjs +53 -18
  32. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  33. package/lib/labs/VNumberInput/hold.mjs +31 -0
  34. package/lib/labs/VNumberInput/hold.mjs.map +1 -0
  35. package/lib/labs/VNumberInput/index.d.mts +1 -1
  36. package/lib/labs/VTreeview/VTreeviewItem.mjs +11 -4
  37. package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
  38. package/lib/labs/VTreeview/index.d.mts +14 -8
  39. package/lib/labs/components.d.mts +15 -9
  40. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.14-master.2025-02-27
2
+ * Vuetify v3.7.14-master.2025-03-02
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9293,6 +9293,8 @@
9293
9293
  }
9294
9294
  }
9295
9295
  function onKeyDown(e) {
9296
+ const target = e.target;
9297
+ if (['INPUT', 'TEXTAREA'].includes(target.tagName)) return;
9296
9298
  if (e.key === 'Enter' || e.key === ' ') {
9297
9299
  e.preventDefault();
9298
9300
  e.target.dispatchEvent(new MouseEvent('click', e));
@@ -15918,6 +15920,7 @@
15918
15920
  });
15919
15921
  }
15920
15922
  function onSliderMousedown(e) {
15923
+ if (e.button !== 0) return;
15921
15924
  e.preventDefault();
15922
15925
  handleStart(e);
15923
15926
  window.addEventListener('mousemove', onMouseMove, moveListenerOptions);
@@ -28418,7 +28421,7 @@
28418
28421
  goTo
28419
28422
  };
28420
28423
  }
28421
- const version$1 = "3.7.14-master.2025-02-27";
28424
+ const version$1 = "3.7.14-master.2025-03-02";
28422
28425
  createVuetify$1.version = version$1;
28423
28426
 
28424
28427
  // Vue's inject() can only be used in setup
@@ -28443,7 +28446,7 @@
28443
28446
  ...options
28444
28447
  });
28445
28448
  };
28446
- const version = "3.7.14-master.2025-02-27";
28449
+ const version = "3.7.14-master.2025-03-02";
28447
28450
  createVuetify.version = version;
28448
28451
 
28449
28452
  exports.blueprints = index;