Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
31 lines
1016 B
Markdown
31 lines
1016 B
Markdown
# jsx-a11y/accessible-emoji
|
|
|
|
❌ This rule is deprecated.
|
|
|
|
<!-- end auto-generated rule header -->
|
|
|
|
Emoji have become a common way of communicating content to the end user. To a person using a screen reader, however, they may not be aware that this content is there at all. By wrapping the emoji in a `<span>`, giving it the `role="img"`, and providing a useful description in `aria-label`, the screen reader will treat the emoji as an image in the accessibility tree with an accessible name for the end user.
|
|
|
|
## Rule details
|
|
|
|
This rule takes no arguments.
|
|
|
|
### Succeed
|
|
```jsx
|
|
<span role="img" aria-label="Snowman">☃</span>
|
|
<span role="img" aria-label="Panda">🐼</span>
|
|
<span role="img" aria-labelledby="panda1">🐼</span>
|
|
```
|
|
|
|
### Fail
|
|
```jsx
|
|
<span>🐼</span>
|
|
<i role="img" aria-label="Panda">🐼</i>
|
|
```
|
|
|
|
## Accessibility guidelines
|
|
- [WCAG 1.1.1](https://www.w3.org/WAI/WCAG21/Understanding/non-text-content.html)
|
|
|
|
### Resources
|
|
- [Léonie Watson, Accessible Emoji](https://tink.uk/accessible-emoji/)
|