Class: Arara::DialogContentComponent
- Inherits:
-
ActionView::Component::Base
- Object
- ActionView::Component::Base
- Arara::DialogContentComponent
- Includes:
- BaseComponent
- Defined in:
- app/components/arara/dialog_content_component.rb
Instance Method Summary collapse
- #default_html_class ⇒ Object
-
#initialize(id:, **kw) ⇒ DialogContentComponent
constructor
A new instance of DialogContentComponent.
Methods included from BaseComponent
#default_data_controller, #default_html_tag, #html_class, #html_content, #html_data, #html_options, #html_tag, included
Constructor Details
#initialize(id:, **kw) ⇒ DialogContentComponent
Returns a new instance of DialogContentComponent.
7 8 9 |
# File 'app/components/arara/dialog_content_component.rb', line 7 def initialize(id:, **kw) super(tag: "div", id: id, **kw) end |
Instance Method Details
#default_html_class ⇒ Object
11 12 13 |
# File 'app/components/arara/dialog_content_component.rb', line 11 def default_html_class "mdc-dialog__content" end |