UNPKG

ag-grid-enterprise

Version:

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

10 lines (9 loc) 856 B
import type { AgColumn, BeanCollection, ColumnModel, LocaleTextFunc, RowNode } from 'ag-grid-community'; export declare const setRowNodeGroupValue: (rowNode: RowNode, colModel: ColumnModel, colKey: string | AgColumn, newValue: any) => void; export declare const setRowNodeGroup: (rowNode: RowNode, beans: BeanCollection, group: boolean) => void; export declare const isRowGroupColLocked: (column: AgColumn | undefined | null, beans: BeanCollection) => boolean; /** * In AG-16700 the locale introduced a ${variable} and stopped concatenating the column name in the code * To avoid a breaking change we need to check if the variable is present and if not fallback to the old way of concatenating the column name. */ export declare const getGroupingLocaleText: (localeTextFunc: LocaleTextFunc, key: 'groupBy' | 'ungroupBy', displayName: string) => string;