@bizy/core 20.4.3 → 20.4.4

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/index.d.ts CHANGED
@@ -99,10 +99,9 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
99
99
  resizeRef: HTMLElement | null;
100
100
  tooltip: boolean;
101
101
  download: {
102
- show?: boolean;
103
- label: string;
104
- name: string;
105
- };
102
+ label?: string;
103
+ name?: string;
104
+ } | null;
106
105
  axisPointer: 'line' | 'cross';
107
106
  xAxisLabels: Array<string>;
108
107
  onTooltipFormatter: (item: any) => string;
@@ -806,10 +805,9 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
806
805
  tooltip: boolean;
807
806
  ranges: Array<IBizyHeatMapChartRange>;
808
807
  download: {
809
- show?: boolean;
810
- label: string;
811
- name: string;
812
- };
808
+ label?: string;
809
+ name?: string;
810
+ } | null;
813
811
  xAxisLabels: Array<string>;
814
812
  yAxisLabels: Array<string>;
815
813
  onTooltipFormatter: (item: any) => string;
@@ -934,10 +932,9 @@ declare class BizyPieChartComponent {
934
932
  };
935
933
  } | null;
936
934
  download: {
937
- show?: boolean;
938
- label: string;
939
- name: string;
940
- };
935
+ label?: string;
936
+ name?: string;
937
+ } | null;
941
938
  onLabelFormatter: (item: any) => string;
942
939
  onTooltipFormatter: (item: any) => string;
943
940
  onSelect: EventEmitter<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "20.4.3",
3
+ "version": "20.4.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.0.0",
6
6
  "@angular/common": "^20.0.0",