@bizdoc/core 1.16.9 → 1.16.10
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/assets/system/{Microsoft_Azure.svg → Azure.svg} +0 -0
 - package/assets/system/QAD.svg +12 -358
 - package/assets/system/priority.svg +19 -0
 - package/esm2020/lib/admin/configuration-designer/cube-axes-filter.component.mjs +2 -2
 - package/esm2020/lib/admin/configuration-designer/declarations.mjs +108 -0
 - package/esm2020/lib/admin/configuration-designer/designer-element.component.mjs +120 -223
 - package/esm2020/lib/admin/configuration-designer/designer.base.mjs +23 -82
 - package/esm2020/lib/admin/configuration-designer/designer.component.mjs +5 -3
 - package/esm2020/lib/admin/configuration-designer/elements/action.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/analysis-view.component.mjs +13 -12
 - package/esm2020/lib/admin/configuration-designer/elements/analysis-widget.component.mjs +13 -12
 - package/esm2020/lib/admin/configuration-designer/elements/cube.component.mjs +89 -75
 - package/esm2020/lib/admin/configuration-designer/elements/documents-widget.component.mjs +4 -3
 - package/esm2020/lib/admin/configuration-designer/elements/folder.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/form.component.mjs +6 -5
 - package/esm2020/lib/admin/configuration-designer/elements/guide.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/report.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/return-to-role-action.component.mjs +1 -1
 - package/esm2020/lib/admin/configuration-designer/elements/role.component.mjs +6 -12
 - package/esm2020/lib/admin/configuration-designer/elements/rule.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/state.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/tasks-report.component.mjs +1 -1
 - package/esm2020/lib/admin/configuration-designer/elements/type.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/utility.component.mjs +5 -11
 - package/esm2020/lib/admin/configuration-designer/elements/view.component.mjs +3 -3
 - package/esm2020/lib/admin/configuration-designer/elements/widget.component.mjs +3 -3
 - package/esm2020/lib/core/translations.mjs +10 -4
 - package/esm2020/lib/system.module.mjs +6 -6
 - package/esm2020/public-api.mjs +2 -2
 - package/fesm2015/bizdoc-core.mjs +468 -521
 - package/fesm2015/bizdoc-core.mjs.map +1 -1
 - package/fesm2020/bizdoc-core.mjs +463 -508
 - package/fesm2020/bizdoc-core.mjs.map +1 -1
 - package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts +1 -1
 - package/lib/admin/configuration-designer/declarations.d.ts +203 -0
 - package/lib/admin/configuration-designer/designer-element.component.d.ts +45 -65
 - package/lib/admin/configuration-designer/designer.base.d.ts +5 -197
 - package/lib/admin/configuration-designer/designer.component.d.ts +1 -1
 - package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts +1 -1
 - package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts +1 -1
 - package/lib/admin/configuration-designer/elements/cube.component.d.ts +30 -26
 - package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts +2 -1
 - package/lib/admin/configuration-designer/elements/folder.component.d.ts +2 -1
 - package/lib/admin/configuration-designer/elements/form.component.d.ts +2 -1
 - package/lib/admin/configuration-designer/elements/report.component.d.ts +2 -1
 - package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts +2 -1
 - package/lib/admin/configuration-designer/elements/role.component.d.ts +2 -1
 - package/lib/admin/configuration-designer/elements/rule.component.d.ts +1 -1
 - package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts +2 -1
 - package/lib/admin/configuration-designer/elements/view.component.d.ts +1 -1
 - package/lib/admin/configuration-designer/elements/widget.component.d.ts +3 -2
 - package/lib/core/translations.d.ts +9 -3
 - package/lib/system.module.d.ts +16 -16
 - package/package.json +1 -1
 - package/public-api.d.ts +2 -2
 
| 
         @@ -1,47 +1,51 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { OnInit } from "@angular/core";
         
     | 
| 
       2 
     | 
    
         
            -
            import { FormBuilder } from "@angular/forms";
         
     | 
| 
      
 1 
     | 
    
         
            +
            import { ElementRef, OnInit, TemplateRef } from "@angular/core";
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { FormArray, FormBuilder, FormGroup } from "@angular/forms";
         
     | 
| 
       3 
3 
     | 
    
         
             
            import { PromptService } from "../../../core/prompt.service";
         
     | 
| 
      
 4 
     | 
    
         
            +
            import { Pattern } from "../../../cube/cube.service";
         
     | 
| 
       4 
5 
     | 
    
         
             
            import { CubeInfo, SystemService } from "../../system.service";
         
     | 
| 
       5 
     | 
    
         
            -
            import { DesignerTypeElementComponent 
     | 
| 
      
 6 
     | 
    
         
            +
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import { DesignerRef, ElementInfo, CubeAxisModel, CubeIndexModel } from "../declarations";
         
     | 
| 
       6 
8 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       7 
9 
     | 
    
         
             
            export declare class CubeDesignComponent extends DesignerTypeElementComponent implements OnInit {
         
     | 
| 
       8 
10 
     | 
    
         
             
                private _service;
         
     | 
| 
       9 
11 
     | 
    
         
             
                private _ps;
         
     | 
| 
       10 
     | 
    
         
            -
                readonly views:  
     | 
| 
       11 
     | 
    
         
            -
                readonly axes:  
     | 
| 
       12 
     | 
    
         
            -
                readonly indices:  
     | 
| 
       13 
     | 
    
         
            -
                readonly patterns:  
     | 
| 
      
 12 
     | 
    
         
            +
                readonly views: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
      
 13 
     | 
    
         
            +
                readonly axes: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
      
 14 
     | 
    
         
            +
                readonly indices: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
      
 15 
     | 
    
         
            +
                readonly patterns: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
       14 
16 
     | 
    
         
             
                private _cubeAxesValidator;
         
     | 
| 
       15 
     | 
    
         
            -
                readonly form:  
     | 
| 
       16 
     | 
    
         
            -
                    patterns:  
     | 
| 
       17 
     | 
    
         
            -
                    views:  
     | 
| 
       18 
     | 
    
         
            -
                    axes:  
     | 
| 
       19 
     | 
    
         
            -
                    indices:  
     | 
| 
      
 17 
     | 
    
         
            +
                readonly form: FormGroup<{
         
     | 
| 
      
 18 
     | 
    
         
            +
                    patterns: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
      
 19 
     | 
    
         
            +
                    views: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
      
 20 
     | 
    
         
            +
                    axes: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
      
 21 
     | 
    
         
            +
                    indices: FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
       20 
22 
     | 
    
         
             
                    scope: import("@angular/forms").FormControl<any>;
         
     | 
| 
       21 
23 
     | 
    
         
             
                    anomaly: import("@angular/forms").FormControl<any>;
         
     | 
| 
       22 
24 
     | 
    
         
             
                }>;
         
     | 
| 
       23 
25 
     | 
    
         
             
                usage: CubeInfo;
         
     | 
| 
       24 
26 
     | 
    
         
             
                syncing: boolean;
         
     | 
| 
      
 27 
     | 
    
         
            +
                view: TemplateRef<any>;
         
     | 
| 
      
 28 
     | 
    
         
            +
                context: {
         
     | 
| 
      
 29 
     | 
    
         
            +
                    title: string;
         
     | 
| 
      
 30 
     | 
    
         
            +
                    form: FormGroup;
         
     | 
| 
      
 31 
     | 
    
         
            +
                };
         
     | 
| 
      
 32 
     | 
    
         
            +
                element: ElementRef<any>;
         
     | 
| 
       25 
33 
     | 
    
         
             
                readonly types: ElementInfo[];
         
     | 
| 
      
 34 
     | 
    
         
            +
                accumulative: boolean;
         
     | 
| 
       26 
35 
     | 
    
         
             
                constructor(fb: FormBuilder, _service: SystemService, _ps: PromptService, ref: DesignerRef);
         
     | 
| 
       27 
36 
     | 
    
         
             
                sync(): void;
         
     | 
| 
       28 
37 
     | 
    
         
             
                ngOnInit(): void;
         
     | 
| 
       29 
     | 
    
         
            -
                private  
     | 
| 
      
 38 
     | 
    
         
            +
                private _buildForm;
         
     | 
| 
       30 
39 
     | 
    
         
             
                complete(): void;
         
     | 
| 
       31 
     | 
    
         
            -
                 
     | 
| 
       32 
     | 
    
         
            -
                 
     | 
| 
       33 
     | 
    
         
            -
                 
     | 
| 
       34 
     | 
    
         
            -
                 
     | 
| 
       35 
     | 
    
         
            -
                createAxis(): any;
         
     | 
| 
       36 
     | 
    
         
            -
                addAxis(): void;
         
     | 
| 
       37 
     | 
    
         
            -
                addIndex(): void;
         
     | 
| 
       38 
     | 
    
         
            -
                addView(): void;
         
     | 
| 
       39 
     | 
    
         
            -
                addPattern(): void;
         
     | 
| 
      
 40 
     | 
    
         
            +
                add(collection: FormArray, group: FormGroup, title: string, template: TemplateRef<any>): void;
         
     | 
| 
      
 41 
     | 
    
         
            +
                edit(form: FormGroup, title: string, template: TemplateRef<any>): void;
         
     | 
| 
      
 42 
     | 
    
         
            +
                private _focus;
         
     | 
| 
      
 43 
     | 
    
         
            +
                closeView(evt?: Event): void;
         
     | 
| 
       40 
44 
     | 
    
         
             
                nameOf(axis: string | string[]): string;
         
     | 
| 
       41 
     | 
    
         
            -
                private  
     | 
| 
       42 
     | 
    
         
            -
                 
     | 
| 
       43 
     | 
    
         
            -
                 
     | 
| 
       44 
     | 
    
         
            -
                 
     | 
| 
      
 45 
     | 
    
         
            +
                private newView;
         
     | 
| 
      
 46 
     | 
    
         
            +
                newAxis(model?: CubeAxisModel): any;
         
     | 
| 
      
 47 
     | 
    
         
            +
                newIndex(model?: CubeIndexModel): any;
         
     | 
| 
      
 48 
     | 
    
         
            +
                newPattern(model?: Pattern): any;
         
     | 
| 
       45 
49 
     | 
    
         
             
                datatype(name: string): string;
         
     | 
| 
       46 
50 
     | 
    
         
             
                static ɵfac: i0.ɵɵFactoryDeclaration<CubeDesignComponent, never>;
         
     | 
| 
       47 
51 
     | 
    
         
             
                static ɵcmp: i0.ɵɵComponentDeclaration<CubeDesignComponent, "ng-component", never, {}, {}, never, never, false>;
         
     | 
| 
         @@ -1,7 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import { OnInit } from "@angular/core";
         
     | 
| 
       2 
2 
     | 
    
         
             
            import { FormBuilder } from "@angular/forms";
         
     | 
| 
       3 
3 
     | 
    
         
             
            import { CubeDocumentsSettingsModel } from "../../../dashboard/cube/documents.widget";
         
     | 
| 
       4 
     | 
    
         
            -
            import { DesignerCubeElementComponent 
     | 
| 
      
 4 
     | 
    
         
            +
            import { DesignerCubeElementComponent } from "../designer.base";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import { DesignerRef, ElementInfo } from "../declarations";
         
     | 
| 
       5 
6 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       6 
7 
     | 
    
         
             
            export declare class DocumentsWidgetDesignComponent extends DesignerCubeElementComponent<CubeDocumentsSettingsModel> implements OnInit {
         
     | 
| 
       7 
8 
     | 
    
         
             
                readonly form: import("@angular/forms").FormGroup<{
         
     | 
| 
         @@ -1,4 +1,5 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { DesignerTypeElementComponent 
     | 
| 
      
 1 
     | 
    
         
            +
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { ElementInfo } from "../declarations";
         
     | 
| 
       2 
3 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       3 
4 
     | 
    
         
             
            export declare class FolderDesignComponent extends DesignerTypeElementComponent {
         
     | 
| 
       4 
5 
     | 
    
         
             
                readonly columns: import("@angular/forms").FormArray<import("@angular/forms").FormControl<unknown>>;
         
     | 
| 
         @@ -4,7 +4,8 @@ import { AxisSettingsModel, SparklineMarkerSettingsModel, SparklineTooltipSettin 
     | 
|
| 
       4 
4 
     | 
    
         
             
            import { SessionService } from "../../../core/session.service";
         
     | 
| 
       5 
5 
     | 
    
         
             
            import { PanesRouter } from "../../../core/slots/router.service";
         
     | 
| 
       6 
6 
     | 
    
         
             
            import { SystemService, RangeInfo } from "../../system.service";
         
     | 
| 
       7 
     | 
    
         
            -
            import { DesignerTypeElementComponent 
     | 
| 
      
 7 
     | 
    
         
            +
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import { DesignerRef, ElementInfo } from "../declarations";
         
     | 
| 
       8 
9 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       9 
10 
     | 
    
         
             
            export declare class FormDesignComponent extends DesignerTypeElementComponent implements OnInit {
         
     | 
| 
       10 
11 
     | 
    
         
             
                private _router;
         
     | 
| 
         @@ -1,4 +1,5 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { DesignerTypeElementComponent 
     | 
| 
      
 1 
     | 
    
         
            +
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { ElementInfo } from "../declarations";
         
     | 
| 
       2 
3 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       3 
4 
     | 
    
         
             
            export declare class ReportDesignerComponent extends DesignerTypeElementComponent {
         
     | 
| 
       4 
5 
     | 
    
         
             
                readonly form: import("@angular/forms").FormGroup<{
         
     | 
| 
         @@ -1,5 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import { OnInit } from "@angular/core";
         
     | 
| 
       2 
     | 
    
         
            -
            import { DesignerElementComponentBase 
     | 
| 
      
 2 
     | 
    
         
            +
            import { DesignerElementComponentBase } from "../designer.base";
         
     | 
| 
      
 3 
     | 
    
         
            +
            import { ElementInfo } from "../declarations";
         
     | 
| 
       3 
4 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       4 
5 
     | 
    
         
             
            export declare class ReturnToRoleActionDesignComponent extends DesignerElementComponentBase<Model> implements OnInit {
         
     | 
| 
       5 
6 
     | 
    
         
             
                readonly form: import("@angular/forms").FormGroup<{
         
     | 
| 
         @@ -1,4 +1,5 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { DesignerTypeElementComponent 
     | 
| 
      
 1 
     | 
    
         
            +
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { ElementInfo } from "../declarations";
         
     | 
| 
       2 
3 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       3 
4 
     | 
    
         
             
            export declare class RoleDesignComponent extends DesignerTypeElementComponent {
         
     | 
| 
       4 
5 
     | 
    
         
             
                readonly form: import("@angular/forms").FormGroup<{
         
     | 
| 
         @@ -2,7 +2,7 @@ import { FormGroup } from "@angular/forms"; 
     | 
|
| 
       2 
2 
     | 
    
         
             
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
       3 
3 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       4 
4 
     | 
    
         
             
            export declare class RuleDesignComponent extends DesignerTypeElementComponent {
         
     | 
| 
       5 
     | 
    
         
            -
                form: FormGroup<{}>;
         
     | 
| 
      
 5 
     | 
    
         
            +
                readonly form: FormGroup<{}>;
         
     | 
| 
       6 
6 
     | 
    
         
             
                static ɵfac: i0.ɵɵFactoryDeclaration<RuleDesignComponent, never>;
         
     | 
| 
       7 
7 
     | 
    
         
             
                static ɵcmp: i0.ɵɵComponentDeclaration<RuleDesignComponent, "ng-component", never, {}, {}, never, never, false>;
         
     | 
| 
       8 
8 
     | 
    
         
             
            }
         
     | 
| 
         @@ -1,6 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import { OnInit } from "@angular/core";
         
     | 
| 
       2 
2 
     | 
    
         
             
            import { TasksSettingsModel } from "../../../reports/tasks/tasks.component";
         
     | 
| 
       3 
     | 
    
         
            -
            import { DesignerCubeElementComponent 
     | 
| 
      
 3 
     | 
    
         
            +
            import { DesignerCubeElementComponent } from "../designer.base";
         
     | 
| 
      
 4 
     | 
    
         
            +
            import { ElementInfo } from "../declarations";
         
     | 
| 
       4 
5 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       5 
6 
     | 
    
         
             
            export declare class TasksReportDesignComponent extends DesignerCubeElementComponent<TasksSettingsModel> implements OnInit {
         
     | 
| 
       6 
7 
     | 
    
         
             
                readonly form: import("@angular/forms").FormGroup<{
         
     | 
| 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
       2 
2 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       3 
3 
     | 
    
         
             
            export declare class ViewDesignComponent extends DesignerTypeElementComponent {
         
     | 
| 
       4 
     | 
    
         
            -
                form: import("@angular/forms").FormGroup<{}>;
         
     | 
| 
      
 4 
     | 
    
         
            +
                readonly form: import("@angular/forms").FormGroup<{}>;
         
     | 
| 
       5 
5 
     | 
    
         
             
                static ɵfac: i0.ɵɵFactoryDeclaration<ViewDesignComponent, never>;
         
     | 
| 
       6 
6 
     | 
    
         
             
                static ɵcmp: i0.ɵɵComponentDeclaration<ViewDesignComponent, "ng-component", never, {}, {}, never, never, false>;
         
     | 
| 
       7 
7 
     | 
    
         
             
            }
         
     | 
| 
         @@ -1,7 +1,8 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { DesignerTypeElementComponent 
     | 
| 
      
 1 
     | 
    
         
            +
            import { DesignerTypeElementComponent } from "../designer.base";
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { ElementInfo } from "../declarations";
         
     | 
| 
       2 
3 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       3 
4 
     | 
    
         
             
            export declare class WidgetDesignComponent extends DesignerTypeElementComponent {
         
     | 
| 
       4 
     | 
    
         
            -
                form: import("@angular/forms").FormGroup<{
         
     | 
| 
      
 5 
     | 
    
         
            +
                readonly form: import("@angular/forms").FormGroup<{
         
     | 
| 
       5 
6 
     | 
    
         
             
                    guide: import("@angular/forms").FormControl<unknown>;
         
     | 
| 
       6 
7 
     | 
    
         
             
                }>;
         
     | 
| 
       7 
8 
     | 
    
         
             
                guides: ElementInfo[];
         
     | 
| 
         @@ -84,15 +84,21 @@ export declare const STRINGS: { 
     | 
|
| 
       84 
84 
     | 
    
         
             
                ar: {};
         
     | 
| 
       85 
85 
     | 
    
         
             
                ru: {};
         
     | 
| 
       86 
86 
     | 
    
         
             
                en: {
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Index: string;
         
     | 
| 
      
 88 
     | 
    
         
            +
                    Axis: string;
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Labels: string;
         
     | 
| 
      
 90 
     | 
    
         
            +
                    EnableMultipleSelection: string;
         
     | 
| 
       87 
91 
     | 
    
         
             
                    Past: string;
         
     | 
| 
       88 
92 
     | 
    
         
             
                    Future: string;
         
     | 
| 
       89 
93 
     | 
    
         
             
                    Verb: string;
         
     | 
| 
       90 
94 
     | 
    
         
             
                    Adjective: string;
         
     | 
| 
       91 
95 
     | 
    
         
             
                    AdjectivePlural: string;
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Continue: string;
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Synchronize: string;
         
     | 
| 
       92 
98 
     | 
    
         
             
                    AnomalyNotification: string;
         
     | 
| 
       93 
     | 
    
         
            -
                     
     | 
| 
       94 
     | 
    
         
            -
                     
     | 
| 
       95 
     | 
    
         
            -
                     
     | 
| 
      
 99 
     | 
    
         
            +
                    SecurityGlobalHelp: string;
         
     | 
| 
      
 100 
     | 
    
         
            +
                    SecurityPositionsHelp: string;
         
     | 
| 
      
 101 
     | 
    
         
            +
                    SecurityPatternsHelp: string;
         
     | 
| 
       96 
102 
     | 
    
         
             
                    ReceivedAgo: string;
         
     | 
| 
       97 
103 
     | 
    
         
             
                    IssuedAgo: string;
         
     | 
| 
       98 
104 
     | 
    
         
             
                    Unlock: string;
         
     | 
    
        package/lib/system.module.d.ts
    CHANGED
    
    | 
         @@ -1,20 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import { ModuleWithProviders } from '@angular/core';
         
     | 
| 
       2 
2 
     | 
    
         
             
            import * as i0 from "@angular/core";
         
     | 
| 
       3 
     | 
    
         
            -
            import * as i1 from "./admin/configuration-designer/ 
     | 
| 
       4 
     | 
    
         
            -
            import * as i2 from "./admin/configuration-designer/ 
     | 
| 
       5 
     | 
    
         
            -
            import * as i3 from "./admin/configuration-designer/elements/ 
     | 
| 
       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/ 
     | 
| 
      
 3 
     | 
    
         
            +
            import * as i1 from "./admin/configuration-designer/designer-element.component";
         
     | 
| 
      
 4 
     | 
    
         
            +
            import * as i2 from "./admin/configuration-designer/icon-picker.component";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import * as i3 from "./admin/configuration-designer/elements/state.component";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import * as i4 from "./admin/configuration-designer/elements/role.component";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import * as i5 from "./admin/configuration-designer/elements/guide.component";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import * as i6 from "./admin/configuration-designer/elements/rule.component";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import * as i7 from "./admin/configuration-designer/elements/report.component";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import * as i8 from "./admin/configuration-designer/elements/folder.component";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import * as i9 from "./admin/configuration-designer/elements/utility.component";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import * as i10 from "./admin/configuration-designer/elements/form.component";
         
     | 
| 
      
 13 
     | 
    
         
            +
            import * as i11 from "./admin/configuration-designer/elements/widget.component";
         
     | 
| 
      
 14 
     | 
    
         
            +
            import * as i12 from "./admin/configuration-designer/elements/cube.component";
         
     | 
| 
      
 15 
     | 
    
         
            +
            import * as i13 from "./admin/configuration-designer/elements/action.component";
         
     | 
| 
      
 16 
     | 
    
         
            +
            import * as i14 from "./admin/configuration-designer/elements/view.component";
         
     | 
| 
      
 17 
     | 
    
         
            +
            import * as i15 from "./admin/configuration-designer/elements/type.component";
         
     | 
| 
       18 
18 
     | 
    
         
             
            import * as i16 from "./admin/configuration-designer/cube-axes-filter.component";
         
     | 
| 
       19 
19 
     | 
    
         
             
            import * as i17 from "./admin/configuration-designer/elements/cube-index-utility.component";
         
     | 
| 
       20 
20 
     | 
    
         
             
            import * as i18 from "./admin/configuration-designer/elements/configuration-datasource.component";
         
     | 
| 
         @@ -66,6 +66,6 @@ import * as i63 from "./shared.module"; 
     | 
|
| 
       66 
66 
     | 
    
         
             
            export declare class SystemModule {
         
     | 
| 
       67 
67 
     | 
    
         
             
                static forChild(): ModuleWithProviders<SystemModule>;
         
     | 
| 
       68 
68 
     | 
    
         
             
                static ɵfac: i0.ɵɵFactoryDeclaration<SystemModule, never>;
         
     | 
| 
       69 
     | 
    
         
            -
                static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1. 
     | 
| 
      
 69 
     | 
    
         
            +
                static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.AddContentDirective, typeof i2.IconPickerComponent, typeof i1.EditContentDirective, typeof i1.WidgetContentDirective, typeof i3.StateDesignComponent, typeof i4.RoleDesignComponent, typeof i5.GuideDesignComponent, typeof i6.RuleDesignComponent, typeof i7.ReportDesignerComponent, typeof i8.FolderDesignComponent, typeof i9.UtilityDesignComponent, typeof i10.FormDesignComponent, typeof i11.WidgetDesignComponent, typeof i12.CubeDesignComponent, typeof i13.ActionDesignerComponent, typeof i7.ReportDesignerComponent, typeof i14.ViewDesignComponent, typeof i15.TypeDesignComponent, typeof i16.DesignerCubeFilterComponent, typeof i17.CubeIndexDesignComponent, typeof i18.ConfigurationDatasourceDesignComponent, typeof i19.ReturnToRoleActionDesignComponent, typeof i20.PivotViewDesignComponent, typeof i21.CubeViewDesignComponent, typeof i22.BoxFormDesignComponent, typeof i23.AnomalyRuleDesignComponent, typeof i24.UsageReportDesignComponent, typeof i25.DocumentsWidgetDesignComponent, typeof i26.PerformanceWidgetDesignComponent, typeof i27.DocumentsReportDesignComponent, typeof i28.TasksReportDesignComponent, typeof i29.ExploreViewDesignComponent, typeof i30.AnalysisWidgetDesignComponent, typeof i31.ParallelViewDesignComponent, typeof i32.SumViewDesignComponent, typeof i33.MatrixViewDesignComponent, typeof i34.ChartViewDesignComponent, typeof i35.ConfigurationDesignerComponent, typeof i36.FormDesignerComponent, typeof i1.DesignerItemComponent, typeof i37.PermissionsUtility, typeof i38.ManageCubeIndexUtility, typeof i39.ProfileSettingsDialog, typeof i40.UtilityWrapperComponent, typeof i41.UtilityPaneComponent, typeof i42.SearchInput, typeof i43.ColorPicker, typeof i44.ReassignDialog, typeof i45.SystemDiffComponent, typeof i46.DocumentTraceComponent, typeof i47.TraceElementComponent, typeof i48.ProfilerComponent, typeof i49.PositionsComponent, typeof i50.PositionsPopup, typeof i51.WorkflowComponent, typeof i52.WorkflowNodeComponent, typeof i53.RoleNodeComponent, typeof i54.PatternsComponent], [typeof i55.CommonModule, typeof i56.HttpClientModule, typeof i57.ReactiveFormsModule, typeof i58.FlexLayoutModule, typeof i59.RouterModule, typeof i60.ScrollingModule, typeof i61.SyncfusionDiagramModule, typeof i62.SyncfusionChartModule, typeof i63.SharedModule], [typeof i37.PermissionsUtility, typeof i38.ManageCubeIndexUtility, typeof i40.UtilityWrapperComponent, typeof i41.UtilityPaneComponent, typeof i45.SystemDiffComponent, typeof i46.DocumentTraceComponent, typeof i48.ProfilerComponent, typeof i49.PositionsComponent, typeof i51.WorkflowComponent, typeof i53.RoleNodeComponent, typeof i54.PatternsComponent]>;
         
     | 
| 
       70 
70 
     | 
    
         
             
                static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
         
     | 
| 
       71 
71 
     | 
    
         
             
            }
         
     | 
    
        package/package.json
    CHANGED
    
    
    
        package/public-api.d.ts
    CHANGED
    
    | 
         @@ -8,7 +8,7 @@ export { isMobile, isArray, isBoolean, isDate, isObject, isString, isFunction, i 
     | 
|
| 
       8 
8 
     | 
    
         
             
            export { BizDoc, ComponentType } from './lib/core/decorators';
         
     | 
| 
       9 
9 
     | 
    
         
             
            export * from './lib/core/configuration';
         
     | 
| 
       10 
10 
     | 
    
         
             
            export { BizDocApp, BrokenPage } from './lib/app.component';
         
     | 
| 
       11 
     | 
    
         
            -
            export { Folder, Form, LatLng, Dimentions, Guide, GuideStep, Gender, CubeAxis, AxisValue, RecipientModel, Action, State, HeaderModel, LogType, Role, Comment, Attachment, DocumentModel, DRAFT, INBOX, ScheduledEvent, CubeEntry, Log, Recipient, Cube, Widget, Report, CubeIndex, AxesMap, CubeView, Notification, FieldType, UserInfo } from './lib/core/models';
         
     | 
| 
      
 11 
     | 
    
         
            +
            export { ChartType, Folder, Form, LatLng, Dimentions, Guide, GuideStep, Gender, CubeAxis, AxisValue, RecipientModel, Action, State, HeaderModel, LogType, Role, Comment, Attachment, DocumentModel, DRAFT, INBOX, ScheduledEvent, CubeEntry, Log, Recipient, Cube, Widget, Report, CubeIndex, AxesMap, CubeView, Notification, FieldType, UserInfo } from './lib/core/models';
         
     | 
| 
       12 
12 
     | 
    
         
             
            export { AxisClickEvent, AxisPlace, AxisType } from './lib/cube/declarations';
         
     | 
| 
       13 
13 
     | 
    
         
             
            export { UtilityRef } from "./lib/admin/utility-ref";
         
     | 
| 
       14 
14 
     | 
    
         
             
            export { ReportRef, ExportEventArgs } from "./lib/reports/report-ref";
         
     | 
| 
         @@ -46,7 +46,7 @@ export { IdentityName } from './lib/core/identity/identity.component'; 
     | 
|
| 
       46 
46 
     | 
    
         
             
            export { ArraySortPipe, FilterPipe } from './lib/core/pipes/sort.pipe';
         
     | 
| 
       47 
47 
     | 
    
         
             
            export { TranslatePipe } from "./lib/core/pipes/translate.pipe";
         
     | 
| 
       48 
48 
     | 
    
         
             
            export { FormPipe } from './lib/core/pipes/form.pipe';
         
     | 
| 
       49 
     | 
    
         
            -
            export { DesignerElementComponent, DesignMode, DesignerRef, DesignerInfo, ElementInfo, programName } from './lib/admin/configuration-designer/ 
     | 
| 
      
 49 
     | 
    
         
            +
            export { DesignerElementComponent, DesignMode, DesignerRef, DesignerInfo, ElementInfo, programName } from './lib/admin/configuration-designer/declarations';
         
     | 
| 
       50 
50 
     | 
    
         
             
            export { RolePipe } from './lib/core/pipes/role.pipe';
         
     | 
| 
       51 
51 
     | 
    
         
             
            export { JoinPipe } from "./lib/core/pipes/join.pipe";
         
     | 
| 
       52 
52 
     | 
    
         
             
            export { SanitizeHtmlPipe } from './lib/core/pipes/sanitize-html.pipe';
         
     |