@bizdoc/core 3.3.8 → 3.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/themes/dark.min.css +14 -14
- package/assets/themes/default.min.css +15 -15
- package/fesm2022/bizdoc-core.mjs +105 -109
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/admin/architecture/cube-axes-filter.component.d.ts +2 -2
- package/lib/admin/indices/manage-cube-index.component.d.ts +1 -1
- package/lib/admin/patterns/patterns.component.d.ts +1 -1
- package/lib/admin/permissions/permissions.component.d.ts +1 -1
- package/lib/admin/positions/positions.component.d.ts +1 -1
- package/lib/browse/browse-items.component.d.ts +2 -2
- package/lib/core/base.d.ts +3 -6
- package/lib/core/fields/axes-picker.field.d.ts +2 -2
- package/lib/core/inputs/combination-picker-body.d.ts +2 -2
- package/lib/core/inputs/combination-pool.d.ts +2 -2
- package/lib/core/models.d.ts +2 -2
- package/lib/cube/accum/accum.component.d.ts +2 -2
- package/lib/cube/chart/chart.component.d.ts +2 -2
- package/lib/cube/cube-info.service.d.ts +2 -2
- package/lib/cube/cube.service.d.ts +3 -3
- package/lib/cube/explore/explore-items.component.d.ts +2 -2
- package/lib/cube/explore/explore.pane.component.d.ts +2 -2
- package/lib/cube/explore/item-resolver.service.d.ts +3 -3
- package/lib/cube/filter/filter.component.d.ts +2 -2
- package/lib/cube/grid/grid.component.d.ts +2 -2
- package/lib/cube/matrix/matrix.base.d.ts +3 -3
- package/lib/cube/matrix/matrix.mobile.component.d.ts +2 -2
- package/lib/cube/matrix/matrix.pane.component.d.ts +2 -2
- package/lib/cube/matrix/popup.component.d.ts +2 -2
- package/lib/cube/matrix/table.component.d.ts +2 -2
- package/lib/cube/parallel/parallel.component.d.ts +2 -2
- package/lib/cube/pivot/pivot.component.d.ts +2 -2
- package/lib/cube/spreadsheet/spreadsheet.component.d.ts +2 -2
- package/lib/cube/sum/sum.component.d.ts +2 -2
- package/lib/cube/view-base.d.ts +3 -3
- package/lib/cube/view.mobile.component.d.ts +2 -2
- package/lib/cube/view.pane.component.d.ts +2 -2
- package/lib/dashboard/cube/accum-cube.widget.d.ts +2 -2
- package/lib/dashboard/cube/cube-analysis.base.d.ts +3 -3
- package/lib/dashboard/cube/cube-chart.widget.d.ts +2 -2
- package/lib/reports/cube/grid-documents.component.d.ts +2 -2
- package/lib/reports/cube/table-documents.component.d.ts +2 -2
- package/lib/reports/cube/usage-base.d.ts +3 -3
- package/lib/reports/cube/usage-chart.component.d.ts +2 -2
- package/lib/reports/cube/usage-pivot.component.d.ts +2 -2
- package/lib/views/cube/chart.component.d.ts +2 -2
- package/lib/views/cube/cube-base.d.ts +3 -3
- package/lib/views/cube/explore.component.d.ts +2 -2
- package/lib/views/cube/matrix.component.d.ts +2 -2
- package/lib/views/cube/parallel.component.d.ts +2 -2
- package/lib/views/cube/pivot.component.d.ts +2 -2
- package/lib/views/cube/sum.component.d.ts +2 -2
- package/lib/views/cube/view.component.d.ts +2 -2
- package/package.json +2 -2
- package/public-api.d.ts +1 -1
@@ -5,7 +5,7 @@ import { WidgetComponent } from '../../core/base';
|
|
5
5
|
import { AxesMap, ChartType, Cube } from '../../core/models';
|
6
6
|
import { SessionService } from '../../core/session.service';
|
7
7
|
import { DatasourceService } from '../../core/datasource.service';
|
8
|
-
import {
|
8
|
+
import { CubeService, Series } from '../../cube/cube.service';
|
9
9
|
import { WidgetRef } from "../widget-ref";
|
10
10
|
import { CubeInfo } from '../../cube/cube-info.service';
|
11
11
|
import { ScopeType } from '../../core/configuration';
|
@@ -14,7 +14,7 @@ export declare abstract class CubeAnalysisBase implements WidgetComponent<Series
|
|
14
14
|
private _info;
|
15
15
|
protected _session: SessionService;
|
16
16
|
private _ds;
|
17
|
-
protected _service:
|
17
|
+
protected _service: CubeService;
|
18
18
|
static nextId: number;
|
19
19
|
readonly id: string;
|
20
20
|
palettes: string[];
|
@@ -35,7 +35,7 @@ export declare abstract class CubeAnalysisBase implements WidgetComponent<Series
|
|
35
35
|
readonly enableRtl: boolean;
|
36
36
|
protected readonly _intl: Internationalization;
|
37
37
|
protected readonly _destroy: Subject<void>;
|
38
|
-
constructor(ref: WidgetRef<ChartSettingsModel>, _info: CubeInfo, _session: SessionService, _ds: DatasourceService, _service:
|
38
|
+
constructor(ref: WidgetRef<ChartSettingsModel>, _info: CubeInfo, _session: SessionService, _ds: DatasourceService, _service: CubeService);
|
39
39
|
protected explore(axes: AxesMap, options?: {
|
40
40
|
index?: string;
|
41
41
|
}): void;
|
@@ -5,7 +5,7 @@ import { CubeAnalysisBase } from './cube-analysis.base';
|
|
5
5
|
import { DatasourceService } from '../../core/datasource.service';
|
6
6
|
import { WidgetRef } from "../widget-ref";
|
7
7
|
import { TranslateService } from '../../core/translate.service';
|
8
|
-
import {
|
8
|
+
import { CubeService, Series } from '../../cube/cube.service';
|
9
9
|
import { CubeInfo } from '../../cube/cube-info.service';
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
export declare class CubeChartAnalysisWidget extends CubeAnalysisBase {
|
@@ -20,7 +20,7 @@ export declare class CubeChartAnalysisWidget extends CubeAnalysisBase {
|
|
20
20
|
readonly tooltip: TooltipSettingsModel;
|
21
21
|
readonly legendSettings: LegendSettingsModel;
|
22
22
|
readonly animation: AnimationModel;
|
23
|
-
constructor(ref: WidgetRef, session: SessionService, ds: DatasourceService, cube:
|
23
|
+
constructor(ref: WidgetRef, session: SessionService, ds: DatasourceService, cube: CubeService, info: CubeInfo, _elementRef: ElementRef<HTMLDivElement>, _translate: TranslateService);
|
24
24
|
onLoad(data: Series[]): void;
|
25
25
|
pointClick(evt: IPointEventArgs): void;
|
26
26
|
onThemeChange(): void;
|
@@ -2,7 +2,7 @@ import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { NumberFormatOptions } from '@syncfusion/ej2-base';
|
3
3
|
import { Grid, GroupSettingsModel, RowSelectEventArgs, PageSettingsModel } from '@syncfusion/ej2-angular-grids';
|
4
4
|
import { ReportComponent } from '../../core/base';
|
5
|
-
import {
|
5
|
+
import { CubeService } from '../../cube/cube.service';
|
6
6
|
import { SessionService } from '../../core/session.service';
|
7
7
|
import { AccountService } from '../../core/account.service';
|
8
8
|
import { DocumentInfo } from '../../core/info/document-info.service';
|
@@ -23,7 +23,7 @@ export declare class CubeDocumentsGridComponent implements ReportComponent<Model
|
|
23
23
|
height: number;
|
24
24
|
cube: Cube;
|
25
25
|
private readonly _destroy;
|
26
|
-
constructor(_ref: ReportRef<DocumentsSettingsModel>, _info: DocumentInfo, _session: SessionService, _accounts: AccountService, service:
|
26
|
+
constructor(_ref: ReportRef<DocumentsSettingsModel>, _info: DocumentInfo, _session: SessionService, _accounts: AccountService, service: CubeService);
|
27
27
|
onExport(): void;
|
28
28
|
onBind(data: Model[]): void;
|
29
29
|
rowSelected(evt: RowSelectEventArgs): void;
|
@@ -2,7 +2,7 @@ import { MatTableDataSource } from '@angular/material/table';
|
|
2
2
|
import { MatSort } from '@angular/material/sort';
|
3
3
|
import { MatPaginator } from '@angular/material/paginator';
|
4
4
|
import { ReportComponent } from '../../core/base';
|
5
|
-
import {
|
5
|
+
import { CubeService } from '../../cube/cube.service';
|
6
6
|
import { SessionService } from '../../core/session.service';
|
7
7
|
import { DocumentInfo } from '../../core/info/document-info.service';
|
8
8
|
import { ReportRef } from '../report-ref';
|
@@ -20,7 +20,7 @@ export declare class CubeDocumentsTableComponent implements ReportComponent<Mode
|
|
20
20
|
sort: MatSort;
|
21
21
|
paginator: MatPaginator;
|
22
22
|
dataSource: MatTableDataSource<any>;
|
23
|
-
constructor(ref: ReportRef<DocumentsSettingsModel>, _info: DocumentInfo, session: SessionService, _service:
|
23
|
+
constructor(ref: ReportRef<DocumentsSettingsModel>, _info: DocumentInfo, session: SessionService, _service: CubeService);
|
24
24
|
onBind(data: Model[]): void;
|
25
25
|
open(id: number): void;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeDocumentsTableComponent, never>;
|
@@ -7,7 +7,7 @@ import { ReportComponent } from "../../core/base";
|
|
7
7
|
import { SessionService } from "../../core/session.service";
|
8
8
|
import { TranslateService } from "../../core/translate.service";
|
9
9
|
import { DatasourceService } from "../../core/datasource.service";
|
10
|
-
import {
|
10
|
+
import { CubeService } from "../../cube/cube.service";
|
11
11
|
import { PromptService } from "../../core/prompt.service";
|
12
12
|
import { ReportRef } from "../report-ref";
|
13
13
|
import { RouterImpl } from "../../core/router";
|
@@ -17,7 +17,7 @@ export declare abstract class UsageReportBase implements ReportComponent<Item, A
|
|
17
17
|
private _router;
|
18
18
|
protected _reportRef: ReportRef<UsageSettingsModel>;
|
19
19
|
protected _type: DatasourceService;
|
20
|
-
protected _service:
|
20
|
+
protected _service: CubeService;
|
21
21
|
protected _session: SessionService;
|
22
22
|
protected _sb: PromptService;
|
23
23
|
protected _dir: Directionality;
|
@@ -40,7 +40,7 @@ export declare abstract class UsageReportBase implements ReportComponent<Item, A
|
|
40
40
|
}[];
|
41
41
|
private _args?;
|
42
42
|
protected readonly _destroy: Subject<void>;
|
43
|
-
constructor(_router: RouterImpl, _reportRef: ReportRef<UsageSettingsModel>, _type: DatasourceService, _service:
|
43
|
+
constructor(_router: RouterImpl, _reportRef: ReportRef<UsageSettingsModel>, _type: DatasourceService, _service: CubeService, _session: SessionService, _sb: PromptService, _dir: Directionality, _translate: TranslateService);
|
44
44
|
ngOnInit(): void;
|
45
45
|
onExport(): void;
|
46
46
|
abstract onExportUsage(name: string): void;
|
@@ -6,7 +6,7 @@ import { IPointEventArgs } from "@syncfusion/ej2-angular-charts";
|
|
6
6
|
import { Item, UsageSettingsModel, UsageReportBase } from "./usage-base";
|
7
7
|
import { DatasourceService } from "../../core/datasource.service";
|
8
8
|
import { SessionService } from "../../core/session.service";
|
9
|
-
import {
|
9
|
+
import { CubeService } from "../../cube/cube.service";
|
10
10
|
import { PromptService } from "../../core/prompt.service";
|
11
11
|
import { TranslateService } from "../../core/translate.service";
|
12
12
|
import { ReportRef } from "../report-ref";
|
@@ -23,7 +23,7 @@ export declare class UsageChartComponent extends UsageReportBase implements OnDe
|
|
23
23
|
dataSourceSettings: DataSourceSettingsModel;
|
24
24
|
readonly displayOption: DisplayOptionModel;
|
25
25
|
chartSettings: ChartSettingsModel;
|
26
|
-
constructor(reportRef: ReportRef<UsageSettingsModel>, type: DatasourceService, service:
|
26
|
+
constructor(reportRef: ReportRef<UsageSettingsModel>, type: DatasourceService, service: CubeService, session: SessionService, router: RouterImpl, sb: PromptService, _elementRef: ElementRef, dir: Directionality, translate: TranslateService);
|
27
27
|
/** set defaults */
|
28
28
|
private _defaults;
|
29
29
|
private _palettes;
|
@@ -8,7 +8,7 @@ import { Tooltip } from '@syncfusion/ej2-popups';
|
|
8
8
|
import { SessionService } from "../../core/session.service";
|
9
9
|
import { TranslateService } from "../../core/translate.service";
|
10
10
|
import { DatasourceService } from "../../core/datasource.service";
|
11
|
-
import {
|
11
|
+
import { CubeService } from "../../cube/cube.service";
|
12
12
|
import { PromptService } from "../../core/prompt.service";
|
13
13
|
import { RouterImpl } from "../../core/router";
|
14
14
|
import { Item, UsageSettingsModel, UsageReportBase } from "./usage-base";
|
@@ -30,7 +30,7 @@ export declare class UsagePivotComponent extends UsageReportBase {
|
|
30
30
|
readonly conditionalFormatSettings: IConditionalFormatSettings[];
|
31
31
|
readonly groupingBarSettings: GroupingBarSettingsModel;
|
32
32
|
private readonly _intl;
|
33
|
-
constructor(_elementRef: ElementRef, reportRef: ReportRef<UsageSettingsModel>, type: DatasourceService, service:
|
33
|
+
constructor(_elementRef: ElementRef, reportRef: ReportRef<UsageSettingsModel>, type: DatasourceService, service: CubeService, session: SessionService, router: RouterImpl, sb: PromptService, dir: Directionality, translate: TranslateService);
|
34
34
|
/** set defaults */
|
35
35
|
private _defaults;
|
36
36
|
/**
|
@@ -2,7 +2,7 @@ import { ScopeType } from '../../core/configuration';
|
|
2
2
|
import { AxesMap, ChartType } from '../../core/models';
|
3
3
|
import { RouterImpl } from '../../core/router';
|
4
4
|
import { SessionService } from '../../core/session.service';
|
5
|
-
import {
|
5
|
+
import { CubeService } from '../../cube/cube.service';
|
6
6
|
import { AxisClickEvent } from '../../cube/declarations';
|
7
7
|
import { DocumentViewRef } from '../document-view-ref';
|
8
8
|
import { CubeBase } from './cube-base';
|
@@ -17,7 +17,7 @@ export declare class CubeChartViewComponent extends CubeBase<ChartSettingsModel>
|
|
17
17
|
indices?: string | string[];
|
18
18
|
filters: AxesMap;
|
19
19
|
isAccum: boolean;
|
20
|
-
constructor(session: SessionService, viewRef: DocumentViewRef<ChartSettingsModel>, service:
|
20
|
+
constructor(session: SessionService, viewRef: DocumentViewRef<ChartSettingsModel>, service: CubeService, _router: RouterImpl);
|
21
21
|
onViewBind(): void;
|
22
22
|
/**
|
23
23
|
*
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import { AxesMap, Cube, DocumentModel } from "../../core/models";
|
2
2
|
import { SessionService } from "../../core/session.service";
|
3
3
|
import { DocumentViewRef } from "../document-view-ref";
|
4
|
-
import {
|
4
|
+
import { CubeService, Pattern } from '../../cube/cube.service';
|
5
5
|
import { InsightComponent } from "../../core/base";
|
6
6
|
import { ScopeType } from "../../core/configuration";
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
export declare abstract class CubeBase<O extends Options> implements InsightComponent {
|
9
9
|
protected _viewRef: DocumentViewRef<O>;
|
10
|
-
protected _service:
|
10
|
+
protected _service: CubeService;
|
11
11
|
protected _session: SessionService;
|
12
12
|
private _none?;
|
13
13
|
patterns: Pattern[];
|
@@ -23,7 +23,7 @@ export declare abstract class CubeBase<O extends Options> implements InsightComp
|
|
23
23
|
hasdata: boolean;
|
24
24
|
title?: string;
|
25
25
|
private _consolidatedAxes;
|
26
|
-
constructor(_viewRef: DocumentViewRef<O>, _service:
|
26
|
+
constructor(_viewRef: DocumentViewRef<O>, _service: CubeService, _session: SessionService, _none?: boolean | undefined);
|
27
27
|
onBind(model: DocumentModel<any>): void;
|
28
28
|
abstract onViewBind(): void;
|
29
29
|
switchAxes(axes?: AxesMap): void;
|
@@ -5,7 +5,7 @@ import { CubeAxis } from '../../core/models';
|
|
5
5
|
import { PromptService } from '../../core/prompt.service';
|
6
6
|
import { RouterImpl } from '../../core/router';
|
7
7
|
import { SessionService } from '../../core/session.service';
|
8
|
-
import {
|
8
|
+
import { CubeService } from '../../cube/cube.service';
|
9
9
|
import { ExploreItemEvent } from '../../cube/explore/explore-items.component';
|
10
10
|
import { DocumentViewRef } from '../document-view-ref';
|
11
11
|
import { CubeBase } from './cube-base';
|
@@ -22,7 +22,7 @@ export declare class CubeExploreViewComponent extends CubeBase<ExploreSettingsMo
|
|
22
22
|
};
|
23
23
|
filters: CubeAxis[];
|
24
24
|
pageSize: number;
|
25
|
-
constructor(viewRef: DocumentViewRef<ExploreSettingsModel>, _sb: PromptService, _router: RouterImpl, service:
|
25
|
+
constructor(viewRef: DocumentViewRef<ExploreSettingsModel>, _sb: PromptService, _router: RouterImpl, service: CubeService, _ds: DatasourceService, session: SessionService);
|
26
26
|
onViewBind(): void;
|
27
27
|
/**
|
28
28
|
*
|
@@ -2,7 +2,7 @@ import { Observable } from "rxjs";
|
|
2
2
|
import { CubeAxis } from "../../core/models";
|
3
3
|
import { SessionService } from "../../core/session.service";
|
4
4
|
import { RouterImpl } from "../../core/router";
|
5
|
-
import {
|
5
|
+
import { CubeService, Pattern } from "../../cube/cube.service";
|
6
6
|
import { DocumentViewRef } from "../document-view-ref";
|
7
7
|
import { CubeBase } from "./cube-base";
|
8
8
|
import { CubeMatrixComponent, SumSettings } from "../../cube/matrix/table.component";
|
@@ -25,7 +25,7 @@ export declare class CubeDocumentMatrixComponent extends CubeBase<MatrixSettings
|
|
25
25
|
placeAt?: AxisPlace;
|
26
26
|
series: string;
|
27
27
|
sum?: SumSettings | SumSettings[];
|
28
|
-
constructor(viewRef: DocumentViewRef<MatrixSettingsModel>, _router: RouterImpl, service:
|
28
|
+
constructor(viewRef: DocumentViewRef<MatrixSettingsModel>, _router: RouterImpl, service: CubeService, session: SessionService);
|
29
29
|
onViewBind(): void;
|
30
30
|
explore(evt: AxisClickEvent): void;
|
31
31
|
/**
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { SparklineType } from '@syncfusion/ej2-charts';
|
2
2
|
import { RouterImpl } from '../../core/router';
|
3
3
|
import { SessionService } from '../../core/session.service';
|
4
|
-
import {
|
4
|
+
import { CubeService } from '../../cube/cube.service';
|
5
5
|
import { DocumentViewRef } from '../document-view-ref';
|
6
6
|
import { CubeBase } from './cube-base';
|
7
7
|
import { ExploreEvent } from '../../cube/parallel/parallel.component';
|
@@ -15,7 +15,7 @@ export declare class CubeParallelViewComponent extends CubeBase<ParallelSettings
|
|
15
15
|
indices?: string | string[];
|
16
16
|
chartType?: SparklineType;
|
17
17
|
size: number;
|
18
|
-
constructor(viewRef: DocumentViewRef<ParallelSettingsModel>, _router: RouterImpl, service:
|
18
|
+
constructor(viewRef: DocumentViewRef<ParallelSettingsModel>, _router: RouterImpl, service: CubeService, session: SessionService);
|
19
19
|
onViewBind(): void;
|
20
20
|
/**
|
21
21
|
*
|
@@ -2,7 +2,7 @@ import { ScopeType } from '../../core/configuration';
|
|
2
2
|
import { ChartType } from '../../core/models';
|
3
3
|
import { RouterImpl } from '../../core/router';
|
4
4
|
import { SessionService } from '../../core/session.service';
|
5
|
-
import {
|
5
|
+
import { CubeService } from '../../cube/cube.service';
|
6
6
|
import { AxisClickEvent } from '../../cube/declarations';
|
7
7
|
import { DocumentViewRef } from '../document-view-ref';
|
8
8
|
import { CubeBase } from './cube-base';
|
@@ -14,7 +14,7 @@ export declare class CubePivotViewComponent extends CubeBase<PivotSettingsModel>
|
|
14
14
|
height: number;
|
15
15
|
width: number | string;
|
16
16
|
chartType?: ChartType;
|
17
|
-
constructor(session: SessionService, viewRef: DocumentViewRef<PivotSettingsModel>, service:
|
17
|
+
constructor(session: SessionService, viewRef: DocumentViewRef<PivotSettingsModel>, service: CubeService, _router: RouterImpl);
|
18
18
|
onViewBind(): void;
|
19
19
|
/**
|
20
20
|
*
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { InsightComponent } from "../../core/base";
|
2
2
|
import { SessionService } from "../../core/session.service";
|
3
3
|
import { RouterImpl } from "../../core/router";
|
4
|
-
import {
|
4
|
+
import { CubeService } from "../../cube/cube.service";
|
5
5
|
import { DocumentViewRef } from "../document-view-ref";
|
6
6
|
import { CubeBase } from "./cube-base";
|
7
7
|
import { CubeAxis } from "../../core/models";
|
@@ -16,7 +16,7 @@ export declare class CubeDocumentSumComponent extends CubeBase<SumSettingsModel>
|
|
16
16
|
indices?: string[] | string;
|
17
17
|
selectedAxis: string | number;
|
18
18
|
alternateAxes: (string | number)[];
|
19
|
-
constructor(viewRef: DocumentViewRef<SumSettingsModel>, _router: RouterImpl, service:
|
19
|
+
constructor(viewRef: DocumentViewRef<SumSettingsModel>, _router: RouterImpl, service: CubeService, session: SessionService);
|
20
20
|
onViewBind(): Promise<void>;
|
21
21
|
switchAxis(value: string | number): Promise<void>;
|
22
22
|
explore(evt: ExploreEvent): void;
|
@@ -5,7 +5,7 @@ import { Popup } from '../../core/popup/popup.service';
|
|
5
5
|
import { RouterImpl } from '../../core/router';
|
6
6
|
import { SessionService } from '../../core/session.service';
|
7
7
|
import { CubeViewComponent } from '../../cube/cube-view.component';
|
8
|
-
import {
|
8
|
+
import { CubeService, Pattern } from '../../cube/cube.service';
|
9
9
|
import { AxisClickEvent } from '../../cube/declarations';
|
10
10
|
import { DocumentViewRef } from '../document-view-ref';
|
11
11
|
import { CubeBase } from './cube-base';
|
@@ -17,7 +17,7 @@ export declare class CubeInsightComponent extends CubeBase<ViewSettingsModel> im
|
|
17
17
|
viewPane: CubeViewComponent;
|
18
18
|
view: CubeView;
|
19
19
|
anyAxes: boolean;
|
20
|
-
constructor(session: SessionService, viewRef: DocumentViewRef<ViewSettingsModel>, service:
|
20
|
+
constructor(session: SessionService, viewRef: DocumentViewRef<ViewSettingsModel>, service: CubeService, _popup: Popup, _router: RouterImpl, _guide: GuideService);
|
21
21
|
onViewBind(): void;
|
22
22
|
ngOnInit(): void;
|
23
23
|
filterToggle(evt: Event): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "3.3.
|
3
|
+
"version": "3.3.10",
|
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",
|
@@ -26,7 +26,7 @@
|
|
26
26
|
"@syncfusion/ej2-angular-schedule": "28.2",
|
27
27
|
"@syncfusion/ej2-angular-spreadsheet": "28.2",
|
28
28
|
"@syncfusion/ej2-angular-base": "28.2",
|
29
|
-
"ace-builds": "^1.
|
29
|
+
"ace-builds": "^1.38.0",
|
30
30
|
"cookie": "^1.0.2",
|
31
31
|
"hammerjs": "~2",
|
32
32
|
"dayjs": "^1.11.13",
|
package/public-api.d.ts
CHANGED
@@ -51,7 +51,7 @@ export { DatasourceService } from './lib/core/datasource.service';
|
|
51
51
|
export { AccountService } from './lib/core/account.service';
|
52
52
|
export { AvatarComponent } from './lib/core/avatar/avatar.component';
|
53
53
|
export { GuideService, GuideRef } from './lib/core/guide/guide.service';
|
54
|
-
export {
|
54
|
+
export { CubeService, Series, Point, Currency, Pattern, modelize } from './lib/cube/cube.service';
|
55
55
|
export { TranslateService } from './lib/core/translate.service';
|
56
56
|
export { Location } from './lib/core/info/location-info.component';
|
57
57
|
export { MapInfo } from './lib/core/info/map-info';
|