realreport 1.7.5 → 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.
@@ -1,8 +1,8 @@
1
1
  /// <reference types="pdfkit" />
2
2
  /// <reference types="node" />
3
3
  /**
4
- * RealReport v1.7.5
5
- * commit 02fedb9
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.5
13
+ * RealReport Core v1.7.6
14
14
  * Copyright (C) 2013-2023 WooriTech Inc.
15
15
  * All Rights Reserved.
16
- * commit 3d539c2b90f3209c824d1f7cce998547b8c7f724
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 {