Sha256: 3380f741908c573a4c9577ab3debfa5bf8242f19e764fbb8c298eea2b011b25c

Contents?: true

Size: 1.04 KB

Versions: 42

Compression:

Stored size: 1.04 KB

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)
    if tapped?(block)
      UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options).tap(&block).render
    else
      UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options, &block).render
    end
  end

  # Col Component
  #
  # +options+ (Hash)
  # +html_options+ (Hash)
  def ui_col(content = nil, options = nil, html_options = nil, &block)
    if tapped?(block)
      UiBibz::Ui::Core::Layouts::Col.new(content, options, html_options).tap(&block).render
    else
      UiBibz::Ui::Core::Layouts::Col.new(content, options, html_options, &block).render
    end
  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

42 entries across 42 versions & 1 rubygems

Version Path
ui_bibz-3.0.13 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.12 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.11 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.10 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.9 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.8 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.7 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.6 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.5 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.4 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.3 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.2 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.1 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.0 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.0.beta19 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.0.beta18 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.0.beta17 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.0.beta16 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.0.beta15 lib/ui_bibz/helpers/ui/core/layouts_helper.rb
ui_bibz-3.0.0.beta14 lib/ui_bibz/helpers/ui/core/layouts_helper.rb