@@ -24,7 +24,7 @@ const groupRow = css`
2424
2525const groupRowClassname = `rdg-group-row ${ groupRow } ` ;
2626
27- interface GroupRowRendererProps < R , SR > extends BaseRenderRowProps < R , SR > {
27+ interface GroupedRowProps < R , SR > extends BaseRenderRowProps < R , SR > {
2828 row : GroupRow < R > ;
2929 groupBy : readonly string [ ] ;
3030 toggleGroup : ( expandedGroupId : unknown ) => void ;
@@ -43,7 +43,7 @@ function GroupedRow<R, SR>({
4343 toggleGroup,
4444 isRowSelectionDisabled : _isRowSelectionDisabled ,
4545 ...props
46- } : GroupRowRendererProps < R , SR > ) {
46+ } : GroupedRowProps < R , SR > ) {
4747 const isPositionOnRow = selectedCellIdx === - 1 ;
4848 // Select is always the first column
4949 const idx = viewportColumns [ 0 ] . key === SELECT_COLUMN_KEY ? row . level + 1 : row . level ;
@@ -97,6 +97,4 @@ function GroupedRow<R, SR>({
9797 ) ;
9898}
9999
100- export default memo ( GroupedRow ) as < R , SR > (
101- props : GroupRowRendererProps < R , SR >
102- ) => React . JSX . Element ;
100+ export default memo ( GroupedRow ) as < R , SR > ( props : GroupedRowProps < R , SR > ) => React . JSX . Element ;
0 commit comments