Sha256: 6adb85d42d097b14e4c8bb44a5b2fd4f3285f1aa05cd6d1e0050114528b86bac
Contents?: true
Size: 457 Bytes
Versions: 12
Compression:
Stored size: 457 Bytes
Contents
module Coprl module Presenters module DSL module Components class TextArea < TextField attr_reader :rows, :cols def initialize(**attribs_, &block) super(type: :text_area, **attribs_, &block) @rows = attribs.delete(:rows) || default(:rows) @cols = attribs.delete(:cols) || default(:cols) unless full_width expand! end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems