realreport 1.9.7 → 1.9.9
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.css +1 -1
- package/dist/realreport.d.ts +17 -5
- package/dist/realreport.es.js +3 -3
- package/dist/realreport.js +3 -3
- package/package.json +1 -1
package/dist/realreport.css
CHANGED
package/dist/realreport.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="pdfkit" />
|
|
2
2
|
/**
|
|
3
|
-
* RealReport v1.9.
|
|
4
|
-
* commit
|
|
3
|
+
* RealReport v1.9.9
|
|
4
|
+
* commit a7cd7b6
|
|
5
5
|
|
|
6
6
|
* {@link https://real-report.com}
|
|
7
7
|
* Copyright (C) 2013-2024 WooriTech Inc.
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* RealReport Core v1.9.
|
|
12
|
+
* RealReport Core v1.9.9
|
|
13
13
|
* Copyright (C) 2013-2024 WooriTech Inc.
|
|
14
14
|
* All Rights Reserved.
|
|
15
|
-
* commit
|
|
15
|
+
* commit 53564e6d88d6b2b8c939ea179af9d29728b1a5dd
|
|
16
16
|
*/
|
|
17
17
|
type ConfigObject$1 = {
|
|
18
18
|
[key: string]: any;
|
|
@@ -6381,6 +6381,7 @@ declare class PrintContainer extends VisualContainer$1 {
|
|
|
6381
6381
|
private $_createReportView;
|
|
6382
6382
|
private $_instanceofIPrintReport;
|
|
6383
6383
|
private $_addContainerEventListener;
|
|
6384
|
+
private $_addEditableItemToManager;
|
|
6384
6385
|
/**
|
|
6385
6386
|
* 한 페이지당 수정가능한 아이템 정보를 찾아서 정보를 최신화 시킨다.
|
|
6386
6387
|
*/
|
|
@@ -7710,6 +7711,7 @@ declare class PrintPage {
|
|
|
7710
7711
|
background: HTMLDivElement;
|
|
7711
7712
|
contents: HTMLDivElement[];
|
|
7712
7713
|
foreground: HTMLDivElement;
|
|
7714
|
+
reportIndex: number;
|
|
7713
7715
|
}
|
|
7714
7716
|
|
|
7715
7717
|
/** @internal */
|
|
@@ -43891,7 +43893,16 @@ declare class ReportCompositeViewer extends ReportViewBase {
|
|
|
43891
43893
|
*/
|
|
43892
43894
|
preview(options?: PreviewOptions): void;
|
|
43893
43895
|
print(options: PrintOptions): Promise<void>;
|
|
43896
|
+
/**
|
|
43897
|
+
* 리포트를 PDF파일로 다운로드 합니다.
|
|
43898
|
+
* @param options PDFExportOptions
|
|
43899
|
+
*/
|
|
43894
43900
|
exportPdf(options: PDFExportOptions): Promise<void>;
|
|
43901
|
+
/**
|
|
43902
|
+
* 리포트를 Blob 형식으로 내보내기 합니다.
|
|
43903
|
+
* @param options PDFExportBlobOptions
|
|
43904
|
+
*/
|
|
43905
|
+
exportPdfBlob(options: PDFExportBlobOptions): Promise<Blob>;
|
|
43895
43906
|
exportImage(imageOptions: ImageExportOptions): void;
|
|
43896
43907
|
exportDocument(options: DocExportOptions): void;
|
|
43897
43908
|
private _checkReportFormSet;
|
|
@@ -44036,5 +44047,6 @@ type PDFExportOptions = {
|
|
|
44036
44047
|
pdfVersion: '1.3' | '1.4' | '1.5' | '1.6' | '1.7' | '1.7ext3';
|
|
44037
44048
|
};
|
|
44038
44049
|
type PDFExportBlobOptions = Omit<PDFExportOptions, 'filename' | 'preview'>;
|
|
44050
|
+
declare const ZOOM_ERROR_MESSAGE = "\uD398\uC774\uC9C0 \uBC30\uC728 \uAC12\uC774 100%\uC778 \uACBD\uC6B0\uB9CC \uB0B4\uBCF4\uB0B4\uAE30\uAC00 \uAC00\uB2A5\uD569\uB2C8\uB2E4. \uD398\uC774\uC9C0 \uBC30\uC728 \uAC12\uC774 100%\uC778\uC9C0 \uD655\uC778\uD574 \uC8FC\uC138\uC694.";
|
|
44039
44051
|
|
|
44040
|
-
export { GridReportItemSource, GridReportLayout, GridReportViewer, PDFExportBlobOptions, PDFExportOptions, PreviewOptions, PrintOptions, ReportCompositeViewer, ReportData, ReportDataSet, ReportForm, ReportFormSet, ReportFormSets, ReportOptions, ReportViewer };
|
|
44052
|
+
export { GridReportItemSource, GridReportLayout, GridReportViewer, PDFExportBlobOptions, PDFExportOptions, PreviewOptions, PrintOptions, ReportCompositeViewer, ReportData, ReportDataSet, ReportForm, ReportFormSet, ReportFormSets, ReportOptions, ReportViewer, ZOOM_ERROR_MESSAGE };
|