mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
20 lines
1.1 KiB
Ruby
20 lines
1.1 KiB
Ruby
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
|
|
autoload :Errors, 'simple_form/components/errors'
|
|
autoload :Hints, 'simple_form/components/hints'
|
|
autoload :HTML5, 'simple_form/components/html5'
|
|
autoload :LabelInput, 'simple_form/components/label_input'
|
|
autoload :Labels, 'simple_form/components/labels'
|
|
autoload :MinMax, 'simple_form/components/min_max'
|
|
autoload :Maxlength, 'simple_form/components/maxlength'
|
|
autoload :Pattern, 'simple_form/components/pattern'
|
|
autoload :Placeholders, 'simple_form/components/placeholders'
|
|
autoload :Readonly, 'simple_form/components/readonly'
|
|
end
|
|
end
|