@wix/form-public 0.229.0 → 0.230.0

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/index.js CHANGED
@@ -18281,7 +18281,7 @@ var init_email_validation = __esm({
18281
18281
  allowedBetweenQuotes = `(?:[-\b\v\f-!#-[]-\x7F]|\\[- \v\f-\x7F])*`;
18282
18282
  localPart = `(?:${allowedWithoutQuotes}|${allowedBetweenQuotes})`;
18283
18283
  domainPart = `(?:[${anyLetterOrDigit}](?:[${anyLetterOrDigit}-]*[${anyLetterOrDigit}])?\\.)+(?:(?:[${anyDigit}]+[${anyLetter}][${anyLetterOrDigit}]*)|(?:[${anyLetter}][${anyLetterOrDigit}]{1,}))`;
18284
- emailValidationPattern = localPart + "@" + domainPart;
18284
+ emailValidationPattern = "^" + localPart + "@" + domainPart + "$";
18285
18285
  }
18286
18286
  });
18287
18287