@megha-ui/react 1.2.319 → 1.2.321
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.
|
@@ -661,7 +661,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
661
661
|
groupedData.forEach((group) => {
|
|
662
662
|
const _groupedValues = [...groupedValues, group.value].map((item) => item ? item : "row");
|
|
663
663
|
const currentKeys = (group.allKeys
|
|
664
|
-
? [...parentKeys,
|
|
664
|
+
? [...parentKeys, group.allKeys.join("+")]
|
|
665
665
|
: [...parentKeys, group.key]).filter((item) => item);
|
|
666
666
|
const groupedValue = _groupedValues.join(">");
|
|
667
667
|
const groupedColumns = currentKeys.join(">");
|
package/package.json
CHANGED