Class: Voom::Presenters::DSL::Components::TimeField
- Inherits:
-
DatetimeBase
- Object
- Base
- EventBase
- Input
- TextField
- DatetimeBase
- Voom::Presenters::DSL::Components::TimeField
- Defined in:
- lib/voom/presenters/dsl/components/time_field.rb
Constant Summary
Constants inherited from TextField
Voom::Presenters::DSL::Components::TextField::VALID_CASE_TYPES
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
Attributes inherited from DatetimeBase
Attributes inherited from TextField
#auto_complete, #behavior, #case_type, #full_width, #required
Attributes inherited from Input
Attributes inherited from EventBase
Attributes included from Mixins::Event
Attributes inherited from Base
#attributes, #css_class, #draggable, #drop_zone, #id, #tag, #type
Instance Method Summary collapse
-
#initialize(**attribs_, &block) ⇒ TimeField
constructor
A new instance of TimeField.
Methods inherited from DatetimeBase
Methods inherited from TextField
#hint, #icon, #label, #pattern, #value
Methods inherited from Input
Methods included from Mixins::Tooltips
Methods included from Mixins::Event
Methods inherited from Base
Methods included from Pluggable
#include_plugins, #plugin, #plugin_module
Methods included from Mixins::YieldTo
Methods included from Serializer
Methods included from Lockable
Constructor Details
#initialize(**attribs_, &block) ⇒ TimeField
Returns a new instance of TimeField.
8 9 10 11 12 13 14 15 |
# File 'lib/voom/presenters/dsl/components/time_field.rb', line 8 def initialize(**attribs_, &block) super(type: :time, **attribs_, &block) map_config(:min_time, :min_date) map_config(:max_time, :max_date) merge_config(:time_24hr, true) end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
6 7 8 |
# File 'lib/voom/presenters/dsl/components/time_field.rb', line 6 def config @config end |