@hestia-earth/ui-components 0.41.30 → 0.41.32

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/ui-components",
3
- "version": "0.41.30",
3
+ "version": "0.41.32",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -138,7 +138,7 @@ interface ChartExportMetadata {
138
138
  height?: number;
139
139
  units?: string;
140
140
  lollipopConfig?: Omit<LollipopPluginSettings, 'isMouseInsideLollipopFn'>;
141
- afterBarDrawConfig?: AfterBarDrawSettings;
141
+ afterBarDrawConfig?: AfterBarDrawSettings | AfterBarDrawSettings[];
142
142
  }
143
143
  declare const convertToSvg: (config: Partial<ChartConfiguration>, metadata?: ChartExportMetadata) => Promise<string>;
144
144
  declare const exportAsSVG: (config: Partial<ChartConfiguration>, metadata: ChartExportMetadata) => Promise<void>;