react-native-picker-select
Advanced tools
Comparing version 6.1.1 to 6.2.0
@@ -0,1 +1,9 @@ | ||
### 6.2.0 | ||
##### New | ||
- Supports an empty `items` array (#161) | ||
--- | ||
### 6.1.1 | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "react-native-picker-select", | ||
"version": "6.1.1", | ||
"version": "6.2.0", | ||
"description": "A Picker component for React Native which emulates the native <select> interfaces for each platform", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -109,3 +109,3 @@ import React, { PureComponent } from 'react'; | ||
return { | ||
selectedItem: items[idx], | ||
selectedItem: items[idx] || {}, | ||
idx, | ||
@@ -112,0 +112,0 @@ }; |
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
36761