Skip to content

Commit 0b6f33d

Browse files
committed
refactor(package): minor
1 parent f4f9f33 commit 0b6f33d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/module/component/mat-password-strength/mat-password-strength.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import {RegExpValidator} from '../../validator/regexp.class';
1717
export class MatPasswordStrengthComponent implements OnInit, OnChanges {
1818

1919
@Input() password: string;
20-
@Input() customValidator: RegExp;
2120
@Input() externalError: boolean;
2221

2322
@Input() enableLengthRule = true;
@@ -28,6 +27,7 @@ export class MatPasswordStrengthComponent implements OnInit, OnChanges {
2827

2928
@Input() min = 8;
3029
@Input() max = 30;
30+
@Input() customValidator: RegExp;
3131

3232
@Output()
3333
onStrengthChanged: EventEmitter<number> = new EventEmitter();

0 commit comments

Comments
 (0)