react-redux-toastr icon indicating copy to clipboard operation
react-redux-toastr copied to clipboard

react-redux-toastr is a toastr message implemented with Redux

Results 10 react-redux-toastr issues
Sort by recently updated
recently updated
newest added
trafficstars

React 18 and react-redux 8 are out now. It would be great if the peer dependencies list could be updated to include support for these versions :-)

Hi on our application we are using two instances of a toastr component. One of them is global and is instantiated straight away in the root component. But our users...

We have the ReduxToastr component at the root of our app with `preventDuplicates` props set to true: ``` ``` We fire toastr add action (by using a `@ReduxToastr/toastr/ADD` type Redux...

bug

From the docs, I saw that the "confirm" type of toaster message caters for closing the toaster on ESC: ``` Toastr: confirm The confirm method takes two arguments. The first...

Prefers 3rd param over 2nd as described in #234.

https://github.com/diegoddox/react-redux-toastr/blob/fc90e35c421b05cf782c2b5091c16a345a57541b/src/utils.js#L69 This line results in incorrect results. When trying to pass a React component as part of the `options` parameter like so: ```ts toastr.error("Error", null, { component: test }) ```...

This makes it possible to use react-redux-toastr with React 18's [``](https://react.dev/reference/react/StrictMode).

Else please add documentation to how I can customize the default Ok button to change its css inorder to match all other buttons in on my site.

Styles can be improve for the toasts to look more promising

If I have one confirm and I fire another it isn`t ignored. New one rewrites message but doesn`t touch custom okText. E.G. ```javascript toastr.confirm("111111", { okText: "1111111" } ); setTimeout(()...