Last active
July 29, 2018 13:18
-
-
Save realtomaszkula/e3c47b4b84c3d838b3038d46f6de83c7 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
@Directive({ | |
selector: '[appValidationBorder]' | |
}) | |
export class ValidationBorderDirective { | |
private readonly colors: { | |
VALID: string; | |
INVALID: string; | |
PENDING: string; | |
DISABLED: string; | |
}; | |
@Input('appValidationBorderWidth') borderWidth: string; | |
@Input('appValidationBorderStyle') borderStyle: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment