Last active
July 29, 2018 13:19
-
-
Save realtomaszkula/879761f302ac47677e88f6e8d7a2d175 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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