@progress/telerik-react-report-viewer 19.23.718 → 19.23.1009
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 -2
- package/dist/cjs/telerik-report-viewer.js +3 -3
- package/dist/dependencies/telerikReportViewer.js +8873 -8726
- package/dist/dependencies/telerikReportViewer.kendo.min.js +20 -8
- package/dist/dependencies/{telerikReportViewerTemplate-sass.html → telerikReportViewerTemplate.html} +332 -333
- package/dist/es/telerik-report-viewer.js +3 -3
- package/package.json +68 -74
- package/dist/dependencies/kendo.custom.min.js.map +0 -1
- package/progress-telerik-react-report-viewer-19.23.718.tgz +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
function _typeof(
|
2
|
-
function ownKeys(
|
3
|
-
function _objectSpread(
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
4
4
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
5
5
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
6
6
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
package/package.json
CHANGED
@@ -1,74 +1,68 @@
|
|
1
|
-
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
"react": "^16.8.6",
|
70
|
-
"react-dom": "^16.8.6",
|
71
|
-
"react-scripts": "4.0.3",
|
72
|
-
"rimraf": "^3.0.2"
|
73
|
-
}
|
74
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@progress/telerik-react-report-viewer",
|
3
|
+
"description": "Progress® Telerik® Report Viewer for React",
|
4
|
+
"version": "19.23.1009",
|
5
|
+
"author": "Progress",
|
6
|
+
"license": "See LICENSE.md",
|
7
|
+
"homepage": "https://www.telerik.com/reporting",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "https://github.com/telerik/reporting.git",
|
11
|
+
"directory": "Source/Code/Telerik.ReportViewer.Web/react-viewer"
|
12
|
+
},
|
13
|
+
"bugs": {
|
14
|
+
"url": "https://github.com/telerik/reporting/issues/new?labels=bug,FW:react&template=bug_report.md"
|
15
|
+
},
|
16
|
+
"keywords": [
|
17
|
+
"Progress",
|
18
|
+
"Telerik",
|
19
|
+
"report",
|
20
|
+
"reports",
|
21
|
+
"reporting",
|
22
|
+
"ReportViewer",
|
23
|
+
"Report Viewer",
|
24
|
+
"React"
|
25
|
+
],
|
26
|
+
"publishConfig": {
|
27
|
+
"access": "public"
|
28
|
+
},
|
29
|
+
"main": "dist/cjs/main.js",
|
30
|
+
"module": "dist/es/main.js",
|
31
|
+
"typings": "dist/es/main.d.ts",
|
32
|
+
"files": [
|
33
|
+
"dist"
|
34
|
+
],
|
35
|
+
"scripts": {
|
36
|
+
"start": "react-scripts start",
|
37
|
+
"prebuild": "rimraf dist && node ./scripts/prebuild.js",
|
38
|
+
"build": "gulp build-package",
|
39
|
+
"test": "react-scripts test --watchAll=false --json --passWithNoTests",
|
40
|
+
"eject": "react-scripts eject"
|
41
|
+
},
|
42
|
+
"eslintConfig": {
|
43
|
+
"extends": [
|
44
|
+
"react-app",
|
45
|
+
"react-app/jest"
|
46
|
+
]
|
47
|
+
},
|
48
|
+
"targets": {
|
49
|
+
"esmodules": true
|
50
|
+
},
|
51
|
+
"browserslist": {
|
52
|
+
"production": [
|
53
|
+
">0.2%",
|
54
|
+
"not dead",
|
55
|
+
"not op_mini all"
|
56
|
+
],
|
57
|
+
"development": [
|
58
|
+
"last 1 chrome version",
|
59
|
+
"last 1 firefox version",
|
60
|
+
"last 1 safari version"
|
61
|
+
]
|
62
|
+
},
|
63
|
+
"peerDependencies": {
|
64
|
+
"jquery": "^1.10.0 || ^2.2.0 || ^3.7.0",
|
65
|
+
"react": ">=16.8.6",
|
66
|
+
"react-dom": ">=16.8.6"
|
67
|
+
}
|
68
|
+
}
|