@@ -6,6 +6,10 @@ var _react = require('react');
66
77var _react2 = _interopRequireDefault ( _react ) ;
88
9+ var _propTypes = require ( 'prop-types' ) ;
10+
11+ var _propTypes2 = _interopRequireDefault ( _propTypes ) ;
12+
913function _interopRequireDefault ( obj ) { return obj && obj . __esModule ? obj : { default : obj } ; }
1014
1115function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( "Cannot call a class as a function" ) ; } }
@@ -20,7 +24,7 @@ var ListScrollBound = function (_Component) {
2024 function ListScrollBound ( props ) {
2125 _classCallCheck ( this , ListScrollBound ) ;
2226
23- return _possibleConstructorReturn ( this , Object . getPrototypeOf ( ListScrollBound ) . call ( this , props ) ) ;
27+ return _possibleConstructorReturn ( this , ( ListScrollBound . __proto__ || Object . getPrototypeOf ( ListScrollBound ) ) . call ( this , props ) ) ;
2428 }
2529
2630 _createClass ( ListScrollBound , [ {
@@ -60,11 +64,11 @@ var ListScrollBound = function (_Component) {
6064} ( _react . Component ) ;
6165
6266ListScrollBound . propTypes = {
63- id : _react . PropTypes . string ,
64- tagName : _react . PropTypes . string ,
65- className : _react . PropTypes . string ,
66- onClick : _react . PropTypes . func ,
67- onWheel : _react . PropTypes . func
67+ id : _propTypes2 . default . string ,
68+ tagName : _propTypes2 . default . string ,
69+ className : _propTypes2 . default . string ,
70+ onClick : _propTypes2 . default . func ,
71+ onWheel : _propTypes2 . default . func
6872} ;
6973
7074ListScrollBound . defaultProps = {
0 commit comments