Sha256: a2d8dba94b108d869d2f02e5ee28b7e34637a56362b0f81b1d6ad5ddb1fbf322
Contents?: true
Size: 852 Bytes
Versions: 2
Compression:
Stored size: 852 Bytes
Contents
# frozen_string_literal: true module Yattho module Forms module Dsl # :nodoc: class RadioButtonGroupInput < Input attr_reader :name, :label, :radio_buttons def initialize(name:, label: nil, **system_arguments) @name = name @label = label @radio_buttons = [] super(**system_arguments) add_label_classes("FormControl-label", "mb-2") yield(self) if block_given? end def to_component RadioButtonGroup.new(input: self) end def type :radio_button_group end def radio_button(**system_arguments, &block) @radio_buttons << RadioButtonInput.new( builder: @builder, form: @form, name: @name, **system_arguments, &block ) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yattho_view_components-0.1.1 | lib/yattho/forms/dsl/radio_button_group_input.rb |
yattho_view_components-0.0.1 | lib/yattho/forms/dsl/radio_button_group_input.rb |