@megha-ui/react 1.2.158 → 1.2.160
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.
|
@@ -358,6 +358,17 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
358
358
|
inputValue,
|
|
359
359
|
fixedFilterValues,
|
|
360
360
|
]);
|
|
361
|
+
(0, react_1.useEffect)(() => {
|
|
362
|
+
console.log("Something is changed");
|
|
363
|
+
}, [
|
|
364
|
+
data,
|
|
365
|
+
searchQueries,
|
|
366
|
+
filterColumns,
|
|
367
|
+
globalInputSearch,
|
|
368
|
+
globalSearchOp,
|
|
369
|
+
inputValue,
|
|
370
|
+
fixedFilterValues,
|
|
371
|
+
]);
|
|
361
372
|
const recalculate = (_summariseKeys) => {
|
|
362
373
|
const filteredData = paginate ? paginatedData : sortedData;
|
|
363
374
|
let newSummariseDetails = summariseDetails;
|
package/package.json
CHANGED