@vaadin/vaadin-radio-button
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -14,3 +14,3 @@ { | ||
"name": "@vaadin/vaadin-radio-button", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"main": "vaadin-radio-button.js", | ||
@@ -17,0 +17,0 @@ "author": "Vaadin Ltd", |
@@ -105,3 +105,3 @@ /** | ||
static get version() { | ||
return '1.1.0'; | ||
return '1.1.1'; | ||
} | ||
@@ -156,2 +156,4 @@ | ||
this.addEventListener('click', this._handleClick.bind(this)); | ||
this._addActiveListeners(); | ||
@@ -200,2 +202,9 @@ | ||
_handleClick(e) { | ||
if (!this.disabled) { | ||
e.preventDefault(); | ||
this.checked = true; | ||
} | ||
} | ||
/** @protected */ | ||
@@ -202,0 +211,0 @@ get focusElement() { |
Sorry, the diff of this file is not supported yet
67848
905