2020-06-09 10:10:14 +00:00
|
|
|
{{yield}}
|
2020-06-23 09:12:04 +00:00
|
|
|
{{#let (hash
|
|
|
|
change=(action "change")
|
|
|
|
) as |api|}}
|
2021-05-04 16:21:54 +00:00
|
|
|
<div
|
|
|
|
class={{join ' ' (compact (array
|
|
|
|
'menu-panel'
|
|
|
|
position
|
|
|
|
(if isConfirmation 'confirmation')
|
|
|
|
))}}
|
|
|
|
{{did-insert (action 'connect')}}
|
|
|
|
>
|
2020-06-09 10:10:14 +00:00
|
|
|
<YieldSlot @name="controls">
|
2020-06-23 09:12:04 +00:00
|
|
|
{{yield api}}
|
2020-06-09 10:10:14 +00:00
|
|
|
</YieldSlot>
|
|
|
|
{{#yield-slot name="header"}}
|
2020-06-23 09:12:04 +00:00
|
|
|
<div>
|
|
|
|
{{yield api}}
|
|
|
|
</div>
|
2020-06-09 10:10:14 +00:00
|
|
|
{{else}}
|
|
|
|
{{/yield-slot}}
|
|
|
|
<ul role="menu" ...attributes>
|
|
|
|
<YieldSlot @name="menu">
|
2020-06-23 09:12:04 +00:00
|
|
|
{{yield api}}
|
2020-06-09 10:10:14 +00:00
|
|
|
</YieldSlot>
|
|
|
|
</ul>
|
2020-06-23 09:12:04 +00:00
|
|
|
</div>
|
|
|
|
{{/let}}
|