![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@invisionag/iris-react-a11y
Advanced tools
```js import {withFocus, withKeyboardHandlers} from '@invisionag/iris-react-a11y'; ```
import {withFocus, withKeyboardHandlers} from '@invisionag/iris-react-a11y';
A collection of higher-order-components aiming to improve usability and accessability of our components.
the withFocus
hoc takes care of setting a prop hasFocus
on the component passed to it. This prop will be true
if the element is currently focused, and false
if its not. You can use it to set the appropriate styling.
There are multiple benefits to using this hoc instead of :focus
selectors:
.my-component:focus .my-child {}
withFocus
hoc removes focus styling when an element was clicked with the mouseExample:
import {withFocus} from '@invisionag/iris-react-a11y';
const Component = ({ hasFocus, ...props }) => <div style={{ color: hasFocus ? 'red' : 'blue'}} {...props}>Lorem</div>
const FocusableComponent = withFocus(Component);
class App extends React.Component{
render() {
return <FocusableComponent />
}
}
The withKeyboardHandlers
hoc listens to keydown / keyup events on the component and triggers mousedown / mouseup & click events on the passed component respectively.
This makes it easier to implement keyboard navigation of interactable ui elements.
Example:
import {withKeyboardHandlers} from '@invisionag/iris-react-a11y';
const Component = props => <div {...props}>Lorem</div>
const KeyboardInteractableComponent = withKeyboardHandlers(Component);
class App extends React.Component{
render() {
// enter and space keyup while focused will trigger onClick handler
return <KeyboardInteractableComponent onClick={console.log}/>
}
}
FAQs
```js import {withFocus, withKeyboardHandlers} from '@invisionag/iris-react-a11y'; ```
The npm package @invisionag/iris-react-a11y receives a total of 10 weekly downloads. As such, @invisionag/iris-react-a11y popularity was classified as not popular.
We found that @invisionag/iris-react-a11y demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 22 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.