@banyan_cloud/roots 1.0.64 → 1.0.66
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/cjs/index.js +22 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +22 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +22 -7
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -106841,6 +106841,9 @@ HeatMapChart.propTypes = {
|
|
|
106841
106841
|
tooltip: propTypes$1.exports.object,
|
|
106842
106842
|
seriesData: propTypes$1.exports.object,
|
|
106843
106843
|
onEvents: propTypes$1.exports.func,
|
|
106844
|
+
xSplitLineShow: propTypes$1.exports.bool,
|
|
106845
|
+
xAxisLineShow: propTypes$1.exports.bool,
|
|
106846
|
+
xAxisTickShow: propTypes$1.exports.bool,
|
|
106844
106847
|
yAxisLabelShow: propTypes$1.exports.bool,
|
|
106845
106848
|
ySplitLineShow: propTypes$1.exports.bool,
|
|
106846
106849
|
yAxisLineShow: propTypes$1.exports.bool,
|
|
@@ -106868,6 +106871,9 @@ HeatMapChart.defaultProps = {
|
|
|
106868
106871
|
seriesData: {},
|
|
106869
106872
|
onEvents: function onEvents() {},
|
|
106870
106873
|
yAxisLabelShow: false,
|
|
106874
|
+
xSplitLineShow: false,
|
|
106875
|
+
xAxisLineShow: false,
|
|
106876
|
+
xAxisTickShow: false,
|
|
106871
106877
|
ySplitLineShow: false,
|
|
106872
106878
|
yAxisLineShow: false,
|
|
106873
106879
|
yAxisTickShow: false,
|
|
@@ -106894,21 +106900,23 @@ use([install$8, install$5, install$9, install$a, install$1, install$i, install])
|
|
|
106894
106900
|
var BaseAreaChart = function BaseAreaChart(props) {
|
|
106895
106901
|
var _seriesData$chartData, _seriesData$chartData6, _seriesData$metaData$, _seriesData$metaData;
|
|
106896
106902
|
var title = props.title,
|
|
106903
|
+
gridOptions = props.gridOptions,
|
|
106897
106904
|
gridContainLabel = props.gridContainLabel,
|
|
106905
|
+
seriesData = props.seriesData,
|
|
106898
106906
|
tooltip = props.tooltip,
|
|
106899
106907
|
legendShow = props.legendShow,
|
|
106900
106908
|
xAxisShow = props.xAxisShow,
|
|
106901
|
-
seriesData = props.seriesData,
|
|
106902
106909
|
yAxisLabelShow = props.yAxisLabelShow,
|
|
106903
106910
|
ySplitLineShow = props.ySplitLineShow,
|
|
106904
106911
|
yAxisLineShow = props.yAxisLineShow,
|
|
106905
106912
|
yAxisTickShow = props.yAxisTickShow,
|
|
106906
|
-
cursor = props.cursor,
|
|
106907
106913
|
seriesOption = props.seriesOption,
|
|
106908
106914
|
lineStyleWidth = props.lineStyleWidth,
|
|
106909
106915
|
lineStyleType = props.lineStyleType,
|
|
106910
106916
|
lineStyleCap = props.lineStyleCap,
|
|
106911
106917
|
lineStyleJoin = props.lineStyleJoin,
|
|
106918
|
+
stacked = props.stacked,
|
|
106919
|
+
cursor = props.cursor,
|
|
106912
106920
|
smooth = props.smooth,
|
|
106913
106921
|
style = props.style,
|
|
106914
106922
|
className = props.className;
|
|
@@ -106916,7 +106924,7 @@ var BaseAreaChart = function BaseAreaChart(props) {
|
|
|
106916
106924
|
type: 'line',
|
|
106917
106925
|
color: 'blue',
|
|
106918
106926
|
symbol: 'emptyCircle',
|
|
106919
|
-
stack:
|
|
106927
|
+
stack: stacked,
|
|
106920
106928
|
symbolSize: 4,
|
|
106921
106929
|
smooth: smooth,
|
|
106922
106930
|
name: 'SeriesName',
|
|
@@ -106978,9 +106986,9 @@ var BaseAreaChart = function BaseAreaChart(props) {
|
|
|
106978
106986
|
title: {
|
|
106979
106987
|
text: title
|
|
106980
106988
|
},
|
|
106981
|
-
grid: {
|
|
106989
|
+
grid: _objectSpread2({
|
|
106982
106990
|
containLabel: gridContainLabel
|
|
106983
|
-
},
|
|
106991
|
+
}, gridOptions),
|
|
106984
106992
|
tooltip: _objectSpread2({}, tooltip),
|
|
106985
106993
|
legend: {
|
|
106986
106994
|
show: legendShow,
|
|
@@ -107018,18 +107026,18 @@ var BaseAreaChart = function BaseAreaChart(props) {
|
|
|
107018
107026
|
};
|
|
107019
107027
|
BaseAreaChart.propTypes = {
|
|
107020
107028
|
title: propTypes$1.exports.string,
|
|
107029
|
+
gridOptions: propTypes$1.exports.object,
|
|
107021
107030
|
gridContainLabel: propTypes$1.exports.bool,
|
|
107022
|
-
// eslint-disable-next-line react/forbid-prop-types
|
|
107023
107031
|
tooltip: propTypes$1.exports.object,
|
|
107024
107032
|
legendShow: propTypes$1.exports.bool,
|
|
107025
107033
|
xAxisShow: propTypes$1.exports.bool,
|
|
107026
107034
|
seriesData: propTypes$1.exports.objectOf(propTypes$1.exports.shape),
|
|
107035
|
+
stacked: propTypes$1.exports.bool,
|
|
107027
107036
|
yAxisLabelShow: propTypes$1.exports.bool,
|
|
107028
107037
|
ySplitLineShow: propTypes$1.exports.bool,
|
|
107029
107038
|
yAxisLineShow: propTypes$1.exports.bool,
|
|
107030
107039
|
yAxisTickShow: propTypes$1.exports.bool,
|
|
107031
107040
|
cursor: propTypes$1.exports.string,
|
|
107032
|
-
// eslint-disable-next-line react/forbid-prop-types
|
|
107033
107041
|
seriesOption: propTypes$1.exports.arrayOf(propTypes$1.exports.object),
|
|
107034
107042
|
lineStyleWidth: propTypes$1.exports.number,
|
|
107035
107043
|
lineStyleType: propTypes$1.exports.oneOf(['dashed', 'solid', 'dotted']),
|
|
@@ -107041,8 +107049,15 @@ BaseAreaChart.propTypes = {
|
|
|
107041
107049
|
};
|
|
107042
107050
|
BaseAreaChart.defaultProps = {
|
|
107043
107051
|
title: '',
|
|
107052
|
+
gridOptions: {
|
|
107053
|
+
left: 0,
|
|
107054
|
+
right: 0,
|
|
107055
|
+
bottom: 0,
|
|
107056
|
+
top: 0
|
|
107057
|
+
},
|
|
107044
107058
|
gridContainLabel: false,
|
|
107045
107059
|
tooltip: {},
|
|
107060
|
+
stacked: false,
|
|
107046
107061
|
legendShow: false,
|
|
107047
107062
|
xAxisShow: false,
|
|
107048
107063
|
seriesData: {},
|