Sha256: 22fff066b167da789c13a108513a30f6ced13490431e6452315a30187740b2be
Contents?: true
Size: 1.05 KB
Versions: 48
Compression:
Stored size: 1.05 KB
Contents
# frozen_string_literal: true module UiBibz::Ui::Ux::Containers::Components # Create a panel header # # ==== 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::Boxes::PanelHeader.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::CarHeader.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::PanelHeader.new.render # # UiBibz::Ui::Core::Boxes::PanelHeader.new do # 'Exemple' # end.render # class PanelHeaderTitle < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize # Render html tag def pre_render content_tag :div, @content, html_options end private def component_html_classes 'panel-title' end end end
Version data entries
48 entries across 48 versions & 1 rubygems