@omniumretail/component-library 1.3.11 → 1.3.12

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.
@@ -24923,6 +24923,11 @@ const ResponsiveTable = (props) => {
24923
24923
  }
24924
24924
  }
24925
24925
  }, [cleanCellSelection]);
24926
+ useEffect(() => {
24927
+ if (initialSelectedCells && initialSelectedCells.length > 0) {
24928
+ setSelectedCells(initialSelectedCells);
24929
+ }
24930
+ }, [initialSelectedCells]);
24926
24931
  const onSelectChange = (newSelectedRowKeys) => {
24927
24932
  if (rowSelection.type === "radio") {
24928
24933
  setselectedRowKeys(newSelectedRowKeys);