FluidTopicsNotificationService allows designers to notify users of an action.
The three following methods create the following notifications:
info()warn()error()
For example:
FluidTopicsNotificationService.info("This is an information notification!")
FluidTopicsNotificationService.warn("This is a warning notification!")
FluidTopicsNotificationService.error("This is an error notification!")
The aria() method creates a notification for screen readers. The notification has an aria-live="polite" attribute: the screen reader reads the message when the user finishes their current activity, without interrupting them.
For example:
FluidTopicsNotificationService.aria("This is an ARIA notification!")