intelica-library-ui 0.1.144 → 0.1.145
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.
|
@@ -5634,9 +5634,10 @@ function encryptData(data, keyEncrypt) {
|
|
|
5634
5634
|
|
|
5635
5635
|
class Patterns {
|
|
5636
5636
|
PatternText = "^(?!\\s*$)[a-zA-Z0-9-\\s]*$";
|
|
5637
|
-
PatternEmail = "^[a-
|
|
5637
|
+
PatternEmail = "^[a-zA-Z0-9._+~\\-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$";
|
|
5638
5638
|
PatternOnlyLetters = "^[a-zA-Z\\s]+$";
|
|
5639
5639
|
PatternOnlyLettersWithAccents = "^[a-zA-ZáéíóúÁÉÍÓÚ\\s]+$";
|
|
5640
|
+
PatternLettersEmail = "^[A-Za-z0-9@._-]+$";
|
|
5640
5641
|
}
|
|
5641
5642
|
function InputValidation(event) {
|
|
5642
5643
|
const allowedCharacters = /^[a-zA-Z0-9-\s]$/;
|