@oliasoft-open-source/charts-library 4.6.1 → 4.6.2-beta-1
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.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export const title: string;
|
|
3
|
+
export { LineChart as component };
|
|
4
|
+
export namespace args {
|
|
5
|
+
export { basicChart as chart };
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export function TestLegendDropzoneResizing(): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
import { LineChart } from './line-chart';
|
|
11
|
+
declare namespace basicChart {
|
|
12
|
+
namespace data {
|
|
13
|
+
const datasets: {
|
|
14
|
+
label: string;
|
|
15
|
+
data: {
|
|
16
|
+
x: number;
|
|
17
|
+
y: number;
|
|
18
|
+
}[];
|
|
19
|
+
}[];
|
|
20
|
+
}
|
|
21
|
+
namespace options {
|
|
22
|
+
const title_1: string;
|
|
23
|
+
export { title_1 as title };
|
|
24
|
+
export namespace chartStyling {
|
|
25
|
+
const height: string;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oliasoft-open-source/charts-library",
|
|
3
|
-
"version": "4.6.1",
|
|
3
|
+
"version": "4.6.2-beta-1",
|
|
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": {
|