Sha256: 42a2c453dce2a7771e8e0d9c42a7c9cbf1523d89361c428a23f6ac92b8df9914
Contents?: true
Size: 571 Bytes
Versions: 6
Compression:
Stored size: 571 Bytes
Contents
require_relative '../helpers/indented_grid' Voom::Presenters.define(:selects) do helpers Demo::Helpers::IndentedGrid attach :top_nav attach :component_drawer page_title 'Select Fields' indented_grid do form do select do label 'Text...' option do value 'value1' text 'First value' end option do value 'value2' text 'Second value' end event :change do snackbar 'item changed' end end end attach :code, file: __FILE__ end end
Version data entries
6 entries across 6 versions & 1 rubygems