@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.
@@ -4656,6 +4656,7 @@ var TreeGrid = /** @__PURE__ @class */ (function (_super) {
4656
4656
  this.grid.pagerTemplate = this.pagerTemplate;
4657
4657
  this.grid.showColumnMenu = this.showColumnMenu;
4658
4658
  this.grid.allowSorting = this.allowSorting;
4659
+ this.grid.allowMultiSorting = this.allowMultiSorting;
4659
4660
  this.grid.allowFiltering = this.allowFiltering;
4660
4661
  this.grid.enableVirtualization = this.enableVirtualization;
4661
4662
  this.grid.enableColumnVirtualization = this.enableColumnVirtualization;
@@ -6442,9 +6443,7 @@ var TreeGrid = /** @__PURE__ @class */ (function (_super) {
6442
6443
  };
6443
6444
  TreeGrid.prototype.mergeColumns = function (storedColumn, columns) {
6444
6445
  var persist2 = 'mergeColumns';
6445
- var mergedColumns = 'mergedColumns';
6446
6446
  this.grid["" + persist2].apply(this, [storedColumn, columns]);
6447
- this.grid["" + mergedColumns] = true;
6448
6447
  };
6449
6448
  TreeGrid.prototype.setFrozenCount = function () {
6450
6449
  var persist3 = 'setFrozenCount';
@@ -6455,7 +6454,7 @@ var TreeGrid = /** @__PURE__ @class */ (function (_super) {
6455
6454
  this.grid["" + persist4].apply(this.grid, [columns]);
6456
6455
  };
6457
6456
  TreeGrid.prototype.isFrozenGrid = function () {
6458
- return this.grid.isFrozenGrid.apply(this);
6457
+ return this.grid.isFrozenGrid();
6459
6458
  };
6460
6459
  TreeGrid.prototype.updateTreeGridModel = function () {
6461
6460
  this.setProperties({ filterSettings: getObject('properties', this.grid.filterSettings) }, true);