Hey you like my work? Consider sponsoring me
Menu
Material-React-Toastify
GitHub
Material-React-Toastify
  • GitHub
  • Getting Started
    • Introduction
    • Installation
    • The gist of material-react-toastify
    • Release notes
  • Usage
    • Positioning toast
    • Handling autoClose
    • Render more than string
    • Remove toast programmatically
    • Pause toast timer when the window loses focus
    • Use a custom id
    • Prevent duplicate
    • Delay notification appearance
    • Limit the number of toast displayed
    • Use a controlled progress bar
    • Update a toast
    • Define callback
    • Listen for changes
    • Use a custom close button or remove it
    • Add an undo action to a toast (like Google Drive)
    • Usage with redux
    • Replace the default transition
    • Define a custom enter and exit transition
    • Drag to remove
    • Enable right to left support
    • Accessibility
    • Lazy container and multi-container
    • How to style
    • Dispatch toast outside of react component
  • API Reference
    • ToastContainer
    • toast
    • cssTransition
    • collapseToast
    • useToastContainer
    • useToast

Accessibility

By default, all toasts are diplayed with the ARIA role alert. This can be changed globally or per toast.

  • Globally
<ToastContainer role="alert" />
  • Per toast
toast("hello", {
role: "alert"
})

Refer to https://www.w3.org/WAI/PF/aria/roles for more information.

Edit this page
Previous
« Enable right to left support
Next
Lazy container and multi-container »
Copyright © 2020 Fadi Khadra