Module: Voom::Presenters::DSL::Components::Mixins::Selects
- Included in:
- Card, Content, Form, Grid::Column, Table::Row::Column
- Defined in:
- lib/voom/presenters/dsl/components/mixins/selects.rb
Instance Method Summary collapse
Instance Method Details
#multi_select(**attribs, &block) ⇒ Object
12 13 14 15 |
# File 'lib/voom/presenters/dsl/components/mixins/selects.rb', line 12 def multi_select(**attribs, &block) self << Components::MultiSelect.new(parent: self, **attribs, &block) end |
#select(**attribs, &block) ⇒ Object
7 8 9 10 |
# File 'lib/voom/presenters/dsl/components/mixins/selects.rb', line 7 def select(**attribs, &block) self << Components::Select.new(parent: self, **attribs, &block) end |