30 lines
670 B
Handlebars
30 lines
670 B
Handlebars
{{yield}}
|
|
<InformedAction
|
|
class="confirmation-alert warning"
|
|
...attributes
|
|
>
|
|
<:header>
|
|
<YieldSlot @name="header">{{yield}}</YieldSlot>
|
|
</:header>
|
|
<:body>
|
|
<YieldSlot @name="body">{{yield}}</YieldSlot>
|
|
</:body>
|
|
<:actions as |Actions|>
|
|
<Actions.Action class="dangerous">
|
|
<YieldSlot @name="confirm" @params={{
|
|
block-params (component 'action'
|
|
onclick=(action @onclick)
|
|
tabindex="-1"
|
|
)
|
|
}}
|
|
>
|
|
{{yield}}
|
|
</YieldSlot>
|
|
</Actions.Action>
|
|
<Actions.Action>
|
|
<Action @for={{@name}}>
|
|
Cancel
|
|
</Action>
|
|
</Actions.Action>
|
|
</:actions>
|
|
</InformedAction> |