Sha256: 9045be02e0d7464f1be86128427dc3a65abb97594ecc6c18fb528075a4006174
Contents?: true
Size: 941 Bytes
Versions: 55
Compression:
Stored size: 941 Bytes
Contents
# frozen_string_literal: true module UiBibz::Ui::Ux::Containers::Components # Create a card 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::Boxes::PanelBody.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::PanelBody.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::PanelBody.new.render # # UiBibz::Ui::Core::Boxes::PanelBody.new do # 'Exemple' # end.render # class PanelTabGroup < UiBibz::Ui::Core::Navigations::TabGroup private def component_html_classes super << 'panel-header-tabs' end end end
Version data entries
55 entries across 55 versions & 1 rubygems