Sha256: e99d208e1429c81826154f55edeccd8d8b9764e6e5c4d0bf7390121e4643d21e

Contents?: true

Size: 1.98 KB

Versions: 38

Compression:

Stored size: 1.98 KB

Contents

module UiBibz::Ui::Core::Forms::Buttons

  # Create a button choice
  #
  # This element is an extend of UiBibz::Ui::Core::Forms::Buttons::Button
  #
  # ==== Attributes
  #
  # * +content+ - Content of element
  # * +options+ - Options of element
  # * +html_options+ - Html Options of element
  #
  # ==== Options
  #
  # You can add HTML attributes using the +html_options+.
  # You can pass arguments in options attribute:
  # * +type+ - Symbol (+:checkbox+, +:radio+)
  # * +status+ - status of élement with symbol value:
  #   (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+)
  # * +size+
  #   (+:xs+, +:sm+, +:lg+)
  # * +url+ - String url
  # * +outline+ - Boolean
  # * +state+ - Symbol (+:active+, +:disabled)
  # * +type+ - Symbol (+:block)
  # * +name+ - String name of input checkbox
  # * +id+ - String id of input checkbox
  # * +input_html_options+ - Hash of input html options
  # * +glyph+ - Add glyph with name or hash options
  #   * +name+ - String
  #   * +size+ - Integer
  #   * +type+ - Symbol
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Forms::Buttons::Choice.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Forms::Buttons::Choice.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Forms::Buttons::Choice.new('test', state: :active)
  #
  #   UiBibz::Ui::Core::Forms::Buttons::Choice.new({id: 'state', input_html_options: { class: 'state'}}, { class: 'lable-class'}) do
  #     test
  #   end.render
  #
  # ==== Helper
  #
  #   choice(content, options = {}, html_options = {})
  #
  #   choice(options = {}, html_options = {}) do
  #     content
  #   end
  #
  class ButtonGroupDropdown < UiBibz::Ui::Core::Forms::Dropdowns::Dropdown

    # See UiBibz::Ui::Core::Forms::Buttons::Button.initialize
    def initialize content = nil, options = nil, html_options = nil, &block
      super
    end

    private

    def component_html_classes
      super << "btn-group"
    end

  end
end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
ui_bibz-2.4.0 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.15 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.14 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.13 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.12 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.11 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.10 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.9 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.8 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.7 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.6 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.5 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.4 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.3 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.2 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.1 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.3.0 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.2.2 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.2.1 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb
ui_bibz-2.2.0 lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb