@megha-ui/react 1.2.705 → 1.2.707
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.
|
@@ -385,6 +385,7 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
385
385
|
]);
|
|
386
386
|
const recalculate = (_summariseKeys) => {
|
|
387
387
|
const filteredData = paginate ? paginatedData : sortedData;
|
|
388
|
+
console.log({ filteredData });
|
|
388
389
|
let newSummariseDetails = summariseDetails;
|
|
389
390
|
Object.keys(_summariseKeys).forEach((_columnKey) => {
|
|
390
391
|
const type = _summariseKeys[_columnKey];
|
|
@@ -416,7 +417,7 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
416
417
|
.filter((v) => v);
|
|
417
418
|
if (!filterSegments.length)
|
|
418
419
|
return true;
|
|
419
|
-
console.log({ filterSegments, valueSegments });
|
|
420
|
+
console.log({ filterSegments, valueSegments, group });
|
|
420
421
|
return filterSegments.some((segment) => valueSegments.includes(segment));
|
|
421
422
|
};
|
|
422
423
|
console.log({ filterValue });
|
package/package.json
CHANGED