@hestia-earth/ui-components 0.41.20 → 0.41.21
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/package.json
CHANGED
|
@@ -92,15 +92,11 @@ declare const afterBarDrawPlugin: (settings?: AfterBarDrawSettings) => Plugin;
|
|
|
92
92
|
interface AxisHoverSettings {
|
|
93
93
|
onHoverLabel: (data?: {
|
|
94
94
|
label: string;
|
|
95
|
-
|
|
96
|
-
y: number;
|
|
95
|
+
event: ChartEvent;
|
|
97
96
|
}) => void;
|
|
98
97
|
maxDistance?: number;
|
|
99
98
|
}
|
|
100
|
-
declare const axisHoverPlugin:
|
|
101
|
-
id: string;
|
|
102
|
-
afterEvent(chart: any, args: any): void;
|
|
103
|
-
};
|
|
99
|
+
declare const axisHoverPlugin: Plugin;
|
|
104
100
|
|
|
105
101
|
interface IBackgroundHoverSettings {
|
|
106
102
|
threshold?: number;
|