bolt-table 0.1.9 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1756,4 +1756,4 @@ import type {
1756
1756
 
1757
1757
  ## License
1758
1758
 
1759
- MIT © [Venkatesh Sirigineedi](https://github.com/venkateshsirigineedi)
1759
+ MIT © [Venkatesh Sirigineedi](https://github.com/venkateshwebdev)
package/dist/index.js CHANGED
@@ -985,6 +985,9 @@ var Cell = import_react3.default.memo(
985
985
  if (prev.column.key === "__expand__") {
986
986
  return prev.isExpanded === next.isExpanded;
987
987
  }
988
+ if (prev.column.render) {
989
+ return prev.record === next.record && prev.rowIndex === next.rowIndex;
990
+ }
988
991
  return prev.value === next.value && prev.rowIndex === next.rowIndex && prev.column.key === next.column.key;
989
992
  }
990
993
  );