Sha256: 29a5b4bb7477c798b967fac4dffe745adc073d76a4086dac865925f54e156010

Contents?: true

Size: 779 Bytes

Versions: 6

Compression:

Stored size: 779 Bytes

Contents

module UiBibz::Helpers::Ui::Core::NavsHelper

  # Nav Component
  #
  # +options+ (Hash)
  # +html_options+ (Hash)
  def ui_nav content = nil, options = nil, html_options = nil, &block
    UiBibz::Ui::Core::Navs::Nav.new(content, options, html_options).tap(&block).render
  end

  # Navbar Component
  #
  # +options+ (Hash)
  # +html_options+ (Hash)
  def ui_navbar content = nil, options = nil, html_options = nil, &block
    UiBibz::Ui::Core::Navs::Navbar.new(content, options, html_options).tap(&block).render
  end

  # Pagination Component
  #
  # +options+ (Hash)
  # +html_options+ (Hash)
  def ui_pagination content = nil, options = nil, html_options = nil, &block
    UiBibz::Ui::Core::Navs::Pagination.new(content, options, html_options).tap(&block).render
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ui_bibz-2.0.0.beta2.5 lib/ui_bibz/helpers/ui/core/navs_helper.rb
ui_bibz-2.0.0.beta2.4 lib/ui_bibz/helpers/ui/core/navs_helper.rb
ui_bibz-2.0.0.beta2.3 lib/ui_bibz/helpers/ui/core/navs_helper.rb
ui_bibz-2.0.0.beta2.2 lib/ui_bibz/helpers/ui/core/navs_helper.rb
ui_bibz-2.0.0.beta2.1 lib/ui_bibz/helpers/ui/core/navs_helper.rb
ui_bibz-2.0.0.beta2 lib/ui_bibz/helpers/ui/core/navs_helper.rb