@oliasoft-open-source/charts-library 4.3.11 → 4.3.12
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/dist/index.js +14 -13
- package/dist/index.js.map +1 -1
- package/dist/src/components/bar-chart/bar-chart.interface.d.ts +2 -0
- package/dist/src/components/bar-chart/bar-chart.stories.d.ts +1 -0
- package/package.json +1 -1
- /package/dist/src/components/{line-chart/controls → common}/controls-portal.d.ts +0 -0
|
@@ -51,6 +51,7 @@ export interface IBarChartBaseData {
|
|
|
51
51
|
}
|
|
52
52
|
export interface IBarChartData extends ICommonData {
|
|
53
53
|
testId?: string;
|
|
54
|
+
controlsPortalId?: string;
|
|
54
55
|
data: IBarChartBaseData;
|
|
55
56
|
options: IBarOptions;
|
|
56
57
|
}
|
|
@@ -59,6 +60,7 @@ export interface IBarChartProps {
|
|
|
59
60
|
}
|
|
60
61
|
export interface IBarDefaultProps {
|
|
61
62
|
testId: string;
|
|
63
|
+
controlsPortalId: string;
|
|
62
64
|
data: IBarChartBaseData;
|
|
63
65
|
options: {
|
|
64
66
|
title?: string | string[];
|
|
@@ -202,6 +202,7 @@ export namespace WaterfallChart {
|
|
|
202
202
|
}
|
|
203
203
|
export { args_25 as args };
|
|
204
204
|
}
|
|
205
|
+
export function ControlsPortal(): import("react/jsx-runtime").JSX.Element;
|
|
205
206
|
import { BarChart } from './bar-chart';
|
|
206
207
|
declare namespace singleChart { }
|
|
207
208
|
declare namespace multipleBarData {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oliasoft-open-source/charts-library",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.12",
|
|
4
4
|
"description": "React Chart Library (based on Chart.js and react-chart-js-2)",
|
|
5
5
|
"homepage": "https://gitlab.com/oliasoft-open-source/charts-library",
|
|
6
6
|
"resolutions": {
|
|
File without changes
|