devexpress-reporting-angular 22.2.2-beta → 22.2.3
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/all.d.ts +6 -0
- package/bundles/devexpress-reporting-angular-core.umd.js +29 -14
- package/bundles/devexpress-reporting-angular-core.umd.js.map +1 -1
- package/bundles/devexpress-reporting-angular-dx-report-designer.umd.js +277 -187
- package/bundles/devexpress-reporting-angular-dx-report-designer.umd.js.map +1 -1
- package/bundles/devexpress-reporting-angular-dx-report-viewer.umd.js +242 -165
- package/bundles/devexpress-reporting-angular-dx-report-viewer.umd.js.map +1 -1
- package/bundles/devexpress-reporting-angular.umd.js +127 -97
- package/bundles/devexpress-reporting-angular.umd.js.map +1 -1
- package/core/devexpress-reporting-angular-core.d.ts +1 -0
- package/core/dx-reporting.component.d.ts +3 -0
- package/core/package.json +0 -1
- package/devexpress-reporting-angular.d.ts +1 -0
- package/dx-report-designer/devexpress-reporting-angular-dx-report-designer.d.ts +1 -0
- package/dx-report-designer/dx-report-designer.component.d.ts +3 -0
- package/dx-report-designer/dx-report-designer.module.d.ts +12 -0
- package/dx-report-designer/dxrd-callbacks.d.ts +3 -0
- package/dx-report-designer/dxrd-datasource-settings.component.d.ts +3 -0
- package/dx-report-designer/dxrd-designer-model-settings.component.d.ts +3 -0
- package/dx-report-designer/dxrd-preview-settings.component.d.ts +3 -0
- package/dx-report-designer/dxrd-request-options.d.ts +3 -0
- package/dx-report-designer/dxrd-wizard-settings.component.d.ts +3 -0
- package/dx-report-designer/package.json +0 -1
- package/dx-report-viewer/devexpress-reporting-angular-dx-report-viewer.d.ts +1 -0
- package/dx-report-viewer/dx-report-viewer.component.d.ts +3 -0
- package/dx-report-viewer/dx-report-viewer.module.d.ts +13 -0
- package/dx-report-viewer/dxrv-callbacks.d.ts +3 -0
- package/dx-report-viewer/dxrv-export-settings.component.d.ts +3 -0
- package/dx-report-viewer/dxrv-mobile-mode-settings.component.d.ts +3 -0
- package/dx-report-viewer/dxrv-progressbar-settings.component.d.ts +3 -0
- package/dx-report-viewer/dxrv-remote-settings.component.d.ts +3 -0
- package/dx-report-viewer/dxrv-request-options.d.ts +3 -0
- package/dx-report-viewer/dxrv-tabpanel-settings.component.d.ts +3 -0
- package/dx-report-viewer/package.json +0 -1
- package/esm2015/all.js +24 -13
- package/esm2015/core/dx-reporting.component.js +27 -14
- package/esm2015/dx-report-designer/dx-report-designer.component.js +29 -19
- package/esm2015/dx-report-designer/dx-report-designer.module.js +42 -25
- package/esm2015/dx-report-designer/dxrd-callbacks.js +73 -40
- package/esm2015/dx-report-designer/dxrd-datasource-settings.component.js +17 -12
- package/esm2015/dx-report-designer/dxrd-designer-model-settings.component.js +24 -14
- package/esm2015/dx-report-designer/dxrd-preview-settings.component.js +17 -11
- package/esm2015/dx-report-designer/dxrd-request-options.js +17 -12
- package/esm2015/dx-report-designer/dxrd-wizard-settings.component.js +25 -16
- package/esm2015/dx-report-viewer/dx-report-viewer.component.js +47 -26
- package/esm2015/dx-report-viewer/dx-report-viewer.module.js +46 -27
- package/esm2015/dx-report-viewer/dxrv-callbacks.js +41 -24
- package/esm2015/dx-report-viewer/dxrv-export-settings.component.js +17 -12
- package/esm2015/dx-report-viewer/dxrv-mobile-mode-settings.component.js +15 -11
- package/esm2015/dx-report-viewer/dxrv-progressbar-settings.component.js +15 -11
- package/esm2015/dx-report-viewer/dxrv-remote-settings.component.js +15 -11
- package/esm2015/dx-report-viewer/dxrv-request-options.js +17 -12
- package/esm2015/dx-report-viewer/dxrv-tabpanel-settings.component.js +15 -11
- package/fesm2015/devexpress-reporting-angular-core.js +27 -14
- package/fesm2015/devexpress-reporting-angular-core.js.map +1 -1
- package/fesm2015/devexpress-reporting-angular-dx-report-designer.js +232 -144
- package/fesm2015/devexpress-reporting-angular-dx-report-designer.js.map +1 -1
- package/fesm2015/devexpress-reporting-angular-dx-report-viewer.js +215 -140
- package/fesm2015/devexpress-reporting-angular-dx-report-viewer.js.map +1 -1
- package/fesm2015/devexpress-reporting-angular.js +23 -12
- package/fesm2015/devexpress-reporting-angular.js.map +1 -1
- package/package.json +2 -3
- package/core/devexpress-reporting-angular-core.metadata.json +0 -1
- package/devexpress-reporting-angular.metadata.json +0 -1
- package/dx-report-designer/devexpress-reporting-angular-dx-report-designer.metadata.json +0 -1
- package/dx-report-viewer/devexpress-reporting-angular-dx-report-viewer.metadata.json +0 -1
@@ -2,6 +2,7 @@ import { ISerializableSettingsProvider } from 'devexpress-reporting-angular/core
|
|
2
2
|
import { DxReportDesignerDataSourceSettingsComponent } from './dxrd-datasource-settings.component';
|
3
3
|
import { DxReportDesignerPreviewSettingsComponent } from './dxrd-preview-settings.component';
|
4
4
|
import { DxReportDesignerWizardSettingsComponent } from './dxrd-wizard-settings.component';
|
5
|
+
import * as i0 from "@angular/core";
|
5
6
|
export declare class DxReportDesignerModelSettingsComponent implements ISerializableSettingsProvider {
|
6
7
|
allowMDI: boolean;
|
7
8
|
rightToLeft: boolean;
|
@@ -37,4 +38,6 @@ export declare class DxReportDesignerModelSettingsComponent implements ISerializ
|
|
37
38
|
allowMDI: boolean;
|
38
39
|
rightToLeft: boolean;
|
39
40
|
};
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportDesignerModelSettingsComponent, never>;
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportDesignerModelSettingsComponent, "dxrd-designer-model-settings", never, { "allowMDI": "allowMDI"; "rightToLeft": "rightToLeft"; }, {}, ["previewSettings", "wizardSettings", "dataSourceSettings"], never>;
|
40
43
|
}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { ISerializableSettingsProvider } from 'devexpress-reporting-angular/core';
|
2
2
|
import { DxReportViewerExportSettingsComponent, DxReportViewerProgressBarSettingsComponent } from 'devexpress-reporting-angular/dx-report-viewer';
|
3
|
+
import * as i0 from "@angular/core";
|
3
4
|
export declare class DxReportDesignerPreviewSettingsComponent implements ISerializableSettingsProvider {
|
4
5
|
porgressbarSettings: DxReportViewerProgressBarSettingsComponent;
|
5
6
|
exportSettings: DxReportViewerExportSettingsComponent;
|
@@ -14,4 +15,6 @@ export declare class DxReportDesignerPreviewSettingsComponent implements ISerial
|
|
14
15
|
keepOnVisibleArea: boolean;
|
15
16
|
};
|
16
17
|
};
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportDesignerPreviewSettingsComponent, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportDesignerPreviewSettingsComponent, "dxrd-preview-settings", never, {}, {}, ["porgressbarSettings", "exportSettings"], never>;
|
17
20
|
}
|
@@ -1,5 +1,8 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
1
2
|
export declare class DxReportDesignerRequestOptionsComponent {
|
2
3
|
getDesignerModelAction?: string;
|
3
4
|
getLocalizationAction?: string;
|
4
5
|
host: string;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportDesignerRequestOptionsComponent, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportDesignerRequestOptionsComponent, "dxrd-request-options", never, { "getDesignerModelAction": "getDesignerModelAction"; "getLocalizationAction": "getLocalizationAction"; "host": "host"; }, {}, never, never>;
|
5
8
|
}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { ISerializableSettingsProvider } from 'devexpress-reporting-angular/core';
|
2
2
|
import { SearchBoxVisibilityMode } from 'devexpress-reporting/designer/utils/inititalizer';
|
3
|
+
import * as i0 from "@angular/core";
|
3
4
|
export declare class DxReportDesignerWizardSettingsComponent implements ISerializableSettingsProvider {
|
4
5
|
useMasterDetailWizard: boolean;
|
5
6
|
enableJsonDataSource: boolean;
|
@@ -17,4 +18,6 @@ export declare class DxReportDesignerWizardSettingsComponent implements ISeriali
|
|
17
18
|
useFullscreenWizard: boolean;
|
18
19
|
reportWizardTemplatesSearchBoxVisibility: SearchBoxVisibilityMode;
|
19
20
|
};
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportDesignerWizardSettingsComponent, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportDesignerWizardSettingsComponent, "dxrd-wizard-settings", never, { "useMasterDetailWizard": "useMasterDetailWizard"; "enableJsonDataSource": "enableJsonDataSource"; "enableSqlDataSource": "enableSqlDataSource"; "enableObjectDataSource": "enableObjectDataSource"; "enableFederationDataSource": "enableFederationDataSource"; "useFullscreenWizard": "useFullscreenWizard"; "reportWizardTemplatesSearchBoxVisibility": "reportWizardTemplatesSearchBoxVisibility"; }, {}, never, never>;
|
20
23
|
}
|
@@ -5,7 +5,6 @@
|
|
5
5
|
"esm2015": "../esm2015/dx-report-designer/devexpress-reporting-angular-dx-report-designer.js",
|
6
6
|
"fesm2015": "../fesm2015/devexpress-reporting-angular-dx-report-designer.js",
|
7
7
|
"typings": "devexpress-reporting-angular-dx-report-designer.d.ts",
|
8
|
-
"metadata": "devexpress-reporting-angular-dx-report-designer.metadata.json",
|
9
8
|
"sideEffects": false,
|
10
9
|
"name": "devexpress-reporting-angular/dx-report-designer"
|
11
10
|
}
|
@@ -9,6 +9,7 @@ import { DxReportViewerMobileModeSettingsComponent } from './dxrv-mobile-mode-se
|
|
9
9
|
import { DxReportViewerProgressBarSettingsComponent } from './dxrv-progressbar-settings.component';
|
10
10
|
import { DxReportViewerRemoteSettingsComponent } from './dxrv-remote-settings.component';
|
11
11
|
import { DxReportViewerTabPanelSettingsComponent } from './dxrv-tabpanel-settings.component';
|
12
|
+
import * as i0 from "@angular/core";
|
12
13
|
export declare class DxReportViewerComponent extends DxReportingComponent {
|
13
14
|
koReportUrl: ko.Observable<any>;
|
14
15
|
requestOptionsComponent: DxReportViewerRequestOptionsComponent;
|
@@ -42,4 +43,6 @@ export declare class DxReportViewerComponent extends DxReportingComponent {
|
|
42
43
|
keepReportOnComponentDisposal: boolean;
|
43
44
|
get reportUrl(): string;
|
44
45
|
set reportUrl(reportUrl: string);
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerComponent, never>;
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerComponent, "dx-report-viewer", never, { "isMobile": "isMobile"; "accessibilityCompliant": "accessibilityCompliant"; "keepReportOnComponentDisposal": "keepReportOnComponentDisposal"; "reportUrl": "reportUrl"; }, {}, ["requestOptionsComponent", "callbacksComponent", "mobileModeSettingsComponent", "remoteSettingsComponent", "tabPanelSettingsComponent", "progressBarSettingsComponent", "exportSettingsComponent"], never>;
|
45
48
|
}
|
@@ -1,2 +1,15 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./dx-report-viewer.component";
|
3
|
+
import * as i2 from "./dxrv-callbacks";
|
4
|
+
import * as i3 from "./dxrv-mobile-mode-settings.component";
|
5
|
+
import * as i4 from "./dxrv-remote-settings.component";
|
6
|
+
import * as i5 from "./dxrv-request-options";
|
7
|
+
import * as i6 from "./dxrv-progressbar-settings.component";
|
8
|
+
import * as i7 from "./dxrv-export-settings.component";
|
9
|
+
import * as i8 from "./dxrv-tabpanel-settings.component";
|
10
|
+
import * as i9 from "@angular/common";
|
1
11
|
export declare class DxReportViewerModule {
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerModule, never>;
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DxReportViewerModule, [typeof i1.DxReportViewerComponent, typeof i2.DxReportViewerCallbacksComponent, typeof i3.DxReportViewerMobileModeSettingsComponent, typeof i4.DxReportViewerRemoteSettingsComponent, typeof i5.DxReportViewerRequestOptionsComponent, typeof i6.DxReportViewerProgressBarSettingsComponent, typeof i7.DxReportViewerExportSettingsComponent, typeof i8.DxReportViewerTabPanelSettingsComponent], [typeof i9.CommonModule], [typeof i1.DxReportViewerComponent, typeof i2.DxReportViewerCallbacksComponent, typeof i3.DxReportViewerMobileModeSettingsComponent, typeof i4.DxReportViewerRemoteSettingsComponent, typeof i5.DxReportViewerRequestOptionsComponent, typeof i6.DxReportViewerProgressBarSettingsComponent, typeof i7.DxReportViewerExportSettingsComponent, typeof i8.DxReportViewerTabPanelSettingsComponent]>;
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DxReportViewerModule>;
|
2
15
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class DxReportViewerCallbacksComponent {
|
3
4
|
CustomizeElements: EventEmitter<any>;
|
4
5
|
PreviewClick: EventEmitter<any>;
|
@@ -15,4 +16,6 @@ export declare class DxReportViewerCallbacksComponent {
|
|
15
16
|
BeforeRender: EventEmitter<any>;
|
16
17
|
OnServerError: EventEmitter<any>;
|
17
18
|
OnExport: EventEmitter<any>;
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerCallbacksComponent, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerCallbacksComponent, "dxrv-callbacks", never, {}, { "CustomizeElements": "CustomizeElements"; "PreviewClick": "PreviewClick"; "EditingFieldChanged": "EditingFieldChanged"; "DocumentReady": "DocumentReady"; "CustomizeExportOptions": "CustomizeExportOptions"; "CustomizeParameterEditors": "CustomizeParameterEditors"; "CustomizeParameterLookUpSource": "CustomizeParameterLookUpSource"; "ParametersReset": "ParametersReset"; "ParametersSubmitted": "ParametersSubmitted"; "ParametersInitialized": "ParametersInitialized"; "CustomizeMenuActions": "CustomizeMenuActions"; "CustomizeLocalization": "CustomizeLocalization"; "BeforeRender": "BeforeRender"; "OnServerError": "OnServerError"; "OnExport": "OnExport"; }, never, never>;
|
18
21
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { ISerializableSettingsProvider } from 'devexpress-reporting-angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class DxReportViewerExportSettingsComponent implements ISerializableSettingsProvider {
|
3
4
|
useSameTab: boolean;
|
4
5
|
useAsynchronousExport: boolean;
|
@@ -8,4 +9,6 @@ export declare class DxReportViewerExportSettingsComponent implements ISerializa
|
|
8
9
|
useAsynchronousExport: boolean;
|
9
10
|
showPrintNotificationDialog: boolean;
|
10
11
|
};
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerExportSettingsComponent, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerExportSettingsComponent, "dxrv-export-settings", never, { "useSameTab": "useSameTab"; "useAsynchronousExport": "useAsynchronousExport"; "showPrintNotificationDialog": "showPrintNotificationDialog"; }, {}, never, never>;
|
11
14
|
}
|
@@ -1,4 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
1
2
|
export declare class DxReportViewerMobileModeSettingsComponent {
|
2
3
|
readerMode: boolean;
|
3
4
|
animationEnabled: boolean;
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerMobileModeSettingsComponent, never>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerMobileModeSettingsComponent, "dxrv-mobile-mode-settings", never, { "readerMode": "readerMode"; "animationEnabled": "animationEnabled"; }, {}, never, never>;
|
4
7
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { ISerializableSettingsProvider } from 'devexpress-reporting-angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
2
3
|
export declare class DxReportViewerProgressBarSettingsComponent implements ISerializableSettingsProvider {
|
3
4
|
position: string;
|
4
5
|
keepOnVisibleArea: boolean;
|
@@ -6,4 +7,6 @@ export declare class DxReportViewerProgressBarSettingsComponent implements ISeri
|
|
6
7
|
position: string;
|
7
8
|
keepOnVisibleArea: boolean;
|
8
9
|
};
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerProgressBarSettingsComponent, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerProgressBarSettingsComponent, "dxrv-progressbar-settings", never, { "position": "position"; "keepOnVisibleArea": "keepOnVisibleArea"; }, {}, never, never>;
|
9
12
|
}
|
@@ -1,4 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
1
2
|
export declare class DxReportViewerRemoteSettingsComponent {
|
2
3
|
authToken: string;
|
3
4
|
serverUri: string;
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerRemoteSettingsComponent, never>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerRemoteSettingsComponent, "dxrv-remote-settings", never, { "authToken": "authToken"; "serverUri": "serverUri"; }, {}, never, never>;
|
4
7
|
}
|
@@ -1,5 +1,8 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
1
2
|
export declare class DxReportViewerRequestOptionsComponent {
|
2
3
|
invokeAction: string;
|
3
4
|
getLocalizationAction?: string;
|
4
5
|
host: string;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerRequestOptionsComponent, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerRequestOptionsComponent, "dxrv-request-options", never, { "invokeAction": "invokeAction"; "getLocalizationAction": "getLocalizationAction"; "host": "host"; }, {}, never, never>;
|
5
8
|
}
|
@@ -1,4 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
1
2
|
export declare class DxReportViewerTabPanelSettingsComponent {
|
2
3
|
position: string;
|
3
4
|
width: number;
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerTabPanelSettingsComponent, never>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerTabPanelSettingsComponent, "dxrv-tabpanel-settings", never, { "position": "position"; "width": "width"; }, {}, never, never>;
|
4
7
|
}
|
@@ -5,7 +5,6 @@
|
|
5
5
|
"esm2015": "../esm2015/dx-report-viewer/devexpress-reporting-angular-dx-report-viewer.js",
|
6
6
|
"fesm2015": "../fesm2015/devexpress-reporting-angular-dx-report-viewer.js",
|
7
7
|
"typings": "devexpress-reporting-angular-dx-report-viewer.d.ts",
|
8
|
-
"metadata": "devexpress-reporting-angular-dx-report-viewer.metadata.json",
|
9
8
|
"sideEffects": false,
|
10
9
|
"name": "devexpress-reporting-angular/dx-report-viewer"
|
11
10
|
}
|
package/esm2015/all.js
CHANGED
@@ -1,18 +1,29 @@
|
|
1
1
|
import { NgModule } from '@angular/core';
|
2
2
|
import { DxReportViewerModule } from 'devexpress-reporting-angular/dx-report-viewer';
|
3
3
|
import { DxReportDesignerModule } from 'devexpress-reporting-angular/dx-report-designer';
|
4
|
+
import * as i0 from "@angular/core";
|
4
5
|
export class DevexpressReportingModule {
|
5
6
|
}
|
6
|
-
DevexpressReportingModule
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
7
|
+
DevexpressReportingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DevexpressReportingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
8
|
+
DevexpressReportingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DevexpressReportingModule, imports: [DxReportViewerModule,
|
9
|
+
DxReportDesignerModule], exports: [DxReportViewerModule,
|
10
|
+
DxReportDesignerModule] });
|
11
|
+
DevexpressReportingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DevexpressReportingModule, imports: [[
|
12
|
+
DxReportViewerModule,
|
13
|
+
DxReportDesignerModule
|
14
|
+
], DxReportViewerModule,
|
15
|
+
DxReportDesignerModule] });
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DevexpressReportingModule, decorators: [{
|
17
|
+
type: NgModule,
|
18
|
+
args: [{
|
19
|
+
imports: [
|
20
|
+
DxReportViewerModule,
|
21
|
+
DxReportDesignerModule
|
22
|
+
],
|
23
|
+
exports: [
|
24
|
+
DxReportViewerModule,
|
25
|
+
DxReportDesignerModule
|
26
|
+
]
|
27
|
+
}]
|
28
|
+
}] });
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vYWxsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sK0NBQStDLENBQUM7QUFDckYsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0saURBQWlELENBQUM7O0FBWXpGLE1BQU0sT0FBTyx5QkFBeUI7O3VIQUF6Qix5QkFBeUI7d0hBQXpCLHlCQUF5QixZQVI5QixvQkFBb0I7UUFDcEIsc0JBQXNCLGFBR3RCLG9CQUFvQjtRQUNwQixzQkFBc0I7d0hBR2pCLHlCQUF5QixZQVR6QjtZQUNMLG9CQUFvQjtZQUNwQixzQkFBc0I7U0FDekIsRUFFRyxvQkFBb0I7UUFDcEIsc0JBQXNCOzRGQUdqQix5QkFBeUI7a0JBVnJDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFO3dCQUNMLG9CQUFvQjt3QkFDcEIsc0JBQXNCO3FCQUN6QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ0wsb0JBQW9CO3dCQUNwQixzQkFBc0I7cUJBQ3pCO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRHhSZXBvcnRWaWV3ZXJNb2R1bGUgfSBmcm9tICdkZXZleHByZXNzLXJlcG9ydGluZy1hbmd1bGFyL2R4LXJlcG9ydC12aWV3ZXInO1xyXG5pbXBvcnQgeyBEeFJlcG9ydERlc2lnbmVyTW9kdWxlIH0gZnJvbSAnZGV2ZXhwcmVzcy1yZXBvcnRpbmctYW5ndWxhci9keC1yZXBvcnQtZGVzaWduZXInO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICAgIGltcG9ydHM6IFtcclxuICAgICAgICBEeFJlcG9ydFZpZXdlck1vZHVsZSxcclxuICAgICAgICBEeFJlcG9ydERlc2lnbmVyTW9kdWxlXHJcbiAgICBdLFxyXG4gICAgZXhwb3J0czogW1xyXG4gICAgICAgIER4UmVwb3J0Vmlld2VyTW9kdWxlLFxyXG4gICAgICAgIER4UmVwb3J0RGVzaWduZXJNb2R1bGVcclxuICAgIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIERldmV4cHJlc3NSZXBvcnRpbmdNb2R1bGUgeyB9Il19
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { __decorate } from "tslib";
|
2
|
-
import {
|
2
|
+
import { ViewChild, Input, Inject, PLATFORM_ID, Component } from '@angular/core';
|
3
3
|
import { isPlatformBrowser } from '@angular/common';
|
4
4
|
import * as ko from 'knockout';
|
5
5
|
import { _booleanConverter, _inputConverter } from './_input-converters';
|
6
|
+
import * as i0 from "@angular/core";
|
6
7
|
export class DxReportingComponent {
|
7
8
|
constructor(renderer, platformId) {
|
8
9
|
this.renderer = renderer;
|
@@ -32,22 +33,34 @@ export class DxReportingComponent {
|
|
32
33
|
return (eventName, args) => component.callbacks && component.callbacks[eventName] && component.callbacks[eventName].emit({ sender: component.bindingSender, args: args, component: component });
|
33
34
|
}
|
34
35
|
}
|
35
|
-
DxReportingComponent
|
36
|
-
|
37
|
-
{ type: Object, decorators: [{ type: Inject, args: [PLATFORM_ID,] }] }
|
38
|
-
];
|
39
|
-
DxReportingComponent.propDecorators = {
|
40
|
-
control: [{ type: ViewChild, args: ['control',] }],
|
41
|
-
height: [{ type: Input }],
|
42
|
-
width: [{ type: Input }],
|
43
|
-
cssClass: [{ type: Input }],
|
44
|
-
rtl: [{ type: Input }],
|
45
|
-
developmentMode: [{ type: Input }]
|
46
|
-
};
|
36
|
+
DxReportingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportingComponent, deps: [{ token: i0.Renderer2 }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Component });
|
37
|
+
DxReportingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: DxReportingComponent, selector: "ng-component", inputs: { height: "height", width: "width", cssClass: "cssClass", rtl: "rtl", developmentMode: "developmentMode" }, viewQueries: [{ propertyName: "control", first: true, predicate: ["control"], descendants: true }], ngImport: i0, template: '', isInline: true });
|
47
38
|
__decorate([
|
48
39
|
_inputConverter(_booleanConverter)
|
49
40
|
], DxReportingComponent.prototype, "rtl", void 0);
|
50
41
|
__decorate([
|
51
42
|
_inputConverter(_booleanConverter)
|
52
43
|
], DxReportingComponent.prototype, "developmentMode", void 0);
|
53
|
-
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportingComponent, decorators: [{
|
45
|
+
type: Component,
|
46
|
+
args: [{
|
47
|
+
template: ''
|
48
|
+
}]
|
49
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: Object, decorators: [{
|
50
|
+
type: Inject,
|
51
|
+
args: [PLATFORM_ID]
|
52
|
+
}] }]; }, propDecorators: { control: [{
|
53
|
+
type: ViewChild,
|
54
|
+
args: ['control']
|
55
|
+
}], height: [{
|
56
|
+
type: Input
|
57
|
+
}], width: [{
|
58
|
+
type: Input
|
59
|
+
}], cssClass: [{
|
60
|
+
type: Input
|
61
|
+
}], rtl: [{
|
62
|
+
type: Input
|
63
|
+
}], developmentMode: [{
|
64
|
+
type: Input
|
65
|
+
}] } });
|
66
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHgtcmVwb3J0aW5nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2NvcmUvZHgtcmVwb3J0aW5nLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUF3QyxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxXQUFXLEVBQWEsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2xJLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQ3BELE9BQU8sS0FBSyxFQUFFLE1BQU0sVUFBVSxDQUFDO0FBQy9CLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7QUFJekUsTUFBTSxPQUFnQixvQkFBb0I7SUFPeEMsWUFBb0IsUUFBbUIsRUFBK0IsVUFBa0I7UUFBcEUsYUFBUSxHQUFSLFFBQVEsQ0FBVztRQUErQixlQUFVLEdBQVYsVUFBVSxDQUFRO1FBMkIvRSxXQUFNLEdBQVcsT0FBTyxDQUFDO1FBQ3pCLFVBQUssR0FBVyxNQUFNLENBQUM7UUFDdkIsYUFBUSxHQUFXLEVBQUUsQ0FBQztJQTdCNkQsQ0FBQztJQUs3RixlQUFlO1FBQ1gsSUFBRyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLEVBQUU7WUFDbkMsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7WUFDckMsTUFBTSxPQUFPLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7WUFDekMsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzdDLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUM7WUFDNUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsQ0FBQztTQUM3RDtJQUNMLENBQUM7SUFDRCxXQUFXO1FBQ1AsRUFBRSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxDQUFDO1FBQ3pDLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDO1FBQzFCLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDO1FBQ3RCLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDO0lBQ3hCLENBQUM7SUFFRCxjQUFjO1FBQ1YsSUFBSSxTQUFTLEdBQUcsSUFBSSxDQUFDO1FBQ3JCLE9BQU8sQ0FBQyxTQUFTLEVBQUUsSUFBSyxFQUFFLEVBQUUsQ0FBQyxTQUFTLENBQUMsU0FBUyxJQUFJLFNBQVMsQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLElBQUksU0FBUyxDQUFDLFNBQVMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxJQUFJLENBQUMsRUFBRSxNQUFNLEVBQUUsU0FBUyxDQUFDLGFBQWEsRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsQ0FBQyxDQUFDO0lBQ3JNLENBQUM7O2tIQWhDbUIsb0JBQW9CLDJDQU9TLFdBQVc7c0dBUHhDLG9CQUFvQiw0UUFGNUIsRUFBRTtBQTBDZDtJQURDLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQztpREFDdEI7QUFHYjtJQURDLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQzs2REFDVjs0RkEzQ0wsb0JBQW9CO2tCQUh6QyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxFQUFFO2lCQUNmO2tGQVFtRixNQUFNOzBCQUE5QyxNQUFNOzJCQUFDLFdBQVc7NENBRjVELE9BQU87c0JBRE4sU0FBUzt1QkFBQyxTQUFTO2dCQThCWCxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBSU4sR0FBRztzQkFGRixLQUFLO2dCQUtOLGVBQWU7c0JBRmQsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFmdGVyVmlld0luaXQsIFJlbmRlcmVyMiwgRWxlbWVudFJlZiwgVmlld0NoaWxkLCBJbnB1dCwgSW5qZWN0LCBQTEFURk9STV9JRCwgT25EZXN0cm95LCBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgaXNQbGF0Zm9ybUJyb3dzZXIgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgKiBhcyBrbyBmcm9tICdrbm9ja291dCc7XHJcbmltcG9ydCB7IF9ib29sZWFuQ29udmVydGVyLCBfaW5wdXRDb252ZXJ0ZXIgfSBmcm9tICcuL19pbnB1dC1jb252ZXJ0ZXJzJztcclxuQENvbXBvbmVudCh7XHJcbiAgICB0ZW1wbGF0ZTogJydcclxufSlcclxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIER4UmVwb3J0aW5nQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCwgT25EZXN0cm95IHtcclxuICBwcml2YXRlIF9rb0JpbmRpbmc7XHJcbiAgYmluZGluZ1NlbmRlcjogYW55O1xyXG4gIGNhbGxiYWNrczogYW55O1xyXG4gIEBWaWV3Q2hpbGQoJ2NvbnRyb2wnKVxyXG4gIGNvbnRyb2w6IEVsZW1lbnRSZWY7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMiwgQEluamVjdChQTEFURk9STV9JRCkgcHJpdmF0ZSBwbGF0Zm9ybUlkOiBPYmplY3QpIHsgfVxyXG4gIGFic3RyYWN0IGdldENvbnRyb2xPcHRpb25zKCk7XHJcbiAgYWJzdHJhY3QgZ2V0Q2FsbGJhY2tzKCk7XHJcbiAgYWJzdHJhY3QgZ2V0S29CaW5kaW5nKG9wdGlvbnM6IGFueSk7XHJcblxyXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcclxuICAgICAgaWYoaXNQbGF0Zm9ybUJyb3dzZXIodGhpcy5wbGF0Zm9ybUlkKSkge1xyXG4gICAgICAgICAgdGhpcy5jYWxsYmFja3MgPSB0aGlzLmdldENhbGxiYWNrcygpO1xyXG4gICAgICAgICAgY29uc3Qgb3B0aW9ucyA9IHRoaXMuZ2V0Q29udHJvbE9wdGlvbnMoKTtcclxuICAgICAgICAgIHRoaXMuX2tvQmluZGluZyA9IHRoaXMuZ2V0S29CaW5kaW5nKG9wdGlvbnMpO1xyXG4gICAgICAgICAgdGhpcy5iaW5kaW5nU2VuZGVyID0gdGhpcy5fa29CaW5kaW5nLnNlbmRlcjtcclxuICAgICAgICAgIHRoaXMuX2tvQmluZGluZy5hcHBseUJpbmRpbmdzKHRoaXMuY29udHJvbC5uYXRpdmVFbGVtZW50KTtcclxuICAgICAgfVxyXG4gIH1cclxuICBuZ09uRGVzdHJveSgpIHtcclxuICAgICAga28uY2xlYW5Ob2RlKHRoaXMuY29udHJvbC5uYXRpdmVFbGVtZW50KTtcclxuICAgICAgdGhpcy5fa29CaW5kaW5nID0gbnVsbDtcclxuICAgICAgdGhpcy5iaW5kaW5nU2VuZGVyID0gbnVsbDtcclxuICAgICAgdGhpcy5jYWxsYmFja3MgPSBudWxsO1xyXG4gICAgICB0aGlzLmNvbnRyb2wgPSBudWxsO1xyXG4gIH1cclxuXHJcbiAgZ2V0RXZlbnRSYWlzZXIoKSB7XHJcbiAgICAgIHZhciBjb21wb25lbnQgPSB0aGlzO1xyXG4gICAgICByZXR1cm4gKGV2ZW50TmFtZSwgYXJncz8pID0+IGNvbXBvbmVudC5jYWxsYmFja3MgJiYgY29tcG9uZW50LmNhbGxiYWNrc1tldmVudE5hbWVdICYmIGNvbXBvbmVudC5jYWxsYmFja3NbZXZlbnROYW1lXS5lbWl0KHsgc2VuZGVyOiBjb21wb25lbnQuYmluZGluZ1NlbmRlciwgYXJnczogYXJncywgY29tcG9uZW50OiBjb21wb25lbnQgfSk7XHJcbiAgfVxyXG5cclxuICBASW5wdXQoKSBoZWlnaHQ6IHN0cmluZyA9ICc4MDBweCc7XHJcbiAgQElucHV0KCkgd2lkdGg6IHN0cmluZyA9ICcxMDAlJztcclxuICBASW5wdXQoKSBjc3NDbGFzczogc3RyaW5nID0gJyc7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgQF9pbnB1dENvbnZlcnRlcihfYm9vbGVhbkNvbnZlcnRlcilcclxuICBydGw6IGJvb2xlYW47XHJcbiAgQElucHV0KClcclxuICBAX2lucHV0Q29udmVydGVyKF9ib29sZWFuQ29udmVydGVyKVxyXG4gIGRldmVsb3BtZW50TW9kZTogYm9vbGVhbjtcclxufVxyXG4iXX0=
|
@@ -1,10 +1,12 @@
|
|
1
|
-
import { Component, ContentChild, Inject, Input, PLATFORM_ID,
|
1
|
+
import { Component, ContentChild, Inject, Input, PLATFORM_ID, ViewEncapsulation } from '@angular/core';
|
2
2
|
import { JSReportDesignerBinding } from 'devexpress-reporting/dx-reportdesigner';
|
3
3
|
import * as ko from 'knockout';
|
4
4
|
import { DxReportingComponent } from 'devexpress-reporting-angular/core';
|
5
5
|
import { DxReportDesignerCallbacksComponent } from './dxrd-callbacks';
|
6
6
|
import { DxReportDesignerModelSettingsComponent } from './dxrd-designer-model-settings.component';
|
7
7
|
import { DxReportDesignerRequestOptionsComponent } from './dxrd-request-options';
|
8
|
+
import * as i0 from "@angular/core";
|
9
|
+
import * as i1 from "@angular/common";
|
8
10
|
export class DxReportDesignerComponent extends DxReportingComponent {
|
9
11
|
constructor(renderer, platformId) {
|
10
12
|
super(renderer, platformId);
|
@@ -47,21 +49,29 @@ export class DxReportDesignerComponent extends DxReportingComponent {
|
|
47
49
|
this.koReportUrl(reportUrl);
|
48
50
|
}
|
49
51
|
}
|
50
|
-
DxReportDesignerComponent
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
]
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
}
|
67
|
-
|
52
|
+
DxReportDesignerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportDesignerComponent, deps: [{ token: i0.Renderer2 }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Component });
|
53
|
+
DxReportDesignerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: DxReportDesignerComponent, selector: "dx-report-designer", inputs: { reportUrl: "reportUrl" }, queries: [{ propertyName: "requestOptions", first: true, predicate: DxReportDesignerRequestOptionsComponent, descendants: true }, { propertyName: "callbacksComponent", first: true, predicate: DxReportDesignerCallbacksComponent, descendants: true }, { propertyName: "designerModelSettings", first: true, predicate: DxReportDesignerModelSettingsComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<div #control [ngClass]=\"cssClass\" [ngStyle]=\"{'width': width, 'height': height }\">\r\n <div data-bind=\"dxReportDesigner: $data\"></div>\r\n</div>", directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportDesignerComponent, decorators: [{
|
55
|
+
type: Component,
|
56
|
+
args: [{
|
57
|
+
selector: 'dx-report-designer',
|
58
|
+
encapsulation: ViewEncapsulation.None,
|
59
|
+
templateUrl: './dx-report-designer.component.html',
|
60
|
+
styleUrls: []
|
61
|
+
}]
|
62
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: Object, decorators: [{
|
63
|
+
type: Inject,
|
64
|
+
args: [PLATFORM_ID]
|
65
|
+
}] }]; }, propDecorators: { requestOptions: [{
|
66
|
+
type: ContentChild,
|
67
|
+
args: [DxReportDesignerRequestOptionsComponent]
|
68
|
+
}], callbacksComponent: [{
|
69
|
+
type: ContentChild,
|
70
|
+
args: [DxReportDesignerCallbacksComponent]
|
71
|
+
}], designerModelSettings: [{
|
72
|
+
type: ContentChild,
|
73
|
+
args: [DxReportDesignerModelSettingsComponent]
|
74
|
+
}], reportUrl: [{
|
75
|
+
type: Input
|
76
|
+
}] } });
|
77
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHgtcmVwb3J0LWRlc2lnbmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2R4LXJlcG9ydC1kZXNpZ25lci9keC1yZXBvcnQtZGVzaWduZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vZHgtcmVwb3J0LWRlc2lnbmVyL2R4LXJlcG9ydC1kZXNpZ25lci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBYSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNsSCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUNqRixPQUFPLEtBQUssRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUUvQixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUV6RSxPQUFPLEVBQUUsa0NBQWtDLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN0RSxPQUFPLEVBQUUsc0NBQXNDLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUNsRyxPQUFPLEVBQUUsdUNBQXVDLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQzs7O0FBUWpGLE1BQU0sT0FBTyx5QkFBMEIsU0FBUSxvQkFBb0I7SUFZakUsWUFBWSxRQUFtQixFQUF1QixVQUFrQjtRQUNwRSxLQUFLLENBQUMsUUFBUSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBWmhDLGdCQUFXLEdBQUcsRUFBRSxDQUFDLFVBQVUsRUFBRSxDQUFDO0lBYTlCLENBQUM7SUFDRCxZQUFZO1FBQ1IsT0FBTyxJQUFJLENBQUMsa0JBQWtCLENBQUM7SUFDbkMsQ0FBQztJQUNELFlBQVksQ0FBQyxPQUFZO1FBQ3JCLE9BQU8sSUFBSSx1QkFBdUIsQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDLENBQUM7SUFDdkUsQ0FBQztJQUNELGlCQUFpQjs7UUFDYixPQUFPO1lBQ0gsV0FBVyxFQUFFLElBQUksQ0FBQyxHQUFHO1lBQ3JCLGVBQWUsRUFBRSxJQUFJLENBQUMsZUFBZTtZQUNyQyxTQUFTLEVBQUUsSUFBSSxDQUFDLFdBQVc7WUFDM0IsY0FBYyxFQUFFLElBQUksQ0FBQyxjQUFjO1lBQ25DLHFCQUFxQixFQUFFLE1BQUEsSUFBSSxDQUFDLHFCQUFxQiwwQ0FBRSx1QkFBdUIsRUFBRTtZQUM1RSxTQUFTLEVBQUUsRUFBRSxRQUFRLEVBQUUsRUFBRSxFQUFFLE9BQU8sRUFBRSxFQUFFLEVBQUU7U0FDM0MsQ0FBQztJQUNOLENBQUM7SUFDRCxXQUFXO1FBQ1AsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQ3BCLElBQUksQ0FBQyxjQUFjLEdBQUcsSUFBSSxDQUFDO1FBQzNCLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxJQUFJLENBQUM7UUFDL0IsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7UUFDeEIsSUFBSSxDQUFDLHFCQUFxQixHQUFHLElBQUksQ0FBQztJQUN0QyxDQUFDO0lBRUQsZ0JBQWdCO1FBQ1osT0FBTyxJQUFJLENBQUMsYUFBYSxDQUFDLGdCQUFnQixFQUFFLENBQUM7SUFDakQsQ0FBQztJQUVELGVBQWU7UUFDWCxPQUFPLElBQUksQ0FBQyxhQUFhLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDaEQsQ0FBQztJQUVELElBQ0ksU0FBUztRQUNULE9BQU8sSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQzlCLENBQUM7SUFDRCxJQUFJLFNBQVMsQ0FBQyxTQUFpQjtRQUMzQixJQUFJLENBQUMsV0FBVyxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQ2hDLENBQUM7O3VIQXJEVSx5QkFBeUIsMkNBWUssV0FBVzsyR0FaekMseUJBQXlCLDBJQUd0Qix1Q0FBdUMscUZBR3ZDLGtDQUFrQyx3RkFHbEMsc0NBQXNDLHVFQ3pCdEQsMEpBRU07NEZEY08seUJBQXlCO2tCQU5yQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxvQkFBb0I7b0JBQzlCLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxXQUFXLEVBQUUscUNBQXFDO29CQUNsRCxTQUFTLEVBQUUsRUFBRTtpQkFDaEI7a0ZBYW1FLE1BQU07MEJBQXRDLE1BQU07MkJBQUMsV0FBVzs0Q0FScEQsY0FBYztzQkFEYixZQUFZO3VCQUFDLHVDQUF1QztnQkFJckQsa0JBQWtCO3NCQURqQixZQUFZO3VCQUFDLGtDQUFrQztnQkFJaEQscUJBQXFCO3NCQURwQixZQUFZO3VCQUFDLHNDQUFzQztnQkF1Q2hELFNBQVM7c0JBRFosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ29udGVudENoaWxkLCBJbmplY3QsIElucHV0LCBQTEFURk9STV9JRCwgUmVuZGVyZXIyLCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBKU1JlcG9ydERlc2lnbmVyQmluZGluZyB9IGZyb20gJ2RldmV4cHJlc3MtcmVwb3J0aW5nL2R4LXJlcG9ydGRlc2lnbmVyJztcclxuaW1wb3J0ICogYXMga28gZnJvbSAna25vY2tvdXQnO1xyXG5cclxuaW1wb3J0IHsgRHhSZXBvcnRpbmdDb21wb25lbnQgfSBmcm9tICdkZXZleHByZXNzLXJlcG9ydGluZy1hbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHsgRHhSZXBvcnREZXNpZ25lckNhbGxiYWNrc0NvbXBvbmVudCB9IGZyb20gJy4vZHhyZC1jYWxsYmFja3MnO1xyXG5pbXBvcnQgeyBEeFJlcG9ydERlc2lnbmVyTW9kZWxTZXR0aW5nc0NvbXBvbmVudCB9IGZyb20gJy4vZHhyZC1kZXNpZ25lci1tb2RlbC1zZXR0aW5ncy5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBEeFJlcG9ydERlc2lnbmVyUmVxdWVzdE9wdGlvbnNDb21wb25lbnQgfSBmcm9tICcuL2R4cmQtcmVxdWVzdC1vcHRpb25zJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdkeC1yZXBvcnQtZGVzaWduZXInLFxyXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxuICAgIHRlbXBsYXRlVXJsOiAnLi9keC1yZXBvcnQtZGVzaWduZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gICAgc3R5bGVVcmxzOiBbXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgRHhSZXBvcnREZXNpZ25lckNvbXBvbmVudCBleHRlbmRzIER4UmVwb3J0aW5nQ29tcG9uZW50IHtcclxuICBrb1JlcG9ydFVybCA9IGtvLm9ic2VydmFibGUoKTtcclxuXHJcbiAgQENvbnRlbnRDaGlsZChEeFJlcG9ydERlc2lnbmVyUmVxdWVzdE9wdGlvbnNDb21wb25lbnQpXHJcbiAgcmVxdWVzdE9wdGlvbnM6IER4UmVwb3J0RGVzaWduZXJSZXF1ZXN0T3B0aW9uc0NvbXBvbmVudDtcclxuXHJcbiAgQENvbnRlbnRDaGlsZChEeFJlcG9ydERlc2lnbmVyQ2FsbGJhY2tzQ29tcG9uZW50KVxyXG4gIGNhbGxiYWNrc0NvbXBvbmVudDogRHhSZXBvcnREZXNpZ25lckNhbGxiYWNrc0NvbXBvbmVudDtcclxuXHJcbiAgQENvbnRlbnRDaGlsZChEeFJlcG9ydERlc2lnbmVyTW9kZWxTZXR0aW5nc0NvbXBvbmVudClcclxuICBkZXNpZ25lck1vZGVsU2V0dGluZ3M6IER4UmVwb3J0RGVzaWduZXJNb2RlbFNldHRpbmdzQ29tcG9uZW50XHJcblxyXG4gIGNvbnN0cnVjdG9yKHJlbmRlcmVyOiBSZW5kZXJlcjIsIEBJbmplY3QoUExBVEZPUk1fSUQpIHBsYXRmb3JtSWQ6IE9iamVjdCkge1xyXG4gICAgICBzdXBlcihyZW5kZXJlciwgcGxhdGZvcm1JZCk7XHJcbiAgfVxyXG4gIGdldENhbGxiYWNrcygpIHtcclxuICAgICAgcmV0dXJuIHRoaXMuY2FsbGJhY2tzQ29tcG9uZW50O1xyXG4gIH1cclxuICBnZXRLb0JpbmRpbmcob3B0aW9uczogYW55KSB7XHJcbiAgICAgIHJldHVybiBuZXcgSlNSZXBvcnREZXNpZ25lckJpbmRpbmcob3B0aW9ucywgdGhpcy5nZXRFdmVudFJhaXNlcigpKTtcclxuICB9XHJcbiAgZ2V0Q29udHJvbE9wdGlvbnMoKSB7XHJcbiAgICAgIHJldHVybiB7XHJcbiAgICAgICAgICByaWdodFRvTGVmdDogdGhpcy5ydGwsXHJcbiAgICAgICAgICBkZXZlbG9wbWVudE1vZGU6IHRoaXMuZGV2ZWxvcG1lbnRNb2RlLFxyXG4gICAgICAgICAgcmVwb3J0VXJsOiB0aGlzLmtvUmVwb3J0VXJsLFxyXG4gICAgICAgICAgcmVxdWVzdE9wdGlvbnM6IHRoaXMucmVxdWVzdE9wdGlvbnMsXHJcbiAgICAgICAgICBkZXNpZ25lck1vZGVsU2V0dGluZ3M6IHRoaXMuZGVzaWduZXJNb2RlbFNldHRpbmdzPy5nZXRTZXJpYWxpemFibGVTZXR0aW5ncygpLFxyXG4gICAgICAgICAgY2FsbGJhY2tzOiB7IGRlc2lnbmVyOiB7fSwgcHJldmlldzoge30gfVxyXG4gICAgICB9O1xyXG4gIH1cclxuICBuZ09uRGVzdHJveSgpIHtcclxuICAgICAgc3VwZXIubmdPbkRlc3Ryb3koKTtcclxuICAgICAgdGhpcy5yZXF1ZXN0T3B0aW9ucyA9IG51bGw7XHJcbiAgICAgIHRoaXMuY2FsbGJhY2tzQ29tcG9uZW50ID0gbnVsbDtcclxuICAgICAgdGhpcy5rb1JlcG9ydFVybCA9IG51bGw7XHJcbiAgICAgIHRoaXMuZGVzaWduZXJNb2RlbFNldHRpbmdzID0gbnVsbDtcclxuICB9XHJcblxyXG4gIEdldERlc2lnbmVyTW9kZWwoKSB7XHJcbiAgICAgIHJldHVybiB0aGlzLmJpbmRpbmdTZW5kZXIuR2V0RGVzaWduZXJNb2RlbCgpO1xyXG4gIH1cclxuXHJcbiAgR2V0UHJldmlld01vZGVsKCkge1xyXG4gICAgICByZXR1cm4gdGhpcy5iaW5kaW5nU2VuZGVyLkdldFByZXZpZXdNb2RlbCgpO1xyXG4gIH1cclxuXHJcbiAgQElucHV0KClcclxuICBnZXQgcmVwb3J0VXJsKCkge1xyXG4gICAgICByZXR1cm4gdGhpcy5rb1JlcG9ydFVybCgpO1xyXG4gIH1cclxuICBzZXQgcmVwb3J0VXJsKHJlcG9ydFVybDogc3RyaW5nKSB7XHJcbiAgICAgIHRoaXMua29SZXBvcnRVcmwocmVwb3J0VXJsKTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiAjY29udHJvbCBbbmdDbGFzc109XCJjc3NDbGFzc1wiIFtuZ1N0eWxlXT1cInsnd2lkdGgnOiB3aWR0aCwgJ2hlaWdodCc6IGhlaWdodCB9XCI+XHJcbiAgPGRpdiBkYXRhLWJpbmQ9XCJkeFJlcG9ydERlc2lnbmVyOiAkZGF0YVwiPjwvZGl2PlxyXG48L2Rpdj4iXX0=
|
@@ -7,30 +7,47 @@ import { DxReportDesignerModelSettingsComponent } from './dxrd-designer-model-se
|
|
7
7
|
import { DxReportDesignerPreviewSettingsComponent } from './dxrd-preview-settings.component';
|
8
8
|
import { DxReportDesignerRequestOptionsComponent } from './dxrd-request-options';
|
9
9
|
import { DxReportDesignerWizardSettingsComponent } from './dxrd-wizard-settings.component';
|
10
|
+
import * as i0 from "@angular/core";
|
10
11
|
export class DxReportDesignerModule {
|
11
12
|
}
|
12
|
-
DxReportDesignerModule
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
13
|
+
DxReportDesignerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportDesignerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
14
|
+
DxReportDesignerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportDesignerModule, declarations: [DxReportDesignerCallbacksComponent,
|
15
|
+
DxReportDesignerRequestOptionsComponent,
|
16
|
+
DxReportDesignerComponent,
|
17
|
+
DxReportDesignerPreviewSettingsComponent,
|
18
|
+
DxReportDesignerWizardSettingsComponent,
|
19
|
+
DxReportDesignerDataSourceSettingsComponent,
|
20
|
+
DxReportDesignerModelSettingsComponent], imports: [CommonModule], exports: [DxReportDesignerCallbacksComponent,
|
21
|
+
DxReportDesignerRequestOptionsComponent,
|
22
|
+
DxReportDesignerComponent,
|
23
|
+
DxReportDesignerPreviewSettingsComponent,
|
24
|
+
DxReportDesignerWizardSettingsComponent,
|
25
|
+
DxReportDesignerDataSourceSettingsComponent,
|
26
|
+
DxReportDesignerModelSettingsComponent], id: 'DxReportDesignerModule' });
|
27
|
+
DxReportDesignerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportDesignerModule, imports: [[CommonModule]] });
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DxReportDesignerModule, decorators: [{
|
29
|
+
type: NgModule,
|
30
|
+
args: [{
|
31
|
+
id: 'DxReportDesignerModule',
|
32
|
+
imports: [CommonModule],
|
33
|
+
declarations: [
|
34
|
+
DxReportDesignerCallbacksComponent,
|
35
|
+
DxReportDesignerRequestOptionsComponent,
|
36
|
+
DxReportDesignerComponent,
|
37
|
+
DxReportDesignerPreviewSettingsComponent,
|
38
|
+
DxReportDesignerWizardSettingsComponent,
|
39
|
+
DxReportDesignerDataSourceSettingsComponent,
|
40
|
+
DxReportDesignerModelSettingsComponent
|
41
|
+
],
|
42
|
+
exports: [
|
43
|
+
DxReportDesignerCallbacksComponent,
|
44
|
+
DxReportDesignerRequestOptionsComponent,
|
45
|
+
DxReportDesignerComponent,
|
46
|
+
DxReportDesignerPreviewSettingsComponent,
|
47
|
+
DxReportDesignerWizardSettingsComponent,
|
48
|
+
DxReportDesignerDataSourceSettingsComponent,
|
49
|
+
DxReportDesignerModelSettingsComponent
|
50
|
+
]
|
51
|
+
}]
|
52
|
+
}] });
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHgtcmVwb3J0LWRlc2lnbmVyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2R4LXJlcG9ydC1kZXNpZ25lci9keC1yZXBvcnQtZGVzaWduZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQzNFLE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3RFLE9BQU8sRUFBRSwyQ0FBMkMsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQ25HLE9BQU8sRUFBRSxzQ0FBc0MsRUFBRSxNQUFNLDBDQUEwQyxDQUFDO0FBQ2xHLE9BQU8sRUFBRSx3Q0FBd0MsRUFBRSxNQUFNLG1DQUFtQyxDQUFDO0FBQzdGLE9BQU8sRUFBRSx1Q0FBdUMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSx1Q0FBdUMsRUFBRSxNQUFNLGtDQUFrQyxDQUFDOztBQXdCM0YsTUFBTSxPQUFPLHNCQUFzQjs7b0hBQXRCLHNCQUFzQjtxSEFBdEIsc0JBQXNCLGlCQWxCM0Isa0NBQWtDO1FBQ2xDLHVDQUF1QztRQUN2Qyx5QkFBeUI7UUFDekIsd0NBQXdDO1FBQ3hDLHVDQUF1QztRQUN2QywyQ0FBMkM7UUFDM0Msc0NBQXNDLGFBUmhDLFlBQVksYUFXbEIsa0NBQWtDO1FBQ2xDLHVDQUF1QztRQUN2Qyx5QkFBeUI7UUFDekIsd0NBQXdDO1FBQ3hDLHVDQUF1QztRQUN2QywyQ0FBMkM7UUFDM0Msc0NBQXNDLE9BbEJ0Qyx3QkFBd0I7cUhBcUJuQixzQkFBc0IsWUFwQnRCLENBQUMsWUFBWSxDQUFDOzRGQW9CZCxzQkFBc0I7a0JBdEJsQyxRQUFRO21CQUFDO29CQUNOLEVBQUUsRUFBRSx3QkFBd0I7b0JBQzVCLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsWUFBWSxFQUFFO3dCQUNWLGtDQUFrQzt3QkFDbEMsdUNBQXVDO3dCQUN2Qyx5QkFBeUI7d0JBQ3pCLHdDQUF3Qzt3QkFDeEMsdUNBQXVDO3dCQUN2QywyQ0FBMkM7d0JBQzNDLHNDQUFzQztxQkFDekM7b0JBQ0QsT0FBTyxFQUFFO3dCQUNMLGtDQUFrQzt3QkFDbEMsdUNBQXVDO3dCQUN2Qyx5QkFBeUI7d0JBQ3pCLHdDQUF3Qzt3QkFDeEMsdUNBQXVDO3dCQUN2QywyQ0FBMkM7d0JBQzNDLHNDQUFzQztxQkFDekM7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBEeFJlcG9ydERlc2lnbmVyQ29tcG9uZW50IH0gZnJvbSAnLi9keC1yZXBvcnQtZGVzaWduZXIuY29tcG9uZW50JztcclxuaW1wb3J0IHsgRHhSZXBvcnREZXNpZ25lckNhbGxiYWNrc0NvbXBvbmVudCB9IGZyb20gJy4vZHhyZC1jYWxsYmFja3MnO1xyXG5pbXBvcnQgeyBEeFJlcG9ydERlc2lnbmVyRGF0YVNvdXJjZVNldHRpbmdzQ29tcG9uZW50IH0gZnJvbSAnLi9keHJkLWRhdGFzb3VyY2Utc2V0dGluZ3MuY29tcG9uZW50JztcclxuaW1wb3J0IHsgRHhSZXBvcnREZXNpZ25lck1vZGVsU2V0dGluZ3NDb21wb25lbnQgfSBmcm9tICcuL2R4cmQtZGVzaWduZXItbW9kZWwtc2V0dGluZ3MuY29tcG9uZW50JztcclxuaW1wb3J0IHsgRHhSZXBvcnREZXNpZ25lclByZXZpZXdTZXR0aW5nc0NvbXBvbmVudCB9IGZyb20gJy4vZHhyZC1wcmV2aWV3LXNldHRpbmdzLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IER4UmVwb3J0RGVzaWduZXJSZXF1ZXN0T3B0aW9uc0NvbXBvbmVudCB9IGZyb20gJy4vZHhyZC1yZXF1ZXN0LW9wdGlvbnMnO1xyXG5pbXBvcnQgeyBEeFJlcG9ydERlc2lnbmVyV2l6YXJkU2V0dGluZ3NDb21wb25lbnQgfSBmcm9tICcuL2R4cmQtd2l6YXJkLXNldHRpbmdzLmNvbXBvbmVudCc7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gICAgaWQ6ICdEeFJlcG9ydERlc2lnbmVyTW9kdWxlJyxcclxuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxyXG4gICAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICAgICAgRHhSZXBvcnREZXNpZ25lckNhbGxiYWNrc0NvbXBvbmVudCxcclxuICAgICAgICBEeFJlcG9ydERlc2lnbmVyUmVxdWVzdE9wdGlvbnNDb21wb25lbnQsXHJcbiAgICAgICAgRHhSZXBvcnREZXNpZ25lckNvbXBvbmVudCxcclxuICAgICAgICBEeFJlcG9ydERlc2lnbmVyUHJldmlld1NldHRpbmdzQ29tcG9uZW50LFxyXG4gICAgICAgIER4UmVwb3J0RGVzaWduZXJXaXphcmRTZXR0aW5nc0NvbXBvbmVudCxcclxuICAgICAgICBEeFJlcG9ydERlc2lnbmVyRGF0YVNvdXJjZVNldHRpbmdzQ29tcG9uZW50LFxyXG4gICAgICAgIER4UmVwb3J0RGVzaWduZXJNb2RlbFNldHRpbmdzQ29tcG9uZW50XHJcbiAgICBdLFxyXG4gICAgZXhwb3J0czogW1xyXG4gICAgICAgIER4UmVwb3J0RGVzaWduZXJDYWxsYmFja3NDb21wb25lbnQsXHJcbiAgICAgICAgRHhSZXBvcnREZXNpZ25lclJlcXVlc3RPcHRpb25zQ29tcG9uZW50LFxyXG4gICAgICAgIER4UmVwb3J0RGVzaWduZXJDb21wb25lbnQsXHJcbiAgICAgICAgRHhSZXBvcnREZXNpZ25lclByZXZpZXdTZXR0aW5nc0NvbXBvbmVudCxcclxuICAgICAgICBEeFJlcG9ydERlc2lnbmVyV2l6YXJkU2V0dGluZ3NDb21wb25lbnQsXHJcbiAgICAgICAgRHhSZXBvcnREZXNpZ25lckRhdGFTb3VyY2VTZXR0aW5nc0NvbXBvbmVudCxcclxuICAgICAgICBEeFJlcG9ydERlc2lnbmVyTW9kZWxTZXR0aW5nc0NvbXBvbmVudFxyXG4gICAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgRHhSZXBvcnREZXNpZ25lck1vZHVsZSB7IH1cclxuIl19
|