@bizy/core 20.4.2 → 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
@@ -79,12 +79,16 @@ interface IBizyBarLineChartData {
79
79
  discrete?: boolean;
80
80
  color?: string;
81
81
  stack?: string;
82
+ barMinHeight?: number;
82
83
  xAxi?: {
83
84
  name: string;
84
85
  };
85
86
  yAxi?: {
86
87
  name?: string;
87
88
  hide?: boolean;
89
+ max?: number;
90
+ min?: number;
91
+ interval?: number;
88
92
  position?: 'left' | 'right';
89
93
  onValueFormatter?: (item: any) => string;
90
94
  };
@@ -95,10 +99,9 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
95
99
  resizeRef: HTMLElement | null;
96
100
  tooltip: boolean;
97
101
  download: {
98
- show?: boolean;
99
- label: string;
100
- name: string;
101
- };
102
+ label?: string;
103
+ name?: string;
104
+ } | null;
102
105
  axisPointer: 'line' | 'cross';
103
106
  xAxisLabels: Array<string>;
104
107
  onTooltipFormatter: (item: any) => string;
@@ -802,10 +805,9 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
802
805
  tooltip: boolean;
803
806
  ranges: Array<IBizyHeatMapChartRange>;
804
807
  download: {
805
- show?: boolean;
806
- label: string;
807
- name: string;
808
- };
808
+ label?: string;
809
+ name?: string;
810
+ } | null;
809
811
  xAxisLabels: Array<string>;
810
812
  yAxisLabels: Array<string>;
811
813
  onTooltipFormatter: (item: any) => string;
@@ -930,10 +932,9 @@ declare class BizyPieChartComponent {
930
932
  };
931
933
  } | null;
932
934
  download: {
933
- show?: boolean;
934
- label: string;
935
- name: string;
936
- };
935
+ label?: string;
936
+ name?: string;
937
+ } | null;
937
938
  onLabelFormatter: (item: any) => string;
938
939
  onTooltipFormatter: (item: any) => string;
939
940
  onSelect: EventEmitter<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "20.4.2",
3
+ "version": "20.4.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.0.0",
6
6
  "@angular/common": "^20.0.0",