From c2c51cde052a185f1d23baf7517b0250aed6840e Mon Sep 17 00:00:00 2001 From: Joshua Helm Date: Fri, 4 Aug 2017 16:29:25 -0400 Subject: [PATCH 1/2] fixed errors when building with AOT --- src/input/input.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input/input.ts b/src/input/input.ts index 09e9787e..6f679c0e 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; + public isInsideForm: boolean = false; constructor(public viewRef: ViewContainerRef) { } @@ -93,7 +93,7 @@ export class SemanticCheckboxComponent { } private inputType: string = "checkbox"; - private classType = "checkbox"; + public classType = "checkbox"; } /** From 8310aaeb33cb079a521dabe65024dd62829134b8 Mon Sep 17 00:00:00 2001 From: Joshua Helm Date: Sat, 5 Aug 2017 09:29:04 -0400 Subject: [PATCH 2/2] fixed errors when building with AOT --- src/input/input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input.ts b/src/input/input.ts index 6f679c0e..7e34a637 100644 --- a/src/input/input.ts +++ b/src/input/input.ts @@ -92,7 +92,7 @@ export class SemanticCheckboxComponent { } } - private inputType: string = "checkbox"; + public inputType: string = "checkbox"; public classType = "checkbox"; }