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

@vaadin/vaadin-list-mixin

Package Overview
Dependencies
Maintainers
19
Versions
254
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-list-mixin - npm Package Compare versions

Comparing version 22.0.0-alpha9 to 22.0.0-beta1

6

package.json
{
"name": "@vaadin/vaadin-list-mixin",
"version": "22.0.0-alpha9",
"version": "22.0.0-beta1",
"publishConfig": {

@@ -34,3 +34,3 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "22.0.0-alpha9"
"@vaadin/component-base": "22.0.0-beta1"
},

@@ -42,3 +42,3 @@ "devDependencies": {

},
"gitHead": "6e8c899dc65918f97e3c0acb2076122c4b2ef274"
"gitHead": "4cf8a9d0504994200c610e44b3676114fef49c1e"
}

@@ -103,3 +103,3 @@ /**

this._setFocusable(selected);
this._setFocusable(selected || 0);

@@ -160,3 +160,3 @@ const itemToSelect = items[selected];

item.textContent
.replace(/[^a-zA-Z0-9]/g, '')
.replace(/[^\p{L}\p{Nd}]/gu, '')
.toLowerCase()

@@ -169,3 +169,3 @@ .indexOf(this._searchBuf) === 0;

item.textContent
.replace(/[^a-zA-Z0-9]/g, '')
.replace(/[^\p{L}\p{Nd}]/gu, '')
.toLowerCase()

@@ -277,3 +277,3 @@ .indexOf(this._searchBuf) === 0

idx = this._getAvailableIndex(idx, 1, (item) => !item.disabled);
const item = this.items[idx] || this.items[0];
const item = this.items[idx];
this.items.forEach((e) => (e.tabIndex = e === item ? 0 : -1));

@@ -280,0 +280,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