From 84527a134dc3e00ca8bbc6f97da6320f09c79a98 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Fri, 20 Mar 2026 12:01:19 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=20all=20?= =?UTF-8?q?=E5=8F=82=E6=95=B0=20=E9=BB=98=E8=AE=A4=20false?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor/wwwroot/modules/utility.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BootstrapBlazor/wwwroot/modules/utility.js b/src/BootstrapBlazor/wwwroot/modules/utility.js index 025e6eda04a..fb6e43e3427 100644 --- a/src/BootstrapBlazor/wwwroot/modules/utility.js +++ b/src/BootstrapBlazor/wwwroot/modules/utility.js @@ -1,4 +1,4 @@ -import EventHandler from "./event-handler.js" +import EventHandler from "./event-handler.js" const vibrate = () => { if ('vibrate' in window.navigator) { @@ -420,14 +420,14 @@ const drag = (element, start, move, end) => { element.addEventListener('touchstart', handleDragStart) } -const getDescribedElement = (element, selector = 'aria-describedby') => { +const getDescribedElement = (element, selector = 'aria-describedby', all = false) => { if (isElement(element)) { let id = element.getAttribute(selector) if (id) { if (id.indexOf('.') === -1) { id = `#${id}` } - return document.querySelector(id) + return all ? document.querySelectorAll(id) : document.querySelector(id) } } return null From 5e5947da6175b7933867bc7ca9a65f332c515a23 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Fri, 20 Mar 2026 12:01:33 +0800 Subject: [PATCH 2/2] chore: bump version 10.4.2-beta02 --- src/BootstrapBlazor/BootstrapBlazor.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/BootstrapBlazor.csproj b/src/BootstrapBlazor/BootstrapBlazor.csproj index 8f8c3bdfd28..05fb07de626 100644 --- a/src/BootstrapBlazor/BootstrapBlazor.csproj +++ b/src/BootstrapBlazor/BootstrapBlazor.csproj @@ -1,7 +1,7 @@  - 10.4.2-beta01 + 10.4.2-beta02