@bizdoc/core 1.10.0-next.5 → 1.10.0-next.6
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/cube/matrix/table.component.mjs +32 -26
- package/esm2020/lib/views/cube/view.component.mjs +3 -3
- package/fesm2015/bizdoc-core.mjs +33 -27
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +33 -27
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/cube/matrix/table.component.d.ts +2 -1
- package/package.json +1 -1
@@ -47,6 +47,7 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
47
47
|
private _prepare;
|
48
48
|
constructor(_sb: PromptService, _service: CubeService, _session: SessionService, _ds: DatasourceService);
|
49
49
|
ngOnChanges(changes: SimpleChanges): void;
|
50
|
+
/** */
|
50
51
|
private _addsum;
|
51
52
|
refresh(): void;
|
52
53
|
private _totals;
|
@@ -73,7 +74,7 @@ export declare class CubeInfoCellArgs {
|
|
73
74
|
}
|
74
75
|
declare type SumOptions = {
|
75
76
|
xAxis?: string | number;
|
76
|
-
|
77
|
+
series?: string | number;
|
77
78
|
title: any;
|
78
79
|
};
|
79
80
|
declare type KeyValue = {
|
package/package.json
CHANGED