realreport 1.6.2 → 1.6.4

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.2
5
- * commit 54fb754
4
+ * RealReport v1.6.4
5
+ * commit 31841ea
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.2
13
+ * RealReport Core v1.6.4
14
14
  * Copyright (C) 2013-2023 WooriTech Inc.
15
15
  * All Rights Reserved.
16
- * commit a206dc616f8fd555b2a7a2fe1a78a5b4d951aae1
16
+ * commit 6c5a128aea75a18097fa79c42e5d8d8149ab312b
17
17
  */
18
18
 
19
19
 
@@ -5110,6 +5110,9 @@ declare abstract class ReportPageItem extends Base$1 implements ISelectionSource
5110
5110
  protected _saveObjects(items: ReportItem[], target: any): void;
5111
5111
  protected _arrangePaddingStyles(styles: Styles): void;
5112
5112
  protected _validateSize(v: ValueString): ValueString;
5113
+ protected _validateStylesValue(styles: {
5114
+ [key: string]: string;
5115
+ }): void;
5113
5116
  }
5114
5117
  declare enum ItemMoveType {
5115
5118
  INNER = "inner",
@@ -6788,6 +6791,7 @@ interface IPreviewOptions {
6788
6791
  pageDelay?: number;
6789
6792
  noScroll?: boolean;
6790
6793
  noIndicator?: boolean;
6794
+ singlePage?: boolean;
6791
6795
  callback?: PrintPageCallback;
6792
6796
  endCallback?: PrintEndCallback;
6793
6797
  }
@@ -6798,8 +6802,6 @@ interface IPrintOptions {
6798
6802
  id?: string;
6799
6803
  previewOptions?: IPreviewOptions;
6800
6804
  }
6801
- /**
6802
- */
6803
6805
  declare class PrintContainer extends VisualContainer$1 {
6804
6806
  static readonly CLASS_NAME = "rr-report-container";
6805
6807
  static readonly PREVIEW_CLASS = "rr-report-preview";
@@ -6856,6 +6858,12 @@ declare class PrintContainer extends VisualContainer$1 {
6856
6858
  private $_getPreviewer;
6857
6859
  private $_resetPreviewer;
6858
6860
  private $_buildOutput;
6861
+ /**
6862
+ * unitpost 한장 요약 HTML 요청으로 singlePage 별도 메서드로 분리
6863
+ */
6864
+ private $_prepareSinglePage;
6865
+ private $_setSinglePage;
6866
+ private $_isReportFooter;
6859
6867
  private $_layoutFloatings;
6860
6868
  }
6861
6869