Sha256: 970a24c9f06da889901f3331793ac489e23db208f06c298de89f34fdb8729f88
Contents?: true
Size: 1.13 KB
Versions: 37
Compression:
Stored size: 1.13 KB
Contents
module UiBibz::Ui::Core::Notifications::Components # Create a alert body # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # # ==== Signatures # # UiBibz::Ui::Core::Notifications::AlertBody.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Notifications::AlertBody.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Notifications::AlertBody.new.render # # UiBibz::Ui::Core::Notifications::AlertBody.new do # 'Exemple' # end.render # class AlertBody < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize def initialize content = nil, options = nil, html_options = nil, &block super end def pre_render tag(:hr) + content_tag(:p, content, html_options) end private def component_html_classes "alert-body mb-0" end end end
Version data entries
37 entries across 37 versions & 1 rubygems