Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-select-search

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-select-search - npm Package Compare versions

Comparing version 0.1.4 to 0.2.0

17

index.js

@@ -87,2 +87,17 @@ /**

}
if (this.refs.hasOwnProperty('outInput') && this.state.value !== prevState.value) {
var outElement = this.refs.outInput.getDOMNode(),
event;
outElement.value = this.state.value;
if ("createEvent" in document) {
event = document.createEvent("HTMLEvents");
event.initEvent("change", false, true);
outElement.dispatchEvent(event);
} else {
outElement.fireEvent("onchange");
}
}
},

@@ -437,3 +452,3 @@

} else {
finalValue = <input type="hidden" value={this.state.value} name={this.props.name} />;
finalValue = <input type="hidden" defaultValue={this.props.value} ref="outInput" name={this.props.name} />;
}

@@ -440,0 +455,0 @@

2

package.json
{
"name": "react-select-search",
"version": "0.1.4",
"version": "0.2.0",
"description": "React powered selectbox with filter",

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

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc