@bizdoc/core 1.10.0-next.10 → 1.10.0-next.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/esm2020/lib/core/controls/select.input.mjs +2 -2
- package/esm2020/lib/cube/matrix/matrix.component.mjs +1 -1
- package/esm2020/lib/cube/matrix/matrix.mobile.component.mjs +1 -1
- package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +1 -1
- package/esm2020/lib/cube/matrix/table.component.mjs +14 -15
- package/esm2020/lib/views/cube/matrix.component.mjs +1 -1
- package/fesm2015/bizdoc-core.mjs +18 -19
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +18 -19
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/cube/matrix/table.component.d.ts +8 -8
- package/package.json +1 -1
@@ -16,6 +16,7 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
16
16
|
CURRENCY: string;
|
17
17
|
SYMBOL: string;
|
18
18
|
tableElement: ElementRef<HTMLTableElement>;
|
19
|
+
available: string;
|
19
20
|
_cube?: string;
|
20
21
|
_xAxis: string;
|
21
22
|
_series: string;
|
@@ -33,7 +34,11 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
33
34
|
rows: HeaderInfo[];
|
34
35
|
columns: HeaderInfo[];
|
35
36
|
indices: CubeIndex[];
|
36
|
-
data:
|
37
|
+
data: {
|
38
|
+
[series: string]: {
|
39
|
+
[xAxis: string]: string;
|
40
|
+
};
|
41
|
+
};
|
37
42
|
totals: {
|
38
43
|
[xAxis: string]: number;
|
39
44
|
};
|
@@ -44,7 +49,7 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
44
49
|
private _prepare;
|
45
50
|
constructor(_sb: PromptService, _service: CubeService, _session: SessionService, _ds: DatasourceService);
|
46
51
|
ngOnChanges(changes: SimpleChanges): void;
|
47
|
-
private
|
52
|
+
private _addsumheaders;
|
48
53
|
refresh(): void;
|
49
54
|
private _string;
|
50
55
|
private _totals;
|
@@ -53,13 +58,8 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
53
58
|
explore(column: HeaderInfo, row: HeaderInfo): void;
|
54
59
|
move(x: any, y: any): void;
|
55
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixComponent, never>;
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixComponent, "bizdoc-cube-matrix", never, { "_cube": "cube"; "_xAxis": "xAxis"; "_series": "series"; "_indices": "indices"; "scope": "scope"; "sum": "sum"; "filters": "filters"; "loading": "loading"; "interactive": "interactive"; }, { "onExplore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixComponent, "bizdoc-cube-matrix", never, { "available": "available"; "_cube": "cube"; "_xAxis": "xAxis"; "_series": "series"; "_indices": "indices"; "scope": "scope"; "sum": "sum"; "filters": "filters"; "loading": "loading"; "interactive": "interactive"; }, { "onExplore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
57
62
|
}
|
58
|
-
declare type DataMap = {
|
59
|
-
[series: string]: {
|
60
|
-
[xAxis: string]: number;
|
61
|
-
};
|
62
|
-
};
|
63
63
|
export declare type SumSettings = {
|
64
64
|
value?: string | number;
|
65
65
|
axis: 'series' | 'xAxis';
|
package/package.json
CHANGED