@syncfusion/ej2-pivotview 19.4.50 → 19.4.52

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.
@@ -22436,13 +22436,10 @@ let PivotView = class PivotView extends Component {
22436
22436
  this.headerCellInfo = this.gridSettings.headerCellInfo ? this.gridSettings.headerCellInfo.bind(this) : undefined;
22437
22437
  this.resizing = this.gridSettings.resizing ? this.gridSettings.resizing.bind(this) : undefined;
22438
22438
  this.resizeStop = this.gridSettings.resizeStop ? this.gridSettings.resizeStop.bind(this) : undefined;
22439
- this.pdfHeaderQueryCellInfo = this.gridSettings.pdfHeaderQueryCellInfo ?
22440
- this.gridSettings.pdfHeaderQueryCellInfo.bind(this) : undefined;
22441
- this.pdfQueryCellInfo = this.gridSettings.pdfQueryCellInfo ? this.gridSettings.pdfQueryCellInfo.bind(this) : undefined;
22442
- this.excelHeaderQueryCellInfo = this.gridSettings.excelHeaderQueryCellInfo ?
22443
- this.gridSettings.excelHeaderQueryCellInfo.bind(this) : undefined;
22444
- this.excelQueryCellInfo = this.gridSettings.excelQueryCellInfo ?
22445
- this.gridSettings.excelQueryCellInfo.bind(this) : undefined;
22439
+ this.pdfHeaderQueryCellInfo = this.gridSettings.pdfHeaderQueryCellInfo ? this.gridSettings.pdfHeaderQueryCellInfo : undefined;
22440
+ this.pdfQueryCellInfo = this.gridSettings.pdfQueryCellInfo ? this.gridSettings.pdfQueryCellInfo : undefined;
22441
+ this.excelHeaderQueryCellInfo = this.gridSettings.excelHeaderQueryCellInfo ? this.gridSettings.excelHeaderQueryCellInfo : undefined;
22442
+ this.excelQueryCellInfo = this.gridSettings.excelQueryCellInfo ? this.gridSettings.excelQueryCellInfo : undefined;
22446
22443
  this.columnDragStart = this.gridSettings.columnDragStart ? this.gridSettings.columnDragStart.bind(this) : undefined;
22447
22444
  this.columnDrag = this.gridSettings.columnDrag ? this.gridSettings.columnDrag.bind(this) : undefined;
22448
22445
  this.columnDrop = this.gridSettings.columnDrop ? this.gridSettings.columnDrop.bind(this) : undefined;