@progress/telerik-jquery-report-viewer 30.26.520 → 30.26.707
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 -1
- package/dist/cjs/accessibility.js +2 -0
- package/dist/cjs/aiPrompt.js +2 -0
- package/dist/cjs/banner.js +2 -0
- package/dist/cjs/base-component.js +2 -0
- package/dist/cjs/binder.js +2 -0
- package/dist/cjs/command.js +2 -0
- package/dist/cjs/commandSet.js +6 -3
- package/dist/cjs/components/button.js +2 -0
- package/dist/cjs/components/toggle-button.js +2 -0
- package/dist/cjs/constants.js +2 -0
- package/dist/cjs/documentMapArea.js +2 -0
- package/dist/cjs/domUtils.js +2 -0
- package/dist/cjs/enums.js +2 -0
- package/dist/cjs/event-emitter.js +2 -0
- package/dist/cjs/events.js +2 -0
- package/dist/cjs/globalSettings.js +2 -0
- package/dist/cjs/history.js +2 -0
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/mainMenu.js +2 -0
- package/dist/cjs/mem-storage.js +2 -0
- package/dist/cjs/notificationService.js +2 -0
- package/dist/cjs/parameterValidators.js +2 -0
- package/dist/cjs/parameters.js +5 -3
- package/dist/cjs/parametersArea.js +2 -0
- package/dist/cjs/perspectives.js +2 -0
- package/dist/cjs/report-viewer/report-viewer-settings.js +2 -0
- package/dist/cjs/reportViewer.js +12 -4
- package/dist/cjs/search.js +6 -3
- package/dist/cjs/sendEmail.js +9 -2
- package/dist/cjs/service-client-sentinel.js +2 -0
- package/dist/cjs/sideMenu.js +2 -0
- package/dist/cjs/stringResources.js +2 -0
- package/dist/cjs/template-cache.js +2 -0
- package/dist/cjs/toolbar/button.js +2 -0
- package/dist/cjs/toolbar/link-button.js +2 -0
- package/dist/cjs/toolbar/page-count-label.js +2 -0
- package/dist/cjs/toolbar/page-number-input.js +2 -0
- package/dist/cjs/toolbar.js +2 -0
- package/dist/cjs/touch.js +2 -0
- package/dist/cjs/uiController.js +6 -3
- package/dist/cjs/utils.js +6 -4
- package/dist/font/font-icons.css +4 -10
- package/dist/font/font-icons.min.css +3 -3
- package/dist/js/telerikReportViewer.js +382 -372
- package/dist/js/telerikReportViewer.min.js +1 -1
- package/dist/styles/telerikReportViewer.css +3 -3
- package/dist/styles/telerikReportViewer.min.css +3 -3
- package/dist/templates/telerikReportViewerTemplate.html +3 -3
- package/package.json +7 -7
- /package/dist/font/{ReportingIcons-20.1.26.520.ttf → ReportingIcons-20.1.26.707.ttf} +0 -0
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Major features:
|
|
|
18
18
|
|
|
19
19
|
* Use the viewer's API for customizing and extending its behavior.
|
|
20
20
|
|
|
21
|
-
This version of Telerik jQuery Report Viewer requires either Telerik Report Server or Telerik Reporting REST Service
|
|
21
|
+
This version of Telerik jQuery Report Viewer requires either Telerik Report Server or Telerik Reporting REST Service _REPORTING_VERSION_PLACEHOLDER_.
|
|
22
22
|
|
|
23
23
|
Learn more about Telerik Reporting Viewers here: [Telerik Report Viewers Overview](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/overview)
|
|
24
24
|
|
package/dist/cjs/aiPrompt.js
CHANGED
package/dist/cjs/banner.js
CHANGED
package/dist/cjs/binder.js
CHANGED
package/dist/cjs/command.js
CHANGED
package/dist/cjs/commandSet.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var command = require('./command.js');
|
|
4
6
|
var RCV = require('@progress/telerik-common-report-viewer');
|
|
5
7
|
|
|
6
|
-
function
|
|
8
|
+
function _interopNamespace(e) {
|
|
9
|
+
if (e && e.__esModule) return e;
|
|
7
10
|
var n = Object.create(null);
|
|
8
11
|
if (e) {
|
|
9
12
|
Object.keys(e).forEach(function (k) {
|
|
@@ -16,11 +19,11 @@ function _interopNamespaceDefault(e) {
|
|
|
16
19
|
}
|
|
17
20
|
});
|
|
18
21
|
}
|
|
19
|
-
n
|
|
22
|
+
n["default"] = e;
|
|
20
23
|
return Object.freeze(n);
|
|
21
24
|
}
|
|
22
25
|
|
|
23
|
-
var RCV__namespace = /*#__PURE__*/
|
|
26
|
+
var RCV__namespace = /*#__PURE__*/_interopNamespace(RCV);
|
|
24
27
|
|
|
25
28
|
var scaleTransitionMap = {};
|
|
26
29
|
scaleTransitionMap[RCV__namespace.ScaleMode.FitPage] = RCV__namespace.ScaleMode.FitPageWidth;
|
package/dist/cjs/constants.js
CHANGED
package/dist/cjs/domUtils.js
CHANGED
package/dist/cjs/enums.js
CHANGED
package/dist/cjs/events.js
CHANGED
package/dist/cjs/history.js
CHANGED
package/dist/cjs/index.js
CHANGED
package/dist/cjs/mainMenu.js
CHANGED
package/dist/cjs/mem-storage.js
CHANGED
package/dist/cjs/parameters.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var utils = require('./utils.js');
|
|
4
6
|
var stringResources = require('./stringResources.js');
|
|
5
7
|
var enums = require('./enums.js');
|
|
@@ -342,7 +344,7 @@ var ParameterEditors = [
|
|
|
342
344
|
parameter = param;
|
|
343
345
|
try {
|
|
344
346
|
listView = $list.kendoListView({
|
|
345
|
-
template:
|
|
347
|
+
template: ({ name }) => `<div class="trv-listviewitem multiselect-template">${kendo.htmlEncode(name)}</div>`,
|
|
346
348
|
dataSource: { data: parameter.availableValues },
|
|
347
349
|
selectable: "MULTIPLE",
|
|
348
350
|
navigatable: navigatableEnabledForList(options.enableAccessibility),
|
|
@@ -582,7 +584,7 @@ var ParameterEditors = [
|
|
|
582
584
|
parameter = param;
|
|
583
585
|
try {
|
|
584
586
|
listView = $list.kendoListView({
|
|
585
|
-
template:
|
|
587
|
+
template: ({ name }) => `<div class="trv-listviewitem">${kendo.htmlEncode(name)}</div>`,
|
|
586
588
|
dataSource: { data: parameter.availableValues },
|
|
587
589
|
selectable: true,
|
|
588
590
|
navigatable: navigatableEnabledForList(options.enableAccessibility)
|
|
@@ -679,7 +681,7 @@ var ParameterEditors = [
|
|
|
679
681
|
parameter = param;
|
|
680
682
|
try {
|
|
681
683
|
editor = $editorDom.kendoComboBox({
|
|
682
|
-
template:
|
|
684
|
+
template: ({ name }) => `<div class="trv-editoritem">${kendo.htmlEncode(name)}</div>`,
|
|
683
685
|
dataSource: parameter.availableValues,
|
|
684
686
|
dataTextField: "name",
|
|
685
687
|
dataValueField: "value",
|
package/dist/cjs/perspectives.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
function PerspectiveManager(element, controller, notificationService) {
|
|
4
6
|
var smallMenu = element.querySelectorAll ? element.querySelectorAll(".trv-menu-small")[0] : false;
|
|
5
7
|
var perspectives = {
|
package/dist/cjs/reportViewer.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var RCV = require('@progress/telerik-common-report-viewer');
|
|
4
6
|
var utils = require('./utils.js');
|
|
5
7
|
var stringResources = require('./stringResources.js');
|
|
@@ -27,7 +29,8 @@ var toolbar = require('./toolbar.js');
|
|
|
27
29
|
var aiPrompt = require('./aiPrompt.js');
|
|
28
30
|
var banner = require('./banner.js');
|
|
29
31
|
|
|
30
|
-
function
|
|
32
|
+
function _interopNamespace(e) {
|
|
33
|
+
if (e && e.__esModule) return e;
|
|
31
34
|
var n = Object.create(null);
|
|
32
35
|
if (e) {
|
|
33
36
|
Object.keys(e).forEach(function (k) {
|
|
@@ -40,11 +43,11 @@ function _interopNamespaceDefault(e) {
|
|
|
40
43
|
}
|
|
41
44
|
});
|
|
42
45
|
}
|
|
43
|
-
n
|
|
46
|
+
n["default"] = e;
|
|
44
47
|
return Object.freeze(n);
|
|
45
48
|
}
|
|
46
49
|
|
|
47
|
-
var RCV__namespace = /*#__PURE__*/
|
|
50
|
+
var RCV__namespace = /*#__PURE__*/_interopNamespace(RCV);
|
|
48
51
|
|
|
49
52
|
var viewModeReverseMap = {
|
|
50
53
|
[RCV__namespace.ViewMode.Interactive]: enums.ViewModes.INTERACTIVE,
|
|
@@ -99,6 +102,7 @@ function getDefaultOptions(serviceUrl, version) {
|
|
|
99
102
|
reportSource: null,
|
|
100
103
|
reportServer: null,
|
|
101
104
|
authenticationToken: null,
|
|
105
|
+
nonce: null,
|
|
102
106
|
sendEmail: null,
|
|
103
107
|
scale: 1,
|
|
104
108
|
scaleMode: enums.ScaleModes.SPECIFIC,
|
|
@@ -156,7 +160,7 @@ function ReportViewer(dom, options) {
|
|
|
156
160
|
if (!validateOptions(options)) {
|
|
157
161
|
return;
|
|
158
162
|
}
|
|
159
|
-
var version = "20.1.26.
|
|
163
|
+
var version = "20.1.26.707";
|
|
160
164
|
options = $.extend({}, getDefaultOptions(svcApiUrl, version), options);
|
|
161
165
|
settings = new reportViewerSettings.ReportViewerSettings(
|
|
162
166
|
persistanceKey,
|
|
@@ -180,6 +184,7 @@ function ReportViewer(dom, options) {
|
|
|
180
184
|
controllerOptions = new RCV__namespace.ReportControllerOptions(
|
|
181
185
|
options.keepClientAlive,
|
|
182
186
|
options.authenticationToken,
|
|
187
|
+
options.nonce,
|
|
183
188
|
options.reportSource,
|
|
184
189
|
printModeMap[options.printMode],
|
|
185
190
|
pageModeMap[options.pageMode],
|
|
@@ -1023,6 +1028,9 @@ function ReportViewer(dom, options) {
|
|
|
1023
1028
|
return response.text();
|
|
1024
1029
|
}).then((kendoScript) => {
|
|
1025
1030
|
const scriptElement = document.createElement("script");
|
|
1031
|
+
if (options.nonce) {
|
|
1032
|
+
scriptElement.setAttribute("nonce", options.nonce);
|
|
1033
|
+
}
|
|
1026
1034
|
scriptElement.textContent = kendoScript;
|
|
1027
1035
|
document.head.appendChild(scriptElement);
|
|
1028
1036
|
}).catch((errorData) => {
|
package/dist/cjs/search.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var utils = require('./utils.js');
|
|
4
6
|
var stringResources = require('./stringResources.js');
|
|
5
7
|
var command = require('./command.js');
|
|
@@ -7,7 +9,8 @@ var button = require('./components/button.js');
|
|
|
7
9
|
var toggleButton = require('./components/toggle-button.js');
|
|
8
10
|
var RCV = require('@progress/telerik-common-report-viewer');
|
|
9
11
|
|
|
10
|
-
function
|
|
12
|
+
function _interopNamespace(e) {
|
|
13
|
+
if (e && e.__esModule) return e;
|
|
11
14
|
var n = Object.create(null);
|
|
12
15
|
if (e) {
|
|
13
16
|
Object.keys(e).forEach(function (k) {
|
|
@@ -20,11 +23,11 @@ function _interopNamespaceDefault(e) {
|
|
|
20
23
|
}
|
|
21
24
|
});
|
|
22
25
|
}
|
|
23
|
-
n
|
|
26
|
+
n["default"] = e;
|
|
24
27
|
return Object.freeze(n);
|
|
25
28
|
}
|
|
26
29
|
|
|
27
|
-
var RCV__namespace = /*#__PURE__*/
|
|
30
|
+
var RCV__namespace = /*#__PURE__*/_interopNamespace(RCV);
|
|
28
31
|
|
|
29
32
|
var defaultOptions = {};
|
|
30
33
|
const componentMap = {
|
package/dist/cjs/sendEmail.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
require('@progress/telerik-common-report-viewer');
|
|
4
6
|
var stringResources = require('./stringResources.js');
|
|
5
7
|
var binder = require('./binder.js');
|
|
@@ -193,7 +195,7 @@ class SendEmail {
|
|
|
193
195
|
event.sender.trigger("change");
|
|
194
196
|
}
|
|
195
197
|
});
|
|
196
|
-
|
|
198
|
+
var editorOptions = {
|
|
197
199
|
tools: [
|
|
198
200
|
"bold",
|
|
199
201
|
"italic",
|
|
@@ -218,7 +220,12 @@ class SendEmail {
|
|
|
218
220
|
"subscript",
|
|
219
221
|
"superscript"
|
|
220
222
|
]
|
|
221
|
-
}
|
|
223
|
+
};
|
|
224
|
+
if (this.viewerOptions.nonce) {
|
|
225
|
+
editorOptions.nonce = this.viewerOptions.nonce;
|
|
226
|
+
editorOptions.unsafeInline = false;
|
|
227
|
+
}
|
|
228
|
+
this.bodyEditor = new kendo.ui.Editor(this.element.querySelector(`[name="${prefix}-emailBody"]`), editorOptions);
|
|
222
229
|
this.setDefaultValues(this.viewerOptions.sendEmail);
|
|
223
230
|
this.kendoValidator = new kendo.ui.Validator(this.element.querySelector(".trv-send-email-fields"), {});
|
|
224
231
|
}
|
package/dist/cjs/sideMenu.js
CHANGED
package/dist/cjs/toolbar.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var stringResources = require('./stringResources.js');
|
|
4
6
|
var pageCountLabel = require('./toolbar/page-count-label.js');
|
|
5
7
|
var pageNumberInput = require('./toolbar/page-number-input.js');
|
package/dist/cjs/touch.js
CHANGED
package/dist/cjs/uiController.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var RCV = require('@progress/telerik-common-report-viewer');
|
|
4
6
|
|
|
5
|
-
function
|
|
7
|
+
function _interopNamespace(e) {
|
|
8
|
+
if (e && e.__esModule) return e;
|
|
6
9
|
var n = Object.create(null);
|
|
7
10
|
if (e) {
|
|
8
11
|
Object.keys(e).forEach(function (k) {
|
|
@@ -15,11 +18,11 @@ function _interopNamespaceDefault(e) {
|
|
|
15
18
|
}
|
|
16
19
|
});
|
|
17
20
|
}
|
|
18
|
-
n
|
|
21
|
+
n["default"] = e;
|
|
19
22
|
return Object.freeze(n);
|
|
20
23
|
}
|
|
21
24
|
|
|
22
|
-
var RCV__namespace = /*#__PURE__*/
|
|
25
|
+
var RCV__namespace = /*#__PURE__*/_interopNamespace(RCV);
|
|
23
26
|
|
|
24
27
|
function UIController(options) {
|
|
25
28
|
var stateFlags = {
|
package/dist/cjs/utils.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var RCV = require('@progress/telerik-common-report-viewer');
|
|
4
6
|
|
|
5
7
|
var stringFormatRegExp = /{(\w+?)}/g;
|
|
@@ -234,19 +236,19 @@ function getColorAlphaValue(color) {
|
|
|
234
236
|
return alpha;
|
|
235
237
|
}
|
|
236
238
|
|
|
237
|
-
Object.defineProperty(exports,
|
|
239
|
+
Object.defineProperty(exports, 'parseToLocalDate', {
|
|
238
240
|
enumerable: true,
|
|
239
241
|
get: function () { return RCV.parseToLocalDate; }
|
|
240
242
|
});
|
|
241
|
-
Object.defineProperty(exports,
|
|
243
|
+
Object.defineProperty(exports, 'reportSourcesAreEqual', {
|
|
242
244
|
enumerable: true,
|
|
243
245
|
get: function () { return RCV.reportSourcesAreEqual; }
|
|
244
246
|
});
|
|
245
|
-
Object.defineProperty(exports,
|
|
247
|
+
Object.defineProperty(exports, 'tryParseFloat', {
|
|
246
248
|
enumerable: true,
|
|
247
249
|
get: function () { return RCV.tryParseFloat; }
|
|
248
250
|
});
|
|
249
|
-
Object.defineProperty(exports,
|
|
251
|
+
Object.defineProperty(exports, 'tryParseInt', {
|
|
250
252
|
enumerable: true,
|
|
251
253
|
get: function () { return RCV.tryParseInt; }
|
|
252
254
|
});
|
package/dist/font/font-icons.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* TelerikReporting v20.1.26.
|
|
2
|
+
* TelerikReporting v20.1.26.707 (https://www.telerik.com/products/reporting.aspx)
|
|
3
3
|
* Copyright 2026 Progress Software EAD. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Telerik Reporting commercial licenses may be obtained at
|
|
@@ -10,20 +10,14 @@
|
|
|
10
10
|
font-family: "ReportingIcons";
|
|
11
11
|
font-style: normal;
|
|
12
12
|
font-weight: normal;
|
|
13
|
-
src: url("../ReportingIcons-20.1.26.
|
|
13
|
+
src: url("../ReportingIcons-20.1.26.707.ttf/") format("truetype");
|
|
14
14
|
/*unicode-range: U+E0ED, U+E0EE, U+E0E6, U+E132, U+E12F, U+E008, U+E00B, U+E09C, U+E096, U+E07E, U+E086, U+E06C, U+E07F, U+E080, U+E081, U+E149, U+E087;*/
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: "WebComponentsIcons";
|
|
18
18
|
font-style: normal;
|
|
19
19
|
font-weight: normal;
|
|
20
|
-
src: url("../ReportingIcons-20.1.26.
|
|
21
|
-
}
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: "WebComponentsIcons";
|
|
24
|
-
font-style: normal;
|
|
25
|
-
font-weight: normal;
|
|
26
|
-
src: url("sass/fonts/kendo-font-icons.ttf") format("truetype");
|
|
20
|
+
src: url("../ReportingIcons-20.1.26.707.ttf/") format("truetype");
|
|
27
21
|
}
|
|
28
22
|
.k-font-icon {
|
|
29
23
|
width: 1em;
|
|
@@ -5237,4 +5231,4 @@
|
|
|
5237
5231
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M256 32 0 480h512zm-32 160h64v160h-64zm0 256v-64h64v64z'></path></svg>");
|
|
5238
5232
|
background-repeat: no-repeat;
|
|
5239
5233
|
}
|
|
5240
|
-
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
|
5234
|
+
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM 96d12487daa36bfd0a3b57e57b815e9c */
|