@bizdoc/core 1.11.0-next.8 → 1.11.0-next.9
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/compose/form.component.mjs +18 -18
- package/esm2020/lib/compose/trace/trace.component.mjs +2 -2
- package/esm2020/lib/core/controls/file.input.mjs +4 -4
- package/esm2020/lib/core/mailbox.service.mjs +2 -2
- package/esm2020/lib/cube/cube.service.mjs +1 -1
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +3 -2
- package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +3 -3
- package/esm2020/lib/cube/matrix/table.component.mjs +60 -9
- package/esm2020/lib/cube/pivot/pivot.component.mjs +3 -1
- package/fesm2015/bizdoc-core.mjs +78 -25
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +78 -25
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/mailbox.service.d.ts +4 -1
- package/lib/cube/cube.service.d.ts +1 -3
- package/lib/cube/matrix/table.component.d.ts +4 -1
- package/package.json +1 -1
@@ -38,7 +38,10 @@ export declare class MailboxService {
|
|
38
38
|
move(id: number, folderId: string): Observable<any>;
|
39
39
|
checkOut(recipientId: number, version: number, attachmentId: number): Observable<Object>;
|
40
40
|
checkIn(recipientId: number, version: number, attachmentId: number, file: File): Observable<Attachment>;
|
41
|
-
upload(recipientId: number, formId: string, version: number,
|
41
|
+
upload(recipientId: number, formId: string, version: number, file: File, options?: {
|
42
|
+
isPrivate?: boolean;
|
43
|
+
}): Observable<Attachment>;
|
44
|
+
upload(recipientId: number, formId: string, version: number, files: File[], options?: {
|
42
45
|
isPrivate?: boolean;
|
43
46
|
}): Observable<Attachment[]>;
|
44
47
|
/**
|
@@ -103,9 +103,7 @@ export declare class CubeService {
|
|
103
103
|
* @param axes
|
104
104
|
* @param cube
|
105
105
|
*/
|
106
|
-
nameOf(axes:
|
107
|
-
[axis: string]: AxisType;
|
108
|
-
}, cube: string): Observable<string>;
|
106
|
+
nameOf(axes: AxesMap, cube: string): Observable<string>;
|
109
107
|
/**
|
110
108
|
* explore indices by axis
|
111
109
|
* @param cube name
|
@@ -5,12 +5,14 @@ import { DatasourceService } from '../../core/datasource.service';
|
|
5
5
|
import { PromptService } from '../../core/prompt.service';
|
6
6
|
import { AxesMap, Cube, CubeAxis, CubeIndex } from '../../core/models';
|
7
7
|
import { ScopeType } from '../../core/configuration';
|
8
|
+
import { TranslateService } from '../../core/translate.service';
|
8
9
|
import * as i0 from "@angular/core";
|
9
10
|
/** cube matrix component*/
|
10
11
|
export declare class CubeMatrixComponent implements OnChanges {
|
11
12
|
private _sb;
|
12
13
|
private _service;
|
13
14
|
private _session;
|
15
|
+
private _translate;
|
14
16
|
private _ds;
|
15
17
|
readonly PRECISION: string;
|
16
18
|
readonly LANGUAGE: string;
|
@@ -49,7 +51,7 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
49
51
|
series: CubeAxis;
|
50
52
|
private _data;
|
51
53
|
private _prepare;
|
52
|
-
constructor(_sb: PromptService, _service: CubeService, _session: SessionService, _ds: DatasourceService);
|
54
|
+
constructor(_sb: PromptService, _service: CubeService, _session: SessionService, _translate: TranslateService, _ds: DatasourceService);
|
53
55
|
ngOnChanges(changes: SimpleChanges): void;
|
54
56
|
private _addsumheaders;
|
55
57
|
refresh(): void;
|
@@ -58,6 +60,7 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
58
60
|
private _calculatesum;
|
59
61
|
private _format;
|
60
62
|
explore(column: HeaderInfo, row: HeaderInfo): void;
|
63
|
+
export(): void;
|
61
64
|
move(x: any, y: any): void;
|
62
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixComponent, never>;
|
63
66
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixComponent, "bizdoc-cube-matrix", never, { "seriesTotalLabel": "seriesTotalLabel"; "xAxisTotalLabel": "xAxisTotalLabel"; "_cube": "cube"; "_xAxis": "xAxis"; "_series": "series"; "_indices": "indices"; "scope": "scope"; "sum": "sum"; "filters": "filters"; "loading": "loading"; "interactive": "interactive"; }, { "onExplore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
package/package.json
CHANGED