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