@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.cjs CHANGED
@@ -18307,7 +18307,7 @@ var init_email_validation = __esm({
18307
18307
  allowedBetweenQuotes = `(?:[-\b\v\f-!#-[]-\x7F]|\\[- \v\f-\x7F])*`;
18308
18308
  localPart = `(?:${allowedWithoutQuotes}|${allowedBetweenQuotes})`;
18309
18309
  domainPart = `(?:[${anyLetterOrDigit}](?:[${anyLetterOrDigit}-]*[${anyLetterOrDigit}])?\\.)+(?:(?:[${anyDigit}]+[${anyLetter}][${anyLetterOrDigit}]*)|(?:[${anyLetter}][${anyLetterOrDigit}]{1,}))`;
18310
- emailValidationPattern = localPart + "@" + domainPart;
18310
+ emailValidationPattern = "^" + localPart + "@" + domainPart + "$";
18311
18311
  }
18312
18312
  });
18313
18313