feat(frontend): add accessibility and validation improvements#961
Merged
Wilfred007 merged 4 commits intoJun 25, 2026
Merged
Conversation
…ipsis to PaginationControls Resolves Gildado#960 Resolves Gildado#959
|
@fortezzalaboratory Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Frontend improvements for CSV uploader and pagination controls, including file size validation, error report export, accessibility announcements, and keyboard-navigable pagination.
Issues Resolved
Closes #957
Closes #958
Closes #959
Closes #960
Changes
#957 - CSVUploader has no file size validation before parsing
Added maximum file size check (10MB limit) before parsing CSV files. Users receive a clear error message if the file exceeds this limit, preventing browser hangs from large file parsing.
#958 - CSVUploader has no exportable error report for failed rows
Added "Export errors" button that appears when validation errors exist. Clicking downloads a CSV file containing all failed rows with their specific error messages, making it easier for users to fix data in external tools.
#960 - PaginationControls has no aria-live announcement for page changes
Added aria-live="polite" region that announces the current page to screen reader users when navigation occurs, improving accessibility for assistive technology users.
#959 - PaginationControls ellipsis isn't keyboard navigable
Made the ellipsis button focusable and added an interactive page jump dialog. Users can now keyboard navigate to the ellipsis and enter a page number to jump to pages in the skipped range.