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

@expandorg/components

Package Overview
Dependencies
Maintainers
3
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expandorg/components - npm Package Compare versions

Comparing version 0.2.69 to 0.2.70

4

package.json
{
"name": "@expandorg/components",
"version": "0.2.69",
"version": "0.2.70",
"description": "expand UI components library",

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

},
"gitHead": "7acda91bb9dfad9c96a362edeb0d0122e0319b3c"
"gitHead": "4c4125d47f37370744e473b7c57dbc2d916b4d32"
}

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

onSelect: PropTypes.func,
onKeyDown: PropTypes.func,
filterFn: PropTypes.func,

@@ -38,2 +39,3 @@ };

onSelect: Function.prototype,
onKeyDown: null,
};

@@ -90,3 +92,6 @@

handleKeyDown = evt => {
const { allowAdd } = this.props;
const { allowAdd, onKeyDown } = this.props;
if (onKeyDown) {
onKeyDown(evt);
}
switch (evt.keyCode) {

@@ -93,0 +98,0 @@ case KeyCodes.ESC:

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