@everymatrix/general-registration 1.45.4 → 1.45.7
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/checkbox-group-input_13.cjs.entry.js +6 -6
- package/dist/cjs/index.cjs.js +6 -0
- package/dist/collection/index.js +6 -0
- package/dist/esm/checkbox-group-input_13.entry.js +6 -6
- package/dist/esm/index.js +6 -0
- package/dist/general-registration/general-registration.esm.js +1 -1
- package/dist/general-registration/index.esm.js +1 -1
- package/dist/general-registration/{p-68859405.entry.js → p-b35b7907.entry.js} +1 -1
- package/package.json +4 -3
|
@@ -22,7 +22,7 @@ const TRANSLATIONS$1 = {
|
|
|
22
22
|
"PasswordNotMatching": "Passwords not matching",
|
|
23
23
|
"MustIncludeNumber": "Password must include a number",
|
|
24
24
|
"MustContainCapital": "Password must include a capital letter",
|
|
25
|
-
"
|
|
25
|
+
"MustIncludePunctation": "Password must include punctuation",
|
|
26
26
|
"OnlyNumbers": "Should contains only numbers."
|
|
27
27
|
},
|
|
28
28
|
"hu": {
|
|
@@ -40,7 +40,7 @@ const TRANSLATIONS$1 = {
|
|
|
40
40
|
"PasswordNotMatching": "A jelszavak nem egyeznek",
|
|
41
41
|
"MustIncludeNumber": "A jelszónak tartalmaznia kell egy számot",
|
|
42
42
|
"MustContainCapital": "A jelszónak tartalmaznia kell egy nagybetűt",
|
|
43
|
-
"
|
|
43
|
+
"MustIncludePunctation": "A jelszónak tartalmaznia kell írásjelet",
|
|
44
44
|
"OnlyNumbers": "Csak számokat kell tartalmaznia."
|
|
45
45
|
},
|
|
46
46
|
"hr": {
|
|
@@ -59,7 +59,7 @@ const TRANSLATIONS$1 = {
|
|
|
59
59
|
"PasswordNotMatching": "Lozinke se ne podudaraju",
|
|
60
60
|
"MustIncludeNumber": "Lozinka mora sadržavati broj",
|
|
61
61
|
"MustContainCapital": "Lozinka mora sadržavati veliko slovo",
|
|
62
|
-
"
|
|
62
|
+
"MustIncludePunctation": "Lozinka mora sadržavati interpunkcijski znak",
|
|
63
63
|
"OnlyNumbers": "Treba sadržavati samo brojeve."
|
|
64
64
|
},
|
|
65
65
|
"tr": {
|
|
@@ -78,7 +78,7 @@ const TRANSLATIONS$1 = {
|
|
|
78
78
|
"PasswordNotMatching": "Şifreler uyuşmuyor",
|
|
79
79
|
"MustIncludeNumber": "bir sayı içermelidir",
|
|
80
80
|
"MustContainCapital": "büyük harf içermelidir",
|
|
81
|
-
"
|
|
81
|
+
"MustIncludePunctation": "noktalama işareti içermelidir",
|
|
82
82
|
"OnlyNumbers": "Sadece sayılar içermelidir."
|
|
83
83
|
},
|
|
84
84
|
"pt-br": {
|
|
@@ -97,7 +97,7 @@ const TRANSLATIONS$1 = {
|
|
|
97
97
|
"PasswordNotMatching": "Senha não corresponde",
|
|
98
98
|
"MustIncludeNumber": "A senha deve incluir um número",
|
|
99
99
|
"MustContainCapital": "A senha deve incluir uma letra maiúscula",
|
|
100
|
-
"
|
|
100
|
+
"MustIncludePunctation": "A senha deve incluir um sinal de pontuação",
|
|
101
101
|
"OnlyNumbers": "Deve conter apenas números"
|
|
102
102
|
},
|
|
103
103
|
"es-mx": {
|
|
@@ -116,7 +116,7 @@ const TRANSLATIONS$1 = {
|
|
|
116
116
|
"PasswordNotMatching": "La contraseña no coincide",
|
|
117
117
|
"MustIncludeNumber": "La contraseña debe incluir un número",
|
|
118
118
|
"MustContainCapital": "La contraseña debe incluir una letra mayúscula",
|
|
119
|
-
"
|
|
119
|
+
"MustIncludePunctation": "La contraseña debe incluir un signo de puntuación",
|
|
120
120
|
"OnlyNumbers": "Solo debe contener números"
|
|
121
121
|
}
|
|
122
122
|
};
|
package/dist/cjs/index.cjs.js
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
function safeDecorator(fn) {
|
|
4
4
|
// eslint-disable-next-line func-names
|
|
5
5
|
return function (...args) {
|
|
6
|
+
// @TODO investigate more and remove this hardcoded customElements for which we need to return false for unknown reasons right now
|
|
7
|
+
// this is related to the fact that the widget is not loading properly in firefox while used in toow
|
|
8
|
+
if (window.navigator.userAgent.includes('Firefox')) {
|
|
9
|
+
if (args[0] == 'dom-repeat' || args[0] == 'dom-module')
|
|
10
|
+
return false;
|
|
11
|
+
}
|
|
6
12
|
try {
|
|
7
13
|
return fn.apply(this, args);
|
|
8
14
|
}
|
package/dist/collection/index.js
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
function safeDecorator(fn) {
|
|
2
2
|
// eslint-disable-next-line func-names
|
|
3
3
|
return function (...args) {
|
|
4
|
+
// @TODO investigate more and remove this hardcoded customElements for which we need to return false for unknown reasons right now
|
|
5
|
+
// this is related to the fact that the widget is not loading properly in firefox while used in toow
|
|
6
|
+
if (window.navigator.userAgent.includes('Firefox')) {
|
|
7
|
+
if (args[0] == 'dom-repeat' || args[0] == 'dom-module')
|
|
8
|
+
return false;
|
|
9
|
+
}
|
|
4
10
|
try {
|
|
5
11
|
return fn.apply(this, args);
|
|
6
12
|
}
|
|
@@ -18,7 +18,7 @@ const TRANSLATIONS$1 = {
|
|
|
18
18
|
"PasswordNotMatching": "Passwords not matching",
|
|
19
19
|
"MustIncludeNumber": "Password must include a number",
|
|
20
20
|
"MustContainCapital": "Password must include a capital letter",
|
|
21
|
-
"
|
|
21
|
+
"MustIncludePunctation": "Password must include punctuation",
|
|
22
22
|
"OnlyNumbers": "Should contains only numbers."
|
|
23
23
|
},
|
|
24
24
|
"hu": {
|
|
@@ -36,7 +36,7 @@ const TRANSLATIONS$1 = {
|
|
|
36
36
|
"PasswordNotMatching": "A jelszavak nem egyeznek",
|
|
37
37
|
"MustIncludeNumber": "A jelszónak tartalmaznia kell egy számot",
|
|
38
38
|
"MustContainCapital": "A jelszónak tartalmaznia kell egy nagybetűt",
|
|
39
|
-
"
|
|
39
|
+
"MustIncludePunctation": "A jelszónak tartalmaznia kell írásjelet",
|
|
40
40
|
"OnlyNumbers": "Csak számokat kell tartalmaznia."
|
|
41
41
|
},
|
|
42
42
|
"hr": {
|
|
@@ -55,7 +55,7 @@ const TRANSLATIONS$1 = {
|
|
|
55
55
|
"PasswordNotMatching": "Lozinke se ne podudaraju",
|
|
56
56
|
"MustIncludeNumber": "Lozinka mora sadržavati broj",
|
|
57
57
|
"MustContainCapital": "Lozinka mora sadržavati veliko slovo",
|
|
58
|
-
"
|
|
58
|
+
"MustIncludePunctation": "Lozinka mora sadržavati interpunkcijski znak",
|
|
59
59
|
"OnlyNumbers": "Treba sadržavati samo brojeve."
|
|
60
60
|
},
|
|
61
61
|
"tr": {
|
|
@@ -74,7 +74,7 @@ const TRANSLATIONS$1 = {
|
|
|
74
74
|
"PasswordNotMatching": "Şifreler uyuşmuyor",
|
|
75
75
|
"MustIncludeNumber": "bir sayı içermelidir",
|
|
76
76
|
"MustContainCapital": "büyük harf içermelidir",
|
|
77
|
-
"
|
|
77
|
+
"MustIncludePunctation": "noktalama işareti içermelidir",
|
|
78
78
|
"OnlyNumbers": "Sadece sayılar içermelidir."
|
|
79
79
|
},
|
|
80
80
|
"pt-br": {
|
|
@@ -93,7 +93,7 @@ const TRANSLATIONS$1 = {
|
|
|
93
93
|
"PasswordNotMatching": "Senha não corresponde",
|
|
94
94
|
"MustIncludeNumber": "A senha deve incluir um número",
|
|
95
95
|
"MustContainCapital": "A senha deve incluir uma letra maiúscula",
|
|
96
|
-
"
|
|
96
|
+
"MustIncludePunctation": "A senha deve incluir um sinal de pontuação",
|
|
97
97
|
"OnlyNumbers": "Deve conter apenas números"
|
|
98
98
|
},
|
|
99
99
|
"es-mx": {
|
|
@@ -112,7 +112,7 @@ const TRANSLATIONS$1 = {
|
|
|
112
112
|
"PasswordNotMatching": "La contraseña no coincide",
|
|
113
113
|
"MustIncludeNumber": "La contraseña debe incluir un número",
|
|
114
114
|
"MustContainCapital": "La contraseña debe incluir una letra mayúscula",
|
|
115
|
-
"
|
|
115
|
+
"MustIncludePunctation": "La contraseña debe incluir un signo de puntuación",
|
|
116
116
|
"OnlyNumbers": "Solo debe contener números"
|
|
117
117
|
}
|
|
118
118
|
};
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
function safeDecorator(fn) {
|
|
2
2
|
// eslint-disable-next-line func-names
|
|
3
3
|
return function (...args) {
|
|
4
|
+
// @TODO investigate more and remove this hardcoded customElements for which we need to return false for unknown reasons right now
|
|
5
|
+
// this is related to the fact that the widget is not loading properly in firefox while used in toow
|
|
6
|
+
if (window.navigator.userAgent.includes('Firefox')) {
|
|
7
|
+
if (args[0] == 'dom-repeat' || args[0] == 'dom-module')
|
|
8
|
+
return false;
|
|
9
|
+
}
|
|
4
10
|
try {
|
|
5
11
|
return fn.apply(this, args);
|
|
6
12
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as l}from"./p-35ed5ec5.js";export{s as setNonce}from"./p-35ed5ec5.js";import{g as i}from"./p-e1255160.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((async e=>(await i(),l([["p-
|
|
1
|
+
import{p as e,b as l}from"./p-35ed5ec5.js";export{s as setNonce}from"./p-35ed5ec5.js";import{g as i}from"./p-e1255160.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((async e=>(await i(),l([["p-b35b7907",[[1,"general-registration",{endpoint:[513],language:[513],clientStyling:[1537,"client-styling"],clientStylingUrl:[513,"client-styling-url"],translationUrl:[513,"translation-url"],dateFormat:[513,"date-format"],buttonInsideForm:[516,"button-inside-form"],btag:[513],emitOnClick:[516,"emit-on-click"],errorMessage:[32],isFormValid:[32],isLoading:[32],isLoadingPOST:[32],registrationStep:[32],forms:[32],limitStylingAppends:[32],autofilled:[32]},[[0,"sendValidityState","checkInputsValidityHandler"],[0,"sendInputValue","getInputsValueHandler"]],{registrationStep:["sendStep"],clientStyling:["handleStylingChange"],clientStylingUrl:["handleStylingUrlChange"],forms:["setFormValidity"],btag:["addBtag"]}],[1,"general-input",{type:[513],name:[513],displayName:[513,"display-name"],placeholder:[513],action:[513],validation:[16],options:[520],language:[513],autofilled:[516],tooltip:[513],defaultValue:[520,"default-value"],emitValue:[516,"emit-value"],isDuplicateInput:[516,"is-duplicate-input"],clientStyling:[520,"client-styling"],dateFormat:[513,"date-format"],translationUrl:[513,"translation-url"],emitOnClick:[516,"emit-on-click"]}],[1,"toggle-checkbox-input",{name:[513],displayName:[513,"display-name"],defaultValue:[513,"default-value"],options:[16],autofilled:[516],tooltip:[513],validation:[16],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32],showFields:[32]},[[4,"click","handleClickOutside"]]],[1,"checkbox-group-input",{name:[513],displayName:[513,"display-name"],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],options:[16],validation:[16],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32],selectedValues:[32]},[[4,"click","handleClickOutside"]],{isValid:["validityChanged"],selectedValues:["setValue"],emitValue:["emitValueHandler"]}],[1,"checkbox-input",{name:[513],displayName:[513,"display-name"],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],validation:[16],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}],[1,"date-input",{name:[513],displayName:[513,"display-name"],placeholder:[513],validation:[16],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],dateFormat:[513,"date-format"],emitOnClick:[516,"emit-on-click"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}],[1,"email-input",{name:[513],displayName:[513,"display-name"],placeholder:[513],validation:[16],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],language:[513],emitValue:[516,"emit-value"],isDuplicateInput:[516,"is-duplicate-input"],clientStyling:[513,"client-styling"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}],[1,"number-input",{name:[513],displayName:[513,"display-name"],placeholder:[513],validation:[16],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}],[1,"password-input",{name:[513],displayName:[513,"display-name"],placeholder:[513],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],validation:[16],language:[513],emitValue:[516,"emit-value"],isDuplicateInput:[516,"is-duplicate-input"],clientStyling:[513,"client-styling"],isValid:[32],errorMessage:[32],limitStylingAppends:[32],showTooltip:[32],passwordComplexity:[32],showPopup:[32],value:[32]},[[16,"sendOriginalValidityState","originalValidityChangedHandler"],[16,"sendInputValue","valueChangedHandler"],[4,"click","handleClickOutside"]],{isValid:["validityChanged"],value:["valueChanged"],emitValue:["emitValueHandler"]}],[1,"radio-input",{name:[513],displayName:[513,"display-name"],optionsGroup:[16],validation:[16],tooltip:[513],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}],[1,"select-input",{name:[513],displayName:[513,"display-name"],placeholder:[513],action:[513],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],options:[16],validation:[16],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],errorMessage:[32],isValid:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}],[1,"tel-input",{name:[513],displayName:[513,"display-name"],placeholder:[513],showLabels:[516,"show-labels"],action:[513],validation:[16],defaultValue:[520,"default-value"],autofilled:[516],tooltip:[513],language:[513],emitValue:[516,"emit-value"],clientStyling:[513,"client-styling"],isValid:[32],errorMessage:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}],[1,"text-input",{name:[513],displayName:[513,"display-name"],placeholder:[513],validation:[16],defaultValue:[513,"default-value"],autofilled:[516],tooltip:[513],language:[513],checkValidity:[516,"check-validity"],emitValue:[516,"emit-value"],isDuplicateInput:[516,"is-duplicate-input"],clientStyling:[513,"client-styling"],isValid:[32],errorMessage:[32],limitStylingAppends:[32],showTooltip:[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{isValid:["validityChanged"],emitValue:["emitValueHandler"]}]]]],e))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var e;customElements.define=(e=customElements.define,function(...t){if(window.navigator.userAgent.includes("Firefox")&&("dom-repeat"==t[0]||"dom-module"==t[0]))return!1;try{return e.apply(this,t)}catch(e){if(e instanceof DOMException&&e.message.includes("has already been used with this registry")||e.message.includes("Cannot define multiple custom elements with the same tag name"))return!1;throw e}});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{r as t,c as e,h as i,g as o,H as r}from"./p-35ed5ec5.js";const s={en:{dateError:"The selected date should be between {min} and {max}",dateError2:"The selected date is not within the accepted range",numberLengthError:"The number should be between {min} and {max}",lengthError:"The length should be between {minLength} and {maxLength}",requiredError:"This input is required.",invalidOriginalPasswordError:"Initial password field does not validate all criteria.",passwordStrength:"Password strength",passwordStrengthWeak:"is not adequate",passwordStrengthStrong:"is adequate",SpecialCharactersNotAllowed:"Should not contain special characters",InvalidEmailFormat:"Invalid email format.",EmailNotMatching:"Emails not matching!",PasswordNotMatching:"Passwords not matching",MustIncludeNumber:"Password must include a number",MustContainCapital:"Password must include a capital letter",
|
|
1
|
+
import{r as t,c as e,h as i,g as o,H as r}from"./p-35ed5ec5.js";const s={en:{dateError:"The selected date should be between {min} and {max}",dateError2:"The selected date is not within the accepted range",numberLengthError:"The number should be between {min} and {max}",lengthError:"The length should be between {minLength} and {maxLength}",requiredError:"This input is required.",invalidOriginalPasswordError:"Initial password field does not validate all criteria.",passwordStrength:"Password strength",passwordStrengthWeak:"is not adequate",passwordStrengthStrong:"is adequate",SpecialCharactersNotAllowed:"Should not contain special characters",InvalidEmailFormat:"Invalid email format.",EmailNotMatching:"Emails not matching!",PasswordNotMatching:"Passwords not matching",MustIncludeNumber:"Password must include a number",MustContainCapital:"Password must include a capital letter",MustIncludePunctation:"Password must include punctuation",OnlyNumbers:"Should contains only numbers."},hu:{dateError:"A választott dátumnak {min} és {max} között kell lennie",numberLengthError:"A számnak {min} és {max} között kell lennie",lengthError:"A hossznak {minLength} és {maxLength} között kell lennie",requiredError:"Ez a beviteli mező kötelező.",invalidOriginalPasswordError:"Initial password field does not validate all criteria.",passwordStrength:"Jelszó erőssége",passwordStrengthWeak:"nem megfelelő",passwordStrengthStrong:"megfelelő",SpecialCharactersNotAllowed:"Nem tartalmazhat speciális karaktereket",InvalidEmailFormat:"Érvénytelen e-mail formátum.",EmailNotMatching:"Az e-mailek nem egyeznek!",PasswordNotMatching:"A jelszavak nem egyeznek",MustIncludeNumber:"A jelszónak tartalmaznia kell egy számot",MustContainCapital:"A jelszónak tartalmaznia kell egy nagybetűt",MustIncludePunctation:"A jelszónak tartalmaznia kell írásjelet",OnlyNumbers:"Csak számokat kell tartalmaznia."},hr:{dateError:"Odabrani datum treba biti između {min} i {max}",dateError2:"Odabrani datum nije unutar prihvaćenog raspona",numberLengthError:"Broj bi trebao biti između {min} i {max}",lengthError:"Duljina bi trebala biti između {minLength} i {maxLength}",requiredError:"Ovaj unos je obavezan.",invalidOriginalPasswordError:"Lozinke se ne podudaraju",passwordStrength:"Jačina zaporke",passwordStrengthWeak:"nije adekvatno",passwordStrengthStrong:"je adekvatan",SpecialCharactersNotAllowed:"Ne smije sadržavati posebne znakove",InvalidEmailFormat:"Nevažeći format e-maila",EmailNotMatching:"E-mailovi se ne podudaraju!",PasswordNotMatching:"Lozinke se ne podudaraju",MustIncludeNumber:"Lozinka mora sadržavati broj",MustContainCapital:"Lozinka mora sadržavati veliko slovo",MustIncludePunctation:"Lozinka mora sadržavati interpunkcijski znak",OnlyNumbers:"Treba sadržavati samo brojeve."},tr:{dateError:"Seçilen tarih {min} ve {max} arasında olmalıdır",dateError2:"Seçilen tarih kabul edilen aralıkta değil",numberLengthError:"Sayı {min} ve {max} arasında olmalıdır",lengthError:"Uzunluk {minLength} ve {maxLength} arasında olmalıdır",requiredError:"Bu alan zorunludur.",invalidOriginalPasswordError:"İlk şifre alanı tüm kriterleri karşılamıyor.",passwordStrength:"Şifre gücü",passwordStrengthWeak:"yetersiz",passwordStrengthStrong:"yeterli",SpecialCharactersNotAllowed:"Özel karakter içermemelidir",InvalidEmailFormat:"Geçersiz e-posta formatı.",EmailNotMatching:"E-postalar uyuşmuyor!",PasswordNotMatching:"Şifreler uyuşmuyor",MustIncludeNumber:"bir sayı içermelidir",MustContainCapital:"büyük harf içermelidir",MustIncludePunctation:"noktalama işareti içermelidir",OnlyNumbers:"Sadece sayılar içermelidir."},"pt-br":{dateError:"A data selecionada deve estar entre {min} e {max}",dateError2:"A data selecionada não está dentro de um intervalo válido",numberLengthError:"O número deve estar entre {min} e {max}",lengthError:"O comprimento deve estar entre {minLength} e {maxLength}",requiredError:"Este campo é obrigatório",invalidOriginalPasswordError:"O campo de senha inicial não faz parte dos critérios válidos",PasswordStrength:"Força da senha",PasswordStrengthWeak:"Não é adequado",PasswordStrengthStrong:"é apropriado",SpecialCharactersNotAllowed:"Não deve conter caracteres especiais",InvalidEmailFormat:"Formato de email inválido",EmailNotMatching:"E-mail não corresponde",PasswordNotMatching:"Senha não corresponde",MustIncludeNumber:"A senha deve incluir um número",MustContainCapital:"A senha deve incluir uma letra maiúscula",MustIncludePunctation:"A senha deve incluir um sinal de pontuação",OnlyNumbers:"Deve conter apenas números"},"es-mx":{dateError:"La fecha seleccionada debe ser entre {min} y {max}",dateError2:"La fecha seleccionada no está dentro de un rango válido",numberLengthError:"El número debe ser entre {min} y {max}",lengthError:"La longitud deber ser entre {minLength} y {maxLength}",requiredError:"Este campo es requerido",invalidOriginalPasswordError:"El campo de contraseña inicial no es parte del criterio válido",PasswordStrength:"La fortaleza de la contraseña",PasswordStrengthWeak:"no es adecuada",PasswordStrengthStrong:"es adecuada",SpecialCharactersNotAllowed:"No debe contener caracteres especiales",InvalidEmailFormat:"Formato inválido de correo",EmailNotMatching:"El correo electrónico no coincide",PasswordNotMatching:"La contraseña no coincide",MustIncludeNumber:"La contraseña debe incluir un número",MustContainCapital:"La contraseña debe incluir una letra mayúscula",MustIncludePunctation:"La contraseña debe incluir un signo de puntuación",OnlyNumbers:"Solo debe contener números"}},a=(t,e,i)=>{let o=s[void 0!==e?e:"en"][t];if(void 0!==i)for(const[t,e]of Object.entries(i.values)){const i=new RegExp(`{${t}}`,"g");o=o.replace(i,e)}return o},n="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNiIgY3k9IjYiIHI9IjUuNSIgc3Ryb2tlPSIjOTc5Nzk3Ii8+CjxyZWN0IHg9IjUiIHk9IjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjUiIGZpbGw9IiM5Nzk3OTciLz4KPGNpcmNsZSBjeD0iNiIgY3k9IjMiIHI9IjEiIGZpbGw9IiM5Nzk3OTciLz4KPC9zdmc+Cg==";
|
|
2
2
|
/**
|
|
3
3
|
* @license
|
|
4
4
|
* Copyright (c) 2021 - 2023 Vaadin Ltd.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/general-registration",
|
|
3
|
-
"version": "1.45.
|
|
3
|
+
"version": "1.45.7",
|
|
4
4
|
"main": "./dist/index.cjs.js",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"es2015": "./dist/esm/index.mjs",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"import": "./dist/esm/general-registration.js",
|
|
15
15
|
"require": "./dist/cjs/general-registration.cjs"
|
|
16
16
|
},
|
|
17
|
-
"./dist/cjs/general-registration.cjs.js": "./dist/cjs/general-registration.cjs.js"
|
|
17
|
+
"./dist/cjs/general-registration.cjs.js": "./dist/cjs/general-registration.cjs.js",
|
|
18
|
+
"./dist/esm/index.js": "./dist/esm/index.js"
|
|
18
19
|
},
|
|
19
20
|
"files": [
|
|
20
21
|
"dist/",
|
|
@@ -24,6 +25,6 @@
|
|
|
24
25
|
"access": "public"
|
|
25
26
|
},
|
|
26
27
|
"dependencies": {
|
|
27
|
-
"@everymatrix/general-input": "1.
|
|
28
|
+
"@everymatrix/general-input": "1.45.7"
|
|
28
29
|
}
|
|
29
30
|
}
|