@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.
- package/CHANGELOG.md +13 -3
- package/dist/json/attributes.json +1090 -1090
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +208 -208
- package/dist/json/web-types.json +2092 -2092
- package/dist/vuetify-labs.css +3237 -3233
- package/dist/vuetify-labs.d.ts +15 -9
- package/dist/vuetify-labs.esm.js +97 -24
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +97 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2908 -2908
- package/dist/vuetify.d.ts +74 -74
- package/dist/vuetify.esm.js +6 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VList/VListItem.mjs +2 -0
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VSlider/slider.mjs +1 -0
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +74 -74
- package/lib/labs/VFileUpload/VFileUpload.css +5 -1
- package/lib/labs/VFileUpload/VFileUpload.sass +4 -0
- package/lib/labs/VFileUpload/_variables.scss +1 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs +53 -18
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/hold.mjs +31 -0
- package/lib/labs/VNumberInput/hold.mjs.map +1 -0
- package/lib/labs/VNumberInput/index.d.mts +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.mjs +11 -4
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +14 -8
- package/lib/labs/components.d.mts +15 -9
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.14-master.2025-02
|
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
|
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
|
28449
|
+
const version = "3.7.14-master.2025-03-02";
|
28447
28450
|
createVuetify.version = version;
|
28448
28451
|
|
28449
28452
|
exports.blueprints = index;
|