@evergis/charts 2.0.22 → 2.0.25
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/charts/BubbleChart/bubbleChartDefaultProps.d.ts +14 -0
- package/dist/charts/BubbleChart/index.d.ts +0 -14
- package/dist/charts.cjs.development.js +15 -14
- package/dist/charts.cjs.development.js.map +1 -1
- package/dist/charts.cjs.production.min.js +1 -1
- package/dist/charts.cjs.production.min.js.map +1 -1
- package/dist/charts.esm.js +15 -14
- package/dist/charts.esm.js.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const bubbleChartDefaultProps: {
|
|
2
|
+
height: number;
|
|
3
|
+
minSize: number;
|
|
4
|
+
maxSize: number;
|
|
5
|
+
margin: {
|
|
6
|
+
top: number;
|
|
7
|
+
right: number;
|
|
8
|
+
bottom: number;
|
|
9
|
+
left: number;
|
|
10
|
+
};
|
|
11
|
+
yAxisPadding: number;
|
|
12
|
+
xAxisPadding: number;
|
|
13
|
+
yScaleLabelPadding: number;
|
|
14
|
+
};
|
|
@@ -1,17 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { BubbleChartProps } from './types';
|
|
3
3
|
export declare const BubbleChart: React.FC<BubbleChartProps>;
|
|
4
|
-
export declare const bubbleChartDefaultProps: {
|
|
5
|
-
height: number;
|
|
6
|
-
minSize: number;
|
|
7
|
-
maxSize: number;
|
|
8
|
-
margin: {
|
|
9
|
-
top: number;
|
|
10
|
-
right: number;
|
|
11
|
-
bottom: number;
|
|
12
|
-
left: number;
|
|
13
|
-
};
|
|
14
|
-
yAxisPadding: number;
|
|
15
|
-
xAxisPadding: number;
|
|
16
|
-
yScaleLabelPadding: number;
|
|
17
|
-
};
|
|
@@ -3128,6 +3128,21 @@ HorizontalBarChart.defaultProps = {
|
|
|
3128
3128
|
withoutXScale: false
|
|
3129
3129
|
};
|
|
3130
3130
|
|
|
3131
|
+
const bubbleChartDefaultProps = {
|
|
3132
|
+
height: 280,
|
|
3133
|
+
minSize: 6,
|
|
3134
|
+
maxSize: 30,
|
|
3135
|
+
margin: {
|
|
3136
|
+
top: 10,
|
|
3137
|
+
right: 15,
|
|
3138
|
+
bottom: 10,
|
|
3139
|
+
left: 0
|
|
3140
|
+
},
|
|
3141
|
+
yAxisPadding: 10,
|
|
3142
|
+
xAxisPadding: 10,
|
|
3143
|
+
yScaleLabelPadding: 10
|
|
3144
|
+
};
|
|
3145
|
+
|
|
3131
3146
|
var _templateObject$e, _templateObject2$7;
|
|
3132
3147
|
const bubbleChartClassNames = {
|
|
3133
3148
|
bubbleChartYAxis: 'bubbleChartYAxis',
|
|
@@ -3422,20 +3437,6 @@ const BubbleChart = props => {
|
|
|
3422
3437
|
ref: ref
|
|
3423
3438
|
}, children));
|
|
3424
3439
|
};
|
|
3425
|
-
const bubbleChartDefaultProps = {
|
|
3426
|
-
height: 280,
|
|
3427
|
-
minSize: 6,
|
|
3428
|
-
maxSize: 30,
|
|
3429
|
-
margin: {
|
|
3430
|
-
top: 10,
|
|
3431
|
-
right: 15,
|
|
3432
|
-
bottom: 10,
|
|
3433
|
-
left: 0
|
|
3434
|
-
},
|
|
3435
|
-
yAxisPadding: 10,
|
|
3436
|
-
xAxisPadding: 10,
|
|
3437
|
-
yScaleLabelPadding: 10
|
|
3438
|
-
};
|
|
3439
3440
|
BubbleChart.defaultProps = bubbleChartDefaultProps;
|
|
3440
3441
|
|
|
3441
3442
|
exports.BarChart = BarChart;
|