-
Notifications
You must be signed in to change notification settings - Fork 842
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
Fixes for accessibility tickets #821
Conversation
@@ -93,11 +93,15 @@ export class GuidePageChrome extends Component { | |||
} | |||
|
|||
renderSubSections = (subSections = []) => { | |||
if (subSections.length <= 1) { | |||
console.log(subSections); |
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.
remove console.log
@@ -32,6 +33,10 @@ export class EuiBottomBar extends Component { | |||
} | |||
} | |||
|
|||
handleScreenReaderFocus() { |
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.
Where/how is this used?
… aria labels depending upon ownFocus state
@chandlerprall sorry, still working on this one. should have attached WIP status to it. |
OK. I'm done on this one for the day. I think the |
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.
LGTM
Fixes #733
Fixes #734
Fixes #735
Fixes #621
Fixes #736
Fixes #728
Fixes #729
Fixes #723
Fixes #616
Fixes #687
Fixes #617
Fixes #746
Grab bag of accessibility fixes. The following changes were made.
EuiPagination
more friendly for screen readers.EuiSideNav
use menubar labeling. Of all the options (nav / tree...etc) it was the most agreeable with our current formatting.EuiPopover
whereownFocs
was required if it didn't wrap a context menu. MadeEuiPopover
use anaria-live
label to announce its contents if it isn't set (with the assumption that if it is, the SR will read what it focused).EuiBottomBar
now has some hidden SR text to announce itself.EuiBasicTable
now labels its checkboxes properly.