mirror of https://github.com/hashicorp/consul
23 lines
422 B
Handlebars
23 lines
422 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
<div
|
|
class="more-popover-menu"
|
|
...attributes
|
|
>
|
|
<PopoverMenu
|
|
@expanded={{expanded}}
|
|
@onchange={{action onchange}}
|
|
@keyboardAccess={{false}}
|
|
as |components api|>
|
|
<BlockSlot @name="trigger">
|
|
More
|
|
</BlockSlot>
|
|
<BlockSlot @name="menu">
|
|
{{yield components.MenuItem}}
|
|
</BlockSlot>
|
|
</PopoverMenu>
|
|
</div>
|