@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/fesm2022/bizy-core.mjs +18 -12
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +9 -12
- package/package.json +1 -1
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
|
-
|
|
103
|
-
|
|
104
|
-
|
|
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
|
-
|
|
810
|
-
|
|
811
|
-
|
|
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
|
-
|
|
938
|
-
|
|
939
|
-
|
|
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>;
|