From da3f1f62d8d12748b0704848ab41fcb83df8d5cd Mon Sep 17 00:00:00 2001 From: Stefan Dietz Date: Thu, 21 Dec 2023 16:50:53 +0100 Subject: [PATCH 1/2] Fix labels for date sample --- .../react/src/components/input-date/partials/cases.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/samples/react/src/components/input-date/partials/cases.tsx b/packages/samples/react/src/components/input-date/partials/cases.tsx index 249aa46935..32608178fb 100644 --- a/packages/samples/react/src/components/input-date/partials/cases.tsx +++ b/packages/samples/react/src/components/input-date/partials/cases.tsx @@ -15,8 +15,8 @@ export const InputDateCases = forwardRef - - + + ); }); From 76c942252a5a3b1181b9147228a0f494dec53ccc Mon Sep 17 00:00:00 2001 From: Stefan Dietz Date: Thu, 21 Dec 2023 16:52:31 +0100 Subject: [PATCH 2/2] Extend KNOWN_ISSUES --- KNOWN_ISSUES.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/KNOWN_ISSUES.md b/KNOWN_ISSUES.md index 4d7b8286c9..b577dcbcbf 100644 --- a/KNOWN_ISSUES.md +++ b/KNOWN_ISSUES.md @@ -14,10 +14,12 @@ For full accessibility, consider using predefined colors lists, e.g. using KolSe [🐞 GitHub issue #5549](https://github.com/public-ui/kolibri/issues/5549) [🐞 NVDA issue #8132](https://github.com/nvaccess/nvda/issues/8132) -## input-number 'readonly' not announced in NVDA +## input-number and input-date 'readonly' not announced in NVDA -The component InputNumber renders the native HTML element `` which supports the attribute `readonly`. +The components InputNumber and InputDate render their respective native HTML elements `` and `` which both support the +attribute `readonly`. When focusing the element, it's expected that the `readonly` attribute is announced as part of the element description. This isn't the case for NVDA. -[🐞 GitHub issue #5554](https://github.com/public-ui/kolibri/issues/5554) +[🐞 GitHub issue #5554](https://github.com/public-ui/kolibri/issues/5554) (For number) +[🐞 GitHub issue #5749](https://github.com/public-ui/kolibri/issues/5749) (For date) [🐞 NVDA issue #13672](https://github.com/nvaccess/nvda/issues/13672)