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

@vaadin/vaadin-list-mixin

Package Overview
Dependencies
Maintainers
12
Versions
255
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 23.4.0-alpha1 to 23.4.0-alpha2

6

package.json
{
"name": "@vaadin/vaadin-list-mixin",
"version": "23.4.0-alpha1",
"version": "23.4.0-alpha2",
"publishConfig": {

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

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "23.4.0-alpha1"
"@vaadin/component-base": "23.4.0-alpha2"
},

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

},
"gitHead": "a7cdbab591c62ee8dbc0e91fee877fbbf4b92bad"
"gitHead": "3fa9a5d13db6baf0307f863669ab2f3f5114c6a0"
}

@@ -216,3 +216,3 @@ /**

const currentIdx = this.items.indexOf(this.focused);
if (/[a-zA-Z0-9]/.test(key) && key.length === 1) {
if (/[\p{L}\p{Nd}]/u.test(key) && key.length === 1) {
const idx = this._searchKey(currentIdx, key);

@@ -219,0 +219,0 @@ if (idx >= 0) {

@@ -42,3 +42,3 @@ /**

static get observers() {
return [`_enhanceMultipleItems(items, multiple, selected, selectedValues, selectedValues.*)`];
return ['_enhanceMultipleItems(items, multiple, selected, disabled, selectedValues, selectedValues.*)'];
}

@@ -55,3 +55,3 @@

/** @private */
_enhanceMultipleItems(items, multiple, selected, selectedValues) {
_enhanceMultipleItems(items, multiple, selected, disabled, selectedValues) {
if (!items || !multiple) {

@@ -58,0 +58,0 @@ return;

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