
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-bounded-draggable-modal
Advanced tools
A draggable modal component with boundary support for React and Next.js
A draggable modal component with boundary support for React and Next.js.
npm install react-bounded-draggable-modal
or
yarn add react-bounded-draggable-modal
import React, { useState } from "react";
import Modal from "react-bounded-draggable-modal";
const App = () => {
const [isOpen, setIsOpen] = useState(false);
const handleOutsideClick = () => {
setIsOpen(false);
};
return (
<div>
<button onClick={() => setIsOpen(true)}>Open Modal</button>
<Modal
isOpen={isOpen}
onOutsideClick={handleOutsideClick}
header={<div>Modal Header</div>}
classNames={{
modal: "custom-modal",
header: "custom-header",
body: "custom-body",
}}
>
<div>Modal Content</div>
</Modal>
</div>
);
};
export default App;
| Name | Type | Description |
|---|---|---|
isOpen | boolean | Whether the modal is open or not. |
onOutsideClick | () => void | Function to handle clicks outside the modal. |
header | React.ReactNode | Content to be displayed in the modal header. |
children | React.ReactNode | Content to be displayed in the modal body. |
classNames | ClassNames | Optional class names for modal, header, and body. |
| Name | Type | Description |
|---|---|---|
modal | string | Class name for the modal container. |
header | string | Class name for the modal header. |
body | string | Class name for the modal body. |
MIT
FAQs
A draggable modal component with boundary support for React and Next.js
We found that react-bounded-draggable-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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.