2017-11-27 14:40:16 +01:00
|
|
|
import { Field } from '../../../models/Field';
|
|
|
|
import { FormGroup } from '@angular/forms';
|
2018-05-14 08:44:35 +02:00
|
|
|
import { Component, Input, ViewEncapsulation, OnInit } from '@angular/core';
|
2017-11-27 14:40:16 +01:00
|
|
|
|
|
|
|
@Component({
|
2018-05-28 11:50:42 +02:00
|
|
|
selector: 'df-checkbox',
|
|
|
|
templateUrl: './dynamic-field-checkbox.html',
|
|
|
|
styleUrls: [
|
|
|
|
'./dynamic-field-checkbox.css'
|
|
|
|
],
|
|
|
|
encapsulation: ViewEncapsulation.None
|
2017-11-27 14:40:16 +01:00
|
|
|
})
|
2017-12-06 12:39:49 +01:00
|
|
|
export class DynamicFieldCheckBoxComponent {
|
2018-05-28 11:50:42 +02:00
|
|
|
@Input() field: Field;
|
|
|
|
@Input() form: FormGroup;
|
2017-12-06 12:39:49 +01:00
|
|
|
|
2018-05-28 11:50:42 +02:00
|
|
|
}
|