Sha256: 856c5664f7d03d64b1e724fae076a8e52cfaec7859210eeb0ed0a9e29d9bd1a6

Contents?: true

Size: 1.29 KB

Versions: 34

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Forms::Choices
  # Create a SurroundField
  #
  # This element is an extend of UiBibz::Ui::Core::Component.
  # Source : http://www.bootstrap-switch.org/documentation-2.html
  # ==== 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:
  # * +state+ - Symbol
  #   (+:active+, +:disabled+)
  # * +inline+ - Boolean
  # * +checked+ - Boolean
  # * +action+ - String Stimulus Option
  # * +label+ - String
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Forms::SwithField.new(content, options = {}, html_options = {}).render
  #
  #   UiBibz::Ui::Core::Forms::SwithField.new(options = {}, html_options = {}) do
  #     content
  #   end.render
  #
  # ==== Examples
  #
  #   ui_switch_field 'name', checked: true
  #
  # ==== Helper
  #
  #   ui_switch_field(options = {}, html_options = {}) do
  #    # content
  #   end
  #
  class SwitchField < UiBibz::Ui::Core::Forms::Choices::CheckboxField
    private

    def component_options
      { boolean: true }
    end

    def wrapper_classes
      %w[form-check form-switch]
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
ui_bibz-4.0.0.beta18 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta17 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta16 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta15 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta14 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta13 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta10 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta9 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta8 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta7 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta6 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta4 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-4.0.0.beta3 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-3.0.13 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-3.0.12 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-3.0.11 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-3.0.10 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-3.0.9 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-3.0.8 lib/ui_bibz/ui/core/forms/choices/switch_field.rb
ui_bibz-3.0.7 lib/ui_bibz/ui/core/forms/choices/switch_field.rb