You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a11y: mobile nav hamburger, ARIA live region for narration, 3D graph accessible label
- Mobile: hamburger button (aria-expanded/controls), dropdown menu (role=menu/menuitem), Escape-to-close
- Narration: role=status aria-live=polite region announces play/pause state
- 3D graph: role=img + aria-label on container, aria-label on control buttons, aria-hidden on decorative icons
- Closes all 3 known open WCAG gaps
Copy file name to clipboardExpand all lines: src/components/RELIEFKnowledgeGraph3D.tsx
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -527,6 +527,8 @@ export function RELIEFKnowledgeGraph3D() {
527
527
return(
528
528
<div
529
529
ref={containerRef}
530
+
role="img"
531
+
aria-label={`Interaktiver 3D Knowledge Graph: RELIEF E-AKTE — ${graphData.nodes.length} Knoten, ${graphData.links.length} Beziehungen. Zeigt SGB-II-Rechtsstruktur der Bedarfsgemeinschaft Becker mit Dokumenten, Gesetzen und KI-Verarbeitungsschritten.`}
0 commit comments