@bizy/core 20.5.2 → 20.5.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 +28 -16
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -972,11 +972,11 @@ interface IBizyPieChartData {
|
|
|
972
972
|
declare class BizyPieChartComponent {
|
|
973
973
|
#private;
|
|
974
974
|
resizeRef: HTMLElement | null;
|
|
975
|
+
type: 'pie' | 'donut';
|
|
975
976
|
centerLabel: {
|
|
976
977
|
value: string | number;
|
|
977
|
-
color
|
|
978
|
+
color?: string;
|
|
978
979
|
} | null;
|
|
979
|
-
type: 'pie' | 'donut';
|
|
980
980
|
legend: {
|
|
981
981
|
show?: boolean;
|
|
982
982
|
orient?: 'vertical' | 'horizontal';
|
|
@@ -1007,7 +1007,7 @@ declare class BizyPieChartComponent {
|
|
|
1007
1007
|
set data(data: Array<IBizyPieChartData> | null);
|
|
1008
1008
|
ngOnDestroy(): void;
|
|
1009
1009
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
1010
|
-
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>;
|
|
1011
1011
|
}
|
|
1012
1012
|
|
|
1013
1013
|
declare class BizyPieChartModule {
|