Class: GovukComponent::SummaryListComponent::RowComponent

Inherits:
Base
  • Object
show all
Defined in:
app/components/govuk_component/summary_list_component/row_component.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#html_attributes

Attributes included from Traits::CustomHtmlAttributes

#html_attributes

Instance Method Summary collapse

Methods included from Traits::CustomClasses

#classes

Methods included from Govuk::Components::Helpers::CssUtilities

#combine_classes

Constructor Details

#initialize(classes: [], html_attributes: {}) ⇒ RowComponent

Returns a new instance of RowComponent.



8
9
10
# File 'app/components/govuk_component/summary_list_component/row_component.rb', line 8

def initialize(classes: [], html_attributes: {})
  super(classes: classes, html_attributes: html_attributes)
end

Instance Attribute Details

#hrefObject (readonly)

Returns the value of attribute href.



2
3
4
# File 'app/components/govuk_component/summary_list_component/row_component.rb', line 2

def href
  @href
end

#visually_hidden_textObject (readonly)

Returns the value of attribute visually_hidden_text.



2
3
4
# File 'app/components/govuk_component/summary_list_component/row_component.rb', line 2

def visually_hidden_text
  @visually_hidden_text
end

Instance Method Details

#callObject



12
13
14
15
16
# File 'app/components/govuk_component/summary_list_component/row_component.rb', line 12

def call
  tag.div(class: classes, **html_attributes) do
    safe_join([key, value, actions_content])
  end
end