From 9f7aa4d06969614f55b002b50502a514d3c1d320 Mon Sep 17 00:00:00 2001 From: Rich Bielby Date: Tue, 17 Dec 2024 18:28:36 +0000 Subject: [PATCH] Adding list of accessibility issues (#54) Co-authored-by: Jake Tufts <137207796+JT-39@users.noreply.github.com> --- R/ui_panels/accessibility_panel.R | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/R/ui_panels/accessibility_panel.R b/R/ui_panels/accessibility_panel.R index a4aabe5..6d42a59 100644 --- a/R/ui_panels/accessibility_panel.R +++ b/R/ui_panels/accessibility_panel.R @@ -11,11 +11,19 @@ accessibility_panel <- function() { dashboard_title = site_title, dashboard_url = "https://department-for-education.shinyapps.io/local-authority-interactive-tool/", date_tested = "9th December 2024", - date_prepared = "9th December 2024", - date_reviewed = "9th December 2024", + date_prepared = "17th December 2024", + date_reviewed = "17th December 2024", issues_contact = "https://github.com/dfe-analytical-services/local-authority-interactive-tool/issues", - non_accessible_components = "TBC", - specific_issues = "TBC" + non_accessible_components = c( + "Keyboard navigation within some tables may be limited", + "Navigation between pages doesn't trigger automatic screen reader response" + ), + specific_issues = c( + "Some ARIA roles within tables lack particular children elements", + "The dashboard lacks a \"skip to main content\" link", + "Tables don't have horizontal scroll at all zoom levels where it's needed, cutting off some content", + "Context focus does not work fully when navigating between pages" + ) ) ) }