@bizy/core 20.5.1 → 20.5.3
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 +6 -6
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -972,8 +972,11 @@ interface IBizyPieChartData {
|
|
|
972
972
|
declare class BizyPieChartComponent {
|
|
973
973
|
#private;
|
|
974
974
|
resizeRef: HTMLElement | null;
|
|
975
|
-
centerLabel: string | null;
|
|
976
975
|
type: 'pie' | 'donut';
|
|
976
|
+
centerLabel: {
|
|
977
|
+
value: string | number;
|
|
978
|
+
color?: string;
|
|
979
|
+
} | null;
|
|
977
980
|
legend: {
|
|
978
981
|
show?: boolean;
|
|
979
982
|
orient?: 'vertical' | 'horizontal';
|
|
@@ -1004,7 +1007,7 @@ declare class BizyPieChartComponent {
|
|
|
1004
1007
|
set data(data: Array<IBizyPieChartData> | null);
|
|
1005
1008
|
ngOnDestroy(): void;
|
|
1006
1009
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
1007
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "
|
|
1010
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "type": { "alias": "type"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "legend": { "alias": "legend"; "required": false; }; "download": { "alias": "download"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onSelect": "onSelect"; "onDownload": "onDownload"; }, never, never, true, never>;
|
|
1008
1011
|
}
|
|
1009
1012
|
|
|
1010
1013
|
declare class BizyPieChartModule {
|