@banyan_cloud/roots 1.0.64 → 1.0.65
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 +12 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +12 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +12 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -106819,6 +106819,9 @@ HeatMapChart.propTypes = {
|
|
|
106819
106819
|
tooltip: propTypes$1.exports.object,
|
|
106820
106820
|
seriesData: propTypes$1.exports.object,
|
|
106821
106821
|
onEvents: propTypes$1.exports.func,
|
|
106822
|
+
xSplitLineShow: propTypes$1.exports.bool,
|
|
106823
|
+
xAxisLineShow: propTypes$1.exports.bool,
|
|
106824
|
+
xAxisTickShow: propTypes$1.exports.bool,
|
|
106822
106825
|
yAxisLabelShow: propTypes$1.exports.bool,
|
|
106823
106826
|
ySplitLineShow: propTypes$1.exports.bool,
|
|
106824
106827
|
yAxisLineShow: propTypes$1.exports.bool,
|
|
@@ -106846,6 +106849,9 @@ HeatMapChart.defaultProps = {
|
|
|
106846
106849
|
seriesData: {},
|
|
106847
106850
|
onEvents: function onEvents() {},
|
|
106848
106851
|
yAxisLabelShow: false,
|
|
106852
|
+
xSplitLineShow: false,
|
|
106853
|
+
xAxisLineShow: false,
|
|
106854
|
+
xAxisTickShow: false,
|
|
106849
106855
|
ySplitLineShow: false,
|
|
106850
106856
|
yAxisLineShow: false,
|
|
106851
106857
|
yAxisTickShow: false,
|
|
@@ -106873,20 +106879,21 @@ var BaseAreaChart = function BaseAreaChart(props) {
|
|
|
106873
106879
|
var _seriesData$chartData, _seriesData$chartData6, _seriesData$metaData$, _seriesData$metaData;
|
|
106874
106880
|
var title = props.title,
|
|
106875
106881
|
gridContainLabel = props.gridContainLabel,
|
|
106882
|
+
seriesData = props.seriesData,
|
|
106876
106883
|
tooltip = props.tooltip,
|
|
106877
106884
|
legendShow = props.legendShow,
|
|
106878
106885
|
xAxisShow = props.xAxisShow,
|
|
106879
|
-
seriesData = props.seriesData,
|
|
106880
106886
|
yAxisLabelShow = props.yAxisLabelShow,
|
|
106881
106887
|
ySplitLineShow = props.ySplitLineShow,
|
|
106882
106888
|
yAxisLineShow = props.yAxisLineShow,
|
|
106883
106889
|
yAxisTickShow = props.yAxisTickShow,
|
|
106884
|
-
cursor = props.cursor,
|
|
106885
106890
|
seriesOption = props.seriesOption,
|
|
106886
106891
|
lineStyleWidth = props.lineStyleWidth,
|
|
106887
106892
|
lineStyleType = props.lineStyleType,
|
|
106888
106893
|
lineStyleCap = props.lineStyleCap,
|
|
106889
106894
|
lineStyleJoin = props.lineStyleJoin,
|
|
106895
|
+
stacked = props.stacked,
|
|
106896
|
+
cursor = props.cursor,
|
|
106890
106897
|
smooth = props.smooth,
|
|
106891
106898
|
style = props.style,
|
|
106892
106899
|
className = props.className;
|
|
@@ -106894,7 +106901,7 @@ var BaseAreaChart = function BaseAreaChart(props) {
|
|
|
106894
106901
|
type: 'line',
|
|
106895
106902
|
color: 'blue',
|
|
106896
106903
|
symbol: 'emptyCircle',
|
|
106897
|
-
stack:
|
|
106904
|
+
stack: stacked,
|
|
106898
106905
|
symbolSize: 4,
|
|
106899
106906
|
smooth: smooth,
|
|
106900
106907
|
name: 'SeriesName',
|
|
@@ -107002,6 +107009,7 @@ BaseAreaChart.propTypes = {
|
|
|
107002
107009
|
legendShow: propTypes$1.exports.bool,
|
|
107003
107010
|
xAxisShow: propTypes$1.exports.bool,
|
|
107004
107011
|
seriesData: propTypes$1.exports.objectOf(propTypes$1.exports.shape),
|
|
107012
|
+
stacked: propTypes$1.exports.bool,
|
|
107005
107013
|
yAxisLabelShow: propTypes$1.exports.bool,
|
|
107006
107014
|
ySplitLineShow: propTypes$1.exports.bool,
|
|
107007
107015
|
yAxisLineShow: propTypes$1.exports.bool,
|
|
@@ -107021,6 +107029,7 @@ BaseAreaChart.defaultProps = {
|
|
|
107021
107029
|
title: '',
|
|
107022
107030
|
gridContainLabel: false,
|
|
107023
107031
|
tooltip: {},
|
|
107032
|
+
stacked: false,
|
|
107024
107033
|
legendShow: false,
|
|
107025
107034
|
xAxisShow: false,
|
|
107026
107035
|
seriesData: {},
|