UNPKG

ag-grid-enterprise

Version:

ag-Grid Enterprise Features

18 lines (12 loc) 496 B
import {Bean, IStatusPanelComp, IStatusBarService} from 'ag-grid-community'; @Bean('statusBarService') export class StatusBarService implements IStatusBarService { private allComponents: { [p: string]: IStatusPanelComp } = {}; constructor() {} public registerStatusPanel(key: string, component: IStatusPanelComp): void { this.allComponents[key] = component; } public getStatusPanel(key: string): IStatusPanelComp { return this.allComponents[key]; } }