Sha256: e86bd1cd5dea9e9481227bf45d57f8647cbb5898d3c1feb348e3cdda13af1ee4
Contents?: true
Size: 1.13 KB
Versions: 12
Compression:
Stored size: 1.13 KB
Contents
module Coprl module Presenters module DSL module Components module Mixins module TextFields def text_field(**attribs, &block) self << Components::TextField.new(parent: self, **attribs, &block) end def text_area(**attribs, &block) self << Components::TextArea.new(parent: self, **attribs, &block) end def hidden_field(**attribs, &block) self << Components::HiddenField.new(parent: self, **attribs, &block) end def rich_text_area(**attribs, &block) self << Components::RichTextArea.new(parent: self, **attribs, &block) end def number_field(**attribs, &block) self << Components::NumberField.new(parent: self, **attribs, &block) end end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems