-
Notifications
You must be signed in to change notification settings - Fork 536
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
Add loading
prop for Button
and IconButton
#3582
Conversation
🦋 Changeset detectedLatest commit: a7b114b The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
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 |
size-limit report 📦
|
loading
prop for Button
and IconButton
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has multiple approvals from other folks. Just adding my approval so I can merge.
Merging isn't blocked because of reviews, it's blocked because main
is locked right now. Will merge once it's unlocked.
* draft loading state * cleanup * add story to trigger loading * merge * icon button * Create lazy-jobs-pump.md * add prop for loading message * handle no visuals loading state * updates snapshots after merging from main * uses unique ID for loading messages, preserves aria-describedby passed to button, rms aria-busy * adds Storybook examples for btn loading error message * reverts unintentional default link underlining * changes loadingMessage to loadingAnnouncement * updates draft Button component with loading prop * updates legacy button counter behavior when loading * Revert "updates draft Button component with loading prop" This reverts commit 7f7f326. * moves error behavior stories to 'Examples' section * screenreader fixes * adds and updates unit tests * re-updates snapshots after using correct VisuallyHidden * documents loading props * adds VRTs, updates loading feature stories * simplifies inner visual/spinner rendering logic * removes example stories (we can put them back when Flash supports focusing its heading) * excludes loading buttons from axe contrast check * fixes visual regression: button counter vertical alignment * prevents double spinners when leading and trailing visuals are passed * test(e2e): update story ids * test(vrt): update snapshots * test(e2e): disable animations in screenshots * test(vrt): update snapshots * preserves rest state styles when button is loading * adds story for success and error announcement * test(vrt): update snapshots * fixes ButtonGroup regression * delete broken snapshots * also targets anchor tags in ButtonGroup styles * add conditional wrapper * fix group * test(vrt): update snapshots * lint * fixes unit tests, updates snapshots * Update src/Button/Button.docs.json Co-authored-by: Pavithra Kodmad <pksjce@github.com> * fixes 'block' layout for loading buttons * uses new internal Status component for loading announcement * updates Tooltip V2 tests to account for loading messageID in button's aria-describedby * fixes BoxProps type import to new preferred syntax * appease the linter * rms ConditionalWrapper * revert back to using ConditionalWrapper with aria-describedby * test(vrt): update snapshots --------- Co-authored-by: Mike Perrotti <mperrotti@github.com> Co-authored-by: Josh Black <joshblack@users.noreply.github.com> Co-authored-by: langermank <langermank@users.noreply.github.com> Co-authored-by: Pavithra Kodmad <pksjce@github.com> Co-authored-by: mperrotti <mperrotti@users.noreply.github.com>
…4485) * Revert "Revert "Add `loading` prop for `Button` and `IconButton` (#3582)" (#4…" This reverts commit c01901f. * only overrides btn label when loading * update tooltip tests to accomodate loading message aria-describedby * import missing modules in IconButton stories * makes aria-labelledby prop remain set when when button is in a loading state * Update packages/react/src/Button/Button.examples.stories.tsx Co-authored-by: Kate Higa <16447748+khiga8@users.noreply.github.com> * Update packages/react/src/Button/Button.examples.stories.tsx Co-authored-by: Kate Higa <16447748+khiga8@users.noreply.github.com> * updates textinput snapshots * addresses remaining PR feedback * appeases the linter, updates snaps * leaves loading prop undefined so we do not always render the wrapper * test(vrt): update snapshots * trying again without changing colors on faux-disabled buttons * replaces Status with AriaStatus * replaces one more Status with AriaStatus * rms added aria-disabled styles * test(vrt): update snapshots * Update icon button tests to make it work with the loading state * add story with leading visual and count * misc bugfixes: - ensures counter stays rendered even when no children are passed - preserves space between elements that are children of span[data-component=text] - adds story and VRT for buttons with a trailing action but no leading/trailing visuals * test(vrt): update snapshots --------- Co-authored-by: Siddharth Kshetrapal <siddharthkp@github.com> Co-authored-by: Kate Higa <16447748+khiga8@users.noreply.github.com> Co-authored-by: mperrotti <mperrotti@users.noreply.github.com> Co-authored-by: Armagan Ersoz <broccolinisoup@github.com>
Adds a
loading
state to bothButton
andIconButton
. The markup follows the recommended path forward from accessibility design, and mirrors the implementation from theExport CSV
button as part of GH org security coverage pages.Implementation details
aria-disabled
instead ofdisabled
to maintain focus managementNew props:
loading
: booleanloadingAnnouncement
: default toLoading
or provide a custom message to be announced on ATsCloses https://github.com/github/primer/issues/2680
Screenshots
CleanShot.2023-10-11.at.14.55.13.mp4
CleanShot.2023-10-11.at.14.55.42.mp4
Merge checklist
Take a look at the What we look for in reviews section of the contributing guidelines for more information on how we review PRs.