UNPKG

pipeline-builder-demo

Version:
24 lines (19 loc) 475 B
import { Component, Input } from '@angular/core'; @Component({ selector: 'pb-error-panel', templateUrl: 'error-panel.component.html', styleUrls: ['error-panel.component.scss'] }) export class ErrorPanelComponent { @Input() errors: string[]; private isShowError: boolean; constructor() { this.isShowError = false; } hideErrors(): void { this.isShowError = false; } showErrors(): void { this.isShowError = true; } }