realreport 1.3.1 → 1.3.2
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/README.md +1 -8
- package/dist/README.md +1 -8
- package/dist/realreport.css +3 -0
- package/dist/realreport.d.ts +11 -3
- package/dist/realreport.es.js +1 -1
- package/dist/realreport.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
# RealReport
|
|
2
2
|
|
|
3
3
|
[RealReport](https://real-report.com)는 Javascript 리포팅 라이브러리입니다.
|
|
4
|
-
e
|
|
5
|
-
RealReport 사용하려면 반드시 제품 [라이선스](https://real-report.com/license)가 필요합니다. 라이선스를 발급 받고 제품을 다운로드하는 더 자세한 방법은 [라이선스 발급](https://real-report.com/license) 페이지를 참조하세요.
|
|
6
|
-
|
|
7
|
-
## 배포
|
|
8
|
-
|
|
9
|
-
### examples 배포 구조
|
|
10
|
-
|
|
11
|
-
<img width="871" alt="image" src="https://user-images.githubusercontent.com/6207238/181147115-33cc9432-2770-4514-9def-92e6d09390f6.png">
|
|
12
4
|
|
|
5
|
+
RealReport 사용하려면 반드시 제품 [라이선스](https://real-report.com/license)가 필요합니다. 라이선스를 발급 받고 제품을 다운로드하는 더 자세한 방법은 [라이선스 발급](https://real-report.com/license) 페이지를 참조하세요.
|
|
13
6
|
|
|
14
7
|
## JavaScript 설치
|
|
15
8
|
|
package/dist/README.md
CHANGED
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
# RealReport
|
|
2
2
|
|
|
3
3
|
[RealReport](https://real-report.com)는 Javascript 리포팅 라이브러리입니다.
|
|
4
|
-
e
|
|
5
|
-
RealReport 사용하려면 반드시 제품 [라이선스](https://real-report.com/license)가 필요합니다. 라이선스를 발급 받고 제품을 다운로드하는 더 자세한 방법은 [라이선스 발급](https://real-report.com/license) 페이지를 참조하세요.
|
|
6
|
-
|
|
7
|
-
## 배포
|
|
8
|
-
|
|
9
|
-
### examples 배포 구조
|
|
10
|
-
|
|
11
|
-
<img width="871" alt="image" src="https://user-images.githubusercontent.com/6207238/181147115-33cc9432-2770-4514-9def-92e6d09390f6.png">
|
|
12
4
|
|
|
5
|
+
RealReport 사용하려면 반드시 제품 [라이선스](https://real-report.com/license)가 필요합니다. 라이선스를 발급 받고 제품을 다운로드하는 더 자세한 방법은 [라이선스 발급](https://real-report.com/license) 페이지를 참조하세요.
|
|
13
6
|
|
|
14
7
|
## JavaScript 설치
|
|
15
8
|
|
package/dist/realreport.css
CHANGED
package/dist/realreport.d.ts
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
/**
|
|
3
|
-
* RealReport v1.3.
|
|
4
|
-
* commit
|
|
3
|
+
* RealReport v1.3.2
|
|
4
|
+
* commit 5eff47d
|
|
5
5
|
|
|
6
6
|
* Copyright (C) 2013-2022 WooriTech Inc.
|
|
7
7
|
https://real-report.com
|
|
8
8
|
* All Rights Reserved.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
|
+
/**
|
|
12
|
+
* RealReport Core v1.3.2
|
|
13
|
+
* Copyright (C) 2013-2022 WooriTech Inc.
|
|
14
|
+
* All Rights Reserved.
|
|
15
|
+
* commit cbf0ca8d128f2128e9b9e6a82d9133d5efc364db
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
|
|
11
19
|
declare const enum Cursor$1 {
|
|
12
20
|
DEFAULT = "default",
|
|
13
21
|
AUTO = "auto",
|
|
@@ -5105,7 +5113,7 @@ declare abstract class ReportItem extends ReportPageItem {
|
|
|
5105
5113
|
* 리포트에 지정된 data의 특정 값(들)을 지시하는 경로.
|
|
5106
5114
|
* "::" 앞쪽에서 설정된 data 이름이 없는 경우,
|
|
5107
5115
|
* 자신으로 시작해서 Report까지 가장 가까운 곳(dataParent)에 설정된 data에서 값을 가져온다.
|
|
5108
|
-
* '${page}', '${pages}', '${date}' 등으로 print context 값을 지정할 수도 있다.
|
|
5116
|
+
* '${page}', '%{page}', '${pages}', '%{pages}', '${date}', '%{date}' 등으로 print context 값을 지정할 수도 있다.
|
|
5109
5117
|
*/
|
|
5110
5118
|
get value(): string;
|
|
5111
5119
|
set value(value: string);
|