realreport 1.7.6 → 1.7.7
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.d.ts +25 -5
- package/dist/realreport.es.js +1 -1
- package/dist/realreport.js +1 -1
- package/package.json +1 -1
package/dist/realreport.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="pdfkit" />
|
|
2
2
|
/// <reference types="node" />
|
|
3
3
|
/**
|
|
4
|
-
* RealReport v1.7.
|
|
5
|
-
* commit
|
|
4
|
+
* RealReport v1.7.7
|
|
5
|
+
* commit 6a8c377
|
|
6
6
|
|
|
7
7
|
* Copyright (C) 2013-2023 WooriTech Inc.
|
|
8
8
|
https://real-report.com
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
|
-
* RealReport Core v1.7.
|
|
13
|
+
* RealReport Core v1.7.7
|
|
14
14
|
* Copyright (C) 2013-2023 WooriTech Inc.
|
|
15
15
|
* All Rights Reserved.
|
|
16
|
-
* commit
|
|
16
|
+
* commit 3c7065afd6897afaf4cac9198485d136dcf84388
|
|
17
17
|
*/
|
|
18
18
|
declare const enum Cursor$1 {
|
|
19
19
|
DEFAULT = "default",
|
|
@@ -6906,12 +6906,14 @@ declare abstract class BandPrintInfo<T extends ReportItem> {
|
|
|
6906
6906
|
*/
|
|
6907
6907
|
erc: number;
|
|
6908
6908
|
detailRows: number[];
|
|
6909
|
+
isMasterRowPrintNext: boolean;
|
|
6910
|
+
needMasterHeader: boolean;
|
|
6909
6911
|
abstract isEnded(): boolean;
|
|
6910
6912
|
abstract getRows(): any[];
|
|
6911
6913
|
abstract getNextPage(doc: Document, ctx: PrintContext, width: number, parent: HTMLDivElement): HTMLDivElement | null;
|
|
6912
6914
|
rollback(page: HTMLDivElement): void;
|
|
6913
6915
|
setMaxCount(rows: any[], count: number): void;
|
|
6914
|
-
|
|
6916
|
+
isDataRow(row: any): row is number;
|
|
6915
6917
|
isBand(row: any): row is BandPrintInfo<any>;
|
|
6916
6918
|
isGroupHeader(row: any): boolean;
|
|
6917
6919
|
isGroupFooter(row: any): boolean;
|
|
@@ -6930,6 +6932,24 @@ declare abstract class BandPrintInfo<T extends ReportItem> {
|
|
|
6930
6932
|
* @see {@link https://github.com/realgrid/realreport/issues/1138}
|
|
6931
6933
|
*/
|
|
6932
6934
|
protected _prepareRepeatMasterRow(band: DataBand, rows: BandPrintRow[]): void;
|
|
6935
|
+
/**
|
|
6936
|
+
* 마스터-디테일 밴드에서 마스터 헤더 출력여부와 관련된 값들에 대한 설정
|
|
6937
|
+
* @param band 출력중인 밴드 정보
|
|
6938
|
+
* @param bandHeaderPrinted 출력중인 페이지내에서 마스터 해더의 출력여부
|
|
6939
|
+
* @param printed 출력했는지 여부
|
|
6940
|
+
*/
|
|
6941
|
+
protected _setBandHeaderPrintFlag(band: DataBand, printed: boolean): void;
|
|
6942
|
+
/**
|
|
6943
|
+
* 디테일 밴드를 계속 출력 or 끝 결정
|
|
6944
|
+
* @param ctx PrintContext
|
|
6945
|
+
* @param rows 현재 출력해야 할 행들에 대한 목록
|
|
6946
|
+
* @param row 현재 출력중인 행 정보
|
|
6947
|
+
* @param rowsPerPage 페이지에서 몇행 까지 출력할 수 있는지 정보
|
|
6948
|
+
* @returns true = 디테일 밴드 출력 끝, false = 다음장에 디테일 계속 출력
|
|
6949
|
+
*/
|
|
6950
|
+
protected _isDetailBandPrintEnd(row: BandPrintInfo<SimpleBand | TableBand>): boolean;
|
|
6951
|
+
protected _resetRowIndex(row: BandPrintInfo<SimpleBand | TableBand>): void;
|
|
6952
|
+
protected _prepareDetailBandPrintNext(ctx: PrintContext, band: DataBand, row: BandPrintInfo<SimpleBand | TableBand>, rows: BandPrintRow[], rowsPerPage: number): void;
|
|
6933
6953
|
}
|
|
6934
6954
|
type PrintLine = HTMLElement | BandPrintInfo<any> | ReportFooterPrintInfo | PageBreaker;
|
|
6935
6955
|
interface IReportData {
|