diff --git a/src/input/input.ts b/src/input/input.ts index 09e9787e..9b60a6f5 100644 --- a/src/input/input.ts +++ b/src/input/input.ts @@ -33,7 +33,7 @@ export class SemanticInputComponent implements OnInit { @Input() control: FormControl = new FormControl(); @Output() modelChange: EventEmitter = new EventEmitter(); - private isInsideForm: boolean = false; + isInsideForm: boolean = false; constructor(public viewRef: ViewContainerRef) { } @@ -92,8 +92,8 @@ export class SemanticCheckboxComponent { } } - private inputType: string = "checkbox"; - private classType = "checkbox"; + inputType: string = "checkbox"; + classType = "checkbox"; } /**