nice-modal-react
nice-modal-react copied to clipboard
A modal state manager for React.
I was wondering if there was a way to overlap the same modal over each other? I don't see a way to give the same modal a unique id? Like...
It is possible to use this library with React Native?
Hello! All of the modals in our app are based on MUI Dialogs, but we are unable to use the `muiDialog` function because it's passing the deprecated `onExited` prop. This...
Hi, so nice library! and this fix for https://github.com/eBay/nice-modal-react/issues/53 just in time (I've just updated to 1.2.4) Thank you! But could we do the same for **whole object returned** from...
When using rollup, a warning is shown: It leads to https://rollupjs.org/guide/en/#error-this-is-undefined Is there a way to prevent this error? No other packages in project produce errors or warnings.
Hey 👋 I'm currently using the [multi-level drawer](https://ant.design/components/drawer/#components-drawer-demo-multi-level-drawer) feature of ant drawer with nice modal, but I noticed the animation of a child drawer is weird, kind of too fast....
This PR fixes the default value of the `PreparedProps` generic type. The `PreparedProps` generic needs an object as a default value. Without the default value object, Typescript would set all...
Hello, thanks for this great tool, it's a joy to work with! When passing optional props to the registered modal component (and the component type passes a condition in type...
Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2. Release notes Sourced from express's releases. 4.19.2 What's Changed Improved fix for open redirect allow list bypass Full Changelog: https://github.com/expressjs/express/compare/4.19.1...4.19.2 4.19.1 What's Changed Fix...
We create and register a pop -up window ``` type MProps = { name: string, age: number, }; const M = NiceModal.create(({ name, age }) => ( {name}-{age} )); NiceModal.register('M_MODAL',...