Sha256: 875e8eca28e54fca5dfd53adf97839b74bfb23bfaa4ac3f51dfd9d0c985db257

Contents?: true

Size: 560 Bytes

Versions: 11

Compression:

Stored size: 560 Bytes

Contents

# frozen_string_literal: true

module UiBibz::Helpers::Ui::Core::WindowsHelper
  # Modal Component
  #
  # +options+ (Hash)
  # +html_options+ (Hash)
  def ui_modal(content = nil, options = nil, html_options = nil, &)
    UiBibz::Ui::Core::Windows::Modal.new(content, options, html_options).tap(&).render
  end

  # Offcanvas Component
  #
  # +options+ (Hash)
  # +html_options+ (Hash)
  def ui_offcanvas(content = nil, options = nil, html_options = nil, &)
    UiBibz::Ui::Core::Windows::Offcanvas.new(content, options, html_options).tap(&).render
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ui_bibz-4.0.0.beta16 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta15 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta14 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta13 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta10 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta9 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta8 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta7 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta6 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta4 lib/ui_bibz/helpers/ui/core/windows_helper.rb
ui_bibz-4.0.0.beta3 lib/ui_bibz/helpers/ui/core/windows_helper.rb