@vaadin/vaadin-combo-box
Advanced tools
Comparing version 4.2.0-alpha6 to 4.2.0-alpha7
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-combo-box", | ||
"version": "4.2.0-alpha6", | ||
"version": "4.2.0-alpha7", | ||
"main": "vaadin-combo-box.js", | ||
@@ -16,0 +16,0 @@ "author": "Vaadin Ltd", |
@@ -233,3 +233,5 @@ /** | ||
_isItemSelected(item, selectedItem, itemIdPath) { | ||
if (itemIdPath && item !== undefined && selectedItem !== undefined) { | ||
if (item instanceof ComboBoxPlaceholder) { | ||
return false; | ||
} else if (itemIdPath && item !== undefined && selectedItem !== undefined) { | ||
return this.get(itemIdPath, item) === this.get(itemIdPath, selectedItem); | ||
@@ -236,0 +238,0 @@ } else { |
@@ -255,3 +255,3 @@ /** | ||
static get version() { | ||
return '4.2.0-alpha6'; | ||
return '4.2.0-alpha7'; | ||
} | ||
@@ -258,0 +258,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101679
2422