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/README.md
CHANGED
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
|
);
|