@bizdoc/core 1.16.12 → 1.16.13
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/esm2020/lib/admin/configuration-designer/cube-axes-filter.component.mjs +14 -30
- package/esm2020/lib/admin/configuration-designer/declarations.mjs +10 -2
- package/esm2020/lib/admin/configuration-designer/designer-element.component.mjs +39 -48
- package/esm2020/lib/admin/configuration-designer/designer-privileges.component.mjs +90 -0
- package/esm2020/lib/admin/configuration-designer/elements/analysis-view.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/analysis-widget.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/configuration-datasource.component.mjs +4 -4
- package/esm2020/lib/admin/configuration-designer/elements/cube.component.mjs +17 -10
- package/esm2020/lib/admin/configuration-designer/elements/matrix-view.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/parallel-view.component.mjs +5 -6
- package/esm2020/lib/admin/configuration-designer/elements/pivot-view.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/sum-view.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/usage-report.component.mjs +3 -3
- package/esm2020/lib/admin/indices/manage-cube-index.component.mjs +2 -2
- package/esm2020/lib/admin/patterns/patterns.component.mjs +2 -2
- package/esm2020/lib/core/controls/combination-pool.mjs +2 -2
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/translations.mjs +4 -1
- package/esm2020/lib/cube/explore/explore-items.component.mjs +2 -2
- package/esm2020/lib/cube/filter/filter.component.mjs +3 -3
- package/esm2020/lib/cube/view-base.mjs +1 -2
- package/esm2020/lib/dashboard/cube/filter/filter.component.mjs +2 -2
- package/esm2020/lib/notifications/types/cube-anomaly.notification.mjs +2 -2
- package/esm2020/lib/reports/cube/usage-args.component.mjs +3 -3
- package/esm2020/lib/reports/cube/usage-base.mjs +2 -2
- package/esm2020/lib/reports/cube/usage-pivot.component.mjs +2 -2
- package/esm2020/lib/system.module.mjs +4 -3
- package/esm2020/lib/views/cube/view.component.mjs +2 -2
- package/fesm2015/bizdoc-core.mjs +242 -171
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +239 -170
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts +4 -8
- package/lib/admin/configuration-designer/declarations.d.ts +7 -0
- package/lib/admin/configuration-designer/designer-element.component.d.ts +7 -6
- package/lib/admin/configuration-designer/designer-privileges.component.d.ts +34 -0
- package/lib/admin/configuration-designer/elements/cube.component.d.ts +2 -3
- package/lib/core/models.d.ts +0 -1
- package/lib/core/translations.d.ts +3 -0
- package/lib/system.module.d.ts +65 -64
- package/package.json +1 -1
@@ -1,18 +1,16 @@
|
|
1
|
-
import {
|
1
|
+
import { OnDestroy, OnChanges, SimpleChanges } from '@angular/core';
|
2
2
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
3
3
|
import { Observable } from 'rxjs';
|
4
|
-
import { AxesMap } from '../../core/models';
|
5
4
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
6
5
|
import { CubeService } from '../../cube/cube.service';
|
7
6
|
import { DesignerRef, ElementModel } from './declarations';
|
8
7
|
import * as i0 from "@angular/core";
|
9
|
-
export declare class DesignerCubeFilterComponent implements
|
8
|
+
export declare class DesignerCubeFilterComponent implements OnChanges, OnDestroy {
|
10
9
|
private readonly _service;
|
11
10
|
private _ref;
|
12
11
|
private readonly _fb;
|
13
12
|
readonly pattern: RegExp;
|
14
13
|
cube: ElementModel;
|
15
|
-
model: AxesMap;
|
16
14
|
form: FormGroup;
|
17
15
|
readonly sources: {
|
18
16
|
[axis: string]: Observable<{
|
@@ -22,14 +20,12 @@ export declare class DesignerCubeFilterComponent implements OnInit, OnChanges, O
|
|
22
20
|
private readonly _decendents;
|
23
21
|
private readonly _ancestors;
|
24
22
|
private readonly _destroy;
|
25
|
-
|
26
|
-
ngOnChanges(changes: SimpleChanges): void;
|
27
|
-
private _initialize;
|
23
|
+
ngOnChanges(_changes: SimpleChanges): void;
|
28
24
|
/** filter ctor */
|
29
25
|
constructor(_service: CubeService, _ref: DesignerRef, _fb: FormBuilder);
|
30
26
|
display(keyValue: any): any;
|
31
27
|
change(axis: string, evt: MatAutocompleteSelectedEvent): void;
|
32
28
|
ngOnDestroy(): void;
|
33
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerCubeFilterComponent, never>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerCubeFilterComponent, "bizdoc-designer-cube-filter", never, { "cube": "cube"; "
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerCubeFilterComponent, "bizdoc-designer-cube-filter", never, { "cube": "cube"; "form": "form"; }, {}, never, never, false>;
|
35
31
|
}
|
@@ -144,6 +144,13 @@ export interface CubeViewModel {
|
|
144
144
|
chartType?: ChartType;
|
145
145
|
indicesChartType?: ChartType;
|
146
146
|
}
|
147
|
+
export interface PatternModel {
|
148
|
+
title: string;
|
149
|
+
axes: AxesMap;
|
150
|
+
hidden?: boolean;
|
151
|
+
rule?: string;
|
152
|
+
roles?: string[];
|
153
|
+
}
|
147
154
|
export interface CubeAxisModel {
|
148
155
|
name: string;
|
149
156
|
title: string;
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { AfterViewInit, ComponentRef, ElementRef, EventEmitter, OnDestroy, TemplateRef } from "@angular/core";
|
2
2
|
import { FormBuilder, FormControl, FormGroup } from "@angular/forms";
|
3
|
+
import { Portal } from "@angular/cdk/portal";
|
3
4
|
import { BizDocComponentFactoryResolver } from "../../core/component-factory-resolver";
|
4
5
|
import { SystemService } from "../system.service";
|
5
6
|
import { Role } from "../../core/models";
|
6
7
|
import { DesignerRef, ElementModel, DesignMode, DesignerElementComponent } from "./declarations";
|
7
8
|
import { LayoutComponent } from "../../core/layout/layout.component";
|
8
|
-
import { Portal } from "@angular/cdk/portal";
|
9
9
|
import { PaneRef } from "../../core/slots/pane-ref";
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
export declare class EditContentDirective {
|
@@ -29,12 +29,12 @@ export declare class AddContentDirective {
|
|
29
29
|
/**
|
30
30
|
*/
|
31
31
|
export declare class DesignerItemComponent implements AfterViewInit, OnDestroy {
|
32
|
-
private _ref;
|
33
32
|
private _element;
|
34
|
-
private
|
33
|
+
private _service;
|
35
34
|
private _fb;
|
35
|
+
private _pane;
|
36
|
+
private _ref;
|
36
37
|
private _cfr;
|
37
|
-
private _service;
|
38
38
|
readonly svg: {
|
39
39
|
Azure: string;
|
40
40
|
SAP: string;
|
@@ -54,7 +54,8 @@ export declare class DesignerItemComponent implements AfterViewInit, OnDestroy {
|
|
54
54
|
rolesfilter: FormControl;
|
55
55
|
private _options;
|
56
56
|
private readonly _destroy;
|
57
|
-
|
57
|
+
state: any;
|
58
|
+
constructor(_element: ElementRef<HTMLDivElement>, _service: SystemService, _fb: FormBuilder, _pane: PaneRef, _ref: DesignerRef<any>, _cfr: BizDocComponentFactoryResolver);
|
58
59
|
attached(componentRef: ComponentRef<DesignerElementComponent<any>> | ComponentRef<LayoutComponent>): void;
|
59
60
|
ngOnInit(): void;
|
60
61
|
private _addForm;
|
@@ -68,6 +69,6 @@ export declare class DesignerItemComponent implements AfterViewInit, OnDestroy {
|
|
68
69
|
*/
|
69
70
|
handleKeyboardEvent(event: KeyboardEvent): void;
|
70
71
|
ngOnDestroy(): void;
|
71
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerItemComponent, [null, null, { optional: true; }, null, null
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerItemComponent, [null, null, null, { optional: true; }, null, null]>;
|
72
73
|
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerItemComponent, "bizdoc-designer-element", never, { "form": "form"; }, { "onContinue": "continue"; "onSave": "save"; }, ["editContent", "widgetContent"], never, false>;
|
73
74
|
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import { OnInit } from "@angular/core";
|
2
|
+
import { MatAutocompleteSelectedEvent } from "@angular/material/autocomplete";
|
3
|
+
import { FormBuilder, FormGroup } from "@angular/forms";
|
4
|
+
import { SystemService } from "../system.service";
|
5
|
+
import { Role } from "../../core/models";
|
6
|
+
import { DesignerRef } from "./declarations";
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
/** */
|
9
|
+
export declare class DesignerPrivilegesComponent implements OnInit {
|
10
|
+
private _fb;
|
11
|
+
private _service;
|
12
|
+
private _ref;
|
13
|
+
readonly separatorKeysCodes: number[];
|
14
|
+
form: FormGroup;
|
15
|
+
private _roles;
|
16
|
+
roles: Role[];
|
17
|
+
readonly search: import("@angular/forms").FormControl<any>;
|
18
|
+
constructor(_fb: FormBuilder, _service: SystemService, _ref: DesignerRef<any>);
|
19
|
+
ngOnInit(): void;
|
20
|
+
titleOf(name: string): any;
|
21
|
+
/**
|
22
|
+
*
|
23
|
+
* @param id
|
24
|
+
*/
|
25
|
+
remove(id: string): void;
|
26
|
+
/**
|
27
|
+
*
|
28
|
+
* @param inp
|
29
|
+
* @param event
|
30
|
+
*/
|
31
|
+
add(inp: HTMLInputElement, event: MatAutocompleteSelectedEvent): void;
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerPrivilegesComponent, never>;
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerPrivilegesComponent, "bizdoc-designer-privileges", never, { "form": "form"; }, {}, never, never, false>;
|
34
|
+
}
|
@@ -1,10 +1,9 @@
|
|
1
1
|
import { ElementRef, OnInit, TemplateRef } from "@angular/core";
|
2
2
|
import { FormArray, FormBuilder, FormGroup } from "@angular/forms";
|
3
3
|
import { PromptService } from "../../../core/prompt.service";
|
4
|
-
import { Pattern } from "../../../cube/cube.service";
|
5
4
|
import { CubeInfo, SystemService } from "../../system.service";
|
6
5
|
import { DesignerTypeElementComponent } from "../designer.base";
|
7
|
-
import { DesignerRef, ElementInfo, CubeAxisModel, CubeIndexModel } from "../declarations";
|
6
|
+
import { DesignerRef, ElementInfo, CubeAxisModel, CubeIndexModel, PatternModel } from "../declarations";
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
export declare class CubeDesignComponent extends DesignerTypeElementComponent implements OnInit {
|
10
9
|
private _service;
|
@@ -45,7 +44,7 @@ export declare class CubeDesignComponent extends DesignerTypeElementComponent im
|
|
45
44
|
private newView;
|
46
45
|
newAxis(model?: CubeAxisModel): any;
|
47
46
|
newIndex(model?: CubeIndexModel): any;
|
48
|
-
newPattern(model?:
|
47
|
+
newPattern(model?: PatternModel): any;
|
49
48
|
datatype(name: string): string;
|
50
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeDesignComponent, never>;
|
51
50
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeDesignComponent, "ng-component", never, {}, {}, never, never, false>;
|
package/lib/core/models.d.ts
CHANGED
package/lib/system.module.d.ts
CHANGED
@@ -1,71 +1,72 @@
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
|
-
import * as i1 from "./admin/configuration-designer/designer-
|
4
|
-
import * as i2 from "./admin/configuration-designer/
|
5
|
-
import * as i3 from "./admin/configuration-designer/
|
6
|
-
import * as i4 from "./admin/configuration-designer/elements/
|
7
|
-
import * as i5 from "./admin/configuration-designer/elements/
|
8
|
-
import * as i6 from "./admin/configuration-designer/elements/
|
9
|
-
import * as i7 from "./admin/configuration-designer/elements/
|
10
|
-
import * as i8 from "./admin/configuration-designer/elements/
|
11
|
-
import * as i9 from "./admin/configuration-designer/elements/
|
12
|
-
import * as i10 from "./admin/configuration-designer/elements/
|
13
|
-
import * as i11 from "./admin/configuration-designer/elements/
|
14
|
-
import * as i12 from "./admin/configuration-designer/elements/
|
15
|
-
import * as i13 from "./admin/configuration-designer/elements/
|
16
|
-
import * as i14 from "./admin/configuration-designer/elements/
|
17
|
-
import * as i15 from "./admin/configuration-designer/elements/
|
18
|
-
import * as i16 from "./admin/configuration-designer/
|
19
|
-
import * as i17 from "./admin/configuration-designer/
|
20
|
-
import * as i18 from "./admin/configuration-designer/elements/
|
21
|
-
import * as i19 from "./admin/configuration-designer/elements/
|
22
|
-
import * as i20 from "./admin/configuration-designer/elements/
|
23
|
-
import * as i21 from "./admin/configuration-designer/elements/
|
24
|
-
import * as i22 from "./admin/configuration-designer/elements/
|
25
|
-
import * as i23 from "./admin/configuration-designer/elements/
|
26
|
-
import * as i24 from "./admin/configuration-designer/elements/
|
27
|
-
import * as i25 from "./admin/configuration-designer/elements/
|
28
|
-
import * as i26 from "./admin/configuration-designer/elements/
|
29
|
-
import * as i27 from "./admin/configuration-designer/elements/
|
30
|
-
import * as i28 from "./admin/configuration-designer/elements/
|
31
|
-
import * as i29 from "./admin/configuration-designer/elements/
|
32
|
-
import * as i30 from "./admin/configuration-designer/elements/
|
33
|
-
import * as i31 from "./admin/configuration-designer/elements/
|
34
|
-
import * as i32 from "./admin/configuration-designer/elements/
|
35
|
-
import * as i33 from "./admin/configuration-designer/elements/
|
36
|
-
import * as i34 from "./admin/configuration-designer/elements/
|
37
|
-
import * as i35 from "./admin/configuration-designer/
|
38
|
-
import * as i36 from "./admin/
|
39
|
-
import * as i37 from "./admin/
|
40
|
-
import * as i38 from "./admin/
|
41
|
-
import * as i39 from "./admin/
|
42
|
-
import * as i40 from "./admin/
|
43
|
-
import * as i41 from "./admin/utility.
|
44
|
-
import * as i42 from "./admin/
|
45
|
-
import * as i43 from "./admin/core/
|
46
|
-
import * as i44 from "./admin/
|
47
|
-
import * as i45 from "./admin/
|
48
|
-
import * as i46 from "./admin/
|
49
|
-
import * as i47 from "./admin/document-trace/trace
|
50
|
-
import * as i48 from "./admin/
|
51
|
-
import * as i49 from "./admin/
|
52
|
-
import * as i50 from "./admin/positions/positions
|
53
|
-
import * as i51 from "./admin/
|
54
|
-
import * as i52 from "./admin/form/workflow/
|
55
|
-
import * as i53 from "./admin/form/workflow/
|
56
|
-
import * as i54 from "./admin/
|
57
|
-
import * as i55 from "
|
58
|
-
import * as i56 from "@angular/common
|
59
|
-
import * as i57 from "@angular/
|
60
|
-
import * as i58 from "@angular/
|
61
|
-
import * as i59 from "@angular/
|
62
|
-
import * as i60 from "@angular/
|
63
|
-
import * as i61 from "
|
64
|
-
import * as i62 from "./modules/
|
65
|
-
import * as i63 from "./
|
3
|
+
import * as i1 from "./admin/configuration-designer/designer-privileges.component";
|
4
|
+
import * as i2 from "./admin/configuration-designer/designer-element.component";
|
5
|
+
import * as i3 from "./admin/configuration-designer/icon-picker.component";
|
6
|
+
import * as i4 from "./admin/configuration-designer/elements/state.component";
|
7
|
+
import * as i5 from "./admin/configuration-designer/elements/role.component";
|
8
|
+
import * as i6 from "./admin/configuration-designer/elements/guide.component";
|
9
|
+
import * as i7 from "./admin/configuration-designer/elements/rule.component";
|
10
|
+
import * as i8 from "./admin/configuration-designer/elements/report.component";
|
11
|
+
import * as i9 from "./admin/configuration-designer/elements/folder.component";
|
12
|
+
import * as i10 from "./admin/configuration-designer/elements/utility.component";
|
13
|
+
import * as i11 from "./admin/configuration-designer/elements/form.component";
|
14
|
+
import * as i12 from "./admin/configuration-designer/elements/widget.component";
|
15
|
+
import * as i13 from "./admin/configuration-designer/elements/cube.component";
|
16
|
+
import * as i14 from "./admin/configuration-designer/elements/action.component";
|
17
|
+
import * as i15 from "./admin/configuration-designer/elements/view.component";
|
18
|
+
import * as i16 from "./admin/configuration-designer/elements/type.component";
|
19
|
+
import * as i17 from "./admin/configuration-designer/cube-axes-filter.component";
|
20
|
+
import * as i18 from "./admin/configuration-designer/elements/cube-index-utility.component";
|
21
|
+
import * as i19 from "./admin/configuration-designer/elements/configuration-datasource.component";
|
22
|
+
import * as i20 from "./admin/configuration-designer/elements/return-to-role-action.component";
|
23
|
+
import * as i21 from "./admin/configuration-designer/elements/pivot-view.component";
|
24
|
+
import * as i22 from "./admin/configuration-designer/elements/cube-view.component";
|
25
|
+
import * as i23 from "./admin/configuration-designer/elements/box-form.component";
|
26
|
+
import * as i24 from "./admin/configuration-designer/elements/anomaly-rule.component";
|
27
|
+
import * as i25 from "./admin/configuration-designer/elements/usage-report.component";
|
28
|
+
import * as i26 from "./admin/configuration-designer/elements/documents-widget.component";
|
29
|
+
import * as i27 from "./admin/configuration-designer/elements/performance-widget.component";
|
30
|
+
import * as i28 from "./admin/configuration-designer/elements/documents-report.component";
|
31
|
+
import * as i29 from "./admin/configuration-designer/elements/tasks-report.component";
|
32
|
+
import * as i30 from "./admin/configuration-designer/elements/explore-view.component";
|
33
|
+
import * as i31 from "./admin/configuration-designer/elements/analysis-widget.component";
|
34
|
+
import * as i32 from "./admin/configuration-designer/elements/parallel-view.component";
|
35
|
+
import * as i33 from "./admin/configuration-designer/elements/sum-view.component";
|
36
|
+
import * as i34 from "./admin/configuration-designer/elements/matrix-view.component";
|
37
|
+
import * as i35 from "./admin/configuration-designer/elements/analysis-view.component";
|
38
|
+
import * as i36 from "./admin/configuration-designer/designer.component";
|
39
|
+
import * as i37 from "./admin/form/designer/designer.component";
|
40
|
+
import * as i38 from "./admin/permissions/permissions.component";
|
41
|
+
import * as i39 from "./admin/indices/manage-cube-index.component";
|
42
|
+
import * as i40 from "./admin/profiler/outofoffice.component";
|
43
|
+
import * as i41 from "./admin/utility-wrapper.component";
|
44
|
+
import * as i42 from "./admin/utility.pane.component";
|
45
|
+
import * as i43 from "./admin/core/search.input";
|
46
|
+
import * as i44 from "./admin/core/color-picker.input";
|
47
|
+
import * as i45 from "./admin/document-trace/reassign.dialog";
|
48
|
+
import * as i46 from "./admin/diff/configuration-diff.component";
|
49
|
+
import * as i47 from "./admin/document-trace/document-trace.component";
|
50
|
+
import * as i48 from "./admin/document-trace/trace-element.component";
|
51
|
+
import * as i49 from "./admin/profiler/profiler.component";
|
52
|
+
import * as i50 from "./admin/positions/positions.component";
|
53
|
+
import * as i51 from "./admin/positions/positions-popup.component";
|
54
|
+
import * as i52 from "./admin/form/workflow/workflow.component";
|
55
|
+
import * as i53 from "./admin/form/workflow/node.component";
|
56
|
+
import * as i54 from "./admin/form/workflow/role-node.component";
|
57
|
+
import * as i55 from "./admin/patterns/patterns.component";
|
58
|
+
import * as i56 from "@angular/common";
|
59
|
+
import * as i57 from "@angular/common/http";
|
60
|
+
import * as i58 from "@angular/forms";
|
61
|
+
import * as i59 from "@angular/flex-layout";
|
62
|
+
import * as i60 from "@angular/router";
|
63
|
+
import * as i61 from "@angular/cdk/scrolling";
|
64
|
+
import * as i62 from "./modules/diagram.module";
|
65
|
+
import * as i63 from "./modules/chart.module";
|
66
|
+
import * as i64 from "./shared.module";
|
66
67
|
export declare class SystemModule {
|
67
68
|
static forChild(): ModuleWithProviders<SystemModule>;
|
68
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemModule, never>;
|
69
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.
|
70
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.DesignerPrivilegesComponent, typeof i2.AddContentDirective, typeof i3.IconPickerComponent, typeof i2.EditContentDirective, typeof i2.WidgetContentDirective, typeof i4.StateDesignComponent, typeof i5.RoleDesignComponent, typeof i6.GuideDesignComponent, typeof i7.RuleDesignComponent, typeof i8.ReportDesignerComponent, typeof i9.FolderDesignComponent, typeof i10.UtilityDesignComponent, typeof i11.FormDesignComponent, typeof i12.WidgetDesignComponent, typeof i13.CubeDesignComponent, typeof i14.ActionDesignerComponent, typeof i8.ReportDesignerComponent, typeof i15.ViewDesignComponent, typeof i16.TypeDesignComponent, typeof i17.DesignerCubeFilterComponent, typeof i18.CubeIndexDesignComponent, typeof i19.ConfigurationDatasourceDesignComponent, typeof i20.ReturnToRoleActionDesignComponent, typeof i21.PivotViewDesignComponent, typeof i22.CubeViewDesignComponent, typeof i23.BoxFormDesignComponent, typeof i24.AnomalyRuleDesignComponent, typeof i25.UsageReportDesignComponent, typeof i26.DocumentsWidgetDesignComponent, typeof i27.PerformanceWidgetDesignComponent, typeof i28.DocumentsReportDesignComponent, typeof i29.TasksReportDesignComponent, typeof i30.ExploreViewDesignComponent, typeof i31.AnalysisWidgetDesignComponent, typeof i32.ParallelViewDesignComponent, typeof i33.SumViewDesignComponent, typeof i34.MatrixViewDesignComponent, typeof i35.ChartViewDesignComponent, typeof i36.ConfigurationDesignerComponent, typeof i37.FormDesignerComponent, typeof i2.DesignerItemComponent, typeof i38.PermissionsUtility, typeof i39.ManageCubeIndexUtility, typeof i40.ProfileSettingsDialog, typeof i41.UtilityWrapperComponent, typeof i42.UtilityPaneComponent, typeof i43.SearchInput, typeof i44.ColorPicker, typeof i45.ReassignDialog, typeof i46.SystemDiffComponent, typeof i47.DocumentTraceComponent, typeof i48.TraceElementComponent, typeof i49.ProfilerComponent, typeof i50.PositionsComponent, typeof i51.PositionsPopup, typeof i52.WorkflowComponent, typeof i53.WorkflowNodeComponent, typeof i54.RoleNodeComponent, typeof i55.PatternsComponent], [typeof i56.CommonModule, typeof i57.HttpClientModule, typeof i58.ReactiveFormsModule, typeof i59.FlexLayoutModule, typeof i60.RouterModule, typeof i61.ScrollingModule, typeof i62.SyncfusionDiagramModule, typeof i63.SyncfusionChartModule, typeof i64.SharedModule], [typeof i38.PermissionsUtility, typeof i39.ManageCubeIndexUtility, typeof i41.UtilityWrapperComponent, typeof i42.UtilityPaneComponent, typeof i46.SystemDiffComponent, typeof i47.DocumentTraceComponent, typeof i49.ProfilerComponent, typeof i50.PositionsComponent, typeof i52.WorkflowComponent, typeof i54.RoleNodeComponent, typeof i55.PatternsComponent]>;
|
70
71
|
static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
|
71
72
|
}
|
package/package.json
CHANGED