UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

33 lines (32 loc) 2.28 kB
import { GridApi } from "ag-grid-community"; declare function getHeaderHeight(gridApi: GridApi): number; declare function getCellElement(gridApi: GridApi, attributeId: string, rowIndex: number): HTMLElement | null; declare function addCellClass(gridApi: GridApi, attributeId: string, rowIndex: number, className: string): void; declare function removeCellClass(gridApi: GridApi, attributeId: string, rowIndex: number, className: string): void; declare function getPaginationBottomRowIndex(gridApi: GridApi): number | null; declare function getPinnedTopRowElement(gridApi: GridApi): HTMLElement | null; declare function addPinnedTopRowClass(gridApi: GridApi, className: string): void; declare function removePinnedTopRowClass(gridApi: GridApi, className: string): void; declare function setPinnedTopRowStyle(gridApi: GridApi, propertyName: string, propertyValue: string): void; declare function getPinnedTopRowCellElementWrapper(gridApi: GridApi, attributeId: string): HTMLElement | null; declare function getPinnedTopRowCellElement(gridApi: GridApi, attributeId: string): HTMLElement | null; declare function addPinnedTopRowCellClass(gridApi: GridApi, attributeId: string, className: string): void; declare function removePinnedTopRowCellClass(gridApi: GridApi, attributeId: string, className: string): void; declare function setPinnedTopRowCellText(gridApi: GridApi, attributeId: string, text: string): void; declare const _default: { getHeaderHeight: typeof getHeaderHeight; getCellElement: typeof getCellElement; addCellClass: typeof addCellClass; removeCellClass: typeof removeCellClass; getPinnedTopRowElement: typeof getPinnedTopRowElement; addPinnedTopRowClass: typeof addPinnedTopRowClass; removePinnedTopRowClass: typeof removePinnedTopRowClass; setPinnedTopRowStyle: typeof setPinnedTopRowStyle; getPinnedTopRowCellElement: typeof getPinnedTopRowCellElement; getPinnedTopRowCellElementWrapper: typeof getPinnedTopRowCellElementWrapper; addPinnedTopRowCellClass: typeof addPinnedTopRowCellClass; removePinnedTopRowCellClass: typeof removePinnedTopRowCellClass; setPinnedTopRowCellText: typeof setPinnedTopRowCellText; getPaginationBottomRowIndex: typeof getPaginationBottomRowIndex; }; export default _default;