Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active July 29, 2018 13:19
Show Gist options
  • Save realtomaszkula/879761f302ac47677e88f6e8d7a2d175 to your computer and use it in GitHub Desktop.
Save realtomaszkula/879761f302ac47677e88f6e8d7a2d175 to your computer and use it in GitHub Desktop.
@HostBinding('style.border-style')
get borderStyleCss() {
return this.showBorder ? this.borderStyle : null;
}
@HostBinding('style.border-width')
get borderWidthCss() {
return this.showBorder ? this.borderWidth : null;
}
@HostBinding('style.border-color')
get borderColorCss() {
return this.showBorder ? this.colors[this.ngControl.status] : null;
}
get showBorder() {
return this.ngControl.dirty || this.ngControl.touched;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment