@drax/identity-front 0.7.21 → 0.8.2
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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.8.2",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"format": "prettier --write src/"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@drax/common-front": "^0.
|
|
29
|
-
"@drax/crud-share": "^0.
|
|
30
|
-
"@drax/identity-share": "^0.
|
|
28
|
+
"@drax/common-front": "^0.8.0",
|
|
29
|
+
"@drax/crud-share": "^0.8.0",
|
|
30
|
+
"@drax/identity-share": "^0.8.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@rushstack/eslint-patch": "^1.8.0",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"vite-plugin-dts": "^3.9.1",
|
|
50
50
|
"vitest": "^1.4.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "fda6743b977ef7c294f1d33507c7329e46297ed8"
|
|
53
53
|
}
|
|
@@ -7,6 +7,7 @@ const messages = {
|
|
|
7
7
|
password: {
|
|
8
8
|
min8: 'Password must be at least 8 characters long',
|
|
9
9
|
max32: 'Password must be at most 32 characters long',
|
|
10
|
+
max64: 'Password must be at most 64 characters long',
|
|
10
11
|
confirmed: 'Passwords do not match',
|
|
11
12
|
currentDifferent: 'New password must be different from current password'
|
|
12
13
|
},
|
|
@@ -20,6 +21,7 @@ const messages = {
|
|
|
20
21
|
password:{
|
|
21
22
|
min8: 'La contraseña debe tener al menos 8 caracteres',
|
|
22
23
|
max32: 'La contraseña debe tener como maximo 32 caracteres',
|
|
24
|
+
max64: 'La contraseña debe tener como maximo 64 caracteres',
|
|
23
25
|
confirmed: 'Las contraseñas no coinciden',
|
|
24
26
|
currentDifferent: 'Nueva contraseña debe ser diferente de la actual'
|
|
25
27
|
},
|