realreport 1.11.9 → 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.9
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.9
4
- * commit 32f9e9e
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.9
15
+ * RealReport Core v1.11.11
16
16
  * Copyright (C) 2013-2025 WooriTech Inc.
17
17
  * All Rights Reserved.
18
- * commit ae70ee50fe99ee75356750e89b71d8448f60fff0
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
  /**
@@ -11069,6 +11075,7 @@ declare class TextPrintInfo {
11069
11075
  bandCellWidth: number;
11070
11076
  bandCellHeight: number;
11071
11077
  element: TextItemElement;
11078
+ isPrinted: boolean;
11072
11079
  constructor(bandCellWidth: number, bandCellHeight: number, element: TextItemElement);
11073
11080
  }
11074
11081
  declare class BandGroupPrintInfo extends BandPrintInfo<BandGroup> {
@@ -11076,6 +11083,7 @@ declare class BandGroupPrintInfo extends BandPrintInfo<BandGroup> {
11076
11083
  groupInfos: (TextPrintInfo | BandPrintInfo<BandModel> | TextBandPrintInfo)[];
11077
11084
  left: string;
11078
11085
  gap: number;
11086
+ bandWidth: number;
11079
11087
  isEnded(): boolean;
11080
11088
  getRows(): any[];
11081
11089
  rollback(page: HTMLDivElement): void;
@@ -14902,7 +14910,8 @@ declare enum BoxItemsAlign {
14902
14910
  }
14903
14911
  declare enum ImageFit {
14904
14912
  CONTAIN = "contain",
14905
- COVER = "cover"
14913
+ COVER = "cover",
14914
+ FILL = "fill"
14906
14915
  }
14907
14916
  declare enum ImagePosition {
14908
14917
  TOP = "top",