
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@dotmind/react-modals
Advanced tools
Create quickly and easily modals for React. Builded by dotmind.io
React Modals is a tool to quickly generate modals
Create quickly and easily modals for React. Builded by dotmind.io If youβre familiar with the basics of React, you will know that because of its structure you can face some serious CSS issues when you need to show a modal. With this package you can :
Let's code π.
If you use React < 18, please use version 2.0.2 (React 18 changelog)
Version 2.0.3+ require React 18+
yarn add @dotmind/react-modals
or
npm i @dotmind/react-modals
import React, { useCallback, useState } from 'react';
import Modal from '@dotmind/react-modals';
const App: React.FC = () => {
const [modalOpen, setModalOpen] = useState(false);
const handleChangeModal = useCallback(() => {
setModalOpen((prevState) => !prevState);
}, [setModalOpen]);
return (
<div>
<h1>Test react modal</h1>
<button onClick={handleChangeModal}>Click me !</button>
<Modal
modalOpen={modalOpen}
onClose={handleChangeModal}
containerZIndex={9999}
>
<h1>This is modal content</h1>
<p>You can put your html here, have fun !</p>
</Modal>
</div>
);
};
props | description | required | type |
---|---|---|---|
modalOpen | Modal state | true | boolean |
onClose | Close modal function | true | () => void |
children | Modal content | true | ReactNode |
containerZIndex | Add custom z-index to container | false | number |
closeButtonElement | Modify close button element | false | ReactElement or string |
closeButtonClassName | Add custom class on close button | false | string |
containerClassName | Add custom class on container | false | string |
contentClassName | Add custom class on content | false | string |
closeOnClickOutside | Close modal on click outside | false | boolean |
showCloseButton | Hide or show button button | false | boolean |
withShadow | Add default box shadow | false | boolean |
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Create quickly and easily modals for React. Builded by dotmind.io
The npm package @dotmind/react-modals receives a total of 27 weekly downloads. As such, @dotmind/react-modals popularity was classified as not popular.
We found that @dotmind/react-modals demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Β It has 5 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.