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 +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -951,6 +951,9 @@ var Cell = React3.memo(
|
|
|
951
951
|
if (prev.column.key === "__expand__") {
|
|
952
952
|
return prev.isExpanded === next.isExpanded;
|
|
953
953
|
}
|
|
954
|
+
if (prev.column.render) {
|
|
955
|
+
return prev.record === next.record && prev.rowIndex === next.rowIndex;
|
|
956
|
+
}
|
|
954
957
|
return prev.value === next.value && prev.rowIndex === next.rowIndex && prev.column.key === next.column.key;
|
|
955
958
|
}
|
|
956
959
|
);
|