@revolist/revogrid 3.1.0 → 3.1.1

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.
@@ -4144,6 +4144,7 @@ class GroupingColumnPlugin extends BasePlugin {
4144
4144
  res.columnGrouping[key].push(...collectionItem);
4145
4145
  }
4146
4146
  res.maxLevel = Math.max(res.maxLevel, collection.maxLevel);
4147
+ res.sort = Object.assign(Object.assign({}, res.sort), collection.sort);
4147
4148
  return res;
4148
4149
  }
4149
4150
  static isColGrouping(colData) {
@@ -3821,6 +3821,7 @@ class GroupingColumnPlugin extends BasePlugin {
3821
3821
  res.columnGrouping[key].push(...collectionItem);
3822
3822
  }
3823
3823
  res.maxLevel = Math.max(res.maxLevel, collection.maxLevel);
3824
+ res.sort = Object.assign(Object.assign({}, res.sort), collection.sort);
3824
3825
  return res;
3825
3826
  }
3826
3827
  static isColGrouping(colData) {
@@ -27,6 +27,7 @@ export default class GroupingColumnPlugin extends BasePlugin {
27
27
  res.columnGrouping[key].push(...collectionItem);
28
28
  }
29
29
  res.maxLevel = Math.max(res.maxLevel, collection.maxLevel);
30
+ res.sort = Object.assign(Object.assign({}, res.sort), collection.sort);
30
31
  return res;
31
32
  }
32
33
  static isColGrouping(colData) {
@@ -3817,6 +3817,7 @@ class GroupingColumnPlugin extends BasePlugin {
3817
3817
  res.columnGrouping[key].push(...collectionItem);
3818
3818
  }
3819
3819
  res.maxLevel = Math.max(res.maxLevel, collection.maxLevel);
3820
+ res.sort = Object.assign(Object.assign({}, res.sort), collection.sort);
3820
3821
  return res;
3821
3822
  }
3822
3823
  static isColGrouping(colData) {