UNPKG

ngx-flowchart

Version:

`ngx-flowchart` is an Angular component to show a flow chart. You can also grouping the flow process.

35 lines (34 loc) 791 B
import { OnInit, EventEmitter } from '@angular/core'; export interface NgxFlowChatOptions { groupBackground?: string; groupShadow?: string; groupBorderRadius?: string; groupTextColor?: string; background?: string; shadow?: string; borderRadius?: string; textColor?: string; width?: string; } export interface NgxFlowChatData { id: string; name: string; groupData?: Array<any>; } export declare class NgxFlowchartComponent implements OnInit { /** * Flow Data */ data: NgxFlowChatData; /** * Click Event */ clickName: EventEmitter<any>; /** * option */ options: NgxFlowChatOptions; constructor(); ngOnInit(): void; clickFlow(data: any): void; }