@vaadin/vaadin-combo-box
Advanced tools
Comparing version 4.2.0-beta2 to 4.2.0
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-combo-box", | ||
"version": "4.2.0-beta2", | ||
"version": "4.2.0", | ||
"main": "vaadin-combo-box.js", | ||
@@ -16,0 +16,0 @@ "author": "Vaadin Ltd", |
@@ -55,2 +55,6 @@ /** | ||
} | ||
}, | ||
__placeHolder: { | ||
value: new ComboBoxPlaceholder() | ||
} | ||
@@ -169,3 +173,3 @@ | ||
for (let i = 0; i < (this.size || 0); i++) { | ||
filteredItems.push(new ComboBoxPlaceholder()); | ||
filteredItems.push(this.__placeHolder); | ||
} | ||
@@ -181,3 +185,3 @@ this.filteredItems = filteredItems; | ||
for (let i = 0; i < size; i++) { | ||
filteredItems[i] = filteredItems[i] !== undefined ? filteredItems[i] : new ComboBoxPlaceholder(); | ||
filteredItems[i] = filteredItems[i] !== undefined ? filteredItems[i] : this.__placeHolder; | ||
} | ||
@@ -184,0 +188,0 @@ this.filteredItems = filteredItems; |
@@ -255,3 +255,3 @@ /** | ||
static get version() { | ||
return '4.2.0-beta2'; | ||
return '4.2.0'; | ||
} | ||
@@ -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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
105183
2542
0