HospitalRun / components

Reusable React components used by HospitalRun
https://components.hospitalrun.io
MIT License
121 stars 182 forks source link

chore(deps): bump react-toastify from 5.5.0 to 8.0.1 #833

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps react-toastify from 5.5.0 to 8.0.1.

Release notes

Sourced from react-toastify's releases.

v8.0.1

Release notes

Features

  • toast.promise accept function that returns a promise.

v8.0.0

React-toastify has been around for 5 years(will turn five the 8 November 🎂). Since the beginning, one of the goals was to provide a library that is highly customizable and also able to work out of the box. Every major release introduces breaking changes but this is for the best 👌.

React toastify

🚀 Features

New look

Notifications of different types (toast.info, toast.error, toast.success, toast.warning) display an icon associated with the selected type. You can also notice that the progress bar color matches the type color.

Don't be afraid 😱, if you don't like those icons you can use your own or remove them. This is what it looks like in practice.

toast("Default toast behavior is untouched, no icon to display");
toast.info("Lorem ipsum dolor"); // same as toast(message, {type: "info"});
toast.error("Lorem ipsum dolor")
toast.success("Lorem ipsum dolor")
toast.warn("Lorem ipsum dolor")
toast.error("Without icon", {
  icon: false
});
toast.success("You can provide any string", {
  icon: "🚀"
});
// custom icons have access to the theme and the toast type
toast.success("And of course a component of your choice", {
  icon: MyIcon
});
toast.success("Even a function, given you return something that can be rendered", {
  icon: ({theme, type}) =>  <img src="url"/>
});
//Disable icons
<ToastContainer icon={false} />

Clear separation between type and theme

... (truncated)

Commits
  • bcb129e 8.0.1
  • a38fde4 toast.promise accept function
  • f154fdd 8.0.0
  • 5a0ed41 Merge pull request #631 from fkhadra/dependabot/npm_and_yarn/example/color-st...
  • a7884c4 Merge pull request #632 from fkhadra/dependabot/npm_and_yarn/lodash-4.17.21
  • 71e3583 Merge pull request #633 from fkhadra/dependabot/npm_and_yarn/example/ws-5.2.3
  • 1e675f9 Merge pull request #634 from fkhadra/dependabot/npm_and_yarn/glob-parent-5.1.2
  • b3fb2da Bump ws from 5.2.2 to 5.2.3 in /example
  • 2ce0629 Bump lodash from 4.17.20 to 4.17.21
  • 2fbfcc7 Bump color-string from 1.5.3 to 1.6.0 in /example
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 3 years ago

Superseded by #835.