Sha256: 856e3eccccf00aa40cfb7d76621eb1c3fc2c15d7ab9e427ff7eff230a0693317

Contents?: true

Size: 1.92 KB

Versions: 53

Compression:

Stored size: 1.92 KB

Contents

# frozen_string_literal: true

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 element 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 ButtonGroupSplitDropdown < UiBibz::Ui::Core::Forms::Dropdowns::SplitDropdown
    # See UiBibz::Ui::Core::Forms::Buttons::Button.initialize

    private

    def component_html_classes
      super << 'btn-group'
    end
  end
end

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
ui_bibz-4.0.0.beta16 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta15 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta14 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta13 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta10 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta9 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta8 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta7 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta6 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta4 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-4.0.0.beta3 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.13 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.12 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.11 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.10 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.9 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.8 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.7 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.6 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb
ui_bibz-3.0.5 lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb