Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active July 29, 2018 13:18
Show Gist options
  • Save realtomaszkula/e3c47b4b84c3d838b3038d46f6de83c7 to your computer and use it in GitHub Desktop.
Save realtomaszkula/e3c47b4b84c3d838b3038d46f6de83c7 to your computer and use it in GitHub Desktop.
@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