Skip to content

Commit

Permalink
fix(input): input module depends on forms module (#5579)
Browse files Browse the repository at this point in the history
* The input module currently depends on the forms module. This is not necessary, because the input is able to work without `NgModel` or a `FormControl` as well.
  • Loading branch information
devversion authored and mmalerba committed Jul 9, 2017
1 parent c14978b commit 44ca46a
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 106 deletions.
2 changes: 0 additions & 2 deletions src/lib/input/index.ts
Expand Up @@ -18,7 +18,6 @@ import {
} from './input-container';
import {MdTextareaAutosize} from './autosize';
import {CommonModule} from '@angular/common';
import {FormsModule} from '@angular/forms';
import {PlatformModule} from '../core/platform/index';


Expand All @@ -35,7 +34,6 @@ import {PlatformModule} from '../core/platform/index';
],
imports: [
CommonModule,
FormsModule,
PlatformModule,
],
exports: [
Expand Down

0 comments on commit 44ca46a

Please sign in to comment.