@syncfusion/ej2-treegrid 29.1.37 → 29.1.39

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.
@@ -4361,6 +4361,7 @@ let TreeGrid = TreeGrid_1 = class TreeGrid extends Component {
4361
4361
  this.grid.pagerTemplate = this.pagerTemplate;
4362
4362
  this.grid.showColumnMenu = this.showColumnMenu;
4363
4363
  this.grid.allowSorting = this.allowSorting;
4364
+ this.grid.allowMultiSorting = this.allowMultiSorting;
4364
4365
  this.grid.allowFiltering = this.allowFiltering;
4365
4366
  this.grid.enableVirtualization = this.enableVirtualization;
4366
4367
  this.grid.enableColumnVirtualization = this.enableColumnVirtualization;
@@ -6132,9 +6133,7 @@ let TreeGrid = TreeGrid_1 = class TreeGrid extends Component {
6132
6133
  }
6133
6134
  mergeColumns(storedColumn, columns) {
6134
6135
  const persist2 = 'mergeColumns';
6135
- const mergedColumns = 'mergedColumns';
6136
6136
  this.grid[`${persist2}`].apply(this, [storedColumn, columns]);
6137
- this.grid[`${mergedColumns}`] = true;
6138
6137
  }
6139
6138
  setFrozenCount() {
6140
6139
  const persist3 = 'setFrozenCount';
@@ -6145,7 +6144,7 @@ let TreeGrid = TreeGrid_1 = class TreeGrid extends Component {
6145
6144
  this.grid[`${persist4}`].apply(this.grid, [columns]);
6146
6145
  }
6147
6146
  isFrozenGrid() {
6148
- return this.grid.isFrozenGrid.apply(this);
6147
+ return this.grid.isFrozenGrid();
6149
6148
  }
6150
6149
  updateTreeGridModel() {
6151
6150
  this.setProperties({ filterSettings: getObject('properties', this.grid.filterSettings) }, true);