Sha256: 85ba60c8d2bf5f962b6493316995bf78327791805aacf361ba3c9a370da2a014
Contents?: true
Size: 393 Bytes
Versions: 12
Compression:
Stored size: 393 Bytes
Contents
module Coprl module Presenters module DSL module Components class Checkbox < ToggleBase attr_accessor :indeterminate def initialize(**attribs_, &block) super(type: :checkbox, **attribs_, &block) @indeterminate = attribs.delete(:indeterminate) { false } expand! end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems