argos/dmp-frontend/src/app/form/dynamic-fields/dynamic-field-boolean-decision/dynamic-field-boolean-decis...

21 lines
538 B
TypeScript
Raw Normal View History

2017-11-27 14:40:16 +01:00
import { FormGroup } from '@angular/forms';
import { Field } from '../../../models/Field';
2017-12-06 12:39:49 +01:00
import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';
2017-11-27 14:40:16 +01:00
@Component({
2018-10-05 17:00:54 +02:00
selector: 'app-df-boolean-decision',
templateUrl: './dynamic-field-boolean-decision.component.html',
styleUrls: [
'./dynamic-field-boolean-decision.component.css'
],
encapsulation: ViewEncapsulation.None
2017-11-27 14:40:16 +01:00
})
2018-05-28 11:50:42 +02:00
export class DynamicFieldBooleanDecisionComponent implements OnInit {
2018-10-05 17:00:54 +02:00
@Input() field: Field;
@Input() form: FormGroup;
2017-11-27 14:40:16 +01:00
2018-10-05 17:00:54 +02:00
ngOnInit() {
2017-11-27 14:40:16 +01:00
2018-10-05 17:00:54 +02:00
}
2018-05-28 11:50:42 +02:00
}