20 lines
396 B
Ruby
20 lines
396 B
Ruby
class EditableChamp::EditableChampBaseComponent < ApplicationComponent
|
|
include Dsfr::InputErrorable
|
|
|
|
def dsfr_champ_container
|
|
:div
|
|
end
|
|
|
|
def dsfr_input_classname
|
|
nil
|
|
end
|
|
|
|
def describedby_id
|
|
@champ.describedby_id
|
|
end
|
|
|
|
def initialize(form:, champ:, seen_at: nil, opts: {})
|
|
@form, @champ, @seen_at, @opts = form, champ, seen_at, opts
|
|
@attribute = :value
|
|
end
|
|
end
|