From e9d75a4631ac6aa951d51861e047ed2cf97da361 Mon Sep 17 00:00:00 2001 From: Jan Andrle Date: Fri, 7 Mar 2025 10:57:17 +0100 Subject: [PATCH] :bug: npx-hint [Scrollable region must have keyboard access | Axe Rules | Deque University | Deque Systems](https://dequeuniversity.com/rules/axe/4.10/scrollable-region-focusable?application=axeAPI) --- bs/docs/jsdom.js | 2 +- docs/components/code.html.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bs/docs/jsdom.js b/bs/docs/jsdom.js index dfdaf23..dc46d1b 100644 --- a/bs/docs/jsdom.js +++ b/bs/docs/jsdom.js @@ -1,5 +1,5 @@ import { JSDOM } from "jsdom"; -const html_default= ""; +const html_default= ""; let keys= []; let dom= null; import { relative } from 'node:path'; diff --git a/docs/components/code.html.js b/docs/components/code.html.js index 1994fb1..181e04b 100644 --- a/docs/components/code.html.js +++ b/docs/components/code.html.js @@ -194,7 +194,7 @@ export function code({ id, src, content, language= "js", className= host.slice(1 registerClientPart(page_id); dataJS= "todo"; } - return el("div", { id, className, dataJS }).append( + return el("div", { id, className, dataJS, tabIndex: 0 }).append( el("code", { className: "language-"+language, textContent: content.trim() }) ); }