
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
React Hook for making modal accessible.
Using yarn:
$ yarn add hook-modal
Using npm:
$ npm install hook-modal
import { createPortal } from "react-dom";
import { useModal } from "hook-modal";
import classes from "./Modal.module.css";
const Modal = ({
isOpen,
onClose,
"aria-labelledby": ariaLabelledby,
"aria-describedby": ariaDescribedby,
children,
}) => {
const props = useModal({ isOpen, onClose });
if (!isOpen) {
return null;
}
return createPortal(
<div className={classes.overlay}>
<div
{...props}
aria-labelledby={ariaLabelledby}
aria-describedby={ariaDescribedby}
className={classes.content}
>
{children}
</div>
</div>,
document.body,
);
};
name | type | required | description | default |
---|---|---|---|---|
isOpen | boolean | required | Set to true if the modal is open | - |
onClose | () => void | required | Callback function to close the modal | - |
closeOnEsc | boolean | optional | If true , close the modal on Esc key pressed | true |
closeOnOutsideClick | boolean | optional | If true , close the modal on outside clicked | true |
role="dialog"
and aria-modal="true"
attributes to modal elementaria-hidden="true"
MIT
FAQs
React Hooks for building accessible modal
We found that hook-modal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.