UNPKG

@linzjs/step-ag-grid

Version:

[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release) > Reusable [ag-grid](https://www.ag-grid.com/) component for LINZ / Toitū te whenua.

7 lines (4 loc) 272 B
import { ColDef } from 'ag-grid-community'; import { isGridCellFiller } from './GridCellFiller'; export const getColId = (colDef: ColDef): string => colDef.colId ?? ''; export const isFlexColumn = (colDef: ColDef): boolean => !!colDef.flex && !isGridCellFiller(colDef);