Sha256: fdcb15467c6eef6076d493ae06cc774d55ea654241fde629b9455ebb68cf514a
Contents?: true
Size: 1.13 KB
Versions: 6
Compression:
Stored size: 1.13 KB
Contents
module Voom 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
6 entries across 6 versions & 1 rubygems