@bizdoc/core 2.3.35 → 2.3.39
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/esm2022/lib/admin/architecture/elements/performance-report.component.mjs +3 -4
- package/esm2022/lib/admin/diff/configuration-diff.component.mjs +5 -4
- package/esm2022/lib/admin/document-trace/document-trace.component.mjs +3 -3
- package/esm2022/lib/admin/utility.pane.component.mjs +10 -12
- package/esm2022/lib/browse/browse.pane.component.mjs +3 -3
- package/esm2022/lib/browse/expanded-item/expanded-item.component.mjs +3 -3
- package/esm2022/lib/core/animations.mjs +5 -2
- package/esm2022/lib/core/slots/slots.component.mjs +3 -3
- package/esm2022/lib/core/sticky-toolbar.exp.mjs +30 -0
- package/esm2022/lib/core/translations.mjs +6 -2
- package/esm2022/lib/core/virtual-tabs.component.exp.mjs +84 -0
- package/esm2022/lib/cube/filter/filter-tags.component.exp.mjs +3 -3
- package/esm2022/lib/cube/filter/filter.component.mjs +3 -3
- package/esm2022/lib/modules/chart.module.mjs +3 -3
- package/esm2022/lib/options/options.component.mjs +3 -3
- package/esm2022/lib/reports/cube/role-performance.component.mjs +152 -33
- package/esm2022/lib/reports/cube/role-performance1.component.mjs +178 -0
- package/esm2022/lib/reports/report-viewer.component.mjs +10 -6
- package/esm2022/lib/reports/report.pane.component.mjs +2 -2
- package/esm2022/lib/shared.module.mjs +11 -9
- package/esm2022/public-api.mjs +3 -2
- package/fesm2022/bizdoc-core.mjs +440 -75
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/admin/architecture/elements/performance-report.component.d.ts +0 -1
- package/lib/admin/utility.pane.component.d.ts +2 -2
- package/lib/core/translations.d.ts +4 -0
- package/lib/core/virtual-tabs.component.exp.d.ts +22 -0
- package/lib/reports/cube/role-performance.component.d.ts +35 -21
- package/lib/reports/cube/role-performance1.component.d.ts +49 -0
- package/lib/reports/report-viewer.component.d.ts +1 -1
- package/lib/reports/report.pane.component.d.ts +1 -1
- package/lib/shared.module.d.ts +195 -193
- package/package.json +1 -1
- package/public-api.d.ts +2 -1
- package/esm2022/lib/core/StickyToolbar.mjs +0 -30
- /package/lib/core/{StickyToolbar.d.ts → sticky-toolbar.exp.d.ts} +0 -0
@@ -4,7 +4,6 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PerformanceReportDesignComponent extends DesignerCubeElementComponent<PerformanceSettingsModel> implements OnInit {
|
5
5
|
readonly form: import("@angular/forms").FormGroup<{
|
6
6
|
cube: import("@angular/forms").FormControl<unknown>;
|
7
|
-
series: import("@angular/forms").FormControl<unknown>;
|
8
7
|
filters: import("@angular/forms").FormGroup<{}>;
|
9
8
|
}>;
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceReportDesignComponent, never>;
|
@@ -13,11 +13,11 @@ export declare class UtilityPaneComponent implements OnInit {
|
|
13
13
|
private _sb;
|
14
14
|
private _messaging;
|
15
15
|
private _cf;
|
16
|
+
private _vc;
|
16
17
|
private _injector;
|
17
|
-
vc: ViewContainerRef;
|
18
18
|
private _utility;
|
19
19
|
/** ctor */
|
20
|
-
constructor(_session: SessionService, _pane: PaneRef<UtilityPaneComponent>, _http: HttpClient, _sb: PromptService, _messaging: HubService, _cf: BizDocComponentFactoryResolver, _injector: Injector);
|
20
|
+
constructor(_session: SessionService, _pane: PaneRef<UtilityPaneComponent>, _http: HttpClient, _sb: PromptService, _messaging: HubService, _cf: BizDocComponentFactoryResolver, _vc: ViewContainerRef, _injector: Injector);
|
21
21
|
ngOnInit(): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityPaneComponent, never>;
|
23
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityPaneComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
@@ -416,7 +416,9 @@ export declare const STRINGS: {
|
|
416
416
|
Duration: string;
|
417
417
|
DurationTime: string;
|
418
418
|
Standard: string;
|
419
|
+
StandardValue: string;
|
419
420
|
Average: string;
|
421
|
+
AverageValue: string;
|
420
422
|
Open: string;
|
421
423
|
SoundOn: string;
|
422
424
|
SoundOff: string;
|
@@ -888,6 +890,8 @@ export declare const STRINGS: {
|
|
888
890
|
Duration: string;
|
889
891
|
DurationTime: string;
|
890
892
|
Standard: string;
|
893
|
+
StandardValue: string;
|
894
|
+
AverageValue: string;
|
891
895
|
Average: string;
|
892
896
|
Awaiting: string;
|
893
897
|
Escalated: string;
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { OnInit, QueryList } from "@angular/core";
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
/** */
|
4
|
+
export declare class Tab {
|
5
|
+
active: boolean;
|
6
|
+
name: string;
|
7
|
+
title: string;
|
8
|
+
template: any;
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Tab, never>;
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Tab, "tab", never, { "name": { "alias": "name"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, ["template"], never, false, never>;
|
11
|
+
}
|
12
|
+
/** */
|
13
|
+
export declare class VirtualTabs implements OnInit {
|
14
|
+
initialName: string;
|
15
|
+
tabs: QueryList<Tab>;
|
16
|
+
selectedIndex: number;
|
17
|
+
activeTab: Tab;
|
18
|
+
ngOnInit(): void;
|
19
|
+
change(tab: Tab): void;
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VirtualTabs, never>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VirtualTabs, "bizdoc-v-tabs", never, { "initialName": { "alias": "initialName"; "required": false; }; }, {}, ["tabs"], never, false, never>;
|
22
|
+
}
|
@@ -1,36 +1,50 @@
|
|
1
|
-
import { ElementRef,
|
2
|
-
import {
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
2
|
+
import { ILegendRenderEventArgs, IPointEventArgs, AxisModel, ChartTheme, ITooltipRenderEventArgs, Chart, IAxisLabelRenderEventArgs, LegendSettingsModel, SeriesModel, TooltipSettingsModel, titleSettingsModel } from '@syncfusion/ej2-charts';
|
3
3
|
import { ReportComponent } from '../../core/base';
|
4
|
+
import { AccountService } from '../../core/account.service';
|
4
5
|
import { SessionService } from '../../core/session.service';
|
5
|
-
import { TranslateService } from '../../core/translate.service';
|
6
6
|
import { RouterImpl } from '../../core/router';
|
7
|
-
import {
|
7
|
+
import { TranslateService } from '../../core/translate.service';
|
8
8
|
import * as i0 from "@angular/core";
|
9
|
-
export declare class RolesPerformanceComponent implements ReportComponent<Model>,
|
9
|
+
export declare class RolesPerformanceComponent implements ReportComponent<Model>, OnDestroy {
|
10
10
|
private _elementRef;
|
11
11
|
private _router;
|
12
|
-
|
13
|
-
|
14
|
-
private
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
private _accounts;
|
13
|
+
private _session;
|
14
|
+
private _translate;
|
15
|
+
durationAvg: number;
|
16
|
+
stdAvg: number;
|
17
|
+
series: SeriesModel[];
|
18
|
+
chart: Chart;
|
18
19
|
readonly legendSettings: LegendSettingsModel;
|
19
|
-
|
20
|
+
readonly tooltip: TooltipSettingsModel;
|
21
|
+
theme: ChartTheme;
|
22
|
+
readonly titleStyle: titleSettingsModel;
|
23
|
+
readonly primaryXAxis: AxisModel;
|
24
|
+
readonly primaryYAxis: AxisModel;
|
25
|
+
private actions;
|
26
|
+
private readonly _destroy;
|
27
|
+
constructor(_elementRef: ElementRef<HTMLDivElement>, _router: RouterImpl, _accounts: AccountService, _session: SessionService, _translate: TranslateService);
|
28
|
+
onBind(data: Model[]): void;
|
29
|
+
private _draw;
|
30
|
+
legendRender(evt: ILegendRenderEventArgs): void;
|
31
|
+
tooltipRender(evt: ITooltipRenderEventArgs): void;
|
20
32
|
labelRender(evt: IAxisLabelRenderEventArgs): void;
|
21
|
-
explore(evt:
|
22
|
-
|
33
|
+
explore(evt: IPointEventArgs): void;
|
34
|
+
ngOnDestroy(): void;
|
23
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<RolesPerformanceComponent, never>;
|
24
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<RolesPerformanceComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
25
37
|
}
|
26
38
|
interface Model {
|
27
|
-
|
28
|
-
|
29
|
-
date: Date;
|
30
|
-
axis: string;
|
39
|
+
userId: string;
|
40
|
+
items: ItemModel[];
|
31
41
|
}
|
32
|
-
interface
|
33
|
-
|
34
|
-
|
42
|
+
interface ItemModel {
|
43
|
+
documentId: number;
|
44
|
+
date: number;
|
45
|
+
standardTime?: number;
|
46
|
+
duration: number;
|
47
|
+
isFYI: boolean;
|
48
|
+
actionId: string;
|
35
49
|
}
|
36
50
|
export {};
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
2
|
+
import { ReportComponent } from '../../core/base';
|
3
|
+
import { AccountService } from '../../core/account.service';
|
4
|
+
import { SessionService } from '../../core/session.service';
|
5
|
+
import { TranslateService } from '../../core/translate.service';
|
6
|
+
import { Chart, IAxisLabelRenderEventArgs, ITooltipRenderEventArgs } from '@syncfusion/ej2-angular-charts';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
export declare class RolesPerformanceComponent1 implements ReportComponent<Model>, OnDestroy {
|
9
|
+
private _elementRef;
|
10
|
+
private _accounts;
|
11
|
+
private _session;
|
12
|
+
private _translate;
|
13
|
+
durationAvg: number;
|
14
|
+
stdAvg: number;
|
15
|
+
maxStd: number;
|
16
|
+
minStd: number;
|
17
|
+
minDuration: number;
|
18
|
+
maxDuration: number;
|
19
|
+
data: Item[];
|
20
|
+
readonly titleStyle: {
|
21
|
+
fontFamily: string;
|
22
|
+
};
|
23
|
+
private readonly _destroy;
|
24
|
+
chart: Chart;
|
25
|
+
constructor(_elementRef: ElementRef<HTMLDivElement>, _accounts: AccountService, _session: SessionService, _translate: TranslateService);
|
26
|
+
onBind(data: Model[]): void;
|
27
|
+
private _draw;
|
28
|
+
axisLabelRender(evt: IAxisLabelRenderEventArgs): void;
|
29
|
+
tooltipRender(evt: ITooltipRenderEventArgs): void;
|
30
|
+
ngOnDestroy(): void;
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RolesPerformanceComponent1, never>;
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RolesPerformanceComponent1, "ng-component", never, {}, {}, never, never, false, never>;
|
33
|
+
}
|
34
|
+
interface Model {
|
35
|
+
userId: string;
|
36
|
+
standardAvg: number;
|
37
|
+
standardHigh: number;
|
38
|
+
standardLow: number;
|
39
|
+
durationAvg: number;
|
40
|
+
durationHigh: number;
|
41
|
+
durationLow: number;
|
42
|
+
}
|
43
|
+
type Item = Model & {
|
44
|
+
standardDev?: number;
|
45
|
+
durationDev: number;
|
46
|
+
name: string;
|
47
|
+
values: number[];
|
48
|
+
};
|
49
|
+
export {};
|