1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/test/support/discovery_inputs.rb

59 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2011-04-27 15:26:02 -04:00
class StringInput < SimpleForm::Inputs::StringInput
def input(wrapper_options = nil)
2011-04-27 15:26:02 -04:00
"<section>#{super}</section>".html_safe
end
end
class NumericInput < SimpleForm::Inputs::NumericInput
def input(wrapper_options = nil)
2011-04-27 15:26:02 -04:00
"<section>#{super}</section>".html_safe
end
end
class CustomizedInput < SimpleForm::Inputs::StringInput
def input(wrapper_options = nil)
"<section>#{super}</section>".html_safe
end
def input_method
:text_field
end
end
class DeprecatedInput < SimpleForm::Inputs::StringInput
def input
2011-04-27 15:26:02 -04:00
"<section>#{super}</section>".html_safe
end
2011-09-08 09:28:28 -04:00
2011-04-27 15:26:02 -04:00
def input_method
:text_field
end
2011-09-08 09:28:28 -04:00
end
class CollectionSelectInput < SimpleForm::Inputs::CollectionSelectInput
def input_html_classes
super.push('chosen')
end
end
module CustomInputs
class CustomizedInput < SimpleForm::Inputs::StringInput
def input_html_classes
super.push('customized-namespace-custom-input')
end
end
class PasswordInput < SimpleForm::Inputs::PasswordInput
def input_html_classes
super.push('password-custom-input')
end
end
class NumericInput < SimpleForm::Inputs::PasswordInput
def input_html_classes
super.push('numeric-custom-input')
end
end
end