Sha256: e6f3fe5a27662be1fe82e3e2fa39ee12421d437234d0d02884e212146a9eabb7

Contents?: true

Size: 728 Bytes

Versions: 16

Compression:

Stored size: 728 Bytes

Contents

module SimpleForm
  # Components are a special type of helpers that can work on their own.
  # For example, by using a component, it will automatically change the
  # output under given circumstances without user input. For example,
  # the disabled helper always need a disabled: true option given
  # to the input in order to be enabled. On the other hand, things like
  # hints can generate output automatically by doing I18n lookups.
  module Components
    extend ActiveSupport::Autoload

    autoload :Errors
    autoload :Hints
    autoload :HTML5
    autoload :LabelInput
    autoload :Labels
    autoload :MinMax
    autoload :Maxlength
    autoload :Pattern
    autoload :Placeholders
    autoload :Readonly
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
simple_form-3.3.1 lib/simple_form/components.rb
simple_form-3.3.0 lib/simple_form/components.rb
simple_form-3.2.1 lib/simple_form/components.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/simple_form-3.2.0/lib/simple_form/components.rb
simple_form-3.2.0 lib/simple_form/components.rb
simple_form-3.1.1 lib/simple_form/components.rb
simple_form-3.0.4 lib/simple_form/components.rb
simple_form-3.0.3 lib/simple_form/components.rb
simple_form-3.1.0 lib/simple_form/components.rb
simple_form-3.1.0.rc2 lib/simple_form/components.rb
simple_form-3.1.0.rc1 lib/simple_form/components.rb
simple_form-3.0.2 lib/simple_form/components.rb
simple_form-3.0.1 lib/simple_form/components.rb
simple_form-3.0.0 lib/simple_form/components.rb
simple_form-3.0.0.rc lib/simple_form/components.rb
simple_form-3.0.0.beta1 lib/simple_form/components.rb