react-native-drag-sort
Advanced tools
Comparing version 2.3.8 to 2.3.9
@@ -591,2 +591,3 @@ import React, {Component} from 'react' | ||
scrollEventThrottle={1} | ||
scrollIndicatorInsets={this.props.scrollIndicatorInsets} | ||
ref={(scrollRef)=> this.scrollRef = scrollRef} | ||
@@ -696,2 +697,8 @@ scrollEnabled = {this.state.scrollEnabled} | ||
renderHeaderView: PropTypes.element, | ||
scrollIndicatorInsets: PropTypes.shape({ | ||
top: PropTypes.number, | ||
left: PropTypes.number, | ||
bottom: PropTypes.number, | ||
right: PropTypes.number, | ||
}), | ||
headerViewHeight: PropTypes.number, | ||
@@ -718,2 +725,8 @@ renderBottomView: PropTypes.element, | ||
autoThrottleDuration: 10, | ||
scrollIndicatorInsets: { | ||
top: 0, | ||
left: 0, | ||
bottom: 0, | ||
right: 1, | ||
}, | ||
headerViewHeight: 0, | ||
@@ -720,0 +733,0 @@ bottomViewHeight: 0, |
@@ -39,2 +39,3 @@ import React, { Component } from 'react' | ||
headerViewHeight?: number, | ||
scrollIndicatorInsets?: {top: number, left: number, bottom: number, right: number}, | ||
renderBottomView?: any, | ||
@@ -41,0 +42,0 @@ bottomViewHeight?: number, |
{ | ||
"name": "react-native-drag-sort", | ||
"version": "2.3.8", | ||
"version": "2.3.9", | ||
"description": "Drag and drop sort control for react-native", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -74,2 +74,8 @@ # react-native-drag-sort | ||
- **headerViewHeight**: PropTypes.number, | ||
- **scrollIndicatorInsets**: PropTypes.shape({ | ||
top: PropTypes.number, | ||
left: PropTypes.number, | ||
bottom: PropTypes.number, | ||
right: PropTypes.number | ||
}), | ||
- **renderBottomView**: PropTypes.element, | ||
@@ -76,0 +82,0 @@ - **bottomViewHeight**: PropTypes.number, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81713
1151
110