@@ -22,14 +22,15 @@ export default class SortableList extends Component {
2222 scrollEnabled : PropTypes . bool ,
2323 horizontal : PropTypes . bool ,
2424 refreshControl : PropTypes . element ,
25+ autoscrollAreaSize : PropTypes . number ,
26+ rowActivationTime : PropTypes . number ,
2527
2628 renderRow : PropTypes . func . isRequired ,
2729 renderFooter : PropTypes . func ,
2830
2931 onChangeOrder : PropTypes . func ,
3032 onActivateRow : PropTypes . func ,
3133 onReleaseRow : PropTypes . func ,
32- autoscrollAreaSize : PropTypes . number ,
3334 } ;
3435
3536 static defaultProps = {
@@ -186,7 +187,7 @@ export default class SortableList extends Component {
186187 }
187188
188189 _renderRows ( ) {
189- const { horizontal, sortingEnabled, renderRow} = this . props ;
190+ const { horizontal, rowActivationTime , sortingEnabled, renderRow} = this . props ;
190191 const { animated, order, data, activeRowKey, releasedRowKey, rowsLayouts} = this . state ;
191192
192193 let rowHeight = 0 ;
@@ -233,6 +234,7 @@ export default class SortableList extends Component {
233234 key = { uniqueRowKey ( key ) }
234235 ref = { this . _onRefRow . bind ( this , key ) }
235236 horizontal = { horizontal }
237+ activationTime = { rowActivationTime }
236238 animated = { animated && ! active }
237239 disabled = { ! sortingEnabled }
238240 style = { style }
0 commit comments