DaisyUIComponents.Flash (DaisyUIComponents v0.9.3)
View SourceFlash component from Phoenix
Summary
Functions
Renders flash notices.
Examples
<.flash kind={:info} flash={@flash} />
<.flash kind={:info} phx-mounted={show("#flash")}>Welcome Back!</.flash>Attributes
id(:string) - the optional id of flash container.flash(:map) - the map of flash messages to display. Defaults to%{}.title(:string) - Defaults tonil.kind(:atom) - used for styling and flash lookup. Must be one of:info, or:error.class(:string) - Defaults tonil.direction(:atom) - Defaults to:top_right. Must be one of:top_left,:top_right,:bottom_left, or:bottom_right.- Global attributes are accepted. the arbitrary HTML attributes to add to the flash container.
Slots
inner_block- the optional inner block that renders the flash message.
Shows the flash group with standard titles and content.
Examples
<.flash_group flash={@flash} />Attributes
id(:string) - the optional id of flash container. Defaults to"flash-group".flash(:map) (required) - the map of flash messages.direction(:atom) - Defaults to:top_right. Must be one of:top_left,:top_right,:bottom_left, or:bottom_right.