multiselect-combo-box
Advanced tools
Comparing version 2.5.0-alpha.1 to 2.5.0-alpha.2
@@ -15,3 +15,3 @@ { | ||
"name": "multiselect-combo-box", | ||
"version": "2.5.0-alpha.1", | ||
"version": "2.5.0-alpha.2", | ||
"main": "multiselect-combo-box.js", | ||
@@ -18,0 +18,0 @@ "directories": { |
@@ -337,2 +337,5 @@ import {PolymerElement} from '@polymer/polymer/polymer-element.js'; | ||
this.$.comboBox.$.overlay._selectedItem = {}; | ||
// notifies component dimensions have changed | ||
setTimeout(() => this._notifyResize(), 0); | ||
} | ||
@@ -506,2 +509,12 @@ | ||
} | ||
_notifyResize() { | ||
if (this.width !== this.offsetWidth || this.height !== this.offsetHeight) { | ||
if (this.width && this.height) { | ||
this.notifyResize(); | ||
} | ||
this.width = this.offsetWidth; | ||
this.height = this.offsetHeight; | ||
} | ||
} | ||
} | ||
@@ -508,0 +521,0 @@ |
@@ -108,2 +108,3 @@ import '@vaadin/vaadin-lumo-styles/font-icons.js'; | ||
background-color: transparent !important; | ||
box-shadow: none; | ||
} | ||
@@ -110,0 +111,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
57000
1151