@vaadin/vaadin-combo-box
Advanced tools
Comparing version 6.0.0 to 6.0.1
{ | ||
"name": "@vaadin/vaadin-combo-box", | ||
"version": "6.0.0", | ||
"version": "6.0.1", | ||
"description": "Web Component for displaying a list of items with filtering", | ||
@@ -70,3 +70,3 @@ "main": "vaadin-combo-box.js", | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.1.5", | ||
"@esm-bundle/chai": "4.3.0", | ||
"@open-wc/rollup-plugin-html": "^1.2.5", | ||
@@ -73,0 +73,0 @@ "@open-wc/testing-helpers": "^1.8.0", |
@@ -78,6 +78,6 @@ /** | ||
/** @private */ | ||
_dataProviderClearFilter(dataProvider) { | ||
_dataProviderClearFilter(dataProvider, opened, value) { | ||
// Can't depend on filter in this observer as we don't want | ||
// to clear the filter whenever it's set | ||
if (dataProvider && !this.loading && this.filter) { | ||
if (dataProvider && !this.loading && this.filter && !(opened && this.autoOpenDisabled && value === this.filter)) { | ||
this.size = undefined; | ||
@@ -84,0 +84,0 @@ this._pendingRequests = {}; |
@@ -263,3 +263,3 @@ /** | ||
static get version() { | ||
return '6.0.0'; | ||
return '6.0.1'; | ||
} | ||
@@ -266,0 +266,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
144588