@syncfusion/ej2-treegrid 30.1.38 → 30.2.4

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.
@@ -11071,7 +11071,7 @@ var ExcelExport = /** @__PURE__ @class */ (function () {
11071
11071
  this.isCollapsedStatePersist = excelExportProperties.isCollapsedStatePersist;
11072
11072
  }
11073
11073
  if (!isNullOrUndefined(excelExportProperties)) {
11074
- if (!isNullOrUndefined(excelExportProperties.dataSource) && !excelExportProperties.dataSource['dataSource']) {
11074
+ if (!this.isLocal() && !isNullOrUndefined(excelExportProperties.dataSource) && !excelExportProperties.dataSource['dataSource']) {
11075
11075
  return this.parent.grid.excelExportModule.Map(this.parent.grid, excelExportProperties, isMultipleExport, workbook, isCsv, isBlob);
11076
11076
  }
11077
11077
  if (excelExportProperties.exportType === 'CurrentPage') {
@@ -14954,7 +14954,7 @@ var VirtualTreeContentRenderer = /** @__PURE__ @class */ (function (_super) {
14954
14954
  && !this.parent.dataSource.dataSource.offline && this.parent.dataSource.dataSource.url !== ''))) {
14955
14955
  var viewInfo = this.currentInfo = getValue('getInfoFromView', this).apply(this, [scrollArgs.direction, info, scrollArgs.offset]);
14956
14956
  this.previousInfo = viewInfo;
14957
- if (this.prevInfo && ((info.axis === 'Y' && this.prevInfo.blockIndexes.toString() === viewInfo.blockIndexes.toString())
14957
+ if (this.prevInfo && (isRemoteData(this.parent.root) && viewInfo.event !== 'model-changed') && ((info.axis === 'Y' && this.prevInfo.blockIndexes.toString() === viewInfo.blockIndexes.toString())
14958
14958
  || ((info.axis === 'X' && this.prevInfo.columnIndexes.toString() === viewInfo.columnIndexes.toString())
14959
14959
  || (this.parent.isFrozenGrid() && this.parent.getVisibleFrozenLeftCount() >= viewInfo.columnIndexes[0]
14960
14960
  && this.prevInfo.columnIndexes.toString().includes(viewInfo.columnIndexes.toString()))))) {