@progress/telerik-angular-report-viewer 15.22.119 → 15.22.217
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
CHANGED
@@ -1,15 +1,30 @@
|
|
1
1
|
|
2
|
-
#Progress Telerik Report Viewer for Angular
|
2
|
+
# Progress Telerik Report Viewer component for Angular
|
3
3
|
|
4
|
-
This package is part of
|
4
|
+
This package is part of [Telerik Reporting](https://www.telerik.com/reporting).
|
5
5
|
|
6
|
-
This
|
6
|
+
This Angular component is a report viewer that will ensure straightforward embedding of reports for preview.
|
7
|
+
The viewer is built as a wrapper of the Telerik Reporting HTML5 Report Viewer widget,
|
8
|
+
inheriting all its strengths, including:
|
9
|
+
|
10
|
+
* Navigate the report pages for preview on the screen
|
11
|
+
|
12
|
+
* Exercise the defined interactivities like navigate to another report or to a bookmark in the same one,
|
13
|
+
drill-down or sort on a column, etc.
|
14
|
+
|
15
|
+
* Print or export the report to all the formats we support, including PDF and Excel
|
16
|
+
|
17
|
+
While the component is not native (the theming mechanism uses Kendo UI for jQuery
|
18
|
+
and has a dependency to jQuery itself), it brings reporting value to your Angular applications
|
19
|
+
in no time.
|
20
|
+
|
21
|
+
This version of the Angular Report Viewer requires Telerik Report Server or Telerik Reporting REST Service 16.0.22.217
|
7
22
|
|
8
23
|
## License
|
9
24
|
|
10
|
-
**IMPORTANT** This is
|
11
|
-
[Telerik End User License Agreement for Telerik Reporting](
|
25
|
+
**IMPORTANT** This is commercial software. You must agree to the
|
26
|
+
[Telerik End User License Agreement for Telerik Reporting](https://www.telerik.com/purchase/license-agreement/reporting-dlw-s) in order to use it.
|
12
27
|
|
13
28
|
If you do not own a commercial license, the use of this product shall be governed by the trial license terms.
|
14
29
|
|
15
|
-
Telerik Reporting licenses may be obtained
|
30
|
+
Telerik Reporting licenses may be obtained through the [Telerik Reporting page](https://www.telerik.com/purchase/individual/reporting).
|
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
|
3
3
|
/*
|
4
|
-
* TelerikReporting v16.0.22.
|
4
|
+
* TelerikReporting v16.0.22.217 (http://www.telerik.com/products/reporting.aspx)
|
5
5
|
* Copyright 2022 Progress Software EAD. All rights reserved.
|
6
6
|
*
|
7
7
|
* Telerik Reporting commercial licenses may be obtained at
|
@@ -8026,7 +8026,7 @@ var telerikReportViewer = {};
|
|
8026
8026
|
if (!validateOptions(options)) {
|
8027
8027
|
return;
|
8028
8028
|
}
|
8029
|
-
var version = "16.0.22.
|
8029
|
+
var version = "16.0.22.217";
|
8030
8030
|
options = utils.extend({}, getDefaultOptions(svcApiUrl, version), options);
|
8031
8031
|
settings = new ReportViewerSettings(persistanceKey, options.persistSession ? window.sessionStorage : new MemStorage(), {
|
8032
8032
|
scale: options.scale,
|
@@ -8526,4 +8526,4 @@ module.exports = {
|
|
8526
8526
|
ReportViewer: telerikReportViewer.ReportViewer
|
8527
8527
|
};
|
8528
8528
|
|
8529
|
-
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
8529
|
+
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM 0CDA35926A6B6098C53BD14552749D57 */
|
@@ -5,8 +5,8 @@
|
|
5
5
|
<title>Telerik HTML5 Report Viewer Templates</title>
|
6
6
|
|
7
7
|
<!--Telerik served resources. For more information see: http://docs.telerik.com/reporting/html5-report-viewer-styling-and-appearance -->
|
8
|
-
<link href="{service}resources/font/fonticons-16.0.22.
|
9
|
-
<link href="{service}resources/styles/telerikReportViewer-16.0.22.
|
8
|
+
<link href="{service}resources/font/fonticons-16.0.22.217.css/" rel="stylesheet" />
|
9
|
+
<link href="{service}resources/styles/telerikReportViewer-16.0.22.217.css/" rel="stylesheet" />
|
10
10
|
|
11
11
|
<script type="text/javascript">
|
12
12
|
//IE9 fix
|
@@ -340,4 +340,4 @@
|
|
340
340
|
|
341
341
|
</body>
|
342
342
|
</html>
|
343
|
-
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
343
|
+
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM 1C6D2921BC58BCDB6B6FEC2907C456EF -->
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/telerik-angular-report-viewer",
|
3
3
|
"description": "Progress® Telerik® Report Viewer for Angular",
|
4
|
-
"version": "15.22.
|
4
|
+
"version": "15.22.217",
|
5
5
|
"author": "Progress® Telerik® Reporting",
|
6
|
-
"homepage": "
|
7
|
-
"license": "
|
6
|
+
"homepage": "https://www.telerik.com/reporting",
|
7
|
+
"license": "https://www.telerik.com/purchase/license-agreement/reporting-dlw-s",
|
8
8
|
"publishConfig": {
|
9
9
|
"registry": "https://registry.npm.telerik.com"
|
10
10
|
},
|
@@ -19,11 +19,18 @@
|
|
19
19
|
"build": "rimraf dist && gulp build-package"
|
20
20
|
},
|
21
21
|
"keywords": [
|
22
|
+
"report",
|
23
|
+
"reports",
|
24
|
+
"reporting",
|
25
|
+
"embedded",
|
22
26
|
"ReportViewer",
|
23
27
|
"Report Viewer",
|
24
28
|
"Telerik",
|
25
|
-
"Kendo
|
26
|
-
"
|
29
|
+
"Kendo",
|
30
|
+
"KendoUI",
|
31
|
+
"Angular",
|
32
|
+
"html5",
|
33
|
+
"Progress"
|
27
34
|
],
|
28
35
|
"files": [
|
29
36
|
"dist/"
|