@vuetify/nightly 3.9.2-master.2025-07-25 → 3.9.2-master.2025-07-27
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 +12 -3
- package/dist/json/attributes.json +3358 -3358
- package/dist/json/importMap-labs.json +30 -30
- package/dist/json/importMap.json +132 -132
- package/dist/json/web-types.json +6344 -6332
- package/dist/vuetify-labs.cjs +14 -7
- package/dist/vuetify-labs.css +4884 -4884
- package/dist/vuetify-labs.d.ts +91 -50
- package/dist/vuetify-labs.esm.js +14 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +14 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +5 -3
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3026 -3026
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +5 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.js +2 -0
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +50 -50
- package/lib/framework.js +1 -1
- package/lib/labs/VPie/VPie.css +1 -1
- package/lib/labs/VPie/VPie.d.ts +50 -0
- package/lib/labs/VPie/VPie.js +9 -4
- package/lib/labs/VPie/VPie.js.map +1 -1
- package/lib/labs/VPie/VPie.sass +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.2-master.2025-07-
|
2
|
+
* Vuetify v3.9.2-master.2025-07-27
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -26205,6 +26205,8 @@
|
|
26205
26205
|
if (potentialNewInputVal.split(decimalSeparator.value)[1]?.length > props.precision) {
|
26206
26206
|
e.preventDefault();
|
26207
26207
|
inputElement.value = potentialNewNumber;
|
26208
|
+
const cursorPosition = (selectionStart ?? 0) + e.data.length;
|
26209
|
+
inputElement.setSelectionRange(cursorPosition, cursorPosition);
|
26208
26210
|
}
|
26209
26211
|
// Ignore decimal separator when precision = 0
|
26210
26212
|
if (props.precision === 0 && potentialNewInputVal.includes(decimalSeparator.value)) {
|
@@ -31434,7 +31436,7 @@
|
|
31434
31436
|
};
|
31435
31437
|
});
|
31436
31438
|
}
|
31437
|
-
const version$1 = "3.9.2-master.2025-07-
|
31439
|
+
const version$1 = "3.9.2-master.2025-07-27";
|
31438
31440
|
createVuetify$1.version = version$1;
|
31439
31441
|
|
31440
31442
|
// Vue's inject() can only be used in setup
|
@@ -31459,7 +31461,7 @@
|
|
31459
31461
|
...options
|
31460
31462
|
});
|
31461
31463
|
};
|
31462
|
-
const version = "3.9.2-master.2025-07-
|
31464
|
+
const version = "3.9.2-master.2025-07-27";
|
31463
31465
|
createVuetify.version = version;
|
31464
31466
|
|
31465
31467
|
exports.blueprints = index;
|