Skip to content

Commit b5dec3c

Browse files
author
Nii Yeboah
committed
Fix keyboard focus issue
1 parent e0df0b9 commit b5dec3c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

lib/common-js-modules.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
"dependencies": {
4646
"@juggle/resize-observer": "^3.1.3",
4747
"@polymer/polymer": "^3.0.0",
48-
"@vaadin/component-base": "^23.1.0",
49-
"@vaadin/tabs": "^23.1.0",
50-
"@vaadin/vaadin-lumo-styles": "^23.1.0",
51-
"@vaadin/vaadin-themable-mixin": "^23.1.0",
48+
"@vaadin/component-base": "^23.2.4",
49+
"@vaadin/tabs": "^23.2.4",
50+
"@vaadin/vaadin-lumo-styles": "^23.2.4",
51+
"@vaadin/vaadin-themable-mixin": "^23.2.4",
5252
"intersection-observer": "^0.10.0",
5353
"smoothscroll-polyfill": "^0.4.4",
5454
"stickyfilljs": "^2.1.0"
@@ -64,8 +64,8 @@
6464
"@rollup/plugin-commonjs": "^11.1.0",
6565
"@rollup/plugin-node-resolve": "^7.1.3",
6666
"@vaadin-component-factory/vcf-element-util": "^0.2.8",
67-
"@vaadin/button": "^23.1.0",
68-
"@vaadin/text-field": "^23.1.0",
67+
"@vaadin/button": "^23.2.4",
68+
"@vaadin/text-field": "^23.2.4",
6969
"@webcomponents/webcomponentsjs": "^2.0.0",
7070
"babel-eslint": "^10.0.2",
7171
"babel-loader": "^8.0.6",

src/vcf-anchor-nav.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ export class AnchorNavElement extends ElementMixin(ThemableMixin(PolymerElement)
250250

251251
_onNavFocus(e) {
252252
if (AnchorNavElement.isSame(e.target)) {
253-
this.sections.forEach(section => section.setAttribute('tabindex', '-1'));
253+
this.sections.forEach(section => section.setAttribute('tabindex', '0'));
254254
}
255255
}
256256

0 commit comments

Comments
 (0)