realreport 1.0.3 → 1.0.7
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 +8 -8
- package/package.json +7 -17
- package/dist/check-checked.png +0 -0
- package/dist/check-empty.png +0 -0
- package/dist/check-unchecked.png +0 -0
- package/dist/realreport.css +0 -754
- package/dist/realreport.d.ts +0 -119
- package/dist/realreport.es.js +0 -1
- package/dist/realreport.ie11.js +0 -1
- package/dist/realreport.js +0 -1
package/README.md
CHANGED
|
@@ -2,20 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
[RealReport](https://reaal-report.com)는 Javascript 리포팅 라이브러리입니다.
|
|
4
4
|
|
|
5
|
-
RealReport 사용하려면 반드시 제품 [라이선스](https://
|
|
5
|
+
RealReport 사용하려면 반드시 제품 [라이선스](https://real-report.com/license)가 필요합니다. 라이선스를 발급 받고 제품을 다운로드하는 더 자세한 방법은 [라이선스 발급](https://reaal-report.com/license) 페이지를 참조하세요.
|
|
6
6
|
|
|
7
7
|
## JavaScript 설치
|
|
8
8
|
|
|
9
9
|
### 다운로드
|
|
10
10
|
|
|
11
|
-
라이선스 발급 사이트를 통해 다운로드 받은 제품패키지 파일의 압축을 풀면 아래와
|
|
11
|
+
라이선스 발급 사이트를 통해 다운로드 받은 제품패키지 파일의 압축을 풀면 아래와 같이 realreport 라이브러리 파일과 차트 및 PDF 내보내기를 위한 외부 라이브러리를 포함하고 있습니다.
|
|
12
12
|
|
|
13
|
-
```sh title="realreport.zip"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
realreport
|
|
17
|
-
realreport.js
|
|
18
|
-
realreport.css
|
|
13
|
+
```sh title="realreport.latest.zip"
|
|
14
|
+
highcharts
|
|
15
|
+
pdfkit.js
|
|
16
|
+
realreport
|
|
17
|
+
⎸⎯ realreport.js
|
|
18
|
+
⎸⎯ realreport.css
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
:::tip
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "realreport",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "RealReport Runtime Viewer",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "LICENSE.md",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Wooritech",
|
|
8
8
|
"url": "https://real-report.com",
|
|
9
9
|
"email": "support@realgrid.com"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://
|
|
12
|
-
"main": "dist/realreport.es.js",
|
|
13
|
-
"types": "dist/realreport.d.ts",
|
|
11
|
+
"homepage": "https://real-report.com",
|
|
12
|
+
"main": "../dist/realreport.es.js",
|
|
13
|
+
"types": "../dist/realreport.d.ts",
|
|
14
14
|
"keywords": [
|
|
15
15
|
"reports",
|
|
16
16
|
"dataviz",
|
|
@@ -26,18 +26,8 @@
|
|
|
26
26
|
"url": "git://github.com/realgrid/realreport-examples.git"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
|
-
"dist/**/*"
|
|
29
|
+
"../dist/**/*"
|
|
30
30
|
],
|
|
31
|
-
"scripts": {
|
|
32
|
-
"clean": "rimraf dist",
|
|
33
|
-
"makehash": "git rev-parse -- HEAD > .commithash",
|
|
34
|
-
"build": "npm run makehash && npm run clean && rollup -c ./rollup.config.js",
|
|
35
|
-
"ex:html": "http-server examples/html-browser",
|
|
36
|
-
"ex:nextjs": "npm run dev --prefix examples/nextjs-ts",
|
|
37
|
-
"ex:reactjs": "npm start --prefix examples/react-jsx",
|
|
38
|
-
"test": "jest --config jest.config.ts",
|
|
39
|
-
"cover": "c8 -o ./.coverage node .build/tests/index.js"
|
|
40
|
-
},
|
|
41
31
|
"devDependencies": {
|
|
42
32
|
"@babel/core": "^7.16.5",
|
|
43
33
|
"@babel/preset-env": "^7.16.5",
|
|
@@ -74,4 +64,4 @@
|
|
|
74
64
|
"typescript": "^4.5.4"
|
|
75
65
|
},
|
|
76
66
|
"dependencies": {}
|
|
77
|
-
}
|
|
67
|
+
}
|
package/dist/check-checked.png
DELETED
|
Binary file
|
package/dist/check-empty.png
DELETED
|
Binary file
|
package/dist/check-unchecked.png
DELETED
|
Binary file
|