-
Notifications
You must be signed in to change notification settings - Fork 20
A11y revamp: Pharos buttons (non-breaking change) #628
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
Merged
brentswisher
merged 36 commits into
ithaka:develop
from
sirrah-tam:feature/non-breaking-a11y-button
Dec 8, 2023
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
641bf37
docs: add @sirrah-tam as a contributor
sirrah-tam b5f9432
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 8ef3b14
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam c05512c
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 4d9d486
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam c352e45
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam a92d4d8
feat(button): add a11y naming convention for aria
sirrah-tam e93a491
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam ceeb435
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam b49e476
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam b86feab
feat(button): add aria-description support
sirrah-tam 8ea7983
chore: add changset
sirrah-tam ae3ffb9
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 3f9ec2a
Merge branch 'develop' into feature/non-breaking-a11y-button
sirrah-tam c21f585
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 9ad5501
Merge branch 'develop' into feature/non-breaking-a11y-button
sirrah-tam e0a2973
Merge remote-tracking branch 'ithaka/develop' into feature/non-breaki…
sirrah-tam 2760f7d
Update packages/pharos/src/components/button/pharos-button.ts
d8eac20
Update packages/pharos/src/components/button/pharos-button.ts
778184f
Merge branch 'feature/non-breaking-a11y-button' of github.com:sirrah-…
sirrah-tam 1f86625
feat(button): move property deprecated flag
sirrah-tam f3a8fe4
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 5a7e610
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 49a37d3
Merge branch 'develop' into feature/non-breaking-a11y-button
sirrah-tam 0c04784
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 5dc8c3e
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 5bdecf1
Merge branch 'develop' into feature/non-breaking-a11y-button
sirrah-tam 1f29064
Merge branch 'develop' of github.com:ithaka/pharos into develop
sirrah-tam 73075e5
Merge branch 'develop' into feature/non-breaking-a11y-button
sirrah-tam f3409af
Merge branch 'develop' into feature/non-breaking-a11y-button
sirrah-tam 269201f
Merge branch 'develop' into feature/non-breaking-a11y-button
2dd0e9c
fix(button): remove ts-ignore after lit upgrade
sirrah-tam 561de92
feat(button): add a11y state typing
sirrah-tam 50ee900
fix: add TODO for future reference
sirrah-tam 45d2180
fix(a11y attributes): update AriaHiddenState name
sirrah-tam b1779ec
Merge branch 'feature/non-breaking-a11y-button' of github.com:sirrah-…
sirrah-tam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@ithaka/pharos': minor | ||
| --- | ||
|
|
||
| Update PharosButton to use a11y naming convention and include wider ARIA support |
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| export {}; | ||
|
|
||
| declare global { | ||
| type AriaHiddenState = 'false' | 'true' | 'undefined' | undefined; | ||
| type AriaPressedState = 'false' | 'true' | 'mixed' | 'undefined' | undefined; | ||
| type AriaExpandedState = 'false' | 'true' | 'undefined' | undefined; | ||
| type AriaDisabledState = 'false' | 'true' | undefined; | ||
| type AriaPopupState = | ||
| | 'false' | ||
| | 'true' | ||
| | 'menu' | ||
| | 'tree' | ||
| | 'grid' | ||
| | 'listbox' | ||
| | 'dialog' | ||
| | undefined; | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.