2020-08-11 17:02:51 +00:00
|
|
|
<PopoverMenu @position={{or position "left"}} class="popover-select" ...attributes as |components menu|>
|
|
|
|
{{yield}}
|
|
|
|
{{#let
|
|
|
|
(component 'popover-select/optgroup' components=components)
|
|
|
|
(component 'popover-select/option'
|
|
|
|
select=this components=components
|
|
|
|
onclick=(queue
|
|
|
|
(action "click")
|
|
|
|
(if multiple (noop) menu.toggle)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
as |Optgroup Option|
|
|
|
|
}}
|
2020-05-11 14:04:27 +00:00
|
|
|
<BlockSlot @name="trigger">
|
2020-08-11 17:02:51 +00:00
|
|
|
<YieldSlot @name="selected">
|
|
|
|
{{yield (hash
|
|
|
|
Optgroup=Optgroup
|
|
|
|
Option=Option
|
|
|
|
)}}
|
|
|
|
</YieldSlot>
|
2020-05-11 14:04:27 +00:00
|
|
|
</BlockSlot>
|
2020-08-10 08:26:02 +00:00
|
|
|
<BlockSlot @name="menu">
|
2020-08-11 17:02:51 +00:00
|
|
|
<YieldSlot @name="options">
|
|
|
|
{{yield (hash
|
|
|
|
Optgroup=Optgroup
|
|
|
|
Option=Option
|
|
|
|
)}}
|
|
|
|
</YieldSlot>
|
2020-05-11 14:04:27 +00:00
|
|
|
</BlockSlot>
|
2020-08-11 17:02:51 +00:00
|
|
|
{{/let}}
|
2020-05-11 14:04:27 +00:00
|
|
|
</PopoverMenu>
|