New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

radon-select

Package Overview
Dependencies
Maintainers
12
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

radon-select - npm Package Compare versions

Comparing version 0.1.4 to 1.0.0

.babelrc

6

lib/select.js
'use strict';
var React = require('react');

@@ -217,2 +218,3 @@ var ReactDOM = require('react-dom');

},
// Arrow keys are only captured by onKeyDown not onKeyPress

@@ -444,7 +446,7 @@ // http://stackoverflow.com/questions/5597060/detecting-arrow-key-presses-in-javascript

'data-automation-id': this.props.automationId,
tabIndex: -1,
tabIndex: -1
// This is a workaround for a long-standing iOS/React issue with click events.
// See https://github.com/facebook/react/issues/134 for more information.
onTouchStart: this.tap,
, onTouchStart: this.tap,

@@ -451,0 +453,0 @@ onMouseDown: this.props.onClick,

{
"name": "radon-select",
"version": "0.1.4",
"version": "1.0.0",
"description": "React select box replacement component",

@@ -8,3 +8,3 @@ "main": "index.js",

"examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples/",
"lib": "rimraf lib && babel --stage 0 src/ -d lib/",
"lib": "rimraf lib && babel src --out-dir lib",
"lint": "eslint src/select.jsx",

@@ -17,4 +17,8 @@ "prepublish": "npm run lib",

"devDependencies": {
"babel-eslint": "^2.0.2",
"babel-loader": "^4.3.0",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-0": "^6.0.0",
"chai": "^2.1.2",

@@ -37,5 +41,5 @@ "eslint": "^0.24.1",

"phantomjs": "^1.9.18",
"react": "^0.14.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"react-dom": "^0.14.7",
"sinon": "^1.14.1",

@@ -47,7 +51,6 @@ "sinon-chai": "^2.7.0",

"dependencies": {
"babel": "^5.6.14",
"babel-core": "^4.7.16",
"object-assign": "^2.0.0",
"babel-core": "^6.7.4",
"object-assign": "^4.0.0",
"rimraf": "^2.4.1"
}
}

@@ -6,2 +6,3 @@ 'use strict';

var React = require('react');
var ReactDOM = require('react-dom');
var TestUtils = require('react-addons-test-utils');

@@ -16,3 +17,3 @@

container = document.createElement('div');
component = React.render(
component = ReactDOM.render(
React.createElement(RadonSelect, {selectName: "test"}, [

@@ -27,3 +28,3 @@ React.createElement(RadonSelect.Option, {key: "blah"}, "blah"),

afterEach(function() {
React.unmountComponentAtNode(container);
ReactDOM.unmountComponentAtNode(container);
});

@@ -30,0 +31,0 @@

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