Skip to content

Commit bddfa15

Browse files
committed
fix(ngx-material-password-strength): added the PasswordStrengthComponent to the module
1 parent 2442b59 commit bddfa15

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/module/ngx-material-password-strength.module.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ import {NgModule, ModuleWithProviders} from '@angular/core';
33
import {MatProgressBarModule} from '@angular/material';
44

55
import {LibComponent} from './component/lib.component';
6+
import {PasswordStrengthComponent} from './component/password-strength/password-strength.component';
67

78
// Export module's public API
89
export {LibComponent} from './component/lib.component';
10+
export {PasswordStrengthComponent} from './component/password-strength/password-strength.component';
911

1012
@NgModule({
1113
imports: [
1214
CommonModule,
1315
MatProgressBarModule
1416
],
15-
exports: [LibComponent],
16-
declarations: [LibComponent]
17+
exports: [LibComponent, PasswordStrengthComponent],
18+
declarations: [LibComponent, PasswordStrengthComponent]
1719
})
1820
export class NgxMaterialPasswordStrengthModule {
1921
static forRoot(): ModuleWithProviders {

0 commit comments

Comments
 (0)