@vaadin/vaadin-list-mixin
Advanced tools
Comparing version 22.0.0-alpha9 to 22.0.0-beta1
{ | ||
"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 @@ } |
29104
+ Added@vaadin/component-base@22.0.0-beta1(transitive)
- Removed@vaadin/component-base@22.0.0-alpha9(transitive)