aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/formControls/component/input/input.formControl.component.ts
blob: 1e8c281044a8a3f94edb12a3fba1810bfabf4c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import {Component, ElementRef, Input, ViewChild} from "@angular/core";
import {InputFormControl} from "../../../../models/formControlModels/inputFormControl.model";
import {FormGroup} from "@angular/forms";

@Component({
  selector : 'form-control-input',
  templateUrl : './input.formControl.component.html',
  styleUrls : ['./input.formControl.component.scss']
})

export class InputFormControlComponent{
  @ViewChild('customInput') element:ElementRef;
  @Input() data: InputFormControl = null;
  @Input() form: FormGroup;



}