Module: StimulusPlumbers::Form::Fields::Inputs::TextArea

Included in:
Builder
Defined in:
lib/stimulus_plumbers/form/fields/inputs/text_area.rb

Instance Method Summary collapse

Instance Method Details

#text_area(attribute, floating: nil, **options) ⇒ Object



8
9
10
11
# File 'lib/stimulus_plumbers/form/fields/inputs/text_area.rb', line 8

def text_area(attribute, floating: nil, **options)
  html_options = merge_html_options(theme.resolve(:form_field_input_textarea, floating: floating), options)
  super(attribute, html_options)
end