@vaadin/vaadin-combo-box
Advanced tools
Comparing version 5.0.5 to 5.0.6
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-combo-box", | ||
"version": "5.0.5", | ||
"version": "5.0.6", | ||
"main": "vaadin-combo-box.js", | ||
@@ -16,0 +16,0 @@ "author": "Vaadin Ltd", |
@@ -842,6 +842,17 @@ /** | ||
() => { | ||
const selector = this.$.overlay._selector; | ||
if (!selector._isClientFull()) { | ||
// Due to the mismatch of the Y position of the item rendered | ||
// at the top of the scrolling list with some specific scroll | ||
// position values (2324, 3486, 6972, 60972, 95757 etc.) | ||
// iron-list loops the increasing of the pool and adds | ||
// too many items to the DOM. | ||
// Adjusting scroll position to equal the current scrollTop value | ||
// to avoid looping. | ||
selector._resetScrollPosition(selector._physicalTop); | ||
} | ||
this._resizeDropdown(); | ||
this.$.overlay.updateViewportBoundaries(); | ||
this.$.overlay.ensureItemsRendered(); | ||
this.$.overlay._selector.notifyResize(); | ||
selector.notifyResize(); | ||
flush(); | ||
@@ -848,0 +859,0 @@ } |
@@ -234,3 +234,3 @@ /** | ||
static get version() { | ||
return '5.0.5'; | ||
return '5.0.6'; | ||
} | ||
@@ -237,0 +237,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
110076
2654