Sha256: a44d1026851295d954675f09ca722fafe7752200390914b949ef97514bbdc10d
Contents?: true
Size: 799 Bytes
Versions: 6
Compression:
Stored size: 799 Bytes
Contents
# frozen_string_literal: true module UiBibz::Helpers::Ui::Core::LayoutsHelper # Row Component # # +options+ (Hash) # +html_options+ (Hash) def ui_row(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options, &block).render end # Col Component # # +options+ (Hash) # +html_options+ (Hash) def ui_col(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Layouts::Col.new(content, options, html_options, &block).render end # Container Component # # +options+ (Hash) # +html_options+ (Hash) def ui_container(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Layouts::Container.new(content, options, html_options, &block).render end end
Version data entries
6 entries across 6 versions & 1 rubygems