fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
11 lines • 599 B
JavaScript
export default function shouldRowUpdate(nextProps, currentProps) {
return currentProps.columns !== nextProps.columns
|| nextProps.row !== currentProps.row
|| currentProps.colOverscanStartIdx !== nextProps.colOverscanStartIdx
|| currentProps.colOverscanEndIdx !== nextProps.colOverscanEndIdx
|| currentProps.isSelected !== nextProps.isSelected
|| currentProps.isScrolling !== nextProps.isScrolling
|| nextProps.height !== currentProps.height
|| currentProps.extraClasses !== nextProps.extraClasses;
}
//# sourceMappingURL=RowComparer.js.map