@bizy/core 20.4.0 → 20.4.2
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 +42 -38
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +1 -1
- package/styles/variables.css +4 -0
package/index.d.ts
CHANGED
|
@@ -95,7 +95,7 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
95
95
|
resizeRef: HTMLElement | null;
|
|
96
96
|
tooltip: boolean;
|
|
97
97
|
download: {
|
|
98
|
-
|
|
98
|
+
show?: boolean;
|
|
99
99
|
label: string;
|
|
100
100
|
name: string;
|
|
101
101
|
};
|
|
@@ -106,8 +106,8 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
106
106
|
onDownload: EventEmitter<void>;
|
|
107
107
|
onSelect: EventEmitter<string>;
|
|
108
108
|
ngAfterViewInit(): void;
|
|
109
|
-
set data(data: Array<IBizyBarLineChartData>);
|
|
110
109
|
getNativeElement: () => any;
|
|
110
|
+
set data(data: Array<IBizyBarLineChartData>);
|
|
111
111
|
ngOnDestroy(): void;
|
|
112
112
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartComponent, never>;
|
|
113
113
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBarLineChartComponent, "bizy-bar-line-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "download": { "alias": "download"; "required": false; }; "axisPointer": { "alias": "axisPointer"; "required": false; }; "xAxisLabels": { "alias": "xAxisLabels"; "required": false; }; "onTooltipFormatter": { "alias": "onTooltipFormatter"; "required": false; }; "onXAxisLabelFormatter": { "alias": "onXAxisLabelFormatter"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onDownload": "onDownload"; "onSelect": "onSelect"; }, never, never, true, never>;
|
|
@@ -814,6 +814,7 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
|
814
814
|
onDownload: EventEmitter<void>;
|
|
815
815
|
onSelect: EventEmitter<string>;
|
|
816
816
|
ngAfterViewInit(): void;
|
|
817
|
+
getNativeElement: () => any;
|
|
817
818
|
set data(data: Array<IBizyHeatMapChartData>);
|
|
818
819
|
ngOnDestroy(): void;
|
|
819
820
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyHeatMapChartComponent, never>;
|
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -37,6 +37,10 @@
|
|
|
37
37
|
--bizy-audio-player-download-button-background-color: var(--bizy-accent-color);
|
|
38
38
|
--bizy-audio-player-download-button-color: #fff;
|
|
39
39
|
|
|
40
|
+
--bizy-bar-line-chart-tooltip-color: #000;
|
|
41
|
+
--bizy-bar-line-chart-tooltip-background-color: #fff;
|
|
42
|
+
--bizy-bar-line-chart-tooltip-border-color: #fff;
|
|
43
|
+
|
|
40
44
|
--bizy-breadcrumb-link-color: var(--bizy-info-color);
|
|
41
45
|
--bizy-breadcrumb-path-color: var(--bizy-default-color);
|
|
42
46
|
|