@vaadin/vaadin-combo-box
Advanced tools
Comparing version 5.1.0 to 5.1.1
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-combo-box", | ||
"version": "5.1.0", | ||
"version": "5.1.1", | ||
"main": "vaadin-combo-box.js", | ||
@@ -16,0 +16,0 @@ "author": "Vaadin Ltd", |
@@ -31,2 +31,14 @@ /** | ||
connectedCallback() { | ||
super.connectedCallback(); | ||
const dropdown = this.__dataHost; | ||
const comboBoxOverlay = dropdown.getRootNode().host; | ||
const comboBox = comboBoxOverlay && comboBoxOverlay.getRootNode().host; | ||
const hostDir = comboBox && comboBox.getAttribute('dir'); | ||
if (hostDir) { | ||
this.setAttribute('dir', hostDir); | ||
} | ||
} | ||
ready() { | ||
@@ -33,0 +45,0 @@ super.ready(); |
@@ -134,2 +134,7 @@ /** | ||
} | ||
const hostDir = this._comboBox.getAttribute('dir'); | ||
if (hostDir) { | ||
this.setAttribute('dir', hostDir); | ||
} | ||
} | ||
@@ -136,0 +141,0 @@ |
@@ -234,3 +234,3 @@ /** | ||
static get version() { | ||
return '5.1.0'; | ||
return '5.1.1'; | ||
} | ||
@@ -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
113705
2754