realreport 1.11.17 → 1.11.18
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 +22 -6
- 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.11.
|
|
4
|
-
* commit
|
|
3
|
+
* RealReport v1.11.18
|
|
4
|
+
* commit 8fc3e2d
|
|
5
5
|
|
|
6
6
|
* {@link https://real-report.com}
|
|
7
7
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
@@ -12,10 +12,10 @@ import { Cvfo, Style } from 'exceljs';
|
|
|
12
12
|
import { ExportOptions as ExportOptions$1 } from '@realgrid/realchart';
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
* RealReport Core v1.11.
|
|
15
|
+
* RealReport Core v1.11.18
|
|
16
16
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
17
17
|
* All Rights Reserved.
|
|
18
|
-
* commit
|
|
18
|
+
* commit 01bbf113dbeab59bf35fe7d007a33c29cee214f4
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
21
|
|
|
@@ -11382,9 +11382,19 @@ type FontSource = {
|
|
|
11382
11382
|
weight: FontWeight;
|
|
11383
11383
|
format: FontFormat;
|
|
11384
11384
|
};
|
|
11385
|
+
/**
|
|
11386
|
+
* 사용자가 등록할 폰트 소스 정보
|
|
11387
|
+
*/
|
|
11385
11388
|
type UserFontSource = {
|
|
11389
|
+
/** 폰트 이름 */
|
|
11386
11390
|
name: string;
|
|
11391
|
+
/** 폰트 데이터 (URL, Blob 등) */
|
|
11387
11392
|
source: string | Blob;
|
|
11393
|
+
/**
|
|
11394
|
+
* @deprecated Use `weight` instead. This property will be removed in a future version.
|
|
11395
|
+
*/
|
|
11396
|
+
fontWeight: FontWeight;
|
|
11397
|
+
/** 폰트 굵기 */
|
|
11388
11398
|
weight: FontWeight;
|
|
11389
11399
|
};
|
|
11390
11400
|
type FontWeight = '100' | '200' | '300' | '400' | '500' | '600' | 'normal' | 'bold';
|
|
@@ -49734,6 +49744,7 @@ declare abstract class ReportViewBase {
|
|
|
49734
49744
|
open(source: string | ReportForm | ReportFormSet | (string | ReportFormSet)[], options?: PreviewOptions & {
|
|
49735
49745
|
preview?: boolean;
|
|
49736
49746
|
}): Promise<void>;
|
|
49747
|
+
isPagePrinted(): boolean;
|
|
49737
49748
|
private $_checkL;
|
|
49738
49749
|
private $_isReportSource;
|
|
49739
49750
|
private $_isReportFormSet;
|
|
@@ -49776,7 +49787,7 @@ declare class ReportViewer extends ReportViewBase {
|
|
|
49776
49787
|
* 리포트를 Pdf 파일 변환 후 Blob 데이터로 반환
|
|
49777
49788
|
* @param options PDFExportOptions
|
|
49778
49789
|
*/
|
|
49779
|
-
exportPdfBlob(options
|
|
49790
|
+
exportPdfBlob(options?: PDFExportBlobOptions): Promise<Blob>;
|
|
49780
49791
|
/**
|
|
49781
49792
|
* 이미지 내보내기 함수
|
|
49782
49793
|
* @param imageOptions
|
|
@@ -49806,6 +49817,7 @@ declare class ReportViewer extends ReportViewBase {
|
|
|
49806
49817
|
* @param options
|
|
49807
49818
|
*/
|
|
49808
49819
|
exportDocumentsFromData({ fileName, reportForm, dataSets, type, }: DocumentsExportFromDataOptions): Promise<void>;
|
|
49820
|
+
private $_printPdf;
|
|
49809
49821
|
private _checkReport;
|
|
49810
49822
|
/**
|
|
49811
49823
|
* API 링크가 있는 데이터는 받아온 후에 사용자가 넘겨준 데이터에서 교체한다.
|
|
@@ -50223,6 +50235,10 @@ type PrintOptions = {
|
|
|
50223
50235
|
* @defaultValue 2000
|
|
50224
50236
|
*/
|
|
50225
50237
|
timeout?: number;
|
|
50238
|
+
/**
|
|
50239
|
+
* PDF 파일을 기반으로 출력을 진행합니다.
|
|
50240
|
+
*/
|
|
50241
|
+
usePdf?: boolean;
|
|
50226
50242
|
};
|
|
50227
50243
|
/**
|
|
50228
50244
|
* PDF내보내기시 인자로 사용되는 옵션
|
|
@@ -50259,7 +50275,7 @@ type PDFExportOptions = {
|
|
|
50259
50275
|
permissions?: PdfPermissions;
|
|
50260
50276
|
pdfVersion?: '1.3' | '1.4' | '1.5' | '1.6' | '1.7' | '1.7ext3';
|
|
50261
50277
|
};
|
|
50262
|
-
type PDFExportBlobOptions = Omit<PDFExportOptions, '
|
|
50278
|
+
type PDFExportBlobOptions = Omit<PDFExportOptions, 'preview'>;
|
|
50263
50279
|
declare enum CCITTScheme {
|
|
50264
50280
|
GROUP_3 = "g3",
|
|
50265
50281
|
GROUP_3_2D = "g3-2d",
|