Sha256: 50b2ef5bac8aeb4db5aac6ead42413fde75651704634b5a1ddfe2eed6399782e
Contents?: true
Size: 1.14 KB
Versions: 6
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true 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::ToastBody.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Notifications::ToastBody.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Notifications::ToastBody.new.render # # UiBibz::Ui::Core::Notifications::ToastBody.new do # 'Exemple' # end.render # class ToastBody < 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 content_tag :div, content, html_options end private def component_html_classes 'toast-body' end end end
Version data entries
6 entries across 6 versions & 1 rubygems