monkey-front-components 0.0.343 → 0.0.346
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/esm2020/lib/components/shared/password-strength/password-strength.component.mjs +8 -1
- package/fesm2015/monkey-front-components.mjs +7 -0
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +7 -0
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/monkey-front-components-0.0.346.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-components-0.0.343.tgz +0 -0
|
@@ -2431,6 +2431,10 @@ class MECXPasswordStrengthComponent {
|
|
|
2431
2431
|
this._validatorsPasswordPass = [];
|
|
2432
2432
|
let score = 0;
|
|
2433
2433
|
this.validatorsPassword.forEach((key, value) => {
|
|
2434
|
+
console.log('======');
|
|
2435
|
+
console.log(key);
|
|
2436
|
+
console.log(value);
|
|
2437
|
+
console.log('======');
|
|
2434
2438
|
this._validatorsPasswordPass.push({
|
|
2435
2439
|
regex: `${value}`,
|
|
2436
2440
|
validate: `${key.VALIDATE}` === String(RegExp(`${key.REGEX}`).test(pass)),
|
|
@@ -2467,6 +2471,9 @@ class MECXPasswordStrengthComponent {
|
|
|
2467
2471
|
}
|
|
2468
2472
|
ngOnInit() {
|
|
2469
2473
|
this.configService.config().subscribe((_) => {
|
|
2474
|
+
console.log('.................');
|
|
2475
|
+
console.log(_);
|
|
2476
|
+
console.log('.................');
|
|
2470
2477
|
this.onHandlePasswordStrengthKeys(_);
|
|
2471
2478
|
});
|
|
2472
2479
|
}
|