react-native-picker-select
Advanced tools
Comparing version 5.0.0 to 5.0.1
@@ -0,1 +1,7 @@ | ||
### v5.0.1 | ||
##### Bugfix | ||
- Fixed `TouchableWithoutFeedback` warning | ||
### v5.0.0 | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "react-native-picker-select", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"description": "A Picker component for React Native which emulates the native <select> interfaces for each platform", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -287,3 +287,7 @@ import React, { PureComponent } from 'react'; | ||
> | ||
<Text style={[defaultStyles.done, style.done]}>{doneText}</Text> | ||
<View | ||
testID="needed_for_touchable" | ||
> | ||
<Text style={[defaultStyles.done, style.done]}>{doneText}</Text> | ||
</View> | ||
</TouchableWithoutFeedback> | ||
@@ -290,0 +294,0 @@ </View> |
30211
489