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

clay-autocomplete

Package Overview
Dependencies
Maintainers
10
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clay-autocomplete - npm Package Compare versions

Comparing version 2.16.1 to 2.16.2

11

lib/ClayAutocomplete.js

@@ -419,2 +419,13 @@ 'use strict';

case 'ArrowUp':
event.preventDefault();
this._setFocusItem(true);
break;
case 'ArrowDown':
event.preventDefault();
event.stopPropagation();
this._setFocusItem(false);
break;
case 'Tab':

@@ -421,0 +432,0 @@ if (this.inputFocused && this.filteredItems && this.filteredItems.length > 0) {

16

package.json
{
"name": "clay-autocomplete",
"version": "2.16.1",
"version": "2.16.2",
"description": "Metal ClayAutocomplete component",

@@ -31,5 +31,5 @@ "license": "BSD-3-Clause",

"dependencies": {
"clay-data-provider": "^2.16.1",
"clay-loading-indicator": "^2.16.1",
"clay-portal": "^2.16.1",
"clay-data-provider": "^2.16.2",
"clay-loading-indicator": "^2.16.2",
"clay-portal": "^2.16.2",
"metal": "^2.16.0",

@@ -49,8 +49,8 @@ "metal-component": "^2.16.0",

"babel-preset-env": "^1.6.0",
"browserslist-config-clay": "^2.16.1",
"clay-css": "^2.16.1",
"browserslist-config-clay": "^2.16.2",
"clay-css": "^2.16.2",
"metal-dom": "^2.13.2",
"metal-tools-soy": "^4.3.2",
"webpack": "^3.0.0",
"webpack-config-clay": "^2.16.1"
"webpack-config-clay": "^2.16.2"
},

@@ -60,3 +60,3 @@ "browserslist": [

],
"gitHead": "d5b84cb7fcab414e0e3c7cc5927cb34171cd1266"
"gitHead": "28806caf1dde42baf055ae40d6a213912ad17a5d"
}

@@ -338,2 +338,13 @@ import 'clay-data-provider';

case 'ArrowUp':
event.preventDefault();
this._setFocusItem(true);
break;
case 'ArrowDown':
event.preventDefault();
event.stopPropagation();
this._setFocusItem(false);
break;
case 'Tab':

@@ -340,0 +351,0 @@ if (

Sorry, the diff of this file is not supported yet

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