@vuetify/nightly 3.7.0-dev.2024-08-16 → 3.7.0-master.2024-08-16
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/dist/json/attributes.json +98 -98
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +162 -162
- package/dist/json/web-types.json +191 -191
- package/dist/vuetify-labs.css +3305 -3305
- package/dist/vuetify-labs.esm.js +10 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3255 -3255
- package/dist/vuetify.d.ts +58 -58
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +58 -58
- package/lib/labs/VNumberInput/VNumberInput.mjs +7 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.0-
|
2
|
+
* Vuetify v3.7.0-master.2024-08-16
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -28150,7 +28150,13 @@ const VNumberInput = genericComponent()({
|
|
28150
28150
|
const model = computed({
|
28151
28151
|
get: () => _model.value,
|
28152
28152
|
set(val) {
|
28153
|
-
if (
|
28153
|
+
if (val === null) {
|
28154
|
+
_model.value = null;
|
28155
|
+
return;
|
28156
|
+
}
|
28157
|
+
if (!isNaN(+val) && +val <= props.max && +val >= props.min) {
|
28158
|
+
_model.value = +val;
|
28159
|
+
}
|
28154
28160
|
}
|
28155
28161
|
});
|
28156
28162
|
const vTextFieldRef = ref();
|
@@ -30378,7 +30384,7 @@ function createVuetify$1() {
|
|
30378
30384
|
goTo
|
30379
30385
|
};
|
30380
30386
|
}
|
30381
|
-
const version$1 = "3.7.0-
|
30387
|
+
const version$1 = "3.7.0-master.2024-08-16";
|
30382
30388
|
createVuetify$1.version = version$1;
|
30383
30389
|
|
30384
30390
|
// Vue's inject() can only be used in setup
|
@@ -30631,7 +30637,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30631
30637
|
|
30632
30638
|
/* eslint-disable local-rules/sort-imports */
|
30633
30639
|
|
30634
|
-
const version = "3.7.0-
|
30640
|
+
const version = "3.7.0-master.2024-08-16";
|
30635
30641
|
|
30636
30642
|
/* eslint-disable local-rules/sort-imports */
|
30637
30643
|
|