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.
- package/dist/realreport.css +1 -1
- package/dist/realreport.d.ts +15 -6
- package/dist/realreport.es.js +3 -3
- package/dist/realreport.js +3 -3
- package/package.json +1 -1
package/dist/realreport.css
CHANGED
package/dist/realreport.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="pdfkit" />
|
|
2
2
|
/**
|
|
3
|
-
* RealReport v1.11.
|
|
4
|
-
* commit
|
|
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.
|
|
15
|
+
* RealReport Core v1.11.11
|
|
16
16
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
17
17
|
* All Rights Reserved.
|
|
18
|
-
* commit
|
|
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:
|
|
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",
|