heartcombo--simple_form/lib/simple_form/components.rb

21 lines
1.1 KiB
Ruby
Raw Normal View History

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
2011-12-10 17:55:27 +00:00
# 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
2011-12-10 17:55:27 +00:00
# hints can generate output automatically by doing I18n lookups.
module Components
autoload :Errors, 'simple_form/components/errors'
autoload :Hints, 'simple_form/components/hints'
2011-12-04 15:15:27 +00:00
autoload :HTML5, 'simple_form/components/html5'
autoload :LabelInput, 'simple_form/components/label_input'
autoload :Labels, 'simple_form/components/labels'
2011-12-04 15:31:13 +00:00
autoload :MinMax, 'simple_form/components/min_max'
2011-12-04 12:14:39 +00:00
autoload :Maxlength, 'simple_form/components/maxlength'
2011-12-04 12:40:00 +00:00
autoload :Pattern, 'simple_form/components/pattern'
autoload :Placeholders, 'simple_form/components/placeholders'
2011-12-05 01:41:54 +00:00
autoload :Readonly, 'simple_form/components/readonly'
end
end