@bizdoc/core 1.9.10 → 1.9.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/browse/filter/filter.component.mjs +3 -6
- package/esm2020/lib/compose/compose.pane.component.mjs +7 -4
- package/esm2020/lib/compose/document.component.mjs +9 -11
- package/esm2020/lib/compose/form-ref.mjs +6 -7
- package/esm2020/lib/compose/form.component.mjs +2 -2
- package/esm2020/lib/compose/new-menu.component.mjs +3 -3
- package/esm2020/lib/compose/version-compare/version-compare.component.mjs +6 -8
- package/esm2020/lib/core/slots/slots.component.mjs +14 -16
- package/esm2020/lib/cube/accum/accum.component.mjs +3 -2
- package/esm2020/lib/cube/chart/chart.component.mjs +7 -2
- package/esm2020/lib/cube/cube-view.component.mjs +9 -6
- package/esm2020/lib/cube/declarations.mjs +1 -1
- package/esm2020/lib/cube/grid/grid.component.mjs +18 -6
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +8 -6
- package/esm2020/lib/cube/matrix/table.component.mjs +4 -4
- package/esm2020/lib/cube/pivot/pivot.component.mjs +3 -3
- package/esm2020/lib/cube/view.pane.component.mjs +2 -2
- package/esm2020/lib/dashboard/cube/accum-cube.widget.mjs +1 -1
- package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +1 -1
- package/esm2020/lib/routes.desktop.mjs +8 -8
- package/fesm2015/bizdoc-core.mjs +89 -72
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +89 -72
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/compose/compose.pane.component.d.ts +1 -0
- package/lib/compose/document.component.d.ts +2 -4
- package/lib/compose/form-ref.d.ts +1 -3
- package/lib/compose/version-compare/version-compare.component.d.ts +2 -4
- package/lib/core/slots/slots.component.d.ts +1 -2
- package/lib/cube/accum/accum.component.d.ts +1 -1
- package/lib/cube/chart/chart.component.d.ts +1 -1
- package/lib/cube/cube-view.component.d.ts +3 -1
- package/lib/cube/declarations.d.ts +1 -0
- package/lib/cube/grid/grid.component.d.ts +8 -4
- package/lib/cube/grid/spreadsheet.component.d.ts +3 -3
- package/lib/cube/matrix/table.component.d.ts +1 -1
- package/lib/cube/pivot/pivot.component.d.ts +1 -1
- package/lib/dashboard/cube/accum-cube.widget.d.ts +2 -2
- package/lib/dashboard/cube/cube-analysis.base.d.ts +0 -4
- package/package.json +1 -1
@@ -26,6 +26,7 @@ export declare class ComposePaneComponent implements OnInit, OnDestroy {
|
|
26
26
|
/** compose ctor */
|
27
27
|
constructor(_session: SessionService, _mailbox: MailboxService, _pane: PaneRef<ComposePaneComponent>, _router: PanesRouter);
|
28
28
|
ngOnInit(): void;
|
29
|
+
close(): void;
|
29
30
|
edit(): void;
|
30
31
|
expand(): void;
|
31
32
|
change(): void;
|
@@ -2,17 +2,15 @@ import { ViewContainerRef, Injector, OnDestroy, OnChanges, SimpleChanges } from
|
|
2
2
|
import { DocumentModel } from '../core/models';
|
3
3
|
import { SessionService } from '../core/session.service';
|
4
4
|
import { BizDocComponentFactoryResolver } from '../core/component-factory-resolver';
|
5
|
-
import { RouterImpl } from '../core/router';
|
6
5
|
import * as i0 from "@angular/core";
|
7
6
|
export declare class DocumentInfoComponent implements OnChanges, OnDestroy {
|
8
7
|
private _session;
|
9
8
|
private _cf;
|
10
|
-
private _router;
|
11
9
|
private _injector;
|
12
10
|
_container: ViewContainerRef;
|
13
11
|
private _formRef;
|
14
|
-
constructor(_session: SessionService, _cf: BizDocComponentFactoryResolver,
|
15
|
-
ngOnChanges(
|
12
|
+
constructor(_session: SessionService, _cf: BizDocComponentFactoryResolver, _injector: Injector);
|
13
|
+
ngOnChanges(_: SimpleChanges): void;
|
16
14
|
model: DocumentModel<any>;
|
17
15
|
ngOnDestroy(): void;
|
18
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentInfoComponent, never>;
|
@@ -1,14 +1,12 @@
|
|
1
1
|
import { Subject } from "rxjs";
|
2
2
|
import { ViewMode } from "../core/base";
|
3
|
-
import { RouterImpl } from "../core/router";
|
4
3
|
export declare class FormRef<M = any> {
|
5
|
-
private _router;
|
6
4
|
readonly _saving: Subject<SaveEventArgs>;
|
7
5
|
readonly _stateChange: Subject<void>;
|
8
6
|
readonly _modelChange: Subject<M>;
|
9
7
|
readonly _navigating: Subject<string | number>;
|
10
8
|
_mode?: ViewMode;
|
11
|
-
constructor(
|
9
|
+
constructor();
|
12
10
|
private _help;
|
13
11
|
/** intercept save */
|
14
12
|
get saving(): import("rxjs").Observable<SaveEventArgs>;
|
@@ -2,13 +2,11 @@ import { ViewContainerRef, Injector, OnChanges, SimpleChanges } from '@angular/c
|
|
2
2
|
import { Form, DocumentModel } from '../../core/models';
|
3
3
|
import { SessionService } from '../../core/session.service';
|
4
4
|
import { BizDocComponentFactoryResolver } from '../../core/component-factory-resolver';
|
5
|
-
import { PanesRouter } from '../../core/slots/router.service';
|
6
5
|
import * as i0 from "@angular/core";
|
7
6
|
export declare class VersionCompareComponent implements OnChanges {
|
8
7
|
private _session;
|
9
8
|
private _cf;
|
10
9
|
private _container;
|
11
|
-
private _router;
|
12
10
|
private _injector;
|
13
11
|
model: DocumentModel<any>;
|
14
12
|
version: Date;
|
@@ -19,8 +17,8 @@ export declare class VersionCompareComponent implements OnChanges {
|
|
19
17
|
get currentVersion(): any;
|
20
18
|
get baseVersion(): any;
|
21
19
|
/** ctor */
|
22
|
-
constructor(_session: SessionService, _cf: BizDocComponentFactoryResolver, _container: ViewContainerRef,
|
23
|
-
ngOnChanges(
|
20
|
+
constructor(_session: SessionService, _cf: BizDocComponentFactoryResolver, _container: ViewContainerRef, _injector: Injector);
|
21
|
+
ngOnChanges(_: SimpleChanges): void;
|
24
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<VersionCompareComponent, never>;
|
25
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<VersionCompareComponent, "bizdoc-version-compare", never, { "model": "model"; "version": "version"; }, {}, never, never>;
|
26
24
|
}
|
@@ -72,7 +72,6 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
|
|
72
72
|
*
|
73
73
|
* @param pane
|
74
74
|
* @param queryParams
|
75
|
-
* @param data
|
76
75
|
*/
|
77
76
|
private _navQueryParams;
|
78
77
|
/**
|
@@ -165,7 +164,7 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
|
|
165
164
|
scrollTo(index: number): void;
|
166
165
|
private get _children();
|
167
166
|
done(): void;
|
168
|
-
navigationArrows(
|
167
|
+
navigationArrows(_?: Event): void;
|
169
168
|
scrollBy(n: number): void;
|
170
169
|
focus(index: any): void;
|
171
170
|
onResize(pane: PaneRef<any>, event: MouseEvent): void;
|
@@ -1,11 +1,13 @@
|
|
1
1
|
import { ComponentFactoryResolver, EventEmitter, OnChanges, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
2
2
|
import { AxesMap, Cube, CubeView } from '../core/models';
|
3
3
|
import { AxisClickEvent } from './declarations';
|
4
|
+
import { ChangeDetectorRef } from '@angular/core';
|
4
5
|
import * as i0 from "@angular/core";
|
5
6
|
/** */
|
6
7
|
export declare class CubeViewComponent implements OnInit, OnChanges {
|
7
8
|
private _viewContainer;
|
8
9
|
private _factoryResolver;
|
10
|
+
private _cd;
|
9
11
|
axes: AxesMap;
|
10
12
|
readonly explore: EventEmitter<AxisClickEvent>;
|
11
13
|
cube: Cube;
|
@@ -15,7 +17,7 @@ export declare class CubeViewComponent implements OnInit, OnChanges {
|
|
15
17
|
private _instance;
|
16
18
|
private readonly _resizing;
|
17
19
|
private readonly _viewDestroy;
|
18
|
-
constructor(_viewContainer: ViewContainerRef, _factoryResolver: ComponentFactoryResolver);
|
20
|
+
constructor(_viewContainer: ViewContainerRef, _factoryResolver: ComponentFactoryResolver, _cd: ChangeDetectorRef);
|
19
21
|
ngOnInit(): void;
|
20
22
|
ngOnChanges(changes: SimpleChanges): void;
|
21
23
|
private _createView;
|
@@ -16,10 +16,10 @@ export declare class CubeGridComponent implements OnInit, OnChanges, CubeViewerC
|
|
16
16
|
width: string;
|
17
17
|
height: string;
|
18
18
|
cube: string;
|
19
|
-
xAxis: string[];
|
19
|
+
set xAxis(val: string[] | string);
|
20
20
|
yAxis?: YAxis;
|
21
|
-
series
|
22
|
-
indices
|
21
|
+
set series(val: string[] | string);
|
22
|
+
set indices(val: string[] | string);
|
23
23
|
filters?: AxesMap;
|
24
24
|
currencyCode: string;
|
25
25
|
readonly explore: EventEmitter<AxisClickEvent>;
|
@@ -35,14 +35,18 @@ export declare class CubeGridComponent implements OnInit, OnChanges, CubeViewerC
|
|
35
35
|
columns: AggregateColumnModel[];
|
36
36
|
}[];
|
37
37
|
columns: ColumnModel[];
|
38
|
+
private _xAxis;
|
39
|
+
private _series?;
|
40
|
+
private _indices?;
|
38
41
|
private _rows;
|
39
42
|
private _columns;
|
43
|
+
private _cube;
|
40
44
|
private _prepare;
|
41
45
|
constructor(_session: SessionService, _sb: PromptService, _ds: DatasourceService, _service: CubeService, _elementRef: ElementRef);
|
42
46
|
ngOnInit(): void;
|
43
47
|
/** */
|
44
48
|
ngOnChanges(changes: SimpleChanges): void;
|
45
|
-
|
49
|
+
execute(): void;
|
46
50
|
private _normalize;
|
47
51
|
private _draw;
|
48
52
|
queryCellInfo(evt: QueryCellInfoEventArgs): void;
|
@@ -19,6 +19,7 @@ export declare class CubeSpreadsheetComponent implements OnInit, CubeViewerCompo
|
|
19
19
|
width: string;
|
20
20
|
height: string;
|
21
21
|
cube: string;
|
22
|
+
private _cube;
|
22
23
|
set xAxis(val: string[] | string);
|
23
24
|
yAxis?: YAxis;
|
24
25
|
set series(val: string[] | string);
|
@@ -42,13 +43,12 @@ export declare class CubeSpreadsheetComponent implements OnInit, CubeViewerCompo
|
|
42
43
|
private _yrows;
|
43
44
|
private _xcolumns;
|
44
45
|
private _prepare;
|
45
|
-
private _cube;
|
46
|
-
private readonly _intl;
|
47
46
|
private _numberFormat;
|
47
|
+
private readonly _intl;
|
48
48
|
constructor(_session: SessionService, _sb: PromptService, _service: CubeService, _translate: TranslateService, _ds: DatasourceService, _elementRef: ElementRef);
|
49
49
|
ngOnInit(): void;
|
50
50
|
ngOnChanges(changes: SimpleChanges): void;
|
51
|
-
|
51
|
+
execute(): void;
|
52
52
|
private _datatable;
|
53
53
|
private _dataseries;
|
54
54
|
private _draw;
|
@@ -1,8 +1,8 @@
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
1
2
|
import { CubeService, ScopeType } from '../cube.service';
|
2
3
|
import { SessionService } from '../../core/session.service';
|
3
4
|
import { DatasourceService } from '../../core/datasource.service';
|
4
5
|
import { PromptService } from '../../core/prompt.service';
|
5
|
-
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
6
6
|
import { AxesMap, Cube, CubeAxis, CubeIndex } from '../../core/models';
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
/** cube matrix component*/
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { OnDestroy, ElementRef } from '@angular/core';
|
2
2
|
import { LegendSeriesModel, TooltipSettingsModel, AccumulationChart, AccumulationDataLabelSettingsModel, AnimationModel, IAccTooltipRenderEventArgs, IPointEventArgs } from '@syncfusion/ej2-angular-charts';
|
3
|
-
import { CubeAnalysisBase,
|
3
|
+
import { CubeAnalysisBase, Options } from './cube-analysis.base';
|
4
4
|
import { DatasourceService } from '../../core/datasource.service';
|
5
5
|
import { SessionService } from '../../core/session.service';
|
6
|
-
import { CubeService, Series } from '../../cube/cube.service';
|
6
|
+
import { CubeService, Series, Point } from '../../cube/cube.service';
|
7
7
|
import { WidgetRef } from "../widget-ref";
|
8
8
|
import { Dimentions } from '../../core/models';
|
9
9
|
import { CubeInfo } from '../../cube/cube-info.service';
|