From a7bfe44f44a2f49f1ea8c4aeb71b40ebc48fca2c Mon Sep 17 00:00:00 2001 From: Cyril Date: Wed, 1 Oct 2025 14:11:09 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(frontend)=20expose=20useArrowRoving?= =?UTF-8?q?=20hook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit make the hook available for reuse across ours apps Signed-off-by: Cyril --- CHANGELOG.md | 1 + src/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ef2e3b..1239cd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - a11y : improves keyboard accessibility in the TreeView component - a11y : Enable child node loading and fold/unfold via keyboard without requiring an initial mouse click. +- a11y : Expose useArrowRoving hook ## 0.16.1 diff --git a/src/index.ts b/src/index.ts index 9dc0ba2..56904b9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,6 +20,7 @@ export * from "./components/form/label/label"; export * from "./components/badge"; export * from "./components/icon"; export * from "./hooks/useResponsive"; +export * from "./hooks/useArrowRoving"; export * from "./components/share"; export * from "./components/users"; export * from "./hooks/useCustomTranslations";