realreport 1.11.2 → 1.11.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.
- package/dist/realreport.css +2 -6
- package/dist/realreport.d.ts +22 -12
- package/dist/realreport.es.js +3 -3
- package/dist/realreport.js +3 -3
- package/package.json +1 -1
package/dist/realreport.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
RealReport v1.11.
|
|
2
|
+
RealReport v1.11.3
|
|
3
3
|
Copyright (C) 2013-2025 WooriTech Inc.
|
|
4
4
|
All Rights Reserved.
|
|
5
5
|
*/
|
|
@@ -10,12 +10,8 @@ All Rights Reserved.
|
|
|
10
10
|
color: #000000;
|
|
11
11
|
-webkit-appearance: none;
|
|
12
12
|
outline: none;
|
|
13
|
-
-webkit-touch-callout: none;
|
|
14
|
-
-webkit-user-select: none;
|
|
15
|
-
-moz-user-select: none;
|
|
16
|
-
-ms-user-select: none;
|
|
17
|
-
user-select: none;
|
|
18
13
|
-ms-touch-action: none;
|
|
14
|
+
-webkit-touch-callout: none;
|
|
19
15
|
-webkit-print-color-adjust: exact;
|
|
20
16
|
}
|
|
21
17
|
|
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.3
|
|
4
|
+
* commit 8ce7c84
|
|
5
5
|
|
|
6
6
|
* {@link https://real-report.com}
|
|
7
7
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
import { Cvfo, Style } from 'exceljs';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
* RealReport Core v1.11.
|
|
14
|
+
* RealReport Core v1.11.3
|
|
15
15
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
16
16
|
* All Rights Reserved.
|
|
17
|
-
* commit
|
|
17
|
+
* commit 645ea5b84a0ca9591145ea337113c4aeade413ed
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
|
|
@@ -8107,6 +8107,7 @@ interface IPreviewOptions {
|
|
|
8107
8107
|
paging?: boolean;
|
|
8108
8108
|
language?: string;
|
|
8109
8109
|
editable?: boolean;
|
|
8110
|
+
textSelectable?: boolean;
|
|
8110
8111
|
callback?: PrintPageCallback;
|
|
8111
8112
|
endCallback?: PrintEndCallback;
|
|
8112
8113
|
signCallback?: SignCallback;
|
|
@@ -14975,6 +14976,10 @@ declare class PrintContainer extends PrintContainerBase {
|
|
|
14975
14976
|
private $_replacePages;
|
|
14976
14977
|
private $_refreshHtmlItemValue;
|
|
14977
14978
|
private $_printReport;
|
|
14979
|
+
/**
|
|
14980
|
+
* 페이지 구분없이 출력
|
|
14981
|
+
* - 이메일은 무조건 페이지 구분없이 출력한다.
|
|
14982
|
+
*/
|
|
14978
14983
|
private $_printPageless;
|
|
14979
14984
|
private $_getPageHeight;
|
|
14980
14985
|
private $_getPrintBack;
|
|
@@ -49339,6 +49344,19 @@ type PreviewOptions = {
|
|
|
49339
49344
|
* @defaultValue `true`
|
|
49340
49345
|
*/
|
|
49341
49346
|
paging?: boolean;
|
|
49347
|
+
/**
|
|
49348
|
+
* 미리보기가 시작될때 호출되는 콜백함수
|
|
49349
|
+
*/
|
|
49350
|
+
callback?: PrintPageCallback;
|
|
49351
|
+
/**
|
|
49352
|
+
* 미리보기 끝날때 호출되는 콜백함수
|
|
49353
|
+
*/
|
|
49354
|
+
endCallback?: PrintEndCallback;
|
|
49355
|
+
/**
|
|
49356
|
+
* 미리보기에서 텍스트 선택 가능 여부를 설정합니다.
|
|
49357
|
+
* @defaultValue false
|
|
49358
|
+
*/
|
|
49359
|
+
textSelectable?: boolean;
|
|
49342
49360
|
/**
|
|
49343
49361
|
* 리포트를 한장에 여백없이 출력하는 옵션
|
|
49344
49362
|
* @defaultValue `false`
|
|
@@ -49349,14 +49367,6 @@ type PreviewOptions = {
|
|
|
49349
49367
|
* @defaultValue `{ border: true }`
|
|
49350
49368
|
*/
|
|
49351
49369
|
singlePageOptions?: ISinglePageOptions;
|
|
49352
|
-
/**
|
|
49353
|
-
* 미리보기가 시작될때 호출되는 콜백함수
|
|
49354
|
-
*/
|
|
49355
|
-
callback?: PrintPageCallback;
|
|
49356
|
-
/**
|
|
49357
|
-
* 미리보기 끝날때 호출되는 콜백함수
|
|
49358
|
-
*/
|
|
49359
|
-
endCallback?: PrintEndCallback;
|
|
49360
49370
|
};
|
|
49361
49371
|
/**
|
|
49362
49372
|
* 리포트 출력 옵션
|