realreport 1.7.4 → 1.7.6
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 +17 -4
- 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.6
|
|
5
|
+
* commit 23162c5
|
|
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.6
|
|
14
14
|
* Copyright (C) 2013-2023 WooriTech Inc.
|
|
15
15
|
* All Rights Reserved.
|
|
16
|
-
* commit
|
|
16
|
+
* commit a20880d1793a0e472bbb513c81005e982ea97304
|
|
17
17
|
*/
|
|
18
18
|
declare const enum Cursor$1 {
|
|
19
19
|
DEFAULT = "default",
|
|
@@ -6876,6 +6876,8 @@ declare class PrintContext extends Base$1 {
|
|
|
6876
6876
|
type ContextValueCallback = (ctx: PrintContext) => any;
|
|
6877
6877
|
declare class PageBreaker {
|
|
6878
6878
|
}
|
|
6879
|
+
declare class BandFooterPrintInfo {
|
|
6880
|
+
}
|
|
6879
6881
|
declare class ReportFooterPrintInfo {
|
|
6880
6882
|
}
|
|
6881
6883
|
declare class EndRowMarker {
|
|
@@ -6883,6 +6885,7 @@ declare class EndRowMarker {
|
|
|
6883
6885
|
maxCount: number;
|
|
6884
6886
|
constructor(count: number, maxCount: number);
|
|
6885
6887
|
}
|
|
6888
|
+
type BandPrintRow = number | BandFooterPrintInfo | BandPrintInfo<any> | EndRowMarker;
|
|
6886
6889
|
declare abstract class BandPrintInfo<T extends ReportItem> {
|
|
6887
6890
|
band: T;
|
|
6888
6891
|
xBand: number;
|
|
@@ -6919,6 +6922,14 @@ declare abstract class BandPrintInfo<T extends ReportItem> {
|
|
|
6919
6922
|
protected _createSectionPage(doc: Document, parent: HTMLDivElement): HTMLDivElement;
|
|
6920
6923
|
protected _buildEndRows(marker: EndRowMarker, rowCount: number, rows: any[]): void;
|
|
6921
6924
|
protected _unshiftEndRows(row: any, rows: any[]): void;
|
|
6925
|
+
/**
|
|
6926
|
+
* 마스터-디테일 형태에서 디테일이 출력되는 동안 페이지마다 마스터 행 출력 준비
|
|
6927
|
+
* 현재 출력중인 마스터 밴드 행 번호 사용
|
|
6928
|
+
* @param band 마스터 밴드 정보
|
|
6929
|
+
* @param rows 출력해야할 행 정보 목록
|
|
6930
|
+
* @see {@link https://github.com/realgrid/realreport/issues/1138}
|
|
6931
|
+
*/
|
|
6932
|
+
protected _prepareRepeatMasterRow(band: DataBand, rows: BandPrintRow[]): void;
|
|
6922
6933
|
}
|
|
6923
6934
|
type PrintLine = HTMLElement | BandPrintInfo<any> | ReportFooterPrintInfo | PageBreaker;
|
|
6924
6935
|
interface IReportData {
|
|
@@ -7064,11 +7075,13 @@ declare class PrintContainer extends VisualContainer$1 {
|
|
|
7064
7075
|
private $_getPageHeight;
|
|
7065
7076
|
private $_resetPreviewer;
|
|
7066
7077
|
private $_buildOutput;
|
|
7078
|
+
private $_setFrontBackLayer;
|
|
7067
7079
|
/**
|
|
7068
7080
|
* unitpost 한장 요약 HTML 요청으로 singlePage 별도 메서드로 분리
|
|
7069
7081
|
*/
|
|
7070
7082
|
private $_prepareSinglePage;
|
|
7071
7083
|
private $_setSinglePage;
|
|
7084
|
+
private $_setSinglePageStyles;
|
|
7072
7085
|
private $_isReportFooter;
|
|
7073
7086
|
private $_setPrintMode;
|
|
7074
7087
|
private $_getScaleSize;
|