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

@clayui/autocomplete

Package Overview
Dependencies
Maintainers
14
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clayui/autocomplete - npm Package Compare versions

Comparing version 3.86.1 to 3.87.0

3

lib/Autocomplete.js

@@ -49,2 +49,3 @@ "use strict";

var Collection = _core.__NOT_PUBLIC_COLLECTION.Collection;
var ESCAPE_REGEXP = /[.*+?^${}()|[\]\\]/g;

@@ -151,3 +152,3 @@ function Autocomplete(_ref) {

var filterFn = (0, _react.useCallback)(function (itemValue) {
return itemValue.match(new RegExp(value, 'i')) !== null;
return itemValue.match(new RegExp(value.replace(ESCAPE_REGEXP, '\\$&'), 'i')) !== null;
}, [value]);

@@ -154,0 +155,0 @@ var filteredItems = (0, _react.useMemo)(function () {

{
"name": "@clayui/autocomplete",
"version": "3.86.1",
"version": "3.87.0",
"description": "ClayAutocomplete component",

@@ -29,7 +29,7 @@ "license": "BSD-3-Clause",

"dependencies": {
"@clayui/core": "^3.86.1",
"@clayui/drop-down": "^3.86.1",
"@clayui/form": "^3.86.1",
"@clayui/core": "^3.87.0",
"@clayui/drop-down": "^3.87.0",
"@clayui/form": "^3.87.0",
"@clayui/loading-indicator": "^3.60.0",
"@clayui/shared": "^3.86.1",
"@clayui/shared": "^3.87.0",
"fuzzy": "^0.1.3"

@@ -45,3 +45,3 @@ },

],
"gitHead": "9437a1f6f7c2845824e9b63b8251e6f7f366323f"
"gitHead": "f071126e11f2c0ddeab525b5c14eb83f984f6f37"
}

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