@bizdoc/core 1.9.9 → 1.9.14
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/themes/brown.min.css +1 -1
- package/assets/themes/dark.min.css +1 -1
- package/assets/themes/deep-purple-light-blue.min.css +3 -3
- package/assets/themes/default.min.css +1 -1
- package/assets/themes/green.min.css +1 -1
- package/assets/themes/indigo.min.css +1 -1
- package/esm2020/lib/admin/form/workflow/workflow.component.mjs +3 -2
- package/esm2020/lib/admin/positions/positions.component.mjs +44 -5
- package/esm2020/lib/browse/browse-items.component.mjs +13 -4
- package/esm2020/lib/browse/browse.pane.component.mjs +3 -1
- package/esm2020/lib/browse/filter/filter.component.mjs +3 -6
- package/esm2020/lib/browse/folders-menu.component.mjs +2 -2
- package/esm2020/lib/compose/attachments/preview/attachment-preview.component.mjs +18 -16
- 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/models.mjs +1 -1
- package/esm2020/lib/core/slots/slots.component.mjs +14 -16
- package/esm2020/lib/core/translations.mjs +4 -4
- package/esm2020/lib/cube/accum/accum.component.mjs +18 -8
- package/esm2020/lib/cube/chart/chart.component.mjs +18 -5
- package/esm2020/lib/cube/cube-view.component.mjs +9 -11
- package/esm2020/lib/cube/declarations.mjs +1 -1
- package/esm2020/lib/cube/grid/grid.component.mjs +21 -10
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +123 -117
- package/esm2020/lib/cube/matrix/table.component.mjs +4 -4
- package/esm2020/lib/cube/parallel/item.mjs +2 -1
- package/esm2020/lib/cube/pivot/pivot.component.mjs +7 -4
- package/esm2020/lib/cube/sum/sum.component.mjs +2 -2
- package/esm2020/lib/cube/view.pane.component.mjs +2 -2
- package/esm2020/lib/dashboard/cube/accum-cube.widget.mjs +2 -2
- package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +1 -1
- package/esm2020/lib/dashboard/cube/cube-chart.widget.mjs +2 -1
- package/esm2020/lib/home/search.service.mjs +8 -5
- package/esm2020/lib/modules/chart.module.mjs +6 -6
- package/esm2020/lib/modules/gantt.module.mjs +17 -0
- package/esm2020/lib/routes.desktop.mjs +8 -8
- package/esm2020/lib/routes.mobile.mjs +1 -1
- package/esm2020/lib/shared.module.mjs +9 -10
- package/esm2020/lib/views/cube/chart.component.mjs +1 -1
- package/esm2020/lib/views/cube/matrix.component.mjs +6 -6
- package/fesm2015/bizdoc-core.mjs +355 -247
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +353 -247
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/admin/positions/positions.component.d.ts +3 -1
- package/lib/browse/browse-items.component.d.ts +2 -2
- package/lib/compose/attachments/preview/attachment-preview.component.d.ts +3 -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/models.d.ts +2 -2
- package/lib/core/slots/slots.component.d.ts +1 -2
- package/lib/cube/accum/accum.component.d.ts +2 -1
- package/lib/cube/chart/chart.component.d.ts +5 -3
- package/lib/cube/cube-view.component.d.ts +3 -2
- package/lib/cube/declarations.d.ts +2 -0
- package/lib/cube/grid/grid.component.d.ts +10 -7
- package/lib/cube/grid/spreadsheet.component.d.ts +11 -4
- package/lib/cube/matrix/table.component.d.ts +1 -1
- package/lib/cube/parallel/item.d.ts +2 -2
- package/lib/cube/pivot/pivot.component.d.ts +1 -1
- package/lib/cube/sum/sum.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/lib/modules/chart.module.d.ts +1 -1
- package/lib/modules/gantt.module.d.ts +7 -0
- package/lib/shared.module.d.ts +9 -10
- package/lib/views/cube/matrix.component.d.ts +2 -2
- package/package.json +1 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
import { OnInit, OnDestroy, TemplateRef } from '@angular/core';
|
1
|
+
import { OnInit, OnDestroy, TemplateRef, ElementRef } from '@angular/core';
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
3
3
|
import { FormGroup } from '@angular/forms';
|
4
4
|
import { MatSort } from '@angular/material/sort';
|
@@ -25,6 +25,7 @@ export declare class PositionsComponent implements OnInit, OnDestroy, UtilityCom
|
|
25
25
|
private _translate;
|
26
26
|
private _popup;
|
27
27
|
private _dialog;
|
28
|
+
_fileElement: ElementRef<HTMLInputElement>;
|
28
29
|
dataSource: MatTableDataSource<any>;
|
29
30
|
sort: MatSort;
|
30
31
|
readonly types: Type[];
|
@@ -78,6 +79,7 @@ export declare class PositionsComponent implements OnInit, OnDestroy, UtilityCom
|
|
78
79
|
editPattern(name: string): void;
|
79
80
|
save(): Promise<any>;
|
80
81
|
download(): Promise<void>;
|
82
|
+
upload(evt: InputEvent): Promise<void>;
|
81
83
|
ngOnDestroy(): void;
|
82
84
|
static ɵfac: i0.ɵɵFactoryDeclaration<PositionsComponent, never>;
|
83
85
|
static ɵcmp: i0.ɵɵComponentDeclaration<PositionsComponent, "ng-component", never, {}, {}, never, never>;
|
@@ -52,7 +52,7 @@ export declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestro
|
|
52
52
|
/** browse ctor */
|
53
53
|
constructor(_mailbox: MailboxService, _cube: CubeService, _session: SessionService, _sb: PromptService, _translate: TranslateService, _cd: ChangeDetectorRef, _router: RouterImpl, _messaging: HubService, _config: BizDocConfig);
|
54
54
|
ngOnInit(): void;
|
55
|
-
ngOnChanges(
|
55
|
+
ngOnChanges(_: SimpleChanges): void;
|
56
56
|
private _assign;
|
57
57
|
get folder(): Folder;
|
58
58
|
dragStarted(event: any): void;
|
@@ -84,7 +84,7 @@ export declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestro
|
|
84
84
|
private _sharedActions;
|
85
85
|
copy(item: RecipientModel): void;
|
86
86
|
/**
|
87
|
-
* execute function per item
|
87
|
+
* execute function per selected item
|
88
88
|
* @param fn
|
89
89
|
* @param error
|
90
90
|
*/
|
@@ -5,12 +5,14 @@ import { AnimationEvent } from '@angular/animations';
|
|
5
5
|
import { Observable } from 'rxjs';
|
6
6
|
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
7
7
|
import { Directionality, Direction } from '@angular/cdk/bidi';
|
8
|
+
import { AuthenticationImpl } from '../../../core/authentication';
|
8
9
|
import * as i0 from "@angular/core";
|
9
10
|
export declare const FILE_PREVIEW_DIALOG_DATA: InjectionToken<PreviewData>;
|
10
11
|
export declare const IMAGE_TYPE: string[];
|
11
12
|
export declare class AttachmentPreview implements OnInit, AfterViewInit {
|
12
13
|
private _renderer;
|
13
14
|
data: PreviewData;
|
15
|
+
private _auth;
|
14
16
|
private _overlayRef;
|
15
17
|
obj: ElementRef;
|
16
18
|
img: ElementRef;
|
@@ -25,7 +27,7 @@ export declare class AttachmentPreview implements OnInit, AfterViewInit {
|
|
25
27
|
private readonly _beforeClose;
|
26
28
|
private readonly _afterClosed;
|
27
29
|
/** attachment-preview ctor */
|
28
|
-
constructor(_directionality: Directionality, _renderer: Renderer2, data: PreviewData, sanitizer: DomSanitizer, _overlayRef: OverlayRef);
|
30
|
+
constructor(_directionality: Directionality, _renderer: Renderer2, data: PreviewData, sanitizer: DomSanitizer, _auth: AuthenticationImpl, _overlayRef: OverlayRef);
|
29
31
|
resize(): void;
|
30
32
|
ngOnInit(): void;
|
31
33
|
ngAfterViewInit(): void;
|
@@ -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
|
}
|
package/lib/core/models.d.ts
CHANGED
@@ -411,9 +411,9 @@ export interface Folder {
|
|
411
411
|
columns?: FolderColumn[];
|
412
412
|
}
|
413
413
|
export interface FolderColumn {
|
414
|
-
name: string;
|
414
|
+
name: string | 'number' | 'subject' | 'value' | 'owner' | 'sender' | 'received' | 'receivedAgo' | 'replied' | 'state' | 'issued' | 'issuedAgo';
|
415
415
|
title: string;
|
416
|
-
type
|
416
|
+
type?: 'Boolean' | 'Date' | 'Decimal' | 'String';
|
417
417
|
}
|
418
418
|
export declare type LicenseMode = 'Evaluation' | 'Valid' | 'Grace' | 'Invalid' | 'Limit' | 'Expired';
|
419
419
|
export interface Action {
|
@@ -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;
|
@@ -49,7 +49,8 @@ export declare class CubeAccumulationChartComponent implements OnInit, OnChanges
|
|
49
49
|
*
|
50
50
|
*/
|
51
51
|
ngOnChanges(changes: SimpleChanges): void;
|
52
|
-
|
52
|
+
resize(): void;
|
53
|
+
execute(): void;
|
53
54
|
private _draw;
|
54
55
|
exportToExcel(title: string): void;
|
55
56
|
ngOnDestroy(): void;
|
@@ -3,7 +3,7 @@ import { Chart, CrosshairSettingsModel } from '@syncfusion/ej2-charts';
|
|
3
3
|
import { AxisModel, ChartAreaModel, TooltipSettingsModel, LegendSettingsModel, IPointEventArgs, ITooltipRenderEventArgs } from '@syncfusion/ej2-angular-charts';
|
4
4
|
import { CubeService, ScopeType } from '../cube.service';
|
5
5
|
import { AxisClickEvent, CubeViewerComponent } from "../declarations";
|
6
|
-
import { AxesMap, ChartType } from '../../core/models';
|
6
|
+
import { AxesMap, ChartType, YAxis } from '../../core/models';
|
7
7
|
import { PromptService } from '../../core/prompt.service';
|
8
8
|
import { SessionService } from '../../core/session.service';
|
9
9
|
import { TranslateService } from '../../core/translate.service';
|
@@ -27,6 +27,7 @@ export declare class CubeChartComponent implements OnInit, OnChanges, OnDestroy,
|
|
27
27
|
get indices(): string[] | string;
|
28
28
|
set indices(value: string[] | string);
|
29
29
|
filters?: AxesMap;
|
30
|
+
yAxis?: YAxis;
|
30
31
|
chartType?: ChartType;
|
31
32
|
indexChartType?: ChartType;
|
32
33
|
scope: ScopeType;
|
@@ -56,7 +57,8 @@ export declare class CubeChartComponent implements OnInit, OnChanges, OnDestroy,
|
|
56
57
|
*
|
57
58
|
*/
|
58
59
|
ngOnChanges(changes: SimpleChanges): void;
|
59
|
-
|
60
|
+
resize(): void;
|
61
|
+
execute(): void;
|
60
62
|
/** */
|
61
63
|
private _draw;
|
62
64
|
tooltipRender(e: ITooltipRenderEventArgs): void;
|
@@ -64,5 +66,5 @@ export declare class CubeChartComponent implements OnInit, OnChanges, OnDestroy,
|
|
64
66
|
exportToExcel(title: string): void;
|
65
67
|
ngOnDestroy(): void;
|
66
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeChartComponent, never>;
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeChartComponent, "bizdoc-cube-chart", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "chartType": "chartType"; "indexChartType": "indexChartType"; "scope": "scope"; "currencyCode": "currencyCode"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeChartComponent, "bizdoc-cube-chart", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "yAxis": "yAxis"; "chartType": "chartType"; "indexChartType": "indexChartType"; "scope": "scope"; "currencyCode": "currencyCode"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
68
70
|
}
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { ComponentFactoryResolver, EventEmitter, OnChanges, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
1
|
+
import { AfterViewInit, 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
4
|
import * as i0 from "@angular/core";
|
5
5
|
/** */
|
6
|
-
export declare class CubeViewComponent implements OnInit, OnChanges {
|
6
|
+
export declare class CubeViewComponent implements OnInit, OnChanges, AfterViewInit {
|
7
7
|
private _viewContainer;
|
8
8
|
private _factoryResolver;
|
9
9
|
axes: AxesMap;
|
@@ -17,6 +17,7 @@ export declare class CubeViewComponent implements OnInit, OnChanges {
|
|
17
17
|
private readonly _viewDestroy;
|
18
18
|
constructor(_viewContainer: ViewContainerRef, _factoryResolver: ComponentFactoryResolver);
|
19
19
|
ngOnInit(): void;
|
20
|
+
ngAfterViewInit(): void;
|
20
21
|
ngOnChanges(changes: SimpleChanges): void;
|
21
22
|
private _createView;
|
22
23
|
private _attach;
|
@@ -8,6 +8,8 @@ export interface AxisClickEvent {
|
|
8
8
|
/** */
|
9
9
|
export interface CubeViewerComponent extends OnChanges {
|
10
10
|
exportToExcel(title: string): any;
|
11
|
+
execute(): any;
|
12
|
+
resize(): any;
|
11
13
|
explore?: EventEmitter<AxisClickEvent>;
|
12
14
|
loading: boolean;
|
13
15
|
loadingChange: EventEmitter<boolean>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { EventEmitter, OnInit, ElementRef, OnDestroy, SimpleChanges, OnChanges } from "@angular/core";
|
2
2
|
import { GroupSettingsModel, Grid, AggregateColumnModel, SelectionSettingsModel, CellSelectingEventArgs, QueryCellInfoEventArgs, ColumnModel } from '@syncfusion/ej2-angular-grids';
|
3
3
|
import { AxisClickEvent, CubeViewerComponent } from "../declarations";
|
4
|
-
import { AxesMap
|
4
|
+
import { AxesMap } from "../../core/models";
|
5
5
|
import { CubeService } from "../cube.service";
|
6
6
|
import { PromptService } from "../../core/prompt.service";
|
7
7
|
import { DatasourceService } from "../../core/datasource.service";
|
@@ -16,10 +16,9 @@ export declare class CubeGridComponent implements OnInit, OnChanges, CubeViewerC
|
|
16
16
|
width: string;
|
17
17
|
height: string;
|
18
18
|
cube: string;
|
19
|
-
xAxis: string[];
|
20
|
-
|
21
|
-
|
22
|
-
indices?: string[];
|
19
|
+
set xAxis(val: string[] | string);
|
20
|
+
set series(val: string[] | string);
|
21
|
+
set indices(val: string[] | string);
|
23
22
|
filters?: AxesMap;
|
24
23
|
currencyCode: string;
|
25
24
|
readonly explore: EventEmitter<AxisClickEvent>;
|
@@ -35,14 +34,18 @@ export declare class CubeGridComponent implements OnInit, OnChanges, CubeViewerC
|
|
35
34
|
columns: AggregateColumnModel[];
|
36
35
|
}[];
|
37
36
|
columns: ColumnModel[];
|
37
|
+
private _xAxis;
|
38
|
+
private _series?;
|
39
|
+
private _indices?;
|
38
40
|
private _rows;
|
39
41
|
private _columns;
|
42
|
+
private _cube;
|
40
43
|
private _prepare;
|
41
44
|
constructor(_session: SessionService, _sb: PromptService, _ds: DatasourceService, _service: CubeService, _elementRef: ElementRef);
|
42
45
|
ngOnInit(): void;
|
43
46
|
/** */
|
44
47
|
ngOnChanges(changes: SimpleChanges): void;
|
45
|
-
|
48
|
+
execute(): void;
|
46
49
|
private _normalize;
|
47
50
|
private _draw;
|
48
51
|
queryCellInfo(evt: QueryCellInfoEventArgs): void;
|
@@ -52,5 +55,5 @@ export declare class CubeGridComponent implements OnInit, OnChanges, CubeViewerC
|
|
52
55
|
exportToExcel(title: string): void;
|
53
56
|
ngOnDestroy(): void;
|
54
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeGridComponent, never>;
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeGridComponent, "bizdoc-cube-grid", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeGridComponent, "bizdoc-cube-grid", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "currencyCode": "currencyCode"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
56
59
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { EventEmitter, OnInit, ElementRef, OnDestroy, SimpleChanges, OnChanges } from "@angular/core";
|
2
|
-
import { ColumnModel, RowModel, Spreadsheet, SelectEventArgs } from "@syncfusion/ej2-angular-spreadsheet";
|
2
|
+
import { ColumnModel, RowModel, Spreadsheet, CellStyleModel, SelectEventArgs, AutoFillSettingsModel } from "@syncfusion/ej2-angular-spreadsheet";
|
3
3
|
import { AxisClickEvent, CubeViewerComponent } from "../declarations";
|
4
4
|
import { AxesMap, YAxis } from "../../core/models";
|
5
5
|
import { CubeService } from "../cube.service";
|
@@ -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);
|
@@ -32,6 +33,8 @@ export declare class CubeSpreadsheetComponent implements OnInit, CubeViewerCompo
|
|
32
33
|
spreadsheet: Spreadsheet;
|
33
34
|
dataSource: RowModel[];
|
34
35
|
columns: ColumnModel[];
|
36
|
+
readonly numberStyle: CellStyleModel;
|
37
|
+
readonly autoFillSettings: AutoFillSettingsModel;
|
35
38
|
private _xAxis;
|
36
39
|
private _series?;
|
37
40
|
private _indices?;
|
@@ -40,15 +43,19 @@ export declare class CubeSpreadsheetComponent implements OnInit, CubeViewerCompo
|
|
40
43
|
private _yrows;
|
41
44
|
private _xcolumns;
|
42
45
|
private _prepare;
|
43
|
-
private _cube;
|
44
|
-
private readonly _intl;
|
45
46
|
private _numberFormat;
|
47
|
+
private readonly _intl;
|
46
48
|
constructor(_session: SessionService, _sb: PromptService, _service: CubeService, _translate: TranslateService, _ds: DatasourceService, _elementRef: ElementRef);
|
47
49
|
ngOnInit(): void;
|
48
50
|
ngOnChanges(changes: SimpleChanges): void;
|
49
|
-
|
51
|
+
resize(): void;
|
52
|
+
execute(): void;
|
53
|
+
private _datatable;
|
54
|
+
private _dataseries;
|
50
55
|
private _draw;
|
51
56
|
select(evt: SelectEventArgs): void;
|
57
|
+
private _filly;
|
58
|
+
private _fillx;
|
52
59
|
exportToExcel(title: string): void;
|
53
60
|
ngOnDestroy(): void;
|
54
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeSpreadsheetComponent, never>;
|
@@ -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*/
|
@@ -6,8 +6,8 @@ export declare class Item {
|
|
6
6
|
data: Series;
|
7
7
|
palette: string[];
|
8
8
|
fill: string;
|
9
|
-
markerSettings: SparklineMarkerSettingsModel;
|
9
|
+
readonly markerSettings: SparklineMarkerSettingsModel;
|
10
10
|
readonly tooltipSettings: SparklineTooltipSettingsModel;
|
11
|
-
border: SparklineBorderModel;
|
11
|
+
readonly border: SparklineBorderModel;
|
12
12
|
constructor(chartType: SparklineType, data: Series, palette: string[], fill: string);
|
13
13
|
}
|
@@ -33,7 +33,7 @@ export declare class CubeSumComponent implements OnChanges {
|
|
33
33
|
private _scoperesults;
|
34
34
|
private _scope;
|
35
35
|
constructor(_ds: DatasourceService, _service: CubeService, _session: SessionService);
|
36
|
-
ngOnChanges(
|
36
|
+
ngOnChanges(_: SimpleChanges): void;
|
37
37
|
private _strict;
|
38
38
|
private _fish;
|
39
39
|
getAggregateLabel(): Promise<string>;
|
@@ -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';
|
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@syncfusion/ej2-angular-charts";
|
3
3
|
export declare class SyncfusionChartModule {
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<SyncfusionChartModule, never>;
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SyncfusionChartModule, never, [typeof i1.ChartModule, typeof i1.AccumulationChartAllModule, typeof i1.
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SyncfusionChartModule, never, [typeof i1.ChartModule, typeof i1.AccumulationChartAllModule, typeof i1.SparklineAllModule], [typeof i1.ChartModule, typeof i1.AccumulationChartAllModule, typeof i1.SparklineAllModule]>;
|
6
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<SyncfusionChartModule>;
|
7
7
|
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "@syncfusion/ej2-angular-gantt";
|
3
|
+
export declare class SyncfusionGanttModule {
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SyncfusionGanttModule, never>;
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SyncfusionGanttModule, never, [typeof i1.GanttModule], [typeof i1.GanttModule]>;
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SyncfusionGanttModule>;
|
7
|
+
}
|
package/lib/shared.module.d.ts
CHANGED
@@ -160,21 +160,20 @@ import * as i156 from "@angular/flex-layout";
|
|
160
160
|
import * as i157 from "@angular/router";
|
161
161
|
import * as i158 from "ngx-moment";
|
162
162
|
import * as i159 from "@ctrl/ngx-emoji-mart";
|
163
|
-
import * as i160 from "
|
163
|
+
import * as i160 from "./modules/gantt.module";
|
164
164
|
import * as i161 from "./modules/schedule.module";
|
165
165
|
import * as i162 from "./modules/circular-gauge.module";
|
166
166
|
import * as i163 from "./modules/chart.module";
|
167
|
-
import * as i164 from "
|
168
|
-
import * as i165 from "
|
169
|
-
import * as i166 from "
|
170
|
-
import * as i167 from "./modules/
|
171
|
-
import * as i168 from "
|
172
|
-
import * as i169 from "
|
173
|
-
import * as i170 from "./modules/
|
174
|
-
import * as i171 from "./modules/material.module";
|
167
|
+
import * as i164 from "./modules/grid.module";
|
168
|
+
import * as i165 from "@syncfusion/ej2-angular-richtexteditor";
|
169
|
+
import * as i166 from "./modules/spreadsheet.module";
|
170
|
+
import * as i167 from "./modules/pivot.module";
|
171
|
+
import * as i168 from "@syncfusion/ej2-angular-kanban";
|
172
|
+
import * as i169 from "./modules/diagram.module";
|
173
|
+
import * as i170 from "./modules/material.module";
|
175
174
|
export declare class SharedModule {
|
176
175
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
177
176
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
178
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.CheckboxComponent, typeof i2.CubeParallelComponent, typeof i3.CubeSumComponent, typeof i4.CubeParallelViewComponent, typeof i5.CubeChartViewComponent, typeof i6.CubeExploreViewComponent, typeof i7.CubeDocumentSumComponent, typeof i8.ExploreItemImplComponent, typeof i9.DocumentInfoComponent, typeof i10.DocumentViewsComponent, typeof i11.ViewItemComponent, typeof i12.CubeDocumentMatrixComponent, typeof i13.CubeDocumentViewComponent, typeof i14.CubePivotViewComponent, typeof i15.ActionPicker, typeof i16.HtmlSimplePipe, typeof i17.QuickCommentComponent, typeof i18.DurationFormatPipe, typeof i19.CombinationPicker, typeof i20.CombinationPickerBody, typeof i21.CombinationPool, typeof i22.TimelineViewComponent, typeof i23.MatIconAnimate, typeof i24.DateRangePipe, typeof i24.AgoPipe, typeof i25.ColorPicker, typeof i26.StateDirective, typeof i27.BrokenPage, typeof i28.JoinPipe, typeof i29.TimePicker, typeof i30.TypeValuePipe, typeof i31.TypeSelect, typeof i32.TypeAutocomplete, typeof i33.TranslatePipe, typeof i34.IdentityName, typeof i35.SanitizeHtmlPipe, typeof i36.AceInput, typeof i37.TimespanInput, typeof i38.AddressInput, typeof i39.StatePipe, typeof i40.ActionPipe, typeof i41.RolePipe, typeof i42.FormPipe, typeof i43.FilterPipe, typeof i43.ArraySortPipe, typeof i44.UserNamePipe, typeof i45.LayoutComponent, typeof i46.HtmlField, typeof i47.NumericField, typeof i48.AutocompleteField, typeof i49.CheckField, typeof i50.DateField, typeof i51.DateRangeField, typeof i52.ExpressionField, typeof i53.InputField, typeof i54.SelectField, typeof i55.SwitchField, typeof i56.TextareaField, typeof i57.TimespanField, typeof i58.ReturnActionComponent, typeof i59.AssignActionComponent, typeof i60.AvatarComponent, typeof i61.PeopleComponent, typeof i62.EditInputComponent, typeof i63.NgxComponentOutlet, typeof i27.BizDocApp, typeof i64.LottieAnimation, typeof i16.ContactsComponent, typeof i65.CubeMatrixComponent, typeof i66.FilterTagsComponent, typeof i67.ExploreItemsComponent, typeof i68.CompareNameDirective, typeof i68.CompareGroupDirective, typeof i68.CompareContextDirective, typeof i69.GuideComponent, typeof i70.OutOfOfficeToast, typeof i71.NotificationsTableComponent, typeof i72.NotificationsFilterComponent, typeof i73.TaggingPipe, typeof i74.PrivilegeHiddenDirective, typeof i75.TaggingItemDirective, typeof i76.TaggingDirective, typeof i77.DocumentTaggingComponent, typeof i78.UserTaggingComponent, typeof i74.PrivilegeDisabledDirective, typeof i79.CubeGridDocumentsComponent, typeof i80.LongRunningTaskNotification, typeof i81.TaggedNotification, typeof i82.CommentedNotification, typeof i83.NudgeNotification, typeof i84.TextNotification, typeof i85.CubeAnomalyNotification, typeof i86.EscalatedNotification, typeof i87.LikedNotification, typeof i88.StateChangedNotification, typeof i89.UpcomingEventNotification, typeof i90.NoneComponent, typeof i91.ScheduleViewComponent, typeof i92.OptionsComponent, typeof i93.TraceViewComponent, typeof i94.ProgressButtonDirective, typeof i95.AttachmentsComponent, typeof i96.DocumentEventsComponent, typeof i97.TagsComponent, typeof i98.MapComponent, typeof i99.MaskComponent, typeof i100.SaveChangesDialog, typeof i101.FlowViewComponent, typeof i102.SubstitutionComponent, typeof i103.PopupComponent, typeof i104.AttachmentPreview, typeof i105.CommentsComponent, typeof i106.CommentComponent, typeof i107.EditCommentComponent, typeof i108.CommentLikesComponent, typeof i109.CommentEditsComponent, typeof i110.BrowseItemsComponent, typeof i111.BrowseFilterComponent, typeof i112.ExpandedItemComponent, typeof i113.ComposeFormComponent, typeof i114.CubeViewComponent, typeof i115.CubeFilterComponent, typeof i116.CubeAccumulationChartComponent, typeof i117.CubeChartComponent, typeof i118.CubePivotComponent, typeof i119.CubeSpreadsheetComponent, typeof i120.CubeGridComponent, typeof i121.ReportViewerComponent, typeof i122.TableViewComponent, typeof i123.ReportArgumentsComponent, typeof i124.DashboardComponent, typeof i125.WidgetItemComponent, typeof i126.CubeWidgetFilterComponent, typeof i127.CubeAccumAnalysisWidget, typeof i128.CubeAnalysisWidget, typeof i129.CubeChartAnalysisWidget, typeof i130.ActionsWidget, typeof i131.RecentsWidget, typeof i132.AskDialog, typeof i133.AboutDialog, typeof i134.ActionDialog, typeof i135.ImpersonateDialog, typeof i136.ConversationComponent, typeof i137.CubeMatrixPageComponent, typeof i138.VersionCompareComponent, typeof i139.ExploreDocumentComponent, typeof i140.TasksComponent, typeof i141.PendingResultsWidget, typeof i142.CompareDepartmentsWidget, typeof i143.CubeDocumentsComponent, typeof i144.CubeDocumentsWidget, typeof i145.PersonalScoreWidget, typeof i146.PersonalActivityWidget, typeof i147.PeersPerformanceWidget, typeof i148.UsagePivotComponent, typeof i149.UsageChartComponent, typeof i150.UsageReportArgs, typeof i151.EmojiHostComponent, typeof i152.TooltipDirective, typeof i152.TooltipComponent], [typeof i153.CommonModule, typeof i154.HttpClientModule, typeof i155.ReactiveFormsModule, typeof i156.FlexLayoutModule, typeof i157.RouterModule, typeof i158.MomentModule, typeof i159.PickerModule, typeof i160.
|
177
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.CheckboxComponent, typeof i2.CubeParallelComponent, typeof i3.CubeSumComponent, typeof i4.CubeParallelViewComponent, typeof i5.CubeChartViewComponent, typeof i6.CubeExploreViewComponent, typeof i7.CubeDocumentSumComponent, typeof i8.ExploreItemImplComponent, typeof i9.DocumentInfoComponent, typeof i10.DocumentViewsComponent, typeof i11.ViewItemComponent, typeof i12.CubeDocumentMatrixComponent, typeof i13.CubeDocumentViewComponent, typeof i14.CubePivotViewComponent, typeof i15.ActionPicker, typeof i16.HtmlSimplePipe, typeof i17.QuickCommentComponent, typeof i18.DurationFormatPipe, typeof i19.CombinationPicker, typeof i20.CombinationPickerBody, typeof i21.CombinationPool, typeof i22.TimelineViewComponent, typeof i23.MatIconAnimate, typeof i24.DateRangePipe, typeof i24.AgoPipe, typeof i25.ColorPicker, typeof i26.StateDirective, typeof i27.BrokenPage, typeof i28.JoinPipe, typeof i29.TimePicker, typeof i30.TypeValuePipe, typeof i31.TypeSelect, typeof i32.TypeAutocomplete, typeof i33.TranslatePipe, typeof i34.IdentityName, typeof i35.SanitizeHtmlPipe, typeof i36.AceInput, typeof i37.TimespanInput, typeof i38.AddressInput, typeof i39.StatePipe, typeof i40.ActionPipe, typeof i41.RolePipe, typeof i42.FormPipe, typeof i43.FilterPipe, typeof i43.ArraySortPipe, typeof i44.UserNamePipe, typeof i45.LayoutComponent, typeof i46.HtmlField, typeof i47.NumericField, typeof i48.AutocompleteField, typeof i49.CheckField, typeof i50.DateField, typeof i51.DateRangeField, typeof i52.ExpressionField, typeof i53.InputField, typeof i54.SelectField, typeof i55.SwitchField, typeof i56.TextareaField, typeof i57.TimespanField, typeof i58.ReturnActionComponent, typeof i59.AssignActionComponent, typeof i60.AvatarComponent, typeof i61.PeopleComponent, typeof i62.EditInputComponent, typeof i63.NgxComponentOutlet, typeof i27.BizDocApp, typeof i64.LottieAnimation, typeof i16.ContactsComponent, typeof i65.CubeMatrixComponent, typeof i66.FilterTagsComponent, typeof i67.ExploreItemsComponent, typeof i68.CompareNameDirective, typeof i68.CompareGroupDirective, typeof i68.CompareContextDirective, typeof i69.GuideComponent, typeof i70.OutOfOfficeToast, typeof i71.NotificationsTableComponent, typeof i72.NotificationsFilterComponent, typeof i73.TaggingPipe, typeof i74.PrivilegeHiddenDirective, typeof i75.TaggingItemDirective, typeof i76.TaggingDirective, typeof i77.DocumentTaggingComponent, typeof i78.UserTaggingComponent, typeof i74.PrivilegeDisabledDirective, typeof i79.CubeGridDocumentsComponent, typeof i80.LongRunningTaskNotification, typeof i81.TaggedNotification, typeof i82.CommentedNotification, typeof i83.NudgeNotification, typeof i84.TextNotification, typeof i85.CubeAnomalyNotification, typeof i86.EscalatedNotification, typeof i87.LikedNotification, typeof i88.StateChangedNotification, typeof i89.UpcomingEventNotification, typeof i90.NoneComponent, typeof i91.ScheduleViewComponent, typeof i92.OptionsComponent, typeof i93.TraceViewComponent, typeof i94.ProgressButtonDirective, typeof i95.AttachmentsComponent, typeof i96.DocumentEventsComponent, typeof i97.TagsComponent, typeof i98.MapComponent, typeof i99.MaskComponent, typeof i100.SaveChangesDialog, typeof i101.FlowViewComponent, typeof i102.SubstitutionComponent, typeof i103.PopupComponent, typeof i104.AttachmentPreview, typeof i105.CommentsComponent, typeof i106.CommentComponent, typeof i107.EditCommentComponent, typeof i108.CommentLikesComponent, typeof i109.CommentEditsComponent, typeof i110.BrowseItemsComponent, typeof i111.BrowseFilterComponent, typeof i112.ExpandedItemComponent, typeof i113.ComposeFormComponent, typeof i114.CubeViewComponent, typeof i115.CubeFilterComponent, typeof i116.CubeAccumulationChartComponent, typeof i117.CubeChartComponent, typeof i118.CubePivotComponent, typeof i119.CubeSpreadsheetComponent, typeof i120.CubeGridComponent, typeof i121.ReportViewerComponent, typeof i122.TableViewComponent, typeof i123.ReportArgumentsComponent, typeof i124.DashboardComponent, typeof i125.WidgetItemComponent, typeof i126.CubeWidgetFilterComponent, typeof i127.CubeAccumAnalysisWidget, typeof i128.CubeAnalysisWidget, typeof i129.CubeChartAnalysisWidget, typeof i130.ActionsWidget, typeof i131.RecentsWidget, typeof i132.AskDialog, typeof i133.AboutDialog, typeof i134.ActionDialog, typeof i135.ImpersonateDialog, typeof i136.ConversationComponent, typeof i137.CubeMatrixPageComponent, typeof i138.VersionCompareComponent, typeof i139.ExploreDocumentComponent, typeof i140.TasksComponent, typeof i141.PendingResultsWidget, typeof i142.CompareDepartmentsWidget, typeof i143.CubeDocumentsComponent, typeof i144.CubeDocumentsWidget, typeof i145.PersonalScoreWidget, typeof i146.PersonalActivityWidget, typeof i147.PeersPerformanceWidget, typeof i148.UsagePivotComponent, typeof i149.UsageChartComponent, typeof i150.UsageReportArgs, typeof i151.EmojiHostComponent, typeof i152.TooltipDirective, typeof i152.TooltipComponent], [typeof i153.CommonModule, typeof i154.HttpClientModule, typeof i155.ReactiveFormsModule, typeof i156.FlexLayoutModule, typeof i157.RouterModule, typeof i158.MomentModule, typeof i159.PickerModule, typeof i160.SyncfusionGanttModule, typeof i161.SyncfusionScheduleModule, typeof i162.SyncfusionCircularGaugeModule, typeof i163.SyncfusionChartModule, typeof i160.SyncfusionGanttModule, typeof i164.SyncfusionGridModule, typeof i165.RichTextEditorModule, typeof i166.SyncfusionSpreadsheetModule, typeof i167.SyncfusionPivotModule, typeof i168.KanbanModule, typeof i169.SyncfusionDiagramModule, typeof i170.MaterialModule], [typeof i1.CheckboxComponent, typeof i2.CubeParallelComponent, typeof i3.CubeSumComponent, typeof i8.ExploreItemImplComponent, typeof i9.DocumentInfoComponent, typeof i10.DocumentViewsComponent, typeof i124.DashboardComponent, typeof i97.TagsComponent, typeof i17.QuickCommentComponent, typeof i170.MaterialModule, typeof i105.CommentsComponent, typeof i27.BrokenPage, typeof i134.ActionDialog, typeof i111.BrowseFilterComponent, typeof i115.CubeFilterComponent, typeof i91.ScheduleViewComponent, typeof i121.ReportViewerComponent, typeof i125.WidgetItemComponent, typeof i114.CubeViewComponent, typeof i67.ExploreItemsComponent, typeof i113.ComposeFormComponent, typeof i110.BrowseItemsComponent, typeof i71.NotificationsTableComponent, typeof i15.ActionPicker, typeof i136.ConversationComponent, typeof i26.StateDirective, typeof i16.ContactsComponent, typeof i65.CubeMatrixComponent, typeof i18.DurationFormatPipe, typeof i19.CombinationPicker, typeof i21.CombinationPool, typeof i29.TimePicker, typeof i152.TooltipDirective, typeof i24.DateRangePipe, typeof i63.NgxComponentOutlet, typeof i23.MatIconAnimate, typeof i36.AceInput, typeof i28.JoinPipe, typeof i30.TypeValuePipe, typeof i31.TypeSelect, typeof i32.TypeAutocomplete, typeof i39.StatePipe, typeof i40.ActionPipe, typeof i41.RolePipe, typeof i42.FormPipe, typeof i43.FilterPipe, typeof i43.ArraySortPipe, typeof i44.UserNamePipe, typeof i35.SanitizeHtmlPipe, typeof i33.TranslatePipe, typeof i34.IdentityName, typeof i38.AddressInput, typeof i60.AvatarComponent, typeof i123.ReportArgumentsComponent, typeof i27.BizDocApp, typeof i104.AttachmentPreview, typeof i74.PrivilegeHiddenDirective, typeof i74.PrivilegeDisabledDirective, typeof i68.CompareGroupDirective, typeof i68.CompareNameDirective, typeof i68.CompareContextDirective, typeof i93.TraceViewComponent, typeof i101.FlowViewComponent, typeof i59.AssignActionComponent, typeof i58.ReturnActionComponent, typeof i139.ExploreDocumentComponent, typeof i130.ActionsWidget, typeof i128.CubeAnalysisWidget, typeof i144.CubeDocumentsWidget, typeof i131.RecentsWidget, typeof i146.PersonalActivityWidget, typeof i142.CompareDepartmentsWidget, typeof i147.PeersPerformanceWidget, typeof i141.PendingResultsWidget, typeof i145.PersonalScoreWidget, typeof i126.CubeWidgetFilterComponent, typeof i143.CubeDocumentsComponent, typeof i79.CubeGridDocumentsComponent, typeof i140.TasksComponent, typeof i150.UsageReportArgs, typeof i149.UsageChartComponent, typeof i148.UsagePivotComponent, typeof i37.TimespanInput, typeof i138.VersionCompareComponent, typeof i64.LottieAnimation, typeof i116.CubeAccumulationChartComponent, typeof i117.CubeChartComponent, typeof i118.CubePivotComponent, typeof i119.CubeSpreadsheetComponent, typeof i120.CubeGridComponent]>;
|
179
178
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
180
179
|
}
|
@@ -1,11 +1,11 @@
|
|
1
|
+
import { Observable } from "rxjs";
|
1
2
|
import { DocumentViewComponent } from "../../core/base";
|
2
|
-
import { DatasourceService } from "../../core/datasource.service";
|
3
3
|
import { AxesMap, CubeAxis } from "../../core/models";
|
4
|
+
import { DatasourceService } from "../../core/datasource.service";
|
4
5
|
import { SessionService } from "../../core/session.service";
|
5
6
|
import { RouterImpl } from "../../core/router";
|
6
7
|
import { CubeService, Pattern, ScopeType } from "../../cube/cube.service";
|
7
8
|
import { DocumentViewRef } from "../document-view-ref";
|
8
|
-
import { Observable } from "rxjs";
|
9
9
|
import { CubeBase } from "./cube-base";
|
10
10
|
import { CubeMatrixComponent } from "../../cube/matrix/table.component";
|
11
11
|
import * as i0 from "@angular/core";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "1.9.
|
3
|
+
"version": "1.9.14",
|
4
4
|
"author": "Moding Ltd.",
|
5
5
|
"homepage": "https://github.com/moding-il/bizdoc.core",
|
6
6
|
"license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",
|
@@ -24,7 +24,6 @@
|
|
24
24
|
"@syncfusion/ej2-angular-spreadsheet": "^19.3.53",
|
25
25
|
"@syncfusion/ej2-base": "^19.3.54",
|
26
26
|
"@teamhive/lottie-player": "^1.0.0",
|
27
|
-
"ajv": "^8.8.1",
|
28
27
|
"brace": "^0.11.1",
|
29
28
|
"cookie": "^0.4.1",
|
30
29
|
"firebase": "^9.5.0",
|