realreport 1.11.10 → 1.11.11

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.
@@ -1,5 +1,5 @@
1
1
  /*
2
- RealReport v1.11.10
2
+ RealReport v1.11.11
3
3
  Copyright (C) 2013-2025 WooriTech Inc.
4
4
  All Rights Reserved.
5
5
  */
@@ -1,7 +1,7 @@
1
1
  /// <reference types="pdfkit" />
2
2
  /**
3
- * RealReport v1.11.10
4
- * commit 5254a3d
3
+ * RealReport v1.11.11
4
+ * commit ad3b580
5
5
 
6
6
  * {@link https://real-report.com}
7
7
  * Copyright (C) 2013-2025 WooriTech Inc.
@@ -12,10 +12,10 @@ import { Cvfo, Style } from 'exceljs';
12
12
  import { ExportOptions as ExportOptions$1 } from '@realgrid/realchart';
13
13
 
14
14
  /**
15
- * RealReport Core v1.11.10
15
+ * RealReport Core v1.11.11
16
16
  * Copyright (C) 2013-2025 WooriTech Inc.
17
17
  * All Rights Reserved.
18
- * commit 61f82c9d33872f4e2b664f750676b54cb683bc3f
18
+ * commit 2e40ad62e3db3e3ea2c26027967f2fdda19f4610
19
19
  */
20
20
 
21
21
 
@@ -6959,7 +6959,7 @@ interface IExcelDataBar {
6959
6959
  value: any;
6960
6960
  }
6961
6961
  interface IExcellImage {
6962
- image: string;
6962
+ image: any;
6963
6963
  width: number;
6964
6964
  height?: number;
6965
6965
  }
@@ -8491,6 +8491,7 @@ declare class ExcelPrintContext extends PrintContextBase<ExcelReport> {
8491
8491
  private _cells;
8492
8492
  private _heights;
8493
8493
  private _sheetContextValueManager;
8494
+ private _pendingCells;
8494
8495
  reportView: ExcelReportView;
8495
8496
  sheetView: ExcelSheetView;
8496
8497
  printView: SheetPrintView;
@@ -8521,6 +8522,11 @@ declare class ExcelPrintContext extends PrintContextBase<ExcelReport> {
8521
8522
  setCellHeight(cell: HTMLTableCellElement): void;
8522
8523
  setCellFixedHeight(cell: HTMLTableCellElement): void;
8523
8524
  setConditionalFormatting(options: IConditionalFormattingOptions): void;
8525
+ addPendingCell(pendingContext: IExcelRenderInfo): void;
8526
+ /**
8527
+ * Pending 상태의 셀들을 모두 처리한다.
8528
+ */
8529
+ resolvePendingCells(): Promise<void>;
8524
8530
  preparePrint(report?: ExcelReport): void;
8525
8531
  }
8526
8532
  /**
@@ -14904,7 +14910,8 @@ declare enum BoxItemsAlign {
14904
14910
  }
14905
14911
  declare enum ImageFit {
14906
14912
  CONTAIN = "contain",
14907
- COVER = "cover"
14913
+ COVER = "cover",
14914
+ FILL = "fill"
14908
14915
  }
14909
14916
  declare enum ImagePosition {
14910
14917
  TOP = "top",