merge from ecomp a88f0072 - Modern UI
[vid.git] / vid-webpack-master / src / app / shared / components / formControls / component / input / input.formControl.component.ts
1 import {Component, ElementRef, Input, ViewChild} from "@angular/core";
2 import {InputFormControl} from "../../../../models/formControlModels/inputFormControl.model";
3 import {FormGroup} from "@angular/forms";
4
5 @Component({
6   selector : 'form-control-input',
7   templateUrl : './input.formControl.component.html',
8   styleUrls : ['./input.formControl.component.scss']
9 })
10
11 export class InputFormControlComponent{
12   @ViewChild('customInput') element:ElementRef;
13   @Input() data: InputFormControl = null;
14   @Input() form: FormGroup;
15
16
17
18 }