File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
packages/react-jsx-highcharts Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 7878 "dependencies" : {
7979 "immutable-is" : " ^3.7.6" ,
8080 "is-immutable" : " ^1.0.1" ,
81- "lodash" : " ^4.17.4" ,
82- "react-immutable-proptypes" : " ^2.1.0"
81+ "lodash" : " ^4.17.4"
8382 },
8483 "peerDependencies" : {
8584 "highcharts" : " ^5.0.0" ,
Original file line number Diff line number Diff line change 11import { Component } from 'react' ;
22import PropTypes from 'prop-types' ;
3- import ImmutablePropTypes from 'react-immutable-proptypes' ;
43import isEqual from 'lodash/isEqual' ;
54import isImmutable from 'is-immutable' ;
65import immutableEqual from 'immutable-is' ;
@@ -15,7 +14,7 @@ class Series extends Component {
1514 type : validSeriesTypes . isRequired ,
1615 axisId : PropTypes . string , // Provided by Axis component
1716 dimension : PropTypes . string , // Provided by Axis component
18- data : PropTypes . oneOfType ( [ PropTypes . array , ImmutablePropTypes . list ] ) ,
17+ data : PropTypes . any ,
1918 visible : PropTypes . bool ,
2019 addSeries : PropTypes . func , // Provided by ChartProvider
2120 update : PropTypes . func , // Provided by SeriesProvider
You can’t perform that action at this time.
0 commit comments