@megha-ui/react 1.2.348 → 1.2.350
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.
|
@@ -362,7 +362,6 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
362
362
|
];
|
|
363
363
|
_groupedKeys.forEach((grouped) => {
|
|
364
364
|
const { groupedValue, groupedColumns } = grouped;
|
|
365
|
-
console.log(grouped);
|
|
366
365
|
const filterValue = _groupedKeys.length > 1 ? groupedValue : "";
|
|
367
366
|
const columnTokens = groupedColumns
|
|
368
367
|
? groupedColumns.split(">").filter((item) => item)
|
|
@@ -611,6 +610,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
611
610
|
.map((s) => s.trim())
|
|
612
611
|
.filter(Boolean)
|
|
613
612
|
: [k]);
|
|
613
|
+
console.log(parsedKeys);
|
|
614
614
|
const groupData = (items, keys, level = 0) => {
|
|
615
615
|
if (level >= keys.length)
|
|
616
616
|
return items;
|
package/package.json
CHANGED