@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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.0-dev.2024-08-16
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 (typeof val !== 'string') _model.value = val;
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-dev.2024-08-16";
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-dev.2024-08-16";
30640
+ const version = "3.7.0-master.2024-08-16";
30635
30641
 
30636
30642
  /* eslint-disable local-rules/sort-imports */
30637
30643