Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@netojose/react-modal
Advanced tools
https://codesandbox.io/s/react-modal-example-3km0w
npm i @netojose/react-modal
or
yarn add @netojose/react-modal
import React, { useState, useCallback } from 'react'
import Modal from '@netojose/react-modal'
function App() {
const [isOpen, setIsOpen] = useState(false)
const openModal = useCallback(() => setIsOpen(true), [])
const closeModal = useCallback(() => setIsOpen(false), [])
return (
<div>
<input type="button" value="Open modal" onClick={openModal} />
<Modal isOpen={isOpen} onRequestClose={closeModal}>
<p>This is the modal content</p>
<input type="button" value="Close modal" onClick={closeModal} />
</Modal>
</div>
)
}
export default App
prop | Description | type | default value | required |
---|---|---|---|---|
isOpen | Flag to render or not the modal | boolean | false | Yes |
ariaLabelledby | aria-labelledby modal attribute | string | null | No |
ariaDescribedby | aria-describedby modal attribute | string | null | No |
onAfterOpen | Callback after modal open | function | () => null | No |
onAfterClose | Callback after modal close | function | () => null | No |
onRequestClose | Callback when a close modal action is triggered | function | () => null | No |
closeOnOverlayClick | Flag to request close modal on overlay click | boolean | true | No |
closeOnEsc | Flag to request close modal on press esc key | boolean | true | No |
focusAfterRender | Flag to modal should be focused after render | boolean | true | No |
portalClassName | Portal div class name | string | ReactModal__Portal | No |
overlayClassName | Overlay div class name | string | ReactModal__Overlay | No |
modalClassName | Modal div class name | string | ReactModal__Modal | No |
overlayStyles | Extra overlay styles | object | {} | No |
modalStyles | Extra modal styles | object | {} | No |
container | Query selector to append portal | string | body | No |
FAQs
A lightweight dialog component for React
We found that @netojose/react-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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.