@hexure/ui 1.13.79 → 1.13.80

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/cjs/index.js CHANGED
@@ -5329,9 +5329,6 @@ const Input$1 = (_a) => {
5329
5329
  if (format === 'ssn') {
5330
5330
  e.target.value = newValue.replace(/[^0-9]/g, '').substring(0, 9);
5331
5331
  }
5332
- if (type === 'email') {
5333
- e.target.value = newValue.toLowerCase();
5334
- }
5335
5332
  if (type === 'number' && max && parseInt(newValue, 10) > parseInt(max, 10)) {
5336
5333
  e.target.value = `${max}`;
5337
5334
  }