π§© Background
components/dashboard/Heatmap.tsx shows tooltips on mouseenter/mouseleave events only. Keyboard-only and touch users cannot see contribution details for individual days.
π― Objective
Add onFocus/onBlur handlers to the heatmap cells so tooltips appear on keyboard focus.
π Files to touch
components/dashboard/Heatmap.tsx
π οΈ Implementation steps
- Add
tabIndex={0} and role="gridcell" to each day cell.
- Attach
onFocus β show tooltip, onBlur β hide tooltip.
- Add
aria-label with the contribution count string.
β
Definition of done
π§© Background
components/dashboard/Heatmap.tsxshows tooltips onmouseenter/mouseleaveevents only. Keyboard-only and touch users cannot see contribution details for individual days.π― Objective
Add
onFocus/onBlurhandlers to the heatmap cells so tooltips appear on keyboard focus.π Files to touch
components/dashboard/Heatmap.tsxπ οΈ Implementation steps
tabIndex={0}androle="gridcell"to each day cell.onFocusβ show tooltip,onBlurβ hide tooltip.aria-labelwith the contribution count string.β Definition of done
aria-labelis set.