React-Data-Grid: Add rowGroupRenderer prop to GridProps used by ReactDataGrid (#36773)

* Add rowGroupRenderer as prop in GridProps

* Add description of the added prop
This commit is contained in:
evian-pring 2019-07-10 22:14:10 +02:00 committed by Armando Aguirre
parent d0557be9a4
commit 718f6ea35d

View File

@ -92,6 +92,12 @@ declare namespace AdazzleReactDataGrid {
* If you want to define your own, consider extending ReactDataGrid.Row.
*/
rowRenderer?: React.ReactElement | React.ComponentClass<any> | React.StatelessComponent<any>
/**
* A react component to customize how the grouping header row is rendered
*/
rowGroupRenderer?: React.ComponentType
/**
* A component to display when there are no rows to render.
*/