@progress/telerik-jquery-report-viewer 28.25.1111 → 28.26.121
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 +4 -6
- package/dist/cjs/aiPrompt.js +41 -43
- package/dist/cjs/base-component.js +0 -2
- package/dist/cjs/binder.js +0 -2
- package/dist/cjs/command.js +0 -2
- package/dist/cjs/commandSet.js +3 -6
- package/dist/cjs/components/button.js +0 -2
- package/dist/cjs/components/toggle-button.js +0 -2
- package/dist/cjs/constants.js +0 -2
- package/dist/cjs/documentMapArea.js +0 -2
- package/dist/cjs/domUtils.js +0 -2
- package/dist/cjs/enums.js +0 -2
- package/dist/cjs/event-emitter.js +0 -2
- package/dist/cjs/events.js +0 -2
- package/dist/cjs/globalSettings.js +0 -2
- package/dist/cjs/history.js +0 -2
- package/dist/cjs/index.js +0 -2
- package/dist/cjs/mainMenu.js +0 -2
- package/dist/cjs/mem-storage.js +0 -2
- package/dist/cjs/notificationService.js +0 -2
- package/dist/cjs/parameterValidators.js +0 -2
- package/dist/cjs/parameters.js +0 -2
- package/dist/cjs/parametersArea.js +6 -31
- package/dist/cjs/perspectives.js +0 -2
- package/dist/cjs/report-viewer/report-viewer-settings.js +0 -2
- package/dist/cjs/reportViewer.js +4 -7
- package/dist/cjs/search.js +3 -6
- package/dist/cjs/sendEmail.js +0 -2
- package/dist/cjs/service-client-sentinel.js +0 -2
- package/dist/cjs/sideMenu.js +0 -2
- package/dist/cjs/stringResources.js +0 -2
- package/dist/cjs/template-cache.js +0 -2
- package/dist/cjs/toolbar/button.js +0 -2
- package/dist/cjs/toolbar/link-button.js +0 -2
- package/dist/cjs/toolbar/page-count-label.js +0 -2
- package/dist/cjs/toolbar/page-number-input.js +0 -2
- package/dist/cjs/toolbar.js +0 -2
- package/dist/cjs/touch.js +0 -2
- package/dist/cjs/uiController.js +3 -6
- package/dist/cjs/utils.js +4 -6
- package/dist/font/{ReportingIcons-19.3.25.1111.ttf → ReportingIcons-19.3.26.121.ttf} +0 -0
- package/dist/font/font-icons.css +1056 -81
- package/dist/font/font-icons.min.css +4 -4
- package/dist/font/reporting-icons.ttf +0 -0
- package/dist/js/telerikReportViewer.js +424 -431
- package/dist/js/telerikReportViewer.kendo.js +74336 -68574
- package/dist/js/telerikReportViewer.kendo.min.js +1 -1
- package/dist/js/telerikReportViewer.min.js +1 -1
- package/dist/styles/telerikReportViewer.css +4 -4
- package/dist/styles/telerikReportViewer.min.css +4 -4
- package/dist/templates/telerikReportViewerTemplate.html +4 -4
- package/package.json +2 -2
package/dist/cjs/utils.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var RCV = require('@progress/telerik-common-report-viewer');
|
|
6
4
|
|
|
7
5
|
var stringFormatRegExp = /{(\w+?)}/g;
|
|
@@ -236,19 +234,19 @@ function getColorAlphaValue(color) {
|
|
|
236
234
|
return alpha;
|
|
237
235
|
}
|
|
238
236
|
|
|
239
|
-
Object.defineProperty(exports,
|
|
237
|
+
Object.defineProperty(exports, "parseToLocalDate", {
|
|
240
238
|
enumerable: true,
|
|
241
239
|
get: function () { return RCV.parseToLocalDate; }
|
|
242
240
|
});
|
|
243
|
-
Object.defineProperty(exports,
|
|
241
|
+
Object.defineProperty(exports, "reportSourcesAreEqual", {
|
|
244
242
|
enumerable: true,
|
|
245
243
|
get: function () { return RCV.reportSourcesAreEqual; }
|
|
246
244
|
});
|
|
247
|
-
Object.defineProperty(exports,
|
|
245
|
+
Object.defineProperty(exports, "tryParseFloat", {
|
|
248
246
|
enumerable: true,
|
|
249
247
|
get: function () { return RCV.tryParseFloat; }
|
|
250
248
|
});
|
|
251
|
-
Object.defineProperty(exports,
|
|
249
|
+
Object.defineProperty(exports, "tryParseInt", {
|
|
252
250
|
enumerable: true,
|
|
253
251
|
get: function () { return RCV.tryParseInt; }
|
|
254
252
|
});
|