realreport 1.6.1 → 1.6.3

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="node" />
2
2
  /// <reference types="pdfkit" />
3
3
  /**
4
- * RealReport v1.6.1
5
- * commit e0486a7
4
+ * RealReport v1.6.3
5
+ * commit 0053b16
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.6.1
13
+ * RealReport Core v1.6.3
14
14
  * Copyright (C) 2013-2023 WooriTech Inc.
15
15
  * All Rights Reserved.
16
- * commit f5cc4f5c9e3fa39816f8dbdf640fc3fbbde0a749
16
+ * commit 43175979256e8a9718b16c74107a144ccd4e5e2e
17
17
  */
18
18
 
19
19
 
@@ -6515,6 +6515,7 @@ declare class HtmlItem extends ReportItem {
6515
6515
  canPropAdoptDragSource(prop: IPropInfo, source: any): boolean;
6516
6516
  adoptPropDragSource(prop: IPropInfo, source: any): IDropResult;
6517
6517
  getRowContextValue(value: string, ctx: PrintContext): string | number;
6518
+ private $_getTokenValue;
6518
6519
  private $_parse;
6519
6520
  private $_parseValues;
6520
6521
  }
@@ -6787,6 +6788,7 @@ interface IPreviewOptions {
6787
6788
  pageDelay?: number;
6788
6789
  noScroll?: boolean;
6789
6790
  noIndicator?: boolean;
6791
+ singlePage?: boolean;
6790
6792
  callback?: PrintPageCallback;
6791
6793
  endCallback?: PrintEndCallback;
6792
6794
  }
@@ -6797,8 +6799,6 @@ interface IPrintOptions {
6797
6799
  id?: string;
6798
6800
  previewOptions?: IPreviewOptions;
6799
6801
  }
6800
- /**
6801
- */
6802
6802
  declare class PrintContainer extends VisualContainer$1 {
6803
6803
  static readonly CLASS_NAME = "rr-report-container";
6804
6804
  static readonly PREVIEW_CLASS = "rr-report-preview";
@@ -6855,6 +6855,12 @@ declare class PrintContainer extends VisualContainer$1 {
6855
6855
  private $_getPreviewer;
6856
6856
  private $_resetPreviewer;
6857
6857
  private $_buildOutput;
6858
+ /**
6859
+ * unitpost 한장 요약 HTML 요청으로 singlePage 별도 메서드로 분리
6860
+ */
6861
+ private $_prepareSinglePage;
6862
+ private $_setSinglePage;
6863
+ private $_isReportFooter;
6858
6864
  private $_layoutFloatings;
6859
6865
  }
6860
6866