mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
86ac74458c
Closes #478
23 lines
578 B
Ruby
23 lines
578 B
Ruby
module SimpleForm
|
|
module Inputs
|
|
extend ActiveSupport::Autoload
|
|
|
|
autoload :Base
|
|
autoload :BlockInput
|
|
autoload :BooleanInput
|
|
autoload :CollectionCheckBoxesInput
|
|
autoload :CollectionInput
|
|
autoload :CollectionRadioButtonsInput
|
|
autoload :CollectionSelectInput
|
|
autoload :DateTimeInput
|
|
autoload :FileInput
|
|
autoload :GroupedCollectionSelectInput
|
|
autoload :HiddenInput
|
|
autoload :NumericInput
|
|
autoload :PasswordInput
|
|
autoload :PriorityInput
|
|
autoload :RangeInput
|
|
autoload :StringInput
|
|
autoload :TextInput
|
|
end
|
|
end
|