2009-12-09 15:48:00 -05:00
|
|
|
module SimpleForm
|
2011-12-04 08:57:12 -05:00
|
|
|
# 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 circunstences 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
|
|
|
|
# hint can generate output automatically by doing I18n lookups.
|
2009-12-09 15:48:00 -05:00
|
|
|
module Components
|
2010-11-07 04:41:33 -05:00
|
|
|
autoload :Errors, 'simple_form/components/errors'
|
|
|
|
autoload :Hints, 'simple_form/components/hints'
|
2011-12-04 10:15:27 -05:00
|
|
|
autoload :HTML5, 'simple_form/components/html5'
|
2010-11-07 04:41:33 -05:00
|
|
|
autoload :LabelInput, 'simple_form/components/label_input'
|
|
|
|
autoload :Labels, 'simple_form/components/labels'
|
2011-12-04 10:31:13 -05:00
|
|
|
autoload :MinMax, 'simple_form/components/min_max'
|
2011-12-04 07:14:39 -05:00
|
|
|
autoload :Maxlength, 'simple_form/components/maxlength'
|
2011-12-04 07:40:00 -05:00
|
|
|
autoload :Pattern, 'simple_form/components/pattern'
|
2010-11-07 04:41:33 -05:00
|
|
|
autoload :Placeholders, 'simple_form/components/placeholders'
|
2011-12-04 20:41:54 -05:00
|
|
|
autoload :Readonly, 'simple_form/components/readonly'
|
2009-12-09 15:48:00 -05:00
|
|
|
end
|
2011-08-30 19:51:53 -04:00
|
|
|
end
|