Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | import { NgModule } from '@angular/core'; |
| 2 | import { CommonModule } from '@angular/common'; |
| 3 | import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
| 4 | import { DynamicInputsComponent } from '../components/dynamic-inputs/dynamic-inputs.component'; |
| 5 | import { AngularMultiSelectModule } from "angular2-multiselect-dropdown"; |
| 6 | import { DynamicInputLabelPipe } from '../shared/pipes/dynamicInputLabel/dynamic-input-label.pipe'; |
| 7 | |
| 8 | |
| 9 | @NgModule({ |
| 10 | imports: [ |
| 11 | CommonModule, FormsModule, ReactiveFormsModule, AngularMultiSelectModule |
| 12 | ], |
| 13 | providers: [], |
| 14 | declarations: [ DynamicInputLabelPipe, DynamicInputsComponent ], |
| 15 | entryComponents: [], |
| 16 | exports: [ DynamicInputLabelPipe, DynamicInputsComponent ] |
| 17 | |
| 18 | }) |
| 19 | |
| 20 | export class InputsModule { } |