UNPKG

@ag-grid-enterprise/side-bar

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

12 lines (11 loc) 941 B
import type { BeanCollection, IToolPanel, SideBarDef } from '@ag-grid-community/core'; export declare function isSideBarVisible(beans: BeanCollection): boolean; export declare function setSideBarVisible(beans: BeanCollection, show: boolean): void; export declare function setSideBarPosition(beans: BeanCollection, position: 'left' | 'right'): void; export declare function openToolPanel(beans: BeanCollection, key: string): void; export declare function closeToolPanel(beans: BeanCollection): void; export declare function getOpenedToolPanel(beans: BeanCollection): string | null; export declare function refreshToolPanel(beans: BeanCollection): void; export declare function isToolPanelShowing(beans: BeanCollection): boolean; export declare function getToolPanelInstance<TToolPanel = IToolPanel>(beans: BeanCollection, id: string): TToolPanel | undefined; export declare function getSideBar(beans: BeanCollection): SideBarDef | undefined;