Skip to content

Commit

Permalink
[Fix] no-aria-hidden-on-focusable rule's missing export
Browse files Browse the repository at this point in the history
  • Loading branch information
EvHaus committed Jan 12, 2023
1 parent 136ced7 commit b01219e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -145,6 +145,7 @@ configuration file by mapping each custom component name to a DOM element type.
| [media-has-caption](docs/rules/media-has-caption.md) | Enforces that `<audio>` and `<video>` elements must have a `<track>` for captions. | ☑️ 🔒 | | |
| [mouse-events-have-key-events](docs/rules/mouse-events-have-key-events.md) | Enforce that `onMouseOver`/`onMouseOut` are accompanied by `onFocus`/`onBlur` for keyboard-only users. | ☑️ 🔒 | | |
| [no-access-key](docs/rules/no-access-key.md) | Enforce that the `accessKey` prop is not used on any element to avoid complications with keyboard commands used by a screenreader. | ☑️ 🔒 | | |
| [no-aria-hidden-on-focusable](docs/rules/no-aria-hidden-on-focusable.md) | Disallow `aria-hidden="true"` from being set on focusable elements. | | | |
| [no-autofocus](docs/rules/no-autofocus.md) | Enforce autoFocus prop is not used. | ☑️ 🔒 | | |
| [no-distracting-elements](docs/rules/no-distracting-elements.md) | Enforce distracting elements are not used. | ☑️ 🔒 | | |
| [no-interactive-element-to-noninteractive-role](docs/rules/no-interactive-element-to-noninteractive-role.md) | Interactive elements should not be assigned non-interactive roles. | ☑️ 🔒 | | |
Expand Down
4 changes: 3 additions & 1 deletion docs/rules/no-aria-hidden-on-focusable.md
@@ -1,4 +1,6 @@
# no-aria-hidden-on-focusable
# jsx-a11y/no-aria-hidden-on-focusable

<!-- end auto-generated rule header -->

Enforce that `aria-hidden="true"` is not set on focusable elements.

Expand Down
1 change: 1 addition & 0 deletions src/index.js
Expand Up @@ -26,6 +26,7 @@ module.exports = {
'media-has-caption': require('./rules/media-has-caption'),
'mouse-events-have-key-events': require('./rules/mouse-events-have-key-events'),
'no-access-key': require('./rules/no-access-key'),
'no-aria-hidden-on-focusable': require('./rules/no-aria-hidden-on-focusable'),
'no-autofocus': require('./rules/no-autofocus'),
'no-distracting-elements': require('./rules/no-distracting-elements'),
'no-interactive-element-to-noninteractive-role': require('./rules/no-interactive-element-to-noninteractive-role'),
Expand Down

0 comments on commit b01219e

Please sign in to comment.