Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Checkbox): mirror aria-checked to checked property of checkbox input #4263

Merged
merged 6 commits into from
Feb 28, 2024

Conversation

joshblack
Copy link
Member

Closes #4262

Changelog

New

Changed

  • Mirror the aria-checked attribute to the checked property on the checkbox input

Removed

Rollout strategy

  • Patch release

Testing & Reviewing

  • Verify that the axe issue from the original issue is no longer present
  • Do you have any ideas for better handling this change? 👀 Unfortunately, defaultChecked was the root of the issue here and I couldn't think of a better way to keep things in sync since this component can be both controlled and uncontrolled

@joshblack joshblack requested review from a team and pksjce February 12, 2024 18:54
Copy link

changeset-bot bot commented Feb 12, 2024

🦋 Changeset detected

Latest commit: 7aff51a

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@primer/react Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

github-actions bot commented Feb 12, 2024

size-limit report 📦

Path Size
packages/react/dist/browser.esm.js 113.53 KB (+0.04% 🔺)
packages/react/dist/browser.umd.js 114.2 KB (+0.04% 🔺)

@joshblack
Copy link
Member Author

bump @pksjce if you have a sec to review!

Copy link
Member

@broccolinisoup broccolinisoup left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Verify that the axe issue from the original issue is no longer present

Yeah, all gone!

Do you have any ideas for better handling this change? 👀 Unfortunately, defaultChecked was the root of the issue here and I couldn't think of a better way to keep things in sync since this component can be both controlled and uncontrolled

I think this is great. The way I thought is very similar to yours, I think yours is much cleaner and certainly avoids nested ternaries 😄

checked={indeterminate ? false : defaultChecked || checked}
aria-checked={indeterminate ? 'mixed' : defaultChecked ? defaultChecked : checked ? 'true' : 'false'}

Thanks for fixing this 🚀

@joshblack joshblack added this pull request to the merge queue Feb 28, 2024
Merged via the queue into main with commit 590486f Feb 28, 2024
30 checks passed
@joshblack joshblack deleted the 4262-fix-aria-conditional-attr-violation branch February 28, 2024 22:56
@primer primer bot mentioned this pull request Feb 28, 2024
lukasoppermann pushed a commit that referenced this pull request Apr 16, 2024
…input (#4263)

* fix(Checkbox): mirror `aria-checked` to checked property of checkbox input

* chore: add changeset

* fix: add back in useEffect import

---------

Co-authored-by: Josh Black <joshblack@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

CheckboxGroup has aria-conditional-attr violation
2 participants