@bizdoc/core 1.12.1 → 1.12.2

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.
@@ -56,13 +56,14 @@ export declare class CubeMatrixComponent implements OnChanges {
56
56
  ngOnChanges(changes: SimpleChanges): void;
57
57
  private _addsumheaders;
58
58
  refresh(): void;
59
- private _stringfy;
59
+ private _stringify;
60
+ private _clone;
60
61
  private _totals;
61
62
  private _calculatesum;
62
63
  private _format;
63
64
  explore(column: HeaderInfo, row: HeaderInfo | CubeIndex): void;
64
65
  export(): void;
65
- move(x: any, y: any): void;
66
+ _move(x: any, y: any): void;
66
67
  static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixComponent, never>;
67
68
  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>;
68
69
  }
@@ -73,6 +74,7 @@ export declare type SumSettings = {
73
74
  format?: 'percent' | 'currency' | 'number';
74
75
  precision?: string;
75
76
  accumulate?: boolean;
77
+ explorable?: boolean;
76
78
  calculate?: 'quarter' | 'year' | 'month' | CalculateFn;
77
79
  };
78
80
  export declare interface CalculateFn {
@@ -85,10 +87,8 @@ export declare interface CalculateFn {
85
87
  declare type HeaderInfo = {
86
88
  key: string;
87
89
  value: any;
88
- format?: 'percent' | 'currency' | 'number';
89
90
  precision?: string;
90
- accumulate?: boolean;
91
91
  explorable?: boolean;
92
- index?: number;
92
+ sum?: SumSettings;
93
93
  };
94
94
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.12.1",
3
+ "version": "1.12.2",
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",