@progress/telerik-react-report-viewer 21.24.116 → 21.24.130
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
@@ -17,7 +17,7 @@ While the component is not native (the theming mechanism uses Kendo UI for jQuer
|
|
17
17
|
and has a dependency to jQuery itself), it brings reporting value to your React applications
|
18
18
|
in no time.
|
19
19
|
|
20
|
-
This version of the React Report Viewer requires Telerik Report Server or Telerik Reporting REST Service 18.0.24.
|
20
|
+
This version of the React Report Viewer requires Telerik Report Server or Telerik Reporting REST Service 18.0.24.130
|
21
21
|
|
22
22
|
## License
|
23
23
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
var $ = require("jquery");
|
2
2
|
/*
|
3
|
-
* TelerikReporting v18.0.24.
|
3
|
+
* TelerikReporting v18.0.24.130 (https://www.telerik.com/products/reporting.aspx)
|
4
4
|
* Copyright 2024 Progress Software EAD. All rights reserved.
|
5
5
|
*
|
6
6
|
* Telerik Reporting commercial licenses may be obtained at
|
@@ -4324,10 +4324,16 @@ var telerikReportViewer = (() => {
|
|
4324
4324
|
var $container = $(toolTipTemplate);
|
4325
4325
|
var $titleSpan = $container.find(".trv-pages-area-kendo-tooltip-title");
|
4326
4326
|
var $textSpan = $container.find(".trv-pages-area-kendo-tooltip-text");
|
4327
|
-
$titleSpan.
|
4328
|
-
$textSpan.
|
4327
|
+
$titleSpan.html(replaceNewLineSymbols(toolTipArgs.toolTip.title));
|
4328
|
+
$textSpan.html(replaceNewLineSymbols(toolTipArgs.toolTip.text));
|
4329
4329
|
return $container.clone().wrap("<p>").parent().html();
|
4330
4330
|
}
|
4331
|
+
function replaceNewLineSymbols(tooltipText) {
|
4332
|
+
tooltipText = escapeHtml(tooltipText);
|
4333
|
+
tooltipText = tooltipText.replaceAll("\r\n", "<br>");
|
4334
|
+
tooltipText = tooltipText.replaceAll("\n", "<br>");
|
4335
|
+
return tooltipText;
|
4336
|
+
}
|
4331
4337
|
function positionToolTip(toolTip, e) {
|
4332
4338
|
var x = e.pageX;
|
4333
4339
|
var y = e.pageY;
|
@@ -8322,7 +8328,7 @@ var telerikReportViewer = (() => {
|
|
8322
8328
|
if (!validateOptions(options)) {
|
8323
8329
|
return;
|
8324
8330
|
}
|
8325
|
-
var version = "18.0.24.
|
8331
|
+
var version = "18.0.24.130";
|
8326
8332
|
options = extend({}, getDefaultOptions(svcApiUrl, version), options);
|
8327
8333
|
settings = new ReportViewerSettings(
|
8328
8334
|
persistanceKey,
|
@@ -8892,7 +8898,7 @@ var telerikReportViewer = (() => {
|
|
8892
8898
|
return __toCommonJS(src_exports);
|
8893
8899
|
})();
|
8894
8900
|
|
8895
|
-
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
8901
|
+
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM c9b9b66c0976c140ee70f2158bb3b437 */
|
8896
8902
|
module.exports = {
|
8897
8903
|
ReportViewer: telerikReportViewer.ReportViewer
|
8898
8904
|
};
|
@@ -4,8 +4,8 @@
|
|
4
4
|
<title>Telerik HTML5 Report Viewer Templates</title>
|
5
5
|
|
6
6
|
<!--Telerik served resources. For more information see: http://docs.telerik.com/reporting/html5-report-viewer-styling-and-appearance -->
|
7
|
-
<link href="{service}resources/font/fonticons-18.0.24.
|
8
|
-
<link href="{service}resources/styles/telerikReportViewer-18.0.24.
|
7
|
+
<link href="{service}resources/font/fonticons-18.0.24.130.css/" rel="stylesheet" />
|
8
|
+
<link href="{service}resources/styles/telerikReportViewer-18.0.24.130.css/" rel="stylesheet" />
|
9
9
|
|
10
10
|
</head>
|
11
11
|
<body>
|
@@ -329,4 +329,4 @@
|
|
329
329
|
|
330
330
|
</body>
|
331
331
|
</html>
|
332
|
-
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
332
|
+
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM f5ae1b3fa7d650d4d991e0fe456c214b -->
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/telerik-react-report-viewer",
|
3
3
|
"description": "Progress® Telerik® Report Viewer for React",
|
4
|
-
"version": "21.24.
|
4
|
+
"version": "21.24.130",
|
5
5
|
"author": "Progress",
|
6
6
|
"license": "See LICENSE.md",
|
7
7
|
"homepage": "https://www.telerik.com/reporting",
|