23778935b0
* remove expanding behavior from engines list and add a configuration route * use page header component, secret tab component for the template on the secret engine configuration route * move abstraction to secret-list-header and remove secret-tabs * add attrs to secret engine model and adjust mount controller code to support that * fix top level nav so that we can use the back button properly * fix tests
16 lines
558 B
Handlebars
16 lines
558 B
Handlebars
{{#basic-dropdown class="popup-menu" horizontalPosition="auto-right" verticalPosition="below" onOpen=onOpen as |d|}}
|
|
{{#d.trigger tagName="button" class=(concat "popup-menu-trigger button is-ghost " (if d.isOpen "is-active")) data-test-popup-menu-trigger=true}}
|
|
{{i-con
|
|
glyph="more"
|
|
class="has-text-black auto-width"
|
|
size=16
|
|
aria-label="More options"
|
|
}}
|
|
{{/d.trigger}}
|
|
{{#d.content class=(concat "popup-menu-content " contentClass)}}
|
|
<div class="box">
|
|
{{yield}}
|
|
</div>
|
|
{{/d.content}}
|
|
{{/basic-dropdown}}
|