monkey-front-components 0.0.343 → 0.0.344

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)),