@bizdoc/core 1.15.7 → 1.16.2
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/bizdoc-schema.json +14 -13
- package/esm2020/lib/admin/configuration-designer/designer-element.component.mjs +113 -44
- package/esm2020/lib/admin/configuration-designer/designer.base.mjs +43 -37
- package/esm2020/lib/admin/configuration-designer/designer.component.mjs +82 -64
- package/esm2020/lib/admin/configuration-designer/elements/action.component.mjs +8 -6
- package/esm2020/lib/admin/configuration-designer/elements/analysis-view.component.mjs +7 -7
- package/esm2020/lib/admin/configuration-designer/elements/analysis-widget.component.mjs +5 -7
- package/esm2020/lib/admin/configuration-designer/elements/box-form.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/configuration-datasource.component.mjs +31 -26
- package/esm2020/lib/admin/configuration-designer/elements/cube-index-utility.component.mjs +32 -0
- package/esm2020/lib/admin/configuration-designer/elements/cube-view.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/cube.component.mjs +91 -55
- package/esm2020/lib/admin/configuration-designer/elements/documents-widget.component.mjs +2 -2
- package/esm2020/lib/admin/configuration-designer/elements/folder.component.mjs +13 -9
- package/esm2020/lib/admin/configuration-designer/elements/form.component.mjs +30 -39
- package/esm2020/lib/admin/configuration-designer/elements/guide.component.mjs +24 -17
- package/esm2020/lib/admin/configuration-designer/elements/matrix-view.component.mjs +13 -17
- package/esm2020/lib/admin/configuration-designer/elements/parallel-view.component.mjs +3 -3
- package/esm2020/lib/admin/configuration-designer/elements/pivot-view.component.mjs +2 -2
- package/esm2020/lib/admin/configuration-designer/elements/report.component.mjs +14 -6
- package/esm2020/lib/admin/configuration-designer/elements/return-to-role-action.component.mjs +11 -15
- package/esm2020/lib/admin/configuration-designer/elements/role.component.mjs +12 -8
- package/esm2020/lib/admin/configuration-designer/elements/rule.component.mjs +8 -3
- package/esm2020/lib/admin/configuration-designer/elements/state.component.mjs +11 -11
- package/esm2020/lib/admin/configuration-designer/elements/sum-view.component.mjs +5 -6
- package/esm2020/lib/admin/configuration-designer/elements/tasks-report.component.mjs +2 -2
- package/esm2020/lib/admin/configuration-designer/elements/type.component.mjs +11 -11
- package/esm2020/lib/admin/configuration-designer/elements/usage-report.component.mjs +4 -4
- package/esm2020/lib/admin/configuration-designer/elements/utility.component.mjs +14 -6
- package/esm2020/lib/admin/configuration-designer/elements/view.component.mjs +13 -11
- package/esm2020/lib/admin/configuration-designer/elements/widget.component.mjs +14 -4
- package/esm2020/lib/admin/configuration-designer/icon-picker.component.mjs +12 -6
- package/esm2020/lib/admin/configuration-designer/privileges.component.mjs +25 -15
- package/esm2020/lib/admin/form/designer/designer.component.mjs +15 -7
- package/esm2020/lib/admin/patterns/patterns.component.mjs +1 -1
- package/esm2020/lib/core/datasource.service.mjs +1 -1
- package/esm2020/lib/core/layout/layout.component.mjs +19 -31
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/translations.mjs +6 -1
- package/esm2020/lib/cube/cube-info.service.mjs +1 -1
- package/esm2020/lib/cube/cube.service.mjs +1 -1
- package/esm2020/lib/cube/declarations.mjs +1 -1
- package/esm2020/lib/cube/matrix/matrix.base.mjs +2 -2
- package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +1 -1
- package/esm2020/lib/cube/matrix/table.component.mjs +19 -19
- package/esm2020/lib/cube/sum/sum.component.mjs +1 -1
- package/esm2020/lib/reports/cube/usage-base.mjs +1 -1
- package/esm2020/lib/shared.module.mjs +3 -1
- package/esm2020/lib/system.module.mjs +11 -6
- package/esm2020/lib/views/cube/parallel.component.mjs +1 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/bizdoc-core.mjs +6399 -6202
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +5241 -5043
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/admin/configuration-designer/designer-element.component.d.ts +30 -10
- package/lib/admin/configuration-designer/designer.base.d.ts +75 -36
- package/lib/admin/configuration-designer/designer.component.d.ts +10 -7
- package/lib/admin/configuration-designer/elements/action.component.d.ts +2 -0
- package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts +2 -1
- package/lib/admin/configuration-designer/elements/configuration-datasource.component.d.ts +9 -8
- package/lib/admin/configuration-designer/elements/cube-index-utility.component.d.ts +12 -0
- package/lib/admin/configuration-designer/elements/cube.component.d.ts +17 -7
- package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts +2 -2
- package/lib/admin/configuration-designer/elements/folder.component.d.ts +3 -0
- package/lib/admin/configuration-designer/elements/form.component.d.ts +7 -2
- package/lib/admin/configuration-designer/elements/guide.component.d.ts +4 -2
- package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts +0 -2
- package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts +1 -1
- package/lib/admin/configuration-designer/elements/report.component.d.ts +3 -0
- package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts +2 -4
- package/lib/admin/configuration-designer/elements/role.component.d.ts +5 -2
- package/lib/admin/configuration-designer/elements/rule.component.d.ts +2 -0
- package/lib/admin/configuration-designer/elements/state.component.d.ts +4 -1
- package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts +2 -2
- package/lib/admin/configuration-designer/elements/type.component.d.ts +3 -1
- package/lib/admin/configuration-designer/elements/utility.component.d.ts +3 -0
- package/lib/admin/configuration-designer/elements/view.component.d.ts +4 -6
- package/lib/admin/configuration-designer/elements/widget.component.d.ts +2 -0
- package/lib/admin/configuration-designer/privileges.component.d.ts +6 -4
- package/lib/admin/patterns/patterns.component.d.ts +2 -2
- package/lib/core/datasource.service.d.ts +3 -3
- package/lib/core/layout/layout.component.d.ts +0 -3
- package/lib/core/models.d.ts +2 -2
- package/lib/core/translations.d.ts +5 -0
- package/lib/cube/cube-info.service.d.ts +3 -2
- package/lib/cube/cube.service.d.ts +8 -8
- package/lib/cube/declarations.d.ts +2 -0
- package/lib/cube/matrix/matrix.base.d.ts +4 -3
- package/lib/cube/matrix/matrix.pane.component.d.ts +3 -2
- package/lib/cube/matrix/table.component.d.ts +9 -5
- package/lib/reports/cube/usage-base.d.ts +2 -2
- package/lib/shared.module.d.ts +1 -1
- package/lib/system.module.d.ts +50 -48
- package/lib/views/cube/parallel.component.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +4 -2
@@ -1,6 +1,6 @@
|
|
1
|
-
import { EventEmitter, OnInit } from "@angular/core";
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from "@angular/core";
|
2
2
|
import { FormBuilder } from "@angular/forms";
|
3
|
-
import { MatSelectionListChange } from "@angular/material/list";
|
3
|
+
import { MatSelectionList, MatSelectionListChange } from "@angular/material/list";
|
4
4
|
import { Role } from "../../core/models";
|
5
5
|
import { SystemService } from "../system.service";
|
6
6
|
import { DesignerRef, PrivilegesModel } from "./designer.base";
|
@@ -8,15 +8,17 @@ import * as i0 from "@angular/core";
|
|
8
8
|
export declare class PrivilegesDesignComponent implements OnInit {
|
9
9
|
private _fb;
|
10
10
|
private _service;
|
11
|
+
private _cd;
|
11
12
|
private _ref;
|
12
13
|
model: PrivilegesModel;
|
13
|
-
readonly change: EventEmitter<
|
14
|
+
readonly change: EventEmitter<PrivilegesModel>;
|
15
|
+
list: MatSelectionList;
|
14
16
|
readonly form: import("@angular/forms").FormGroup<{
|
15
17
|
rule: import("@angular/forms").FormControl<unknown>;
|
16
18
|
roles: import("@angular/forms").FormControl<string[]>;
|
17
19
|
}>;
|
18
20
|
roles: Role[];
|
19
|
-
constructor(_fb: FormBuilder, _service: SystemService, _ref: DesignerRef);
|
21
|
+
constructor(_fb: FormBuilder, _service: SystemService, _cd: ChangeDetectorRef, _ref: DesignerRef);
|
20
22
|
ngOnInit(): void;
|
21
23
|
rolesChange(evt: MatSelectionListChange): void;
|
22
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrivilegesDesignComponent, never>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { OnInit, OnDestroy, TemplateRef } from '@angular/core';
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
3
3
|
import { Observable } from 'rxjs';
|
4
|
-
import { Cube,
|
4
|
+
import { Cube, AxisValue } from '../../core/models';
|
5
5
|
import { UtilityComponent } from '../../core/base';
|
6
6
|
import { SessionService } from '../../core/session.service';
|
7
7
|
import { UtilityRef } from "../utility-ref";
|
@@ -69,7 +69,7 @@ interface Pattern {
|
|
69
69
|
title: string;
|
70
70
|
roles: string[];
|
71
71
|
axes: {
|
72
|
-
[axis: string]:
|
72
|
+
[axis: string]: AxisValue;
|
73
73
|
};
|
74
74
|
}
|
75
75
|
interface Role {
|
@@ -33,9 +33,9 @@ export declare class DatasourceService {
|
|
33
33
|
* @param type
|
34
34
|
* @param params
|
35
35
|
*/
|
36
|
-
all(type: string, queryParams?: string | number | ParamMap): Observable<{
|
37
|
-
key:
|
38
|
-
value:
|
36
|
+
all<K = any, V = any>(type: string, queryParams?: string | number | ParamMap): Observable<{
|
37
|
+
key: K;
|
38
|
+
value: V;
|
39
39
|
}[]>;
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatasourceService, never>;
|
41
41
|
static ɵprov: i0.ɵɵInjectableDeclaration<DatasourceService>;
|
@@ -14,10 +14,8 @@ export declare class LayoutComponent implements OnChanges, AfterViewInit, OnDest
|
|
14
14
|
valid: boolean;
|
15
15
|
readonly validChange: EventEmitter<boolean>;
|
16
16
|
containerRef: ViewContainerRef;
|
17
|
-
private _cmpRef;
|
18
17
|
private readonly _destroy;
|
19
18
|
form: FormGroup;
|
20
|
-
private _instance;
|
21
19
|
private _children;
|
22
20
|
/** layout ctor */
|
23
21
|
constructor(_resolver: ComponentFactoryResolver, _zone: NgZone);
|
@@ -25,7 +23,6 @@ export declare class LayoutComponent implements OnChanges, AfterViewInit, OnDest
|
|
25
23
|
ngOnChanges(changes: SimpleChanges): void;
|
26
24
|
create(): void;
|
27
25
|
private _validations;
|
28
|
-
private _bind;
|
29
26
|
focus(): void;
|
30
27
|
ngOnDestroy(): void;
|
31
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
|
package/lib/core/models.d.ts
CHANGED
@@ -561,9 +561,9 @@ export interface CubeAxis {
|
|
561
561
|
descendentOf?: string;
|
562
562
|
}
|
563
563
|
export declare type AxisSelectionMode = 'None' | 'Single' | 'Multiple' | 'Search' | 'Pattern';
|
564
|
-
export declare type
|
564
|
+
export declare type AxisValue = string | number | Array<string | number>;
|
565
565
|
export interface AxesMap {
|
566
|
-
[axis: string]:
|
566
|
+
[axis: string]: AxisValue;
|
567
567
|
}
|
568
568
|
export interface CubeView {
|
569
569
|
xAxis: string[];
|
@@ -7,6 +7,7 @@ import { Popup } from "../core/popup/popup.service";
|
|
7
7
|
import { RouterImpl } from "../core/router";
|
8
8
|
import { SumSettings } from "./matrix/table.component";
|
9
9
|
import { ScopeType } from "../core/configuration";
|
10
|
+
import { AxisPlace, AxisType } from "./declarations";
|
10
11
|
import * as i0 from "@angular/core";
|
11
12
|
export interface CubeData {
|
12
13
|
axes: AxesMap;
|
@@ -29,8 +30,8 @@ export interface CubeDataOptions {
|
|
29
30
|
sum?: SumSettings | SumSettings[];
|
30
31
|
seriesTotalLabel?: string;
|
31
32
|
xAxisTotalLabel?: string;
|
32
|
-
indexAt?:
|
33
|
-
placeAt?:
|
33
|
+
indexAt?: AxisType;
|
34
|
+
placeAt?: AxisPlace;
|
34
35
|
}
|
35
36
|
export interface ExploreOptions {
|
36
37
|
cube?: string;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { HttpClient, HttpErrorResponse } from '@angular/common/http';
|
2
2
|
import { Observable } from 'rxjs';
|
3
3
|
import { BizDocConfig, ParamMap, ScopeType } from '../core/configuration';
|
4
|
-
import { FieldInfo,
|
4
|
+
import { FieldInfo, AxisValue, AxesMap } from '../core/models';
|
5
5
|
import { SessionService } from '../core/session.service';
|
6
6
|
import { DatasourceService } from '../core/datasource.service';
|
7
7
|
import * as i0 from "@angular/core";
|
@@ -45,7 +45,7 @@ export declare class CubeService {
|
|
45
45
|
inverseIndices?: boolean;
|
46
46
|
/** axes */
|
47
47
|
filters?: {
|
48
|
-
[axis: string]:
|
48
|
+
[axis: string]: AxisValue;
|
49
49
|
};
|
50
50
|
scope?: ScopeType;
|
51
51
|
/** replace base */
|
@@ -75,7 +75,7 @@ export declare class CubeService {
|
|
75
75
|
* @param options
|
76
76
|
*/
|
77
77
|
resolve(cube: string, axes: {
|
78
|
-
[key: string]:
|
78
|
+
[key: string]: AxisValue;
|
79
79
|
}, options?: {
|
80
80
|
/** replace base */
|
81
81
|
base?: {
|
@@ -95,7 +95,7 @@ export declare class CubeService {
|
|
95
95
|
* @param options
|
96
96
|
*/
|
97
97
|
explore(cube: string, axes: {
|
98
|
-
[key: string]:
|
98
|
+
[key: string]: AxisValue;
|
99
99
|
}, options?: {
|
100
100
|
/** restrict results to user patterns or positions */
|
101
101
|
scope?: ScopeType;
|
@@ -118,7 +118,7 @@ export declare class CubeService {
|
|
118
118
|
* @param options
|
119
119
|
*/
|
120
120
|
indices(cube: string, index: string, axes: {
|
121
|
-
[axis: string]:
|
121
|
+
[axis: string]: AxisValue;
|
122
122
|
}, options?: {
|
123
123
|
/** restrict results to user patterns or positions */
|
124
124
|
scope?: ScopeType;
|
@@ -134,7 +134,7 @@ export declare class CubeService {
|
|
134
134
|
* @param options
|
135
135
|
*/
|
136
136
|
item(cube: string, axes: {
|
137
|
-
[axis: string]:
|
137
|
+
[axis: string]: AxisValue;
|
138
138
|
}, keys: (string | number)[] | string | number, options?: {
|
139
139
|
/** replace base */
|
140
140
|
base?: {
|
@@ -147,7 +147,7 @@ export declare class CubeService {
|
|
147
147
|
* @param axes condition
|
148
148
|
*/
|
149
149
|
constraints(cube: string, axes?: {
|
150
|
-
[key: string]:
|
150
|
+
[key: string]: AxisValue;
|
151
151
|
}, options?: {
|
152
152
|
source: 'constraints' | 'combinations';
|
153
153
|
}): Observable<{
|
@@ -170,7 +170,7 @@ export declare class CubeService {
|
|
170
170
|
* @param options
|
171
171
|
*/
|
172
172
|
combinations(cube: string, axes?: {
|
173
|
-
[key: string]:
|
173
|
+
[key: string]: AxisValue;
|
174
174
|
}, options?: {
|
175
175
|
/** top */
|
176
176
|
take?: number;
|
@@ -1,5 +1,7 @@
|
|
1
1
|
import { EventEmitter, OnChanges } from '@angular/core';
|
2
2
|
import { AxesMap } from '../core/models';
|
3
|
+
export declare type AxisType = 'Series' | 'XAxis';
|
4
|
+
export declare type AxisPlace = 'Leading' | 'Trailing';
|
3
5
|
export interface AxisClickEvent {
|
4
6
|
axes: AxesMap;
|
5
7
|
/** index name */
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
|
+
import { AxesMap, Cube, CubeAxis } from '../../core/models';
|
2
3
|
import { SessionService } from '../../core/session.service';
|
3
4
|
import { DatasourceService } from '../../core/datasource.service';
|
4
5
|
import { CubeService, Pattern } from '../cube.service';
|
5
|
-
import {
|
6
|
+
import { AxisPlace, AxisType } from '../declarations';
|
6
7
|
import { CubeMatrixComponent, SumSettings } from './table.component';
|
7
8
|
import * as i0 from "@angular/core";
|
8
9
|
export declare abstract class CubeMatrixBase {
|
@@ -12,8 +13,8 @@ export declare abstract class CubeMatrixBase {
|
|
12
13
|
abstract table: CubeMatrixComponent;
|
13
14
|
seriesTotalLabel?: string;
|
14
15
|
xAxisTotalLabel?: string;
|
15
|
-
indexAt?:
|
16
|
-
placeAt?:
|
16
|
+
indexAt?: AxisType;
|
17
|
+
placeAt?: AxisPlace;
|
17
18
|
loading: boolean;
|
18
19
|
private _axes;
|
19
20
|
private _originalAxes;
|
@@ -9,6 +9,7 @@ import { CubeMatrixBase } from './matrix.base';
|
|
9
9
|
import { TranslateService } from '../../core/translate.service';
|
10
10
|
import { AxisClickEvent } from '../declarations';
|
11
11
|
import { CubeMatrixComponent, SumSettings } from './table.component';
|
12
|
+
import { AxisPlace, AxisType } from '../declarations';
|
12
13
|
import * as i0 from "@angular/core";
|
13
14
|
export declare class CubeMatrixPaneComponent extends CubeMatrixBase implements OnInit {
|
14
15
|
private _pane;
|
@@ -28,8 +29,8 @@ interface Data {
|
|
28
29
|
/** */
|
29
30
|
aggregation: string[];
|
30
31
|
sum: SumSettings | SumSettings[];
|
31
|
-
indexAt?:
|
32
|
-
placeAt?:
|
32
|
+
indexAt?: AxisType;
|
33
|
+
placeAt?: AxisPlace;
|
33
34
|
selection?: string | string[];
|
34
35
|
xAxisTotalLabel?: string;
|
35
36
|
seriesTotalLabel?: string;
|
@@ -7,6 +7,7 @@ import { AxesMap, Cube, CubeAxis, CubeIndex } from '../../core/models';
|
|
7
7
|
import { ScopeType } from '../../core/configuration';
|
8
8
|
import { TranslateService } from '../../core/translate.service';
|
9
9
|
import { AxisClickEvent } from '../declarations';
|
10
|
+
import { AxisPlace, AxisType } from '../declarations';
|
10
11
|
import * as i0 from "@angular/core";
|
11
12
|
/** cube matrix component*/
|
12
13
|
export declare class CubeMatrixComponent implements OnChanges {
|
@@ -26,8 +27,8 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
26
27
|
_xAxis: string;
|
27
28
|
_series: string;
|
28
29
|
_indices?: string[] | string;
|
29
|
-
indexAt:
|
30
|
-
placeAt:
|
30
|
+
indexAt: AxisType;
|
31
|
+
placeAt: AxisPlace;
|
31
32
|
scope: ScopeType;
|
32
33
|
private _sum;
|
33
34
|
set sum(val: SumSettings | SumSettings[]);
|
@@ -73,13 +74,16 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
73
74
|
}
|
74
75
|
export declare type SumSettings = {
|
75
76
|
value?: string | number;
|
76
|
-
axis:
|
77
|
+
axis: AxisType;
|
77
78
|
title: string;
|
78
|
-
format?:
|
79
|
+
format?: FormatType;
|
79
80
|
precision?: string;
|
80
81
|
explorable?: boolean;
|
81
|
-
|
82
|
+
place?: AxisPlace;
|
83
|
+
calculate?: CalculateType;
|
82
84
|
};
|
85
|
+
export declare type FormatType = 'Percent' | 'Currency' | 'Number';
|
86
|
+
export declare type CalculateType = 'Quarter' | 'Year' | 'Month' | 'Sum' | CalculateFn;
|
83
87
|
export declare interface CalculateFn {
|
84
88
|
(value: string, data: {
|
85
89
|
[series: string]: {
|
@@ -2,7 +2,7 @@ import { OnDestroy } from "@angular/core";
|
|
2
2
|
import { Directionality } from "@angular/cdk/bidi";
|
3
3
|
import { Subject } from "rxjs";
|
4
4
|
import { ChartSeriesType } from "@syncfusion/ej2-angular-pivotview";
|
5
|
-
import { CubeAxis, Cube, CubeIndex,
|
5
|
+
import { CubeAxis, Cube, CubeIndex, AxisValue, Dimentions, AxesMap } from "../../core/models";
|
6
6
|
import { ReportComponent } from "../../core/base";
|
7
7
|
import { SessionService } from "../../core/session.service";
|
8
8
|
import { TranslateService } from "../../core/translate.service";
|
@@ -45,7 +45,7 @@ export declare abstract class UsageReportBase implements ReportComponent<Item, A
|
|
45
45
|
abstract onData(data: Item[]): any;
|
46
46
|
onBind(result: Item[], args?: Args): void;
|
47
47
|
protected browse(paxes: {
|
48
|
-
[axis: string]:
|
48
|
+
[axis: string]: AxisValue;
|
49
49
|
}, index?: string): void;
|
50
50
|
ngOnDestroy(): void;
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<UsageReportBase, never>;
|
package/lib/shared.module.d.ts
CHANGED
@@ -187,6 +187,6 @@ import * as i182 from "./modules/material.module";
|
|
187
187
|
export declare class SharedModule {
|
188
188
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
189
189
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
190
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.HelpTipComponent, typeof i2.BoxFormComponent, typeof i3.CubeUsageComponent, typeof i4.CubeDocumentsComponent, typeof i5.DateFormatPipe, typeof i6.CalendarPipe, typeof i7.DifferencePipe, typeof i8.DurationPipe, typeof i9.TimeAgoPipe, typeof i10.HtmlSimplePipe, typeof i11.CheckboxComponent, typeof i12.CubeParallelComponent, typeof i13.CubeSumComponent, typeof i14.CubeParallelViewComponent, typeof i15.CubeChartViewComponent, typeof i16.CubeExploreViewComponent, typeof i17.CubeDocumentSumComponent, typeof i18.ExploreItemImplComponent, typeof i19.DocumentInfoComponent, typeof i20.DocumentViewsComponent, typeof i21.ViewItemComponent, typeof i22.CubeDocumentMatrixComponent, typeof i23.CubeDocumentViewComponent, typeof i24.CubePivotViewComponent, typeof i25.ActionPicker, typeof i26.QuickCommentComponent, typeof i27.DurationFormatPipe, typeof i28.CombinationPicker, typeof i29.CombinationPickerBody, typeof i30.CombinationPool, typeof i31.TimelineViewComponent, typeof i32.MatIconAnimate, typeof i33.DateRangePipe, typeof i33.AgoPipe, typeof i34.StateDirective, typeof i35.JoinPipe, typeof i36.TypeValuePipe, typeof i37.TranslatePipe, typeof i38.IdentityName, typeof i39.SanitizeHtmlPipe, typeof i40.StatePipe, typeof i41.ActionPipe, typeof i42.RolePipe, typeof i43.FormPipe, typeof i44.FilterPipe, typeof i44.ArraySortPipe, typeof i45.UserNamePipe, typeof i46.TaggingPipe, typeof i47.TypeSelect, typeof i48.TypeAutocomplete, typeof i49.AceInput, typeof i50.TimespanInput, typeof i51.AddressInput, typeof i52.FileInput, typeof i53.TimePicker, typeof i54.LayoutComponent, typeof i55.HtmlField, typeof i56.FileField, typeof i57.NumericField, typeof i58.AutocompleteField, typeof i59.CheckField, typeof i60.DateField, typeof i61.DateRangeField, typeof i62.ExpressionField, typeof i63.InputField, typeof i64.SelectField, typeof i65.SwitchField, typeof i66.TextareaField, typeof i67.TimespanField, typeof i68.ReturnActionComponent, typeof i69.AssignActionComponent, typeof i70.MoveToActionComponent, typeof i71.AvatarComponent, typeof i72.PeopleComponent, typeof i73.EditInputComponent, typeof i74.NgxComponentOutlet, typeof i75.LottieAnimation, typeof i10.ContactsComponent, typeof i76.CubeMatrixComponent, typeof i77.FilterTagsComponent, typeof i78.ExploreItemsComponent, typeof i79.CompareNameDirective, typeof i79.CompareGroupDirective, typeof i79.CompareContextDirective, typeof i80.GuideComponent, typeof i81.OutOfOfficeToast, typeof i82.NotificationsTableComponent, typeof i83.NotificationsFilterComponent, typeof i84.PrivilegeHiddenDirective, typeof i85.TaggingItemDirective, typeof i86.TaggingDirective, typeof i87.DocumentTaggingComponent, typeof i88.UserTaggingComponent, typeof i84.PrivilegeDisabledDirective, typeof i89.CubeDocumentsGridComponent, typeof i90.LongRunningTaskNotification, typeof i91.TaggedNotification, typeof i92.CommentedNotification, typeof i93.NudgeNotification, typeof i94.TextNotification, typeof i95.CubeAnomalyNotification, typeof i96.EscalatedNotification, typeof i97.LikedNotification, typeof i98.StateChangedNotification, typeof i99.UpcomingEventNotification, typeof i100.NoneComponent, typeof i101.ScheduleViewComponent, typeof i102.OptionsComponent, typeof i103.TraceViewComponent, typeof i104.ProgressDirective, typeof i105.AttachmentsComponent, typeof i106.DocumentEventsComponent, typeof i107.TagsComponent, typeof i108.MapComponent, typeof i109.MaskComponent, typeof i110.FlowViewComponent, typeof i111.SubstitutionComponent, typeof i112.PopupComponent, typeof i113.AttachmentPreview, typeof i114.CommentsComponent, typeof i115.CommentComponent, typeof i116.EditCommentComponent, typeof i117.CommentLikesComponent, typeof i118.CommentEditsComponent, typeof i119.BrowseItemsComponent, typeof i120.BrowseFilterComponent, typeof i121.ExpandedItemComponent, typeof i122.ComposeFormComponent, typeof i123.CubeViewComponent, typeof i124.CubeFilterComponent, typeof i125.CubeAccumulationChartComponent, typeof i126.CubeChartComponent, typeof i127.CubePivotComponent, typeof i128.CubeSpreadsheetComponent, typeof i129.CubeGridComponent, typeof i130.ReportViewerComponent, typeof i131.TableViewComponent, typeof i132.ReportArgumentsComponent, typeof i133.DashboardComponent, typeof i134.WidgetItemComponent, typeof i135.CubeWidgetFilterComponent, typeof i136.SaveChangesDialog, typeof i137.AskDialog, typeof i138.AboutDialog, typeof i139.ActionDialog, typeof i140.ImpersonateDialog, typeof i141.ConversationComponent, typeof i142.CubeMatrixPopupComponent, typeof i143.VersionCompareComponent, typeof i144.ExploreDocumentComponent, typeof i145.TasksComponent, typeof i146.CubeDocumentsTableComponent, typeof i147.CubePerformanceWidget, typeof i148.CubeAccumAnalysisWidget, typeof i149.CubeAnalysisWidget, typeof i150.CubeChartAnalysisWidget, typeof i151.ActionsWidget, typeof i152.RecentsWidget, typeof i153.PendingResultsWidget, typeof i154.CompareGroupsWidget, typeof i155.CubeDocumentsWidget, typeof i156.PersonalScoreWidget, typeof i157.PersonalActivityWidget, typeof i158.PeersPerformanceWidget, typeof i159.UsagePivotComponent, typeof i160.UsageChartComponent, typeof i161.UsageReportArgs, typeof i162.EmojiHostComponent, typeof i163.TooltipDirective, typeof i163.TooltipComponent, typeof i164.BrokenPage], [typeof i165.DayJsModule, typeof i166.CommonModule, typeof i167.HttpClientModule, typeof i168.ReactiveFormsModule, typeof i169.FlexLayoutModule, typeof i170.RouterModule, typeof i171.PickerModule, typeof i172.SyncfusionGanttModule, typeof i173.SyncfusionScheduleModule, typeof i174.SyncfusionCircularGaugeModule, typeof i175.SyncfusionChartModule, typeof i172.SyncfusionGanttModule, typeof i176.SyncfusionGridModule, typeof i177.SyncfusionTextEditorModule, typeof i178.SyncfusionSpreadsheetModule, typeof i179.SyncfusionPivotModule, typeof i180.KanbanModule, typeof i181.SyncfusionDiagramModule, typeof i182.MaterialModule], [typeof i182.MaterialModule, typeof i164.BrokenPage, typeof i1.HelpTipComponent, typeof i77.FilterTagsComponent, typeof i5.DateFormatPipe, typeof i6.CalendarPipe, typeof i7.DifferencePipe, typeof i8.DurationPipe, typeof i9.TimeAgoPipe, typeof i11.CheckboxComponent, typeof i12.CubeParallelComponent, typeof i13.CubeSumComponent, typeof i18.ExploreItemImplComponent, typeof i19.DocumentInfoComponent, typeof i20.DocumentViewsComponent, typeof i133.DashboardComponent, typeof i107.TagsComponent, typeof i26.QuickCommentComponent, typeof i114.CommentsComponent, typeof i139.ActionDialog, typeof i120.BrowseFilterComponent, typeof i124.CubeFilterComponent, typeof i101.ScheduleViewComponent, typeof i130.ReportViewerComponent, typeof i134.WidgetItemComponent, typeof i123.CubeViewComponent, typeof i78.ExploreItemsComponent, typeof i122.ComposeFormComponent, typeof i119.BrowseItemsComponent, typeof i82.NotificationsTableComponent, typeof i25.ActionPicker, typeof i141.ConversationComponent, typeof i34.StateDirective, typeof i10.ContactsComponent, typeof i76.CubeMatrixComponent, typeof i74.NgxComponentOutlet, typeof i32.MatIconAnimate, typeof i163.TooltipDirective, typeof i50.TimespanInput, typeof i52.FileInput, typeof i51.AddressInput, typeof i49.AceInput, typeof i28.CombinationPicker, typeof i30.CombinationPool, typeof i47.TypeSelect, typeof i48.TypeAutocomplete, typeof i53.TimePicker, typeof i27.DurationFormatPipe, typeof i33.DateRangePipe, typeof i36.TypeValuePipe, typeof i35.JoinPipe, typeof i40.StatePipe, typeof i41.ActionPipe, typeof i42.RolePipe, typeof i43.FormPipe, typeof i44.FilterPipe, typeof i44.ArraySortPipe, typeof i45.UserNamePipe, typeof i39.SanitizeHtmlPipe, typeof i37.TranslatePipe, typeof i38.IdentityName, typeof i71.AvatarComponent, typeof i132.ReportArgumentsComponent, typeof i113.AttachmentPreview, typeof i84.PrivilegeHiddenDirective, typeof i84.PrivilegeDisabledDirective, typeof i79.CompareGroupDirective, typeof i79.CompareNameDirective, typeof i79.CompareContextDirective, typeof i103.TraceViewComponent, typeof i110.FlowViewComponent, typeof i69.AssignActionComponent, typeof i68.ReturnActionComponent, typeof i144.ExploreDocumentComponent, typeof i147.CubePerformanceWidget, typeof i151.ActionsWidget, typeof i149.CubeAnalysisWidget, typeof i155.CubeDocumentsWidget, typeof i152.RecentsWidget, typeof i157.PersonalActivityWidget, typeof i154.CompareGroupsWidget, typeof i158.PeersPerformanceWidget, typeof i153.PendingResultsWidget, typeof i156.PersonalScoreWidget, typeof i135.CubeWidgetFilterComponent, typeof i146.CubeDocumentsTableComponent, typeof i89.CubeDocumentsGridComponent, typeof i145.TasksComponent, typeof i161.UsageReportArgs, typeof i160.UsageChartComponent, typeof i159.UsagePivotComponent, typeof i143.VersionCompareComponent, typeof i75.LottieAnimation, typeof i125.CubeAccumulationChartComponent, typeof i126.CubeChartComponent, typeof i127.CubePivotComponent, typeof i128.CubeSpreadsheetComponent, typeof i129.CubeGridComponent]>;
|
190
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.HelpTipComponent, typeof i2.BoxFormComponent, typeof i3.CubeUsageComponent, typeof i4.CubeDocumentsComponent, typeof i5.DateFormatPipe, typeof i6.CalendarPipe, typeof i7.DifferencePipe, typeof i8.DurationPipe, typeof i9.TimeAgoPipe, typeof i10.HtmlSimplePipe, typeof i11.CheckboxComponent, typeof i12.CubeParallelComponent, typeof i13.CubeSumComponent, typeof i14.CubeParallelViewComponent, typeof i15.CubeChartViewComponent, typeof i16.CubeExploreViewComponent, typeof i17.CubeDocumentSumComponent, typeof i18.ExploreItemImplComponent, typeof i19.DocumentInfoComponent, typeof i20.DocumentViewsComponent, typeof i21.ViewItemComponent, typeof i22.CubeDocumentMatrixComponent, typeof i23.CubeDocumentViewComponent, typeof i24.CubePivotViewComponent, typeof i25.ActionPicker, typeof i26.QuickCommentComponent, typeof i27.DurationFormatPipe, typeof i28.CombinationPicker, typeof i29.CombinationPickerBody, typeof i30.CombinationPool, typeof i31.TimelineViewComponent, typeof i32.MatIconAnimate, typeof i33.DateRangePipe, typeof i33.AgoPipe, typeof i34.StateDirective, typeof i35.JoinPipe, typeof i36.TypeValuePipe, typeof i37.TranslatePipe, typeof i38.IdentityName, typeof i39.SanitizeHtmlPipe, typeof i40.StatePipe, typeof i41.ActionPipe, typeof i42.RolePipe, typeof i43.FormPipe, typeof i44.FilterPipe, typeof i44.ArraySortPipe, typeof i45.UserNamePipe, typeof i46.TaggingPipe, typeof i47.TypeSelect, typeof i48.TypeAutocomplete, typeof i49.AceInput, typeof i50.TimespanInput, typeof i51.AddressInput, typeof i52.FileInput, typeof i53.TimePicker, typeof i54.LayoutComponent, typeof i55.HtmlField, typeof i56.FileField, typeof i57.NumericField, typeof i58.AutocompleteField, typeof i59.CheckField, typeof i60.DateField, typeof i61.DateRangeField, typeof i62.ExpressionField, typeof i63.InputField, typeof i64.SelectField, typeof i65.SwitchField, typeof i66.TextareaField, typeof i67.TimespanField, typeof i68.ReturnActionComponent, typeof i69.AssignActionComponent, typeof i70.MoveToActionComponent, typeof i71.AvatarComponent, typeof i72.PeopleComponent, typeof i73.EditInputComponent, typeof i74.NgxComponentOutlet, typeof i75.LottieAnimation, typeof i10.ContactsComponent, typeof i76.CubeMatrixComponent, typeof i77.FilterTagsComponent, typeof i78.ExploreItemsComponent, typeof i79.CompareNameDirective, typeof i79.CompareGroupDirective, typeof i79.CompareContextDirective, typeof i80.GuideComponent, typeof i81.OutOfOfficeToast, typeof i82.NotificationsTableComponent, typeof i83.NotificationsFilterComponent, typeof i84.PrivilegeHiddenDirective, typeof i85.TaggingItemDirective, typeof i86.TaggingDirective, typeof i87.DocumentTaggingComponent, typeof i88.UserTaggingComponent, typeof i84.PrivilegeDisabledDirective, typeof i89.CubeDocumentsGridComponent, typeof i90.LongRunningTaskNotification, typeof i91.TaggedNotification, typeof i92.CommentedNotification, typeof i93.NudgeNotification, typeof i94.TextNotification, typeof i95.CubeAnomalyNotification, typeof i96.EscalatedNotification, typeof i97.LikedNotification, typeof i98.StateChangedNotification, typeof i99.UpcomingEventNotification, typeof i100.NoneComponent, typeof i101.ScheduleViewComponent, typeof i102.OptionsComponent, typeof i103.TraceViewComponent, typeof i104.ProgressDirective, typeof i105.AttachmentsComponent, typeof i106.DocumentEventsComponent, typeof i107.TagsComponent, typeof i108.MapComponent, typeof i109.MaskComponent, typeof i110.FlowViewComponent, typeof i111.SubstitutionComponent, typeof i112.PopupComponent, typeof i113.AttachmentPreview, typeof i114.CommentsComponent, typeof i115.CommentComponent, typeof i116.EditCommentComponent, typeof i117.CommentLikesComponent, typeof i118.CommentEditsComponent, typeof i119.BrowseItemsComponent, typeof i120.BrowseFilterComponent, typeof i121.ExpandedItemComponent, typeof i122.ComposeFormComponent, typeof i123.CubeViewComponent, typeof i124.CubeFilterComponent, typeof i125.CubeAccumulationChartComponent, typeof i126.CubeChartComponent, typeof i127.CubePivotComponent, typeof i128.CubeSpreadsheetComponent, typeof i129.CubeGridComponent, typeof i130.ReportViewerComponent, typeof i131.TableViewComponent, typeof i132.ReportArgumentsComponent, typeof i133.DashboardComponent, typeof i134.WidgetItemComponent, typeof i135.CubeWidgetFilterComponent, typeof i136.SaveChangesDialog, typeof i137.AskDialog, typeof i138.AboutDialog, typeof i139.ActionDialog, typeof i140.ImpersonateDialog, typeof i141.ConversationComponent, typeof i142.CubeMatrixPopupComponent, typeof i143.VersionCompareComponent, typeof i144.ExploreDocumentComponent, typeof i145.TasksComponent, typeof i146.CubeDocumentsTableComponent, typeof i147.CubePerformanceWidget, typeof i148.CubeAccumAnalysisWidget, typeof i149.CubeAnalysisWidget, typeof i150.CubeChartAnalysisWidget, typeof i151.ActionsWidget, typeof i152.RecentsWidget, typeof i153.PendingResultsWidget, typeof i154.CompareGroupsWidget, typeof i155.CubeDocumentsWidget, typeof i156.PersonalScoreWidget, typeof i157.PersonalActivityWidget, typeof i158.PeersPerformanceWidget, typeof i159.UsagePivotComponent, typeof i160.UsageChartComponent, typeof i161.UsageReportArgs, typeof i162.EmojiHostComponent, typeof i163.TooltipDirective, typeof i163.TooltipComponent, typeof i164.BrokenPage], [typeof i165.DayJsModule, typeof i166.CommonModule, typeof i167.HttpClientModule, typeof i168.ReactiveFormsModule, typeof i169.FlexLayoutModule, typeof i170.RouterModule, typeof i171.PickerModule, typeof i172.SyncfusionGanttModule, typeof i173.SyncfusionScheduleModule, typeof i174.SyncfusionCircularGaugeModule, typeof i175.SyncfusionChartModule, typeof i172.SyncfusionGanttModule, typeof i176.SyncfusionGridModule, typeof i177.SyncfusionTextEditorModule, typeof i178.SyncfusionSpreadsheetModule, typeof i179.SyncfusionPivotModule, typeof i180.KanbanModule, typeof i181.SyncfusionDiagramModule, typeof i182.MaterialModule], [typeof i182.MaterialModule, typeof i164.BrokenPage, typeof i1.HelpTipComponent, typeof i77.FilterTagsComponent, typeof i5.DateFormatPipe, typeof i6.CalendarPipe, typeof i7.DifferencePipe, typeof i8.DurationPipe, typeof i9.TimeAgoPipe, typeof i11.CheckboxComponent, typeof i12.CubeParallelComponent, typeof i13.CubeSumComponent, typeof i18.ExploreItemImplComponent, typeof i19.DocumentInfoComponent, typeof i20.DocumentViewsComponent, typeof i133.DashboardComponent, typeof i107.TagsComponent, typeof i26.QuickCommentComponent, typeof i114.CommentsComponent, typeof i54.LayoutComponent, typeof i139.ActionDialog, typeof i120.BrowseFilterComponent, typeof i124.CubeFilterComponent, typeof i101.ScheduleViewComponent, typeof i130.ReportViewerComponent, typeof i134.WidgetItemComponent, typeof i123.CubeViewComponent, typeof i78.ExploreItemsComponent, typeof i122.ComposeFormComponent, typeof i119.BrowseItemsComponent, typeof i82.NotificationsTableComponent, typeof i25.ActionPicker, typeof i141.ConversationComponent, typeof i34.StateDirective, typeof i10.ContactsComponent, typeof i76.CubeMatrixComponent, typeof i74.NgxComponentOutlet, typeof i32.MatIconAnimate, typeof i163.TooltipDirective, typeof i50.TimespanInput, typeof i52.FileInput, typeof i51.AddressInput, typeof i49.AceInput, typeof i28.CombinationPicker, typeof i30.CombinationPool, typeof i47.TypeSelect, typeof i48.TypeAutocomplete, typeof i53.TimePicker, typeof i27.DurationFormatPipe, typeof i33.DateRangePipe, typeof i36.TypeValuePipe, typeof i35.JoinPipe, typeof i40.StatePipe, typeof i41.ActionPipe, typeof i42.RolePipe, typeof i43.FormPipe, typeof i44.FilterPipe, typeof i44.ArraySortPipe, typeof i45.UserNamePipe, typeof i39.SanitizeHtmlPipe, typeof i37.TranslatePipe, typeof i38.IdentityName, typeof i71.AvatarComponent, typeof i132.ReportArgumentsComponent, typeof i113.AttachmentPreview, typeof i84.PrivilegeHiddenDirective, typeof i84.PrivilegeDisabledDirective, typeof i79.CompareGroupDirective, typeof i79.CompareNameDirective, typeof i79.CompareContextDirective, typeof i103.TraceViewComponent, typeof i110.FlowViewComponent, typeof i69.AssignActionComponent, typeof i68.ReturnActionComponent, typeof i144.ExploreDocumentComponent, typeof i147.CubePerformanceWidget, typeof i151.ActionsWidget, typeof i149.CubeAnalysisWidget, typeof i155.CubeDocumentsWidget, typeof i152.RecentsWidget, typeof i157.PersonalActivityWidget, typeof i154.CompareGroupsWidget, typeof i158.PeersPerformanceWidget, typeof i153.PendingResultsWidget, typeof i156.PersonalScoreWidget, typeof i135.CubeWidgetFilterComponent, typeof i146.CubeDocumentsTableComponent, typeof i89.CubeDocumentsGridComponent, typeof i145.TasksComponent, typeof i161.UsageReportArgs, typeof i160.UsageChartComponent, typeof i159.UsagePivotComponent, typeof i143.VersionCompareComponent, typeof i75.LottieAnimation, typeof i125.CubeAccumulationChartComponent, typeof i126.CubeChartComponent, typeof i127.CubePivotComponent, typeof i128.CubeSpreadsheetComponent, typeof i129.CubeGridComponent]>;
|
191
191
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
192
192
|
}
|
package/lib/system.module.d.ts
CHANGED
@@ -14,56 +14,58 @@ import * as i11 from "./admin/configuration-designer/elements/cube.component";
|
|
14
14
|
import * as i12 from "./admin/configuration-designer/elements/action.component";
|
15
15
|
import * as i13 from "./admin/configuration-designer/elements/view.component";
|
16
16
|
import * as i14 from "./admin/configuration-designer/elements/type.component";
|
17
|
-
import * as i15 from "./admin/configuration-designer/elements/
|
18
|
-
import * as i16 from "./admin/configuration-designer/elements/
|
19
|
-
import * as i17 from "./admin/configuration-designer/elements/
|
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/
|
35
|
-
import * as i33 from "./admin/
|
36
|
-
import * as i34 from "./admin/
|
37
|
-
import * as i35 from "./admin/
|
38
|
-
import * as i36 from "./admin/
|
39
|
-
import * as i37 from "./admin/
|
40
|
-
import * as i38 from "./admin/
|
41
|
-
import * as i39 from "./admin/utility.
|
42
|
-
import * as i40 from "./admin/
|
43
|
-
import * as i41 from "./admin/core/
|
44
|
-
import * as i42 from "./admin/
|
45
|
-
import * as i43 from "./admin/
|
46
|
-
import * as i44 from "./admin/
|
47
|
-
import * as i45 from "./admin/document-trace/trace
|
48
|
-
import * as i46 from "./admin/
|
49
|
-
import * as i47 from "./admin/
|
50
|
-
import * as i48 from "./admin/positions/positions
|
51
|
-
import * as i49 from "./admin/
|
52
|
-
import * as i50 from "./admin/form/workflow/
|
53
|
-
import * as i51 from "./admin/form/workflow/
|
54
|
-
import * as i52 from "./admin/
|
55
|
-
import * as i53 from "./admin/
|
56
|
-
import * as i54 from "
|
57
|
-
import * as i55 from "@angular/common
|
58
|
-
import * as i56 from "@angular/
|
59
|
-
import * as i57 from "@angular/
|
60
|
-
import * as i58 from "@angular/
|
61
|
-
import * as i59 from "
|
62
|
-
import * as i60 from "
|
63
|
-
import * as i61 from "./
|
17
|
+
import * as i15 from "./admin/configuration-designer/elements/cube-index-utility.component";
|
18
|
+
import * as i16 from "./admin/configuration-designer/elements/configuration-datasource.component";
|
19
|
+
import * as i17 from "./admin/configuration-designer/elements/return-to-role-action.component";
|
20
|
+
import * as i18 from "./admin/configuration-designer/elements/pivot-view.component";
|
21
|
+
import * as i19 from "./admin/configuration-designer/elements/cube-view.component";
|
22
|
+
import * as i20 from "./admin/configuration-designer/elements/box-form.component";
|
23
|
+
import * as i21 from "./admin/configuration-designer/elements/anomaly-rule.component";
|
24
|
+
import * as i22 from "./admin/configuration-designer/elements/usage-report.component";
|
25
|
+
import * as i23 from "./admin/configuration-designer/elements/documents-widget.component";
|
26
|
+
import * as i24 from "./admin/configuration-designer/elements/performance-widget.component";
|
27
|
+
import * as i25 from "./admin/configuration-designer/elements/documents-report.component";
|
28
|
+
import * as i26 from "./admin/configuration-designer/elements/tasks-report.component";
|
29
|
+
import * as i27 from "./admin/configuration-designer/elements/explore-view.component";
|
30
|
+
import * as i28 from "./admin/configuration-designer/elements/analysis-widget.component";
|
31
|
+
import * as i29 from "./admin/configuration-designer/elements/parallel-view.component";
|
32
|
+
import * as i30 from "./admin/configuration-designer/elements/sum-view.component";
|
33
|
+
import * as i31 from "./admin/configuration-designer/elements/matrix-view.component";
|
34
|
+
import * as i32 from "./admin/configuration-designer/elements/analysis-view.component";
|
35
|
+
import * as i33 from "./admin/configuration-designer/designer.component";
|
36
|
+
import * as i34 from "./admin/form/designer/designer.component";
|
37
|
+
import * as i35 from "./admin/configuration-designer/designer-element.component";
|
38
|
+
import * as i36 from "./admin/permissions/permissions.component";
|
39
|
+
import * as i37 from "./admin/indices/manage-cube-index.component";
|
40
|
+
import * as i38 from "./admin/profiler/outofoffice.component";
|
41
|
+
import * as i39 from "./admin/utility-wrapper.component";
|
42
|
+
import * as i40 from "./admin/utility.pane.component";
|
43
|
+
import * as i41 from "./admin/core/search.input";
|
44
|
+
import * as i42 from "./admin/core/color-picker.input";
|
45
|
+
import * as i43 from "./admin/document-trace/reassign.dialog";
|
46
|
+
import * as i44 from "./admin/diff/configuration-diff.component";
|
47
|
+
import * as i45 from "./admin/document-trace/document-trace.component";
|
48
|
+
import * as i46 from "./admin/document-trace/trace-element.component";
|
49
|
+
import * as i47 from "./admin/profiler/profiler.component";
|
50
|
+
import * as i48 from "./admin/positions/positions.component";
|
51
|
+
import * as i49 from "./admin/positions/positions-popup.component";
|
52
|
+
import * as i50 from "./admin/form/workflow/workflow.component";
|
53
|
+
import * as i51 from "./admin/form/workflow/node.component";
|
54
|
+
import * as i52 from "./admin/form/workflow/role-node.component";
|
55
|
+
import * as i53 from "./admin/patterns/patterns.component";
|
56
|
+
import * as i54 from "./admin/configuration-designer/privileges.component";
|
57
|
+
import * as i55 from "@angular/common";
|
58
|
+
import * as i56 from "@angular/common/http";
|
59
|
+
import * as i57 from "@angular/forms";
|
60
|
+
import * as i58 from "@angular/flex-layout";
|
61
|
+
import * as i59 from "@angular/router";
|
62
|
+
import * as i60 from "@angular/cdk/scrolling";
|
63
|
+
import * as i61 from "./modules/diagram.module";
|
64
|
+
import * as i62 from "./modules/chart.module";
|
65
|
+
import * as i63 from "./shared.module";
|
64
66
|
export declare class SystemModule {
|
65
67
|
static forChild(): ModuleWithProviders<SystemModule>;
|
66
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemModule, never>;
|
67
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.IconPickerComponent, typeof i2.StateDesignComponent, typeof i3.RoleDesignComponent, typeof i4.GuideDesignComponent, typeof i5.RuleDesignComponent, typeof i6.ReportDesignComponent, typeof i7.FolderDesignComponent, typeof i8.UtilityDesignComponent, typeof i9.FormDesignComponent, typeof i10.WidgetDesignComponent, typeof i11.CubeDesignComponent, typeof i12.ActionDesignComponent, typeof i6.ReportDesignComponent, typeof i13.ViewDesignComponent, typeof i14.TypeDesignComponent, typeof i15.
|
69
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.IconPickerComponent, typeof i2.StateDesignComponent, typeof i3.RoleDesignComponent, typeof i4.GuideDesignComponent, typeof i5.RuleDesignComponent, typeof i6.ReportDesignComponent, typeof i7.FolderDesignComponent, typeof i8.UtilityDesignComponent, typeof i9.FormDesignComponent, typeof i10.WidgetDesignComponent, typeof i11.CubeDesignComponent, typeof i12.ActionDesignComponent, typeof i6.ReportDesignComponent, typeof i13.ViewDesignComponent, typeof i14.TypeDesignComponent, typeof i15.CubeIndexDesignComponent, typeof i16.ConfigurationDatasourceDesignComponent, typeof i17.ReturnToRoleActionDesignComponent, typeof i18.PivotViewDesignComponent, typeof i19.CubeViewDesignComponent, typeof i20.BoxFormDesignComponent, typeof i21.AnomalyRuleDesignComponent, typeof i22.UsageReportDesignComponent, typeof i23.DocumentsWidgetDesignComponent, typeof i24.PerformanceWidgetDesignComponent, typeof i25.DocumentsReportDesignComponent, typeof i26.TasksReportDesignComponent, typeof i27.ExploreViewDesignComponent, typeof i28.AnalysisWidgetDesignComponent, typeof i29.ParallelViewDesignComponent, typeof i30.SumViewDesignComponent, typeof i31.MatrixViewDesignComponent, typeof i32.ChartViewDesignComponent, typeof i33.ConfigurationDesignerComponent, typeof i34.FormDesignerComponent, typeof i35.DesignerItemComponent, typeof i36.PermissionsUtility, typeof i37.ManageCubeIndexUtility, typeof i38.ProfileSettingsDialog, typeof i39.UtilityWrapperComponent, typeof i40.UtilityPaneComponent, typeof i41.SearchInput, typeof i42.ColorPicker, typeof i43.ReassignDialog, typeof i44.SystemDiffComponent, typeof i45.DocumentTraceComponent, typeof i46.TraceElementComponent, typeof i47.ProfilerComponent, typeof i48.PositionsComponent, typeof i49.PositionsPopup, typeof i50.WorkflowComponent, typeof i51.WorkflowNodeComponent, typeof i52.RoleNodeComponent, typeof i53.PatternsComponent, typeof i54.PrivilegesDesignComponent], [typeof i55.CommonModule, typeof i56.HttpClientModule, typeof i57.ReactiveFormsModule, typeof i58.FlexLayoutModule, typeof i59.RouterModule, typeof i60.CdkScrollableModule, typeof i61.SyncfusionDiagramModule, typeof i62.SyncfusionChartModule, typeof i63.SharedModule], [typeof i36.PermissionsUtility, typeof i37.ManageCubeIndexUtility, typeof i39.UtilityWrapperComponent, typeof i40.UtilityPaneComponent, typeof i44.SystemDiffComponent, typeof i45.DocumentTraceComponent, typeof i47.ProfilerComponent, typeof i48.PositionsComponent, typeof i50.WorkflowComponent, typeof i52.RoleNodeComponent, typeof i53.PatternsComponent]>;
|
68
70
|
static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
|
69
71
|
}
|
@@ -28,7 +28,7 @@ export declare class CubeParallelViewComponent extends CubeBase<ParallelSettings
|
|
28
28
|
export interface ParallelSettingsModel {
|
29
29
|
aggregate?: string[];
|
30
30
|
xAxis: string | string[];
|
31
|
-
series
|
31
|
+
series: string | string[];
|
32
32
|
indices?: string | string[];
|
33
33
|
chartType?: SparklineType;
|
34
34
|
cube?: string;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
export { LayoutComponent } from './lib/core/layout/layout.component';
|
1
2
|
export { HelpTipComponent } from './lib/core/guide/help-tip.component';
|
2
3
|
export { ShakeAnimation, EnterExitLeft, EnterExitRight, EnterExitTop, FadeSlideInOut, PulseAnimation, SwapAnimation } from './lib/core/animations';
|
3
4
|
export { ActionPicker } from './lib/compose/action/action-picker.component';
|
@@ -7,8 +8,8 @@ export { isMobile, isArray, isBoolean, isDate, isObject, isString, isFunction, i
|
|
7
8
|
export { BizDoc, ComponentType } from './lib/core/decorators';
|
8
9
|
export * from './lib/core/configuration';
|
9
10
|
export { BizDocApp, BrokenPage } from './lib/app.component';
|
10
|
-
export { Folder, Form, LatLng, Dimentions, Guide, GuideStep, Gender, CubeAxis,
|
11
|
-
export { AxisClickEvent } from './lib/cube/declarations';
|
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';
|
12
|
+
export { AxisClickEvent, AxisPlace, AxisType } from './lib/cube/declarations';
|
12
13
|
export { UtilityRef } from "./lib/admin/utility-ref";
|
13
14
|
export { ReportRef, ExportEventArgs } from "./lib/reports/report-ref";
|
14
15
|
export { WidgetRef } from "./lib/dashboard/widget-ref";
|
@@ -45,6 +46,7 @@ export { IdentityName } from './lib/core/identity/identity.component';
|
|
45
46
|
export { ArraySortPipe, FilterPipe } from './lib/core/pipes/sort.pipe';
|
46
47
|
export { TranslatePipe } from "./lib/core/pipes/translate.pipe";
|
47
48
|
export { FormPipe } from './lib/core/pipes/form.pipe';
|
49
|
+
export { DesignerRef, DesignerInfo, ElementInfo, programName } from './lib/admin/configuration-designer/designer.base';
|
48
50
|
export { RolePipe } from './lib/core/pipes/role.pipe';
|
49
51
|
export { JoinPipe } from "./lib/core/pipes/join.pipe";
|
50
52
|
export { SanitizeHtmlPipe } from './lib/core/pipes/sanitize-html.pipe';
|