@vuetify/nightly 3.9.2-master.2025-07-26 → 3.9.2-master.2025-07-28

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/vuetify.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.2-master.2025-07-26
2
+ * Vuetify v3.9.2-master.2025-07-28
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -26097,7 +26097,7 @@
26097
26097
  return fixed.replace('.', decimalSeparator.value);
26098
26098
  }
26099
26099
  let [baseDigits, fractionDigits] = fixed.split('.');
26100
- fractionDigits = (fractionDigits ?? '').padEnd(props.minFractionDigits, '0').replace(new RegExp(`(?<=\\d{${props.minFractionDigits}})0`, 'g'), '');
26100
+ fractionDigits = (fractionDigits ?? '').padEnd(props.minFractionDigits, '0').replace(new RegExp(`(?<=\\d{${props.minFractionDigits}})0+$`, 'g'), '');
26101
26101
  return [baseDigits, fractionDigits].filter(Boolean).join(decimalSeparator.value);
26102
26102
  }
26103
26103
  const model = useProxiedModel(props, 'modelValue', null, val => val ?? null, val => val == null ? val ?? null : clamp(Number(val), props.min, props.max));
@@ -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-26";
31439
+ const version$1 = "3.9.2-master.2025-07-28";
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-26";
31464
+ const version = "3.9.2-master.2025-07-28";
31463
31465
  createVuetify.version = version;
31464
31466
 
31465
31467
  exports.blueprints = index;