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.
@@ -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
  }