Socket
Socket
Sign inDemoInstall

react-native-searchable-dropdown

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.1 to 1.1.2

0

CHANGELOG.md

@@ -0,0 +0,0 @@ [npm-badge]: https://img.shields.io/npm/v/react-native-searchable-dropdown.svg?colorB=ff6d00

17

index.js

@@ -22,3 +22,2 @@ import React, { Component } from 'react';

this.renderItems = this.renderItems.bind(this);
this.state = {

@@ -176,4 +175,4 @@ item: {},

val: () => {
this.props.onBlur && this.props.onBlur()
this.setState({ focus: false })
this.props.onBlur && this.props.onBlur(this);
this.setState({ focus: false, item: this.props.selectedItems });
}

@@ -213,3 +212,13 @@ },

<TextInput
{ ...textInputProps }
{ ...textInputProps }
onBlur={(e) => {
if (this.props.onBlur) {
this.props.onBlur(e);
}
if (this.props.textInputProps && this.props.textInputProps.onBlur) {
this.props.textInputProps.onBlur(e);
}
this.setState({ focus: false, item: this.props.selectedItems });
}
}
/>

@@ -216,0 +225,0 @@ )

{
"name": "react-native-searchable-dropdown",
"version": "1.1.1",
"version": "1.1.2",
"description": "Searchable Dropdown",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -0,0 +0,0 @@ [example-url]: https://i.imgur.com/mHGaOX5.gif

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc