@vaadin/vaadin-grid
Advanced tools
Comparing version 5.10.0 to 5.10.1
@@ -18,3 +18,3 @@ { | ||
"name": "@vaadin/vaadin-grid", | ||
"version": "5.10.0", | ||
"version": "5.10.1", | ||
"main": "vaadin-grid.js", | ||
@@ -21,0 +21,0 @@ "author": "Vaadin Ltd", |
@@ -497,9 +497,11 @@ /** | ||
rootTarget === this.$.focusexit) { | ||
// The focus enters the top (bottom) of the grid, meaning that user has | ||
// tabbed (shift-tabbed) into the grid. Move the focus to | ||
// the first (the last) focusable. | ||
this._predictFocusStepTarget( | ||
rootTarget, | ||
rootTarget === this.$.table ? 1 : -1 | ||
).focus(); | ||
if (!this._isMousedown) { | ||
// The focus enters the top (bottom) of the grid, meaning that user has | ||
// tabbed (shift-tabbed) into the grid. Move the focus to | ||
// the first (the last) focusable. | ||
this._predictFocusStepTarget( | ||
rootTarget, | ||
rootTarget === this.$.table ? 1 : -1 | ||
).focus(); | ||
} | ||
this._setInteracting(false); | ||
@@ -506,0 +508,0 @@ } else { |
@@ -328,3 +328,3 @@ /** | ||
static get version() { | ||
return '5.10.0'; | ||
return '5.10.1'; | ||
} | ||
@@ -331,0 +331,0 @@ |
391621
10589