@vaadin/vaadin-text-field
Advanced tools
Comparing version 2.5.4 to 2.5.5
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-text-field", | ||
"version": "2.5.4", | ||
"version": "2.5.5", | ||
"main": "vaadin-text-field.js", | ||
@@ -16,0 +16,0 @@ "author": "Vaadin Ltd", |
@@ -33,3 +33,3 @@ /** | ||
static get version() { | ||
return '2.5.4'; | ||
return '2.5.5'; | ||
} | ||
@@ -36,0 +36,0 @@ |
@@ -36,3 +36,3 @@ /** | ||
static get version() { | ||
return '2.5.4'; | ||
return '2.5.5'; | ||
} | ||
@@ -39,0 +39,0 @@ |
@@ -79,3 +79,3 @@ /** | ||
static get version() { | ||
return '2.5.4'; | ||
return '2.5.5'; | ||
} | ||
@@ -82,0 +82,0 @@ |
@@ -79,3 +79,3 @@ /** | ||
static get version() { | ||
return '2.5.4'; | ||
return '2.5.5'; | ||
} | ||
@@ -82,0 +82,0 @@ |
@@ -133,3 +133,3 @@ /** | ||
static get version() { | ||
return '2.5.4'; | ||
return '2.5.5'; | ||
} | ||
@@ -136,0 +136,0 @@ |
@@ -117,4 +117,4 @@ /** | ||
default: ['list', 'autofocus', 'pattern', 'autocapitalize', 'autocorrect', 'maxlength', | ||
'minlength', 'name', 'placeholder', 'autocomplete', 'title'], | ||
accessible: ['disabled', 'readonly', 'required', 'invalid'] | ||
'minlength', 'name', 'placeholder', 'autocomplete', 'title', 'disabled', 'readonly', 'required'], | ||
accessible: ['invalid'] | ||
}; | ||
@@ -499,6 +499,6 @@ | ||
if (type === 'accessible') { | ||
if (type === PROP_TYPE.ACCESSIBLE) { | ||
attributeNames.forEach((attr, index) => { | ||
this._setOrToggleAttribute(attr, attributesValues[index], input); | ||
this._setOrToggleAttribute(`aria-${attr}`, attributesValues[index], input); | ||
this._setOrToggleAttribute(`aria-${attr}`, attributesValues[index] ? 'true' : false, input); | ||
}); | ||
@@ -505,0 +505,0 @@ } else { |
@@ -106,3 +106,3 @@ /** | ||
static get version() { | ||
return '2.5.4'; | ||
return '2.5.5'; | ||
} | ||
@@ -109,0 +109,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
103170