@everymatrix/general-player-login-form 0.0.243 → 0.0.247
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/general-player-login-form",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.247",
|
|
4
4
|
"main": "dist/general-player-login-form.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "a5b796f4cea4507671829ccf33489c7c93dc3709"
|
|
40
40
|
}
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
const checkUserIdentifier = (user:string):boolean => {
|
|
107
|
-
if (regexValidators.user.test(user) || regexValidators.email.test(user)) {
|
|
107
|
+
if ((regexValidators.user.test(user) || regexValidators.email.test(user)) && user.length <= 100) {
|
|
108
108
|
return true;
|
|
109
109
|
} else {
|
|
110
110
|
return false;
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
}
|
|
391
391
|
|
|
392
392
|
.InvalidInput {
|
|
393
|
-
color: var(--emfe-w-color-
|
|
393
|
+
color: var(--emfe-w-color-error, #FD2839);
|
|
394
394
|
font-size: ttp(0.625);
|
|
395
395
|
position: absolute;
|
|
396
396
|
top: 55px;
|
|
@@ -400,7 +400,7 @@
|
|
|
400
400
|
.ErrorMessage {
|
|
401
401
|
margin: 0 0 15px 0;
|
|
402
402
|
font-size: 12px;
|
|
403
|
-
color: var(--emfe-w-color-
|
|
403
|
+
color: var(--emfe-w-color-error, #FD2839);
|
|
404
404
|
}
|
|
405
405
|
.FormMobileContainer {
|
|
406
406
|
height:100%;
|