react-native-element-dropdown
Advanced tools
Comparing version 1.7.2 to 1.8.0
{ | ||
"name": "react-native-element-dropdown", | ||
"title": "React Native Element Dropdown", | ||
"version": "1.7.2", | ||
"version": "1.8.0", | ||
"description": "A react-native dropdown component easy to customize for both iOS and Android.", | ||
@@ -6,0 +6,0 @@ "main": "index.ts", |
@@ -24,2 +24,8 @@ import { StyleSheet } from 'react-native'; | ||
}, | ||
dropdownInside: { | ||
flexDirection: 'row', | ||
justifyContent: 'space-between', | ||
alignItems: 'center', | ||
minHeight: 35, | ||
}, | ||
title: { | ||
@@ -63,3 +69,3 @@ marginVertical: 5, | ||
paddingHorizontal: 8, | ||
marginTop: 12, | ||
marginVertical: 6, | ||
marginRight: 8, | ||
@@ -66,0 +72,0 @@ flexDirection: 'row', |
@@ -29,2 +29,3 @@ import React from 'react'; | ||
keyboardAvoiding?: boolean; | ||
inside?: boolean; | ||
onChange: (item: any) => void; | ||
@@ -34,3 +35,3 @@ renderLeftIcon?: () => JSX.Element | null | undefined; | ||
renderItem?: (item: any) => JSX.Element | null | undefined; | ||
renderSelectedItem?: (item: any, unSelect?: () => void) => JSX.Element | null | undefined; | ||
renderSelectedItem?: (item: any, unSelect?: (item: any) => void) => JSX.Element | null | undefined; | ||
renderInputSearch?: (onSearch: (text:string) => void) => JSX.Element | null | undefined; | ||
@@ -37,0 +38,0 @@ onFocus?:() => void; |
Sorry, the diff of this file is not supported yet
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
294087
2040