Skip to content

Commit

Permalink
fix(lib): upgraded angular deps
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyNahas committed Jun 21, 2022
1 parent 94c1d2d commit f3d22e9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
Output,
SimpleChanges
} from '@angular/core';
import {ControlValueAccessor, FormControl, NG_VALUE_ACCESSOR, ValidatorFn, Validators} from '@angular/forms';
import {ControlValueAccessor, UntypedFormControl, NG_VALUE_ACCESSOR, ValidatorFn, Validators} from '@angular/forms';
import {Colors, Criteria} from '../../enum';
import {MatPasswordStrengthValidator} from '../../validator';
import {RegExpValidator} from '../../validator/regexp.class';
Expand Down Expand Up @@ -62,8 +62,8 @@ export class MatPasswordStrengthComponent implements OnInit, OnChanges, AfterCon
containAtCustomChars: boolean;

// TO ACCESS VIA CONTENT CHILD
passwordFormControl: FormControl = new FormControl();
passwordConfirmationFormControl: FormControl = new FormControl();
passwordFormControl: UntypedFormControl = new UntypedFormControl();
passwordConfirmationFormControl: UntypedFormControl = new UntypedFormControl();

validatorsArray: ValidatorFn[] = [];
Validators: ValidatorFn;
Expand Down

0 comments on commit f3d22e9

Please sign in to comment.