@progress/telerik-angular-report-viewer 18.23.427 → 19.23.606
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/cjs/main.js +3 -2
- package/dist/cjs/telerik-report-viewer.component.d.ts +3 -0
- package/dist/cjs/telerik-report-viewer.component.js +98 -56
- package/dist/cjs/telerik-reporting.module.d.ts +6 -0
- package/dist/cjs/telerik-reporting.module.js +13 -9
- package/dist/dependencies/telerikReportViewer.js +57 -4
- package/dist/dependencies/telerikReportViewerTemplate-sass.html +3 -3
- package/dist/es/telerik-report-viewer.component.d.ts +3 -0
- package/dist/es/telerik-report-viewer.component.js +97 -56
- package/dist/es/telerik-reporting.module.d.ts +6 -0
- package/dist/es/telerik-reporting.module.js +12 -9
- package/package.json +18 -21
- package/dist/cjs/main.metadata.json +0 -1
- package/dist/cjs/telerik-report-viewer.component.metadata.json +0 -1
- package/dist/cjs/telerik-reporting.module.metadata.json +0 -1
- package/dist/es/main.metadata.json +0 -1
- package/dist/es/telerik-report-viewer.component.metadata.json +0 -1
- package/dist/es/telerik-reporting.module.metadata.json +0 -1
package/README.md
CHANGED
@@ -18,7 +18,7 @@ While the component is not native (the theming mechanism uses Kendo UI for jQuer
|
|
18
18
|
and has a dependency to jQuery itself), it brings reporting value to your Angular applications
|
19
19
|
in no time.
|
20
20
|
|
21
|
-
This version of the Angular Report Viewer requires Telerik Report Server or Telerik Reporting REST Service 17.
|
21
|
+
This version of the Angular Report Viewer requires Telerik Report Server or Telerik Reporting REST Service 17.1.23.606
|
22
22
|
|
23
23
|
## License
|
24
24
|
|
package/dist/cjs/main.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TelerikReportViewerComponent = exports.TelerikReportingModule = void 0;
|
3
4
|
var telerik_reporting_module_1 = require("./telerik-reporting.module");
|
4
|
-
exports
|
5
|
+
Object.defineProperty(exports, "TelerikReportingModule", { enumerable: true, get: function () { return telerik_reporting_module_1.TelerikReportingModule; } });
|
5
6
|
var telerik_report_viewer_component_1 = require("./telerik-report-viewer.component");
|
6
|
-
exports
|
7
|
+
Object.defineProperty(exports, "TelerikReportViewerComponent", { enumerable: true, get: function () { return telerik_report_viewer_component_1.TelerikReportViewerComponent; } });
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { AfterViewInit, OnDestroy } from '@angular/core';
|
2
2
|
import '../dependencies/initExtDeps';
|
3
|
+
import * as i0 from "@angular/core";
|
3
4
|
export declare class TelerikReportViewerComponent implements AfterViewInit, OnDestroy {
|
4
5
|
containerId: string;
|
5
6
|
id: string;
|
@@ -71,4 +72,6 @@ export declare class TelerikReportViewerComponent implements AfterViewInit, OnDe
|
|
71
72
|
setPageMode(psm: string): any;
|
72
73
|
clearReportSource(): any;
|
73
74
|
dispose(): void;
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TelerikReportViewerComponent, never>;
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TelerikReportViewerComponent, "tr-viewer", never, { "id": "id"; "serviceUrl": "serviceUrl"; "reportServer": "reportServer"; "templateUrl": "templateUrl"; "initialPageAreaImageUrl": "initialPageAreaImageUrl"; "reportSource": "reportSource"; "sendEmail": "sendEmail"; "parameters": "parameters"; "scale": "scale"; "scaleMode": "scaleMode"; "viewMode": "viewMode"; "pageMode": "pageMode"; "persistSession": "persistSession"; "parameterEditors": "parameterEditors"; "authenticationToken": "authenticationToken"; "printMode": "printMode"; "selector": "selector"; "disabledButtonClass": "disabledButtonClass"; "checkedButtonClass": "checkedButtonClass"; "enableAccessibility": "enableAccessibility"; "searchMetadataOnDemand": "searchMetadataOnDemand"; "parametersAreaVisible": "parametersAreaVisible"; "documentMapVisible": "documentMapVisible"; "ready": "ready"; "error": "error"; "parametersAreaPosition": "parametersAreaPosition"; "documentMapAreaPosition": "documentMapAreaPosition"; "exportBegin": "exportBegin"; "exportEnd": "exportEnd"; "sendEmailBegin": "sendEmailBegin"; "sendEmailEnd": "sendEmailEnd"; "pageReady": "pageReady"; "printBegin": "printBegin"; "printEnd": "printEnd"; "renderingBegin": "renderingBegin"; "renderingEnd": "renderingEnd"; "updateUi": "updateUi"; "interactiveActionExecuting": "interactiveActionExecuting"; "interactiveActionEnter": "interactiveActionEnter"; "interactiveActionLeave": "interactiveActionLeave"; "viewerToolTipOpening": "viewerToolTipOpening"; "keepClientAlive": "keepClientAlive"; "containerStyle": "containerStyle"; }, {}, never, never>;
|
74
77
|
}
|
@@ -1,8 +1,11 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TelerikReportViewerComponent = void 0;
|
3
4
|
var core_1 = require("@angular/core");
|
4
5
|
require("../dependencies/initExtDeps");
|
5
6
|
var telerikReportViewer_1 = require("../dependencies/telerikReportViewer");
|
7
|
+
var i0 = require("@angular/core");
|
8
|
+
var i1 = require("@angular/common");
|
6
9
|
var TelerikReportViewerComponent = /** @class */ (function () {
|
7
10
|
function TelerikReportViewerComponent() {
|
8
11
|
}
|
@@ -79,62 +82,101 @@ var TelerikReportViewerComponent = /** @class */ (function () {
|
|
79
82
|
TelerikReportViewerComponent.prototype.setPageMode = function (psm) { return this.viewerObject.pageMode(psm); };
|
80
83
|
TelerikReportViewerComponent.prototype.clearReportSource = function () { return this.viewerObject.clearReportSource(); };
|
81
84
|
TelerikReportViewerComponent.prototype.dispose = function () { this.viewerObject.dispose(); };
|
82
|
-
TelerikReportViewerComponent
|
83
|
-
|
84
|
-
selector: 'tr-viewer',
|
85
|
-
template: '<div [ngStyle]="containerStyle" [attr.id]="reportViewerID" #container>Loading Report Viewer...</div>',
|
86
|
-
styleUrls: [],
|
87
|
-
encapsulation: core_1.ViewEncapsulation.None,
|
88
|
-
},] },
|
89
|
-
];
|
90
|
-
/** @nocollapse */
|
91
|
-
TelerikReportViewerComponent.ctorParameters = function () { return []; };
|
92
|
-
TelerikReportViewerComponent.propDecorators = {
|
93
|
-
'id': [{ type: core_1.Input },],
|
94
|
-
'serviceUrl': [{ type: core_1.Input },],
|
95
|
-
'reportServer': [{ type: core_1.Input },],
|
96
|
-
'templateUrl': [{ type: core_1.Input },],
|
97
|
-
'initialPageAreaImageUrl': [{ type: core_1.Input },],
|
98
|
-
'reportSource': [{ type: core_1.Input },],
|
99
|
-
'sendEmail': [{ type: core_1.Input },],
|
100
|
-
'parameters': [{ type: core_1.Input },],
|
101
|
-
'scale': [{ type: core_1.Input },],
|
102
|
-
'scaleMode': [{ type: core_1.Input },],
|
103
|
-
'viewMode': [{ type: core_1.Input },],
|
104
|
-
'pageMode': [{ type: core_1.Input },],
|
105
|
-
'persistSession': [{ type: core_1.Input },],
|
106
|
-
'parameterEditors': [{ type: core_1.Input },],
|
107
|
-
'authenticationToken': [{ type: core_1.Input },],
|
108
|
-
'printMode': [{ type: core_1.Input },],
|
109
|
-
'selector': [{ type: core_1.Input },],
|
110
|
-
'disabledButtonClass': [{ type: core_1.Input },],
|
111
|
-
'checkedButtonClass': [{ type: core_1.Input },],
|
112
|
-
'enableAccessibility': [{ type: core_1.Input },],
|
113
|
-
'searchMetadataOnDemand': [{ type: core_1.Input },],
|
114
|
-
'parametersAreaVisible': [{ type: core_1.Input },],
|
115
|
-
'documentMapVisible': [{ type: core_1.Input },],
|
116
|
-
'ready': [{ type: core_1.Input },],
|
117
|
-
'error': [{ type: core_1.Input },],
|
118
|
-
'parametersAreaPosition': [{ type: core_1.Input },],
|
119
|
-
'documentMapAreaPosition': [{ type: core_1.Input },],
|
120
|
-
'exportBegin': [{ type: core_1.Input },],
|
121
|
-
'exportEnd': [{ type: core_1.Input },],
|
122
|
-
'sendEmailBegin': [{ type: core_1.Input },],
|
123
|
-
'sendEmailEnd': [{ type: core_1.Input },],
|
124
|
-
'pageReady': [{ type: core_1.Input },],
|
125
|
-
'printBegin': [{ type: core_1.Input },],
|
126
|
-
'printEnd': [{ type: core_1.Input },],
|
127
|
-
'renderingBegin': [{ type: core_1.Input },],
|
128
|
-
'renderingEnd': [{ type: core_1.Input },],
|
129
|
-
'updateUi': [{ type: core_1.Input },],
|
130
|
-
'interactiveActionExecuting': [{ type: core_1.Input },],
|
131
|
-
'interactiveActionEnter': [{ type: core_1.Input },],
|
132
|
-
'interactiveActionLeave': [{ type: core_1.Input },],
|
133
|
-
'viewerToolTipOpening': [{ type: core_1.Input },],
|
134
|
-
'keepClientAlive': [{ type: core_1.Input },],
|
135
|
-
'container': [{ type: core_1.ViewChild, args: ['container',] },],
|
136
|
-
'containerStyle': [{ type: core_1.Input },],
|
137
|
-
};
|
85
|
+
TelerikReportViewerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
86
|
+
TelerikReportViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: TelerikReportViewerComponent, selector: "tr-viewer", inputs: { id: "id", serviceUrl: "serviceUrl", reportServer: "reportServer", templateUrl: "templateUrl", initialPageAreaImageUrl: "initialPageAreaImageUrl", reportSource: "reportSource", sendEmail: "sendEmail", parameters: "parameters", scale: "scale", scaleMode: "scaleMode", viewMode: "viewMode", pageMode: "pageMode", persistSession: "persistSession", parameterEditors: "parameterEditors", authenticationToken: "authenticationToken", printMode: "printMode", selector: "selector", disabledButtonClass: "disabledButtonClass", checkedButtonClass: "checkedButtonClass", enableAccessibility: "enableAccessibility", searchMetadataOnDemand: "searchMetadataOnDemand", parametersAreaVisible: "parametersAreaVisible", documentMapVisible: "documentMapVisible", ready: "ready", error: "error", parametersAreaPosition: "parametersAreaPosition", documentMapAreaPosition: "documentMapAreaPosition", exportBegin: "exportBegin", exportEnd: "exportEnd", sendEmailBegin: "sendEmailBegin", sendEmailEnd: "sendEmailEnd", pageReady: "pageReady", printBegin: "printBegin", printEnd: "printEnd", renderingBegin: "renderingBegin", renderingEnd: "renderingEnd", updateUi: "updateUi", interactiveActionExecuting: "interactiveActionExecuting", interactiveActionEnter: "interactiveActionEnter", interactiveActionLeave: "interactiveActionLeave", viewerToolTipOpening: "viewerToolTipOpening", keepClientAlive: "keepClientAlive", containerStyle: "containerStyle" }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: '<div [ngStyle]="containerStyle" [attr.id]="reportViewerID" #container>Loading Report Viewer...</div>', isInline: true, directives: [{ type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
138
87
|
return TelerikReportViewerComponent;
|
139
88
|
}());
|
140
89
|
exports.TelerikReportViewerComponent = TelerikReportViewerComponent;
|
90
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportViewerComponent, decorators: [{
|
91
|
+
type: core_1.Component,
|
92
|
+
args: [{ selector: 'tr-viewer', template: '<div [ngStyle]="containerStyle" [attr.id]="reportViewerID" #container>Loading Report Viewer...</div>', encapsulation: core_1.ViewEncapsulation.None, styles: [] }]
|
93
|
+
}], propDecorators: { id: [{
|
94
|
+
type: core_1.Input
|
95
|
+
}], serviceUrl: [{
|
96
|
+
type: core_1.Input
|
97
|
+
}], reportServer: [{
|
98
|
+
type: core_1.Input
|
99
|
+
}], templateUrl: [{
|
100
|
+
type: core_1.Input
|
101
|
+
}], initialPageAreaImageUrl: [{
|
102
|
+
type: core_1.Input
|
103
|
+
}], reportSource: [{
|
104
|
+
type: core_1.Input
|
105
|
+
}], sendEmail: [{
|
106
|
+
type: core_1.Input
|
107
|
+
}], parameters: [{
|
108
|
+
type: core_1.Input
|
109
|
+
}], scale: [{
|
110
|
+
type: core_1.Input
|
111
|
+
}], scaleMode: [{
|
112
|
+
type: core_1.Input
|
113
|
+
}], viewMode: [{
|
114
|
+
type: core_1.Input
|
115
|
+
}], pageMode: [{
|
116
|
+
type: core_1.Input
|
117
|
+
}], persistSession: [{
|
118
|
+
type: core_1.Input
|
119
|
+
}], parameterEditors: [{
|
120
|
+
type: core_1.Input
|
121
|
+
}], authenticationToken: [{
|
122
|
+
type: core_1.Input
|
123
|
+
}], printMode: [{
|
124
|
+
type: core_1.Input
|
125
|
+
}], selector: [{
|
126
|
+
type: core_1.Input
|
127
|
+
}], disabledButtonClass: [{
|
128
|
+
type: core_1.Input
|
129
|
+
}], checkedButtonClass: [{
|
130
|
+
type: core_1.Input
|
131
|
+
}], enableAccessibility: [{
|
132
|
+
type: core_1.Input
|
133
|
+
}], searchMetadataOnDemand: [{
|
134
|
+
type: core_1.Input
|
135
|
+
}], parametersAreaVisible: [{
|
136
|
+
type: core_1.Input
|
137
|
+
}], documentMapVisible: [{
|
138
|
+
type: core_1.Input
|
139
|
+
}], ready: [{
|
140
|
+
type: core_1.Input
|
141
|
+
}], error: [{
|
142
|
+
type: core_1.Input
|
143
|
+
}], parametersAreaPosition: [{
|
144
|
+
type: core_1.Input
|
145
|
+
}], documentMapAreaPosition: [{
|
146
|
+
type: core_1.Input
|
147
|
+
}], exportBegin: [{
|
148
|
+
type: core_1.Input
|
149
|
+
}], exportEnd: [{
|
150
|
+
type: core_1.Input
|
151
|
+
}], sendEmailBegin: [{
|
152
|
+
type: core_1.Input
|
153
|
+
}], sendEmailEnd: [{
|
154
|
+
type: core_1.Input
|
155
|
+
}], pageReady: [{
|
156
|
+
type: core_1.Input
|
157
|
+
}], printBegin: [{
|
158
|
+
type: core_1.Input
|
159
|
+
}], printEnd: [{
|
160
|
+
type: core_1.Input
|
161
|
+
}], renderingBegin: [{
|
162
|
+
type: core_1.Input
|
163
|
+
}], renderingEnd: [{
|
164
|
+
type: core_1.Input
|
165
|
+
}], updateUi: [{
|
166
|
+
type: core_1.Input
|
167
|
+
}], interactiveActionExecuting: [{
|
168
|
+
type: core_1.Input
|
169
|
+
}], interactiveActionEnter: [{
|
170
|
+
type: core_1.Input
|
171
|
+
}], interactiveActionLeave: [{
|
172
|
+
type: core_1.Input
|
173
|
+
}], viewerToolTipOpening: [{
|
174
|
+
type: core_1.Input
|
175
|
+
}], keepClientAlive: [{
|
176
|
+
type: core_1.Input
|
177
|
+
}], container: [{
|
178
|
+
type: core_1.ViewChild,
|
179
|
+
args: ['container']
|
180
|
+
}], containerStyle: [{
|
181
|
+
type: core_1.Input
|
182
|
+
}] } });
|
@@ -1,3 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./telerik-report-viewer.component";
|
3
|
+
import * as i2 from "@angular/common";
|
1
4
|
/**
|
2
5
|
* Represents the [NgModule](https://angular.io/docs/ts/latest/guide/ngmodule.html)
|
3
6
|
* definition for the Telerik Report Viewer component.
|
@@ -24,4 +27,7 @@
|
|
24
27
|
* ```
|
25
28
|
*/
|
26
29
|
export declare class TelerikReportingModule {
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TelerikReportingModule, never>;
|
31
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TelerikReportingModule, [typeof i1.TelerikReportViewerComponent], [typeof i2.CommonModule], [typeof i1.TelerikReportViewerComponent]>;
|
32
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TelerikReportingModule>;
|
27
33
|
}
|
@@ -1,8 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TelerikReportingModule = void 0;
|
3
4
|
var core_1 = require("@angular/core");
|
4
5
|
var common_1 = require("@angular/common");
|
5
6
|
var telerik_report_viewer_component_1 = require("./telerik-report-viewer.component");
|
7
|
+
var i0 = require("@angular/core");
|
6
8
|
/**
|
7
9
|
* Represents the [NgModule](https://angular.io/docs/ts/latest/guide/ngmodule.html)
|
8
10
|
* definition for the Telerik Report Viewer component.
|
@@ -31,15 +33,17 @@ var telerik_report_viewer_component_1 = require("./telerik-report-viewer.compone
|
|
31
33
|
var TelerikReportingModule = /** @class */ (function () {
|
32
34
|
function TelerikReportingModule() {
|
33
35
|
}
|
34
|
-
TelerikReportingModule
|
35
|
-
|
36
|
-
|
37
|
-
exports: [telerik_report_viewer_component_1.TelerikReportViewerComponent],
|
38
|
-
declarations: [telerik_report_viewer_component_1.TelerikReportViewerComponent],
|
39
|
-
},] },
|
40
|
-
];
|
41
|
-
/** @nocollapse */
|
42
|
-
TelerikReportingModule.ctorParameters = function () { return []; };
|
36
|
+
TelerikReportingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
37
|
+
TelerikReportingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, declarations: [telerik_report_viewer_component_1.TelerikReportViewerComponent], imports: [common_1.CommonModule], exports: [telerik_report_viewer_component_1.TelerikReportViewerComponent] });
|
38
|
+
TelerikReportingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, imports: [[common_1.CommonModule]] });
|
43
39
|
return TelerikReportingModule;
|
44
40
|
}());
|
45
41
|
exports.TelerikReportingModule = TelerikReportingModule;
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, decorators: [{
|
43
|
+
type: core_1.NgModule,
|
44
|
+
args: [{
|
45
|
+
imports: [common_1.CommonModule],
|
46
|
+
exports: [telerik_report_viewer_component_1.TelerikReportViewerComponent],
|
47
|
+
declarations: [telerik_report_viewer_component_1.TelerikReportViewerComponent],
|
48
|
+
}]
|
49
|
+
}] });
|
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
|
3
3
|
/*
|
4
|
-
* TelerikReporting v17.
|
4
|
+
* TelerikReporting v17.1.23.607 (https://www.telerik.com/products/reporting.aspx)
|
5
5
|
* Copyright 2023 Progress Software EAD. All rights reserved.
|
6
6
|
*
|
7
7
|
* Telerik Reporting commercial licenses may be obtained at
|
@@ -439,6 +439,50 @@ var telerikReportViewer = {};
|
|
439
439
|
}();
|
440
440
|
})(telerikReportViewer, window.jQuery, window, document);
|
441
441
|
|
442
|
+
(function(trv, $, window, document, undefined) {
|
443
|
+
"use strict";
|
444
|
+
function KendoWidgetFixer() {
|
445
|
+
this.fixSplitter = function(splitter) {};
|
446
|
+
}
|
447
|
+
KendoWidgetFixer.prototype.constructor = KendoWidgetFixer;
|
448
|
+
function KendoWidgetFixer314() {
|
449
|
+
KendoWidgetFixer.call(this);
|
450
|
+
this.fixSplitter = function(splitter, direction) {
|
451
|
+
var splitterIcons = splitter.wrapper.find(".k-splitbar").children();
|
452
|
+
splitterIcons.each(function() {
|
453
|
+
var $element = $(this);
|
454
|
+
if ($element.hasClass("k-icon")) return;
|
455
|
+
$element.addClass("k-icon");
|
456
|
+
if (!$element.hasClass("k-resize-handle")) {
|
457
|
+
$element.addClass("k-i-arrow-60-" + splitterArrowDirection(direction));
|
458
|
+
$element.find("span.k-icon").hide();
|
459
|
+
}
|
460
|
+
});
|
461
|
+
};
|
462
|
+
}
|
463
|
+
KendoWidgetFixer314.prototype = Object.create(KendoWidgetFixer.prototype);
|
464
|
+
KendoWidgetFixer314.prototype.constructor = KendoWidgetFixer314;
|
465
|
+
function splitterArrowDirection(direction) {
|
466
|
+
switch (direction) {
|
467
|
+
case "TOP":
|
468
|
+
return "up";
|
469
|
+
|
470
|
+
case "BOTTOM":
|
471
|
+
return "down";
|
472
|
+
|
473
|
+
case "LEFT":
|
474
|
+
return "left";
|
475
|
+
|
476
|
+
default:
|
477
|
+
return "right";
|
478
|
+
}
|
479
|
+
}
|
480
|
+
function createKendoWidgetFixer() {
|
481
|
+
trv.kendoUtils = window.kendo.version >= "2023.1.314" ? new KendoWidgetFixer314() : new KendoWidgetFixer();
|
482
|
+
}
|
483
|
+
trv.createKendoWidgetFixer = createKendoWidgetFixer;
|
484
|
+
})(telerikReportViewer, window.jQuery, window, document);
|
485
|
+
|
442
486
|
(function(trv) {
|
443
487
|
"use strict";
|
444
488
|
var sr = {
|
@@ -4016,7 +4060,8 @@ var telerikReportViewer = {};
|
|
4016
4060
|
function positionToolTip(toolTip, e) {
|
4017
4061
|
var x = e.pageX;
|
4018
4062
|
var y = e.pageY;
|
4019
|
-
toolTip.popup.element.
|
4063
|
+
var container = toolTip.popup.element.closest("[role=region]");
|
4064
|
+
container.css({
|
4020
4065
|
left: x + 10,
|
4021
4066
|
top: y + 5
|
4022
4067
|
});
|
@@ -8134,7 +8179,7 @@ var telerikReportViewer = {};
|
|
8134
8179
|
if (!validateOptions(options)) {
|
8135
8180
|
return;
|
8136
8181
|
}
|
8137
|
-
var version = "17.
|
8182
|
+
var version = "17.1.23.606";
|
8138
8183
|
options = utils.extend({}, getDefaultOptions(svcApiUrl, version), options);
|
8139
8184
|
settings = new ReportViewerSettings(persistanceKey, options.persistSession ? window.sessionStorage : new MemStorage(), {
|
8140
8185
|
scale: options.scale,
|
@@ -8404,6 +8449,9 @@ var telerikReportViewer = {};
|
|
8404
8449
|
},
|
8405
8450
|
collapse: function(e) {
|
8406
8451
|
setSplitterPaneVisibility(e.pane, false);
|
8452
|
+
},
|
8453
|
+
resize: function(e) {
|
8454
|
+
trv.kendoUtils.fixSplitter(e.sender, options.documentMapAreaPosition);
|
8407
8455
|
}
|
8408
8456
|
}).data("kendoSplitter");
|
8409
8457
|
} catch (e) {
|
@@ -8419,6 +8467,9 @@ var telerikReportViewer = {};
|
|
8419
8467
|
},
|
8420
8468
|
collapse: function(e) {
|
8421
8469
|
setSplitterPaneVisibility(e.pane, false);
|
8470
|
+
},
|
8471
|
+
resize: function(e) {
|
8472
|
+
trv.kendoUtils.fixSplitter(e.sender, options.parametersAreaPosition);
|
8422
8473
|
}
|
8423
8474
|
}).data("kendoSplitter");
|
8424
8475
|
} catch (e) {
|
@@ -8597,6 +8648,8 @@ var telerikReportViewer = {};
|
|
8597
8648
|
}
|
8598
8649
|
function main(version) {
|
8599
8650
|
ensureKendo(version).then(function() {
|
8651
|
+
trv.createKendoWidgetFixer();
|
8652
|
+
}).then(function() {
|
8600
8653
|
viewer.authenticationToken(options.authenticationToken);
|
8601
8654
|
controller.getServiceVersion().catch(function() {
|
8602
8655
|
$placeholder.text(utils.stringFormat(sr.errorServiceUrl, [ utils.escapeHtml(svcApiUrl) ]));
|
@@ -8640,4 +8693,4 @@ module.exports = {
|
|
8640
8693
|
ReportViewer: telerikReportViewer.ReportViewer
|
8641
8694
|
};
|
8642
8695
|
|
8643
|
-
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
8696
|
+
/* DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM A6D0163607A75896B8B9F1F791A87E69 */
|
@@ -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-17.
|
9
|
-
<link href="{service}resources/styles/telerikReportViewer-17.
|
8
|
+
<link href="{service}resources/font/fonticons-17.1.23.607.css/" rel="stylesheet" />
|
9
|
+
<link href="{service}resources/styles/telerikReportViewer-17.1.23.607.css/" rel="stylesheet" />
|
10
10
|
|
11
11
|
</head>
|
12
12
|
<body>
|
@@ -330,4 +330,4 @@
|
|
330
330
|
|
331
331
|
</body>
|
332
332
|
</html>
|
333
|
-
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
333
|
+
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM 21596E78350815A6D0C2199C504CCB64 -->
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { AfterViewInit, OnDestroy } from '@angular/core';
|
2
2
|
import '../dependencies/initExtDeps';
|
3
|
+
import * as i0 from "@angular/core";
|
3
4
|
export declare class TelerikReportViewerComponent implements AfterViewInit, OnDestroy {
|
4
5
|
containerId: string;
|
5
6
|
id: string;
|
@@ -71,4 +72,6 @@ export declare class TelerikReportViewerComponent implements AfterViewInit, OnDe
|
|
71
72
|
setPageMode(psm: string): any;
|
72
73
|
clearReportSource(): any;
|
73
74
|
dispose(): void;
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TelerikReportViewerComponent, never>;
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TelerikReportViewerComponent, "tr-viewer", never, { "id": "id"; "serviceUrl": "serviceUrl"; "reportServer": "reportServer"; "templateUrl": "templateUrl"; "initialPageAreaImageUrl": "initialPageAreaImageUrl"; "reportSource": "reportSource"; "sendEmail": "sendEmail"; "parameters": "parameters"; "scale": "scale"; "scaleMode": "scaleMode"; "viewMode": "viewMode"; "pageMode": "pageMode"; "persistSession": "persistSession"; "parameterEditors": "parameterEditors"; "authenticationToken": "authenticationToken"; "printMode": "printMode"; "selector": "selector"; "disabledButtonClass": "disabledButtonClass"; "checkedButtonClass": "checkedButtonClass"; "enableAccessibility": "enableAccessibility"; "searchMetadataOnDemand": "searchMetadataOnDemand"; "parametersAreaVisible": "parametersAreaVisible"; "documentMapVisible": "documentMapVisible"; "ready": "ready"; "error": "error"; "parametersAreaPosition": "parametersAreaPosition"; "documentMapAreaPosition": "documentMapAreaPosition"; "exportBegin": "exportBegin"; "exportEnd": "exportEnd"; "sendEmailBegin": "sendEmailBegin"; "sendEmailEnd": "sendEmailEnd"; "pageReady": "pageReady"; "printBegin": "printBegin"; "printEnd": "printEnd"; "renderingBegin": "renderingBegin"; "renderingEnd": "renderingEnd"; "updateUi": "updateUi"; "interactiveActionExecuting": "interactiveActionExecuting"; "interactiveActionEnter": "interactiveActionEnter"; "interactiveActionLeave": "interactiveActionLeave"; "viewerToolTipOpening": "viewerToolTipOpening"; "keepClientAlive": "keepClientAlive"; "containerStyle": "containerStyle"; }, {}, never, never>;
|
74
77
|
}
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { Component, Input, ViewEncapsulation, ViewChild } from '@angular/core';
|
2
2
|
import '../dependencies/initExtDeps';
|
3
3
|
import { ReportViewer } from '../dependencies/telerikReportViewer';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
import * as i1 from "@angular/common";
|
4
6
|
var TelerikReportViewerComponent = /** @class */ (function () {
|
5
7
|
function TelerikReportViewerComponent() {
|
6
8
|
}
|
@@ -77,62 +79,101 @@ var TelerikReportViewerComponent = /** @class */ (function () {
|
|
77
79
|
TelerikReportViewerComponent.prototype.setPageMode = function (psm) { return this.viewerObject.pageMode(psm); };
|
78
80
|
TelerikReportViewerComponent.prototype.clearReportSource = function () { return this.viewerObject.clearReportSource(); };
|
79
81
|
TelerikReportViewerComponent.prototype.dispose = function () { this.viewerObject.dispose(); };
|
80
|
-
TelerikReportViewerComponent
|
81
|
-
|
82
|
-
selector: 'tr-viewer',
|
83
|
-
template: '<div [ngStyle]="containerStyle" [attr.id]="reportViewerID" #container>Loading Report Viewer...</div>',
|
84
|
-
styleUrls: [],
|
85
|
-
encapsulation: ViewEncapsulation.None,
|
86
|
-
},] },
|
87
|
-
];
|
88
|
-
/** @nocollapse */
|
89
|
-
TelerikReportViewerComponent.ctorParameters = function () { return []; };
|
90
|
-
TelerikReportViewerComponent.propDecorators = {
|
91
|
-
'id': [{ type: Input },],
|
92
|
-
'serviceUrl': [{ type: Input },],
|
93
|
-
'reportServer': [{ type: Input },],
|
94
|
-
'templateUrl': [{ type: Input },],
|
95
|
-
'initialPageAreaImageUrl': [{ type: Input },],
|
96
|
-
'reportSource': [{ type: Input },],
|
97
|
-
'sendEmail': [{ type: Input },],
|
98
|
-
'parameters': [{ type: Input },],
|
99
|
-
'scale': [{ type: Input },],
|
100
|
-
'scaleMode': [{ type: Input },],
|
101
|
-
'viewMode': [{ type: Input },],
|
102
|
-
'pageMode': [{ type: Input },],
|
103
|
-
'persistSession': [{ type: Input },],
|
104
|
-
'parameterEditors': [{ type: Input },],
|
105
|
-
'authenticationToken': [{ type: Input },],
|
106
|
-
'printMode': [{ type: Input },],
|
107
|
-
'selector': [{ type: Input },],
|
108
|
-
'disabledButtonClass': [{ type: Input },],
|
109
|
-
'checkedButtonClass': [{ type: Input },],
|
110
|
-
'enableAccessibility': [{ type: Input },],
|
111
|
-
'searchMetadataOnDemand': [{ type: Input },],
|
112
|
-
'parametersAreaVisible': [{ type: Input },],
|
113
|
-
'documentMapVisible': [{ type: Input },],
|
114
|
-
'ready': [{ type: Input },],
|
115
|
-
'error': [{ type: Input },],
|
116
|
-
'parametersAreaPosition': [{ type: Input },],
|
117
|
-
'documentMapAreaPosition': [{ type: Input },],
|
118
|
-
'exportBegin': [{ type: Input },],
|
119
|
-
'exportEnd': [{ type: Input },],
|
120
|
-
'sendEmailBegin': [{ type: Input },],
|
121
|
-
'sendEmailEnd': [{ type: Input },],
|
122
|
-
'pageReady': [{ type: Input },],
|
123
|
-
'printBegin': [{ type: Input },],
|
124
|
-
'printEnd': [{ type: Input },],
|
125
|
-
'renderingBegin': [{ type: Input },],
|
126
|
-
'renderingEnd': [{ type: Input },],
|
127
|
-
'updateUi': [{ type: Input },],
|
128
|
-
'interactiveActionExecuting': [{ type: Input },],
|
129
|
-
'interactiveActionEnter': [{ type: Input },],
|
130
|
-
'interactiveActionLeave': [{ type: Input },],
|
131
|
-
'viewerToolTipOpening': [{ type: Input },],
|
132
|
-
'keepClientAlive': [{ type: Input },],
|
133
|
-
'container': [{ type: ViewChild, args: ['container',] },],
|
134
|
-
'containerStyle': [{ type: Input },],
|
135
|
-
};
|
82
|
+
TelerikReportViewerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
83
|
+
TelerikReportViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: TelerikReportViewerComponent, selector: "tr-viewer", inputs: { id: "id", serviceUrl: "serviceUrl", reportServer: "reportServer", templateUrl: "templateUrl", initialPageAreaImageUrl: "initialPageAreaImageUrl", reportSource: "reportSource", sendEmail: "sendEmail", parameters: "parameters", scale: "scale", scaleMode: "scaleMode", viewMode: "viewMode", pageMode: "pageMode", persistSession: "persistSession", parameterEditors: "parameterEditors", authenticationToken: "authenticationToken", printMode: "printMode", selector: "selector", disabledButtonClass: "disabledButtonClass", checkedButtonClass: "checkedButtonClass", enableAccessibility: "enableAccessibility", searchMetadataOnDemand: "searchMetadataOnDemand", parametersAreaVisible: "parametersAreaVisible", documentMapVisible: "documentMapVisible", ready: "ready", error: "error", parametersAreaPosition: "parametersAreaPosition", documentMapAreaPosition: "documentMapAreaPosition", exportBegin: "exportBegin", exportEnd: "exportEnd", sendEmailBegin: "sendEmailBegin", sendEmailEnd: "sendEmailEnd", pageReady: "pageReady", printBegin: "printBegin", printEnd: "printEnd", renderingBegin: "renderingBegin", renderingEnd: "renderingEnd", updateUi: "updateUi", interactiveActionExecuting: "interactiveActionExecuting", interactiveActionEnter: "interactiveActionEnter", interactiveActionLeave: "interactiveActionLeave", viewerToolTipOpening: "viewerToolTipOpening", keepClientAlive: "keepClientAlive", containerStyle: "containerStyle" }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: '<div [ngStyle]="containerStyle" [attr.id]="reportViewerID" #container>Loading Report Viewer...</div>', isInline: true, directives: [{ type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
136
84
|
return TelerikReportViewerComponent;
|
137
85
|
}());
|
138
86
|
export { TelerikReportViewerComponent };
|
87
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportViewerComponent, decorators: [{
|
88
|
+
type: Component,
|
89
|
+
args: [{ selector: 'tr-viewer', template: '<div [ngStyle]="containerStyle" [attr.id]="reportViewerID" #container>Loading Report Viewer...</div>', encapsulation: ViewEncapsulation.None, styles: [] }]
|
90
|
+
}], propDecorators: { id: [{
|
91
|
+
type: Input
|
92
|
+
}], serviceUrl: [{
|
93
|
+
type: Input
|
94
|
+
}], reportServer: [{
|
95
|
+
type: Input
|
96
|
+
}], templateUrl: [{
|
97
|
+
type: Input
|
98
|
+
}], initialPageAreaImageUrl: [{
|
99
|
+
type: Input
|
100
|
+
}], reportSource: [{
|
101
|
+
type: Input
|
102
|
+
}], sendEmail: [{
|
103
|
+
type: Input
|
104
|
+
}], parameters: [{
|
105
|
+
type: Input
|
106
|
+
}], scale: [{
|
107
|
+
type: Input
|
108
|
+
}], scaleMode: [{
|
109
|
+
type: Input
|
110
|
+
}], viewMode: [{
|
111
|
+
type: Input
|
112
|
+
}], pageMode: [{
|
113
|
+
type: Input
|
114
|
+
}], persistSession: [{
|
115
|
+
type: Input
|
116
|
+
}], parameterEditors: [{
|
117
|
+
type: Input
|
118
|
+
}], authenticationToken: [{
|
119
|
+
type: Input
|
120
|
+
}], printMode: [{
|
121
|
+
type: Input
|
122
|
+
}], selector: [{
|
123
|
+
type: Input
|
124
|
+
}], disabledButtonClass: [{
|
125
|
+
type: Input
|
126
|
+
}], checkedButtonClass: [{
|
127
|
+
type: Input
|
128
|
+
}], enableAccessibility: [{
|
129
|
+
type: Input
|
130
|
+
}], searchMetadataOnDemand: [{
|
131
|
+
type: Input
|
132
|
+
}], parametersAreaVisible: [{
|
133
|
+
type: Input
|
134
|
+
}], documentMapVisible: [{
|
135
|
+
type: Input
|
136
|
+
}], ready: [{
|
137
|
+
type: Input
|
138
|
+
}], error: [{
|
139
|
+
type: Input
|
140
|
+
}], parametersAreaPosition: [{
|
141
|
+
type: Input
|
142
|
+
}], documentMapAreaPosition: [{
|
143
|
+
type: Input
|
144
|
+
}], exportBegin: [{
|
145
|
+
type: Input
|
146
|
+
}], exportEnd: [{
|
147
|
+
type: Input
|
148
|
+
}], sendEmailBegin: [{
|
149
|
+
type: Input
|
150
|
+
}], sendEmailEnd: [{
|
151
|
+
type: Input
|
152
|
+
}], pageReady: [{
|
153
|
+
type: Input
|
154
|
+
}], printBegin: [{
|
155
|
+
type: Input
|
156
|
+
}], printEnd: [{
|
157
|
+
type: Input
|
158
|
+
}], renderingBegin: [{
|
159
|
+
type: Input
|
160
|
+
}], renderingEnd: [{
|
161
|
+
type: Input
|
162
|
+
}], updateUi: [{
|
163
|
+
type: Input
|
164
|
+
}], interactiveActionExecuting: [{
|
165
|
+
type: Input
|
166
|
+
}], interactiveActionEnter: [{
|
167
|
+
type: Input
|
168
|
+
}], interactiveActionLeave: [{
|
169
|
+
type: Input
|
170
|
+
}], viewerToolTipOpening: [{
|
171
|
+
type: Input
|
172
|
+
}], keepClientAlive: [{
|
173
|
+
type: Input
|
174
|
+
}], container: [{
|
175
|
+
type: ViewChild,
|
176
|
+
args: ['container']
|
177
|
+
}], containerStyle: [{
|
178
|
+
type: Input
|
179
|
+
}] } });
|
@@ -1,3 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./telerik-report-viewer.component";
|
3
|
+
import * as i2 from "@angular/common";
|
1
4
|
/**
|
2
5
|
* Represents the [NgModule](https://angular.io/docs/ts/latest/guide/ngmodule.html)
|
3
6
|
* definition for the Telerik Report Viewer component.
|
@@ -24,4 +27,7 @@
|
|
24
27
|
* ```
|
25
28
|
*/
|
26
29
|
export declare class TelerikReportingModule {
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TelerikReportingModule, never>;
|
31
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TelerikReportingModule, [typeof i1.TelerikReportViewerComponent], [typeof i2.CommonModule], [typeof i1.TelerikReportViewerComponent]>;
|
32
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TelerikReportingModule>;
|
27
33
|
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { NgModule } from '@angular/core';
|
2
2
|
import { CommonModule } from '@angular/common';
|
3
3
|
import { TelerikReportViewerComponent } from './telerik-report-viewer.component';
|
4
|
+
import * as i0 from "@angular/core";
|
4
5
|
/**
|
5
6
|
* Represents the [NgModule](https://angular.io/docs/ts/latest/guide/ngmodule.html)
|
6
7
|
* definition for the Telerik Report Viewer component.
|
@@ -29,15 +30,17 @@ import { TelerikReportViewerComponent } from './telerik-report-viewer.component'
|
|
29
30
|
var TelerikReportingModule = /** @class */ (function () {
|
30
31
|
function TelerikReportingModule() {
|
31
32
|
}
|
32
|
-
TelerikReportingModule
|
33
|
-
|
34
|
-
|
35
|
-
exports: [TelerikReportViewerComponent],
|
36
|
-
declarations: [TelerikReportViewerComponent],
|
37
|
-
},] },
|
38
|
-
];
|
39
|
-
/** @nocollapse */
|
40
|
-
TelerikReportingModule.ctorParameters = function () { return []; };
|
33
|
+
TelerikReportingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
34
|
+
TelerikReportingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, declarations: [TelerikReportViewerComponent], imports: [CommonModule], exports: [TelerikReportViewerComponent] });
|
35
|
+
TelerikReportingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, imports: [[CommonModule]] });
|
41
36
|
return TelerikReportingModule;
|
42
37
|
}());
|
43
38
|
export { TelerikReportingModule };
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TelerikReportingModule, decorators: [{
|
40
|
+
type: NgModule,
|
41
|
+
args: [{
|
42
|
+
imports: [CommonModule],
|
43
|
+
exports: [TelerikReportViewerComponent],
|
44
|
+
declarations: [TelerikReportViewerComponent],
|
45
|
+
}]
|
46
|
+
}] });
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/telerik-angular-report-viewer",
|
3
3
|
"description": "Progress® Telerik® Report Viewer for Angular",
|
4
|
-
"version": "
|
4
|
+
"version": "19.23.606",
|
5
5
|
"author": "Progress® Telerik® Reporting",
|
6
6
|
"homepage": "https://www.telerik.com/reporting",
|
7
7
|
"license": "https://www.telerik.com/purchase/license-agreement/reporting-dlw-s",
|
@@ -36,33 +36,30 @@
|
|
36
36
|
"dist/"
|
37
37
|
],
|
38
38
|
"peerDependencies": {
|
39
|
-
"@angular/common": ">=
|
40
|
-
"@angular/core": ">=
|
41
|
-
"
|
42
|
-
"rxjs": ">=5.0.1"
|
39
|
+
"@angular/common": ">=13.0.0",
|
40
|
+
"@angular/core": ">=13.0.0",
|
41
|
+
"rxjs": ">=6.5.0"
|
43
42
|
},
|
44
43
|
"devDependencies": {
|
45
|
-
"@angular/animations": "^
|
46
|
-
"@angular/common": "^
|
47
|
-
"@angular/compiler": "^
|
48
|
-
"@angular/compiler-cli": "^
|
49
|
-
"@angular/core": "^
|
50
|
-
"@angular/platform-browser": "^
|
51
|
-
"@angular/platform-browser-dynamic": "^
|
52
|
-
"@angular/platform-server": "^
|
44
|
+
"@angular/animations": "^13.0.0",
|
45
|
+
"@angular/common": "^13.0.0",
|
46
|
+
"@angular/compiler": "^13.0.0",
|
47
|
+
"@angular/compiler-cli": "^13.0.0",
|
48
|
+
"@angular/core": "^13.0.0",
|
49
|
+
"@angular/platform-browser": "^13.0.0",
|
50
|
+
"@angular/platform-browser-dynamic": "^13.0.0",
|
51
|
+
"@angular/platform-server": "^13.0.0",
|
53
52
|
"@types/core-js": "0.9.35",
|
54
53
|
"@types/jasmine": "2.2.34",
|
55
|
-
"@types/node": "
|
54
|
+
"@types/node": "16.11.7",
|
56
55
|
"@types/zone.js": "0.0.27",
|
57
|
-
"
|
58
|
-
"core-js": "^2.2.2",
|
56
|
+
"core-js": "^3.23.3",
|
59
57
|
"del": "^2.2.2",
|
60
58
|
"gulp": "^4.0.0",
|
61
|
-
"jquery": "^3.2.1",
|
62
59
|
"rimraf": "^2.6.1",
|
63
|
-
"rxjs": "^5.0.
|
64
|
-
"
|
65
|
-
"typescript": "
|
66
|
-
"zone.js": "^0.
|
60
|
+
"rxjs": "^6.5.3 || ^7.0.0",
|
61
|
+
"eslint": "~8.12.0",
|
62
|
+
"typescript": "~4.6.2",
|
63
|
+
"zone.js": "^0.11.4"
|
67
64
|
}
|
68
65
|
}
|
@@ -1 +0,0 @@
|
|
1
|
-
[{"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./telerik-reporting.module","export":["TelerikReportingModule"]},{"from":"./telerik-report-viewer.component","export":["TelerikReportViewerComponent"]}]},{"__symbolic":"module","version":1,"metadata":{},"exports":[{"from":"./telerik-reporting.module","export":["TelerikReportingModule"]},{"from":"./telerik-report-viewer.component","export":["TelerikReportViewerComponent"]}]}]
|
@@ -1 +0,0 @@
|
|
1
|
-
[{"__symbolic":"module","version":3,"metadata":{"TelerikReportViewerComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"tr-viewer","template":"<div [ngStyle]=\"containerStyle\" [attr.id]=\"reportViewerID\" #container>Loading Report Viewer...</div>","styleUrls":[],"encapsulation":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewEncapsulation"},"member":"None"}}]}],"members":{"id":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"serviceUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportServer":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"templateUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"initialPageAreaImageUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportSource":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmail":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameters":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scale":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scaleMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"persistSession":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameterEditors":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"authenticationToken":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"selector":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"disabledButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"checkedButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"enableAccessibility":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"searchMetadataOnDemand":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ready":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"error":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageReady":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"updateUi":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionExecuting":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionEnter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionLeave":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewerToolTipOpening":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"keepClientAlive":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"container":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild"},"arguments":["container"]}]}],"containerStyle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"refreshReport":[{"__symbolic":"method"}],"getReportSource":[{"__symbolic":"method"}],"setReportSource":[{"__symbolic":"method"}],"getViewMode":[{"__symbolic":"method"}],"setViewMode":[{"__symbolic":"method"}],"getScale":[{"__symbolic":"method"}],"setScale":[{"__symbolic":"method"}],"pageCount":[{"__symbolic":"method"}],"currentPage":[{"__symbolic":"method"}],"setAuthenticationToken":[{"__symbolic":"method"}],"getAccessibilityKeyMap":[{"__symbolic":"method"}],"setAccessibilityKeyMap":[{"__symbolic":"method"}],"bind":[{"__symbolic":"method"}],"unbind":[{"__symbolic":"method"}],"unbindAll":[{"__symbolic":"method"}],"getPageMode":[{"__symbolic":"method"}],"setPageMode":[{"__symbolic":"method"}],"clearReportSource":[{"__symbolic":"method"}],"dispose":[{"__symbolic":"method"}]}}}},{"__symbolic":"module","version":1,"metadata":{"TelerikReportViewerComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"tr-viewer","template":"<div [ngStyle]=\"containerStyle\" [attr.id]=\"reportViewerID\" #container>Loading Report Viewer...</div>","styleUrls":[],"encapsulation":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewEncapsulation"},"member":"None"}}]}],"members":{"id":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"serviceUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportServer":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"templateUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"initialPageAreaImageUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportSource":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmail":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameters":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scale":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scaleMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"persistSession":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameterEditors":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"authenticationToken":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"selector":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"disabledButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"checkedButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"enableAccessibility":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"searchMetadataOnDemand":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ready":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"error":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageReady":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"updateUi":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionExecuting":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionEnter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionLeave":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewerToolTipOpening":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"keepClientAlive":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"container":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild"},"arguments":["container"]}]}],"containerStyle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"refreshReport":[{"__symbolic":"method"}],"getReportSource":[{"__symbolic":"method"}],"setReportSource":[{"__symbolic":"method"}],"getViewMode":[{"__symbolic":"method"}],"setViewMode":[{"__symbolic":"method"}],"getScale":[{"__symbolic":"method"}],"setScale":[{"__symbolic":"method"}],"pageCount":[{"__symbolic":"method"}],"currentPage":[{"__symbolic":"method"}],"setAuthenticationToken":[{"__symbolic":"method"}],"getAccessibilityKeyMap":[{"__symbolic":"method"}],"setAccessibilityKeyMap":[{"__symbolic":"method"}],"bind":[{"__symbolic":"method"}],"unbind":[{"__symbolic":"method"}],"unbindAll":[{"__symbolic":"method"}],"getPageMode":[{"__symbolic":"method"}],"setPageMode":[{"__symbolic":"method"}],"clearReportSource":[{"__symbolic":"method"}],"dispose":[{"__symbolic":"method"}]}}}}]
|
@@ -1 +0,0 @@
|
|
1
|
-
[{"__symbolic":"module","version":3,"metadata":{"TelerikReportingModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"exports":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}],"declarations":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"TelerikReportingModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"exports":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}],"declarations":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}]}]}]}}}]
|
@@ -1 +0,0 @@
|
|
1
|
-
[{"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./telerik-reporting.module","export":["TelerikReportingModule"]},{"from":"./telerik-report-viewer.component","export":["TelerikReportViewerComponent"]}]},{"__symbolic":"module","version":1,"metadata":{},"exports":[{"from":"./telerik-reporting.module","export":["TelerikReportingModule"]},{"from":"./telerik-report-viewer.component","export":["TelerikReportViewerComponent"]}]}]
|
@@ -1 +0,0 @@
|
|
1
|
-
[{"__symbolic":"module","version":3,"metadata":{"TelerikReportViewerComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"tr-viewer","template":"<div [ngStyle]=\"containerStyle\" [attr.id]=\"reportViewerID\" #container>Loading Report Viewer...</div>","styleUrls":[],"encapsulation":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewEncapsulation"},"member":"None"}}]}],"members":{"id":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"serviceUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportServer":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"templateUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"initialPageAreaImageUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportSource":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmail":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameters":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scale":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scaleMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"persistSession":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameterEditors":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"authenticationToken":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"selector":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"disabledButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"checkedButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"enableAccessibility":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"searchMetadataOnDemand":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ready":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"error":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageReady":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"updateUi":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionExecuting":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionEnter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionLeave":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewerToolTipOpening":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"keepClientAlive":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"container":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild"},"arguments":["container"]}]}],"containerStyle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"refreshReport":[{"__symbolic":"method"}],"getReportSource":[{"__symbolic":"method"}],"setReportSource":[{"__symbolic":"method"}],"getViewMode":[{"__symbolic":"method"}],"setViewMode":[{"__symbolic":"method"}],"getScale":[{"__symbolic":"method"}],"setScale":[{"__symbolic":"method"}],"pageCount":[{"__symbolic":"method"}],"currentPage":[{"__symbolic":"method"}],"setAuthenticationToken":[{"__symbolic":"method"}],"getAccessibilityKeyMap":[{"__symbolic":"method"}],"setAccessibilityKeyMap":[{"__symbolic":"method"}],"bind":[{"__symbolic":"method"}],"unbind":[{"__symbolic":"method"}],"unbindAll":[{"__symbolic":"method"}],"getPageMode":[{"__symbolic":"method"}],"setPageMode":[{"__symbolic":"method"}],"clearReportSource":[{"__symbolic":"method"}],"dispose":[{"__symbolic":"method"}]}}}},{"__symbolic":"module","version":1,"metadata":{"TelerikReportViewerComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"tr-viewer","template":"<div [ngStyle]=\"containerStyle\" [attr.id]=\"reportViewerID\" #container>Loading Report Viewer...</div>","styleUrls":[],"encapsulation":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewEncapsulation"},"member":"None"}}]}],"members":{"id":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"serviceUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportServer":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"templateUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"initialPageAreaImageUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"reportSource":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmail":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameters":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scale":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"scaleMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"persistSession":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parameterEditors":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"authenticationToken":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printMode":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"selector":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"disabledButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"checkedButtonClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"enableAccessibility":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"searchMetadataOnDemand":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapVisible":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ready":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"error":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"parametersAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"documentMapAreaPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"exportEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"sendEmailEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"pageReady":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"printEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingBegin":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"renderingEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"updateUi":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionExecuting":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionEnter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"interactiveActionLeave":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"viewerToolTipOpening":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"keepClientAlive":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"container":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild"},"arguments":["container"]}]}],"containerStyle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"refreshReport":[{"__symbolic":"method"}],"getReportSource":[{"__symbolic":"method"}],"setReportSource":[{"__symbolic":"method"}],"getViewMode":[{"__symbolic":"method"}],"setViewMode":[{"__symbolic":"method"}],"getScale":[{"__symbolic":"method"}],"setScale":[{"__symbolic":"method"}],"pageCount":[{"__symbolic":"method"}],"currentPage":[{"__symbolic":"method"}],"setAuthenticationToken":[{"__symbolic":"method"}],"getAccessibilityKeyMap":[{"__symbolic":"method"}],"setAccessibilityKeyMap":[{"__symbolic":"method"}],"bind":[{"__symbolic":"method"}],"unbind":[{"__symbolic":"method"}],"unbindAll":[{"__symbolic":"method"}],"getPageMode":[{"__symbolic":"method"}],"setPageMode":[{"__symbolic":"method"}],"clearReportSource":[{"__symbolic":"method"}],"dispose":[{"__symbolic":"method"}]}}}}]
|
@@ -1 +0,0 @@
|
|
1
|
-
[{"__symbolic":"module","version":3,"metadata":{"TelerikReportingModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"exports":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}],"declarations":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"TelerikReportingModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"exports":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}],"declarations":[{"__symbolic":"reference","module":"./telerik-report-viewer.component","name":"TelerikReportViewerComponent"}]}]}]}}}]
|