mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-21 18:51:41 +01:00
* adds ember-flight-icons dependecy * adds inline-json-import babel plugin * adds flight icon styling * updates Icon component to support flight icons * updates Icon component usages to new api and updates name values to flight icon set when available * fixes tests * updates icon story with flight mappings and fixes issue with flight icons not rendering in storybook * adds changelog * fixes typo in sign action glyph name in transit-key model * adds comments to icon-map * updates Icon component to use only supported flight icon sizes * adds icon transform codemod * updates icon transform formatting to handle edge case * runs icon transform on templates * updates Icon usage in toolbar-filter md and story * updates tests
32 lines
792 B
Handlebars
32 lines
792 B
Handlebars
<PageHeader as |p|>
|
|
<p.top>
|
|
<KmipBreadcrumb />
|
|
</p.top>
|
|
<p.levelLeft>
|
|
<h1 class="title is-3">
|
|
<Icon
|
|
@name="secrets"
|
|
@size="24"
|
|
class="has-text-grey-light"
|
|
/>
|
|
{{this.secretMountPath.currentPath}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
<div class="tabs-container box is-sideless is-fullwidth is-paddingless is-marginless">
|
|
<nav class="tabs">
|
|
<ul>
|
|
{{#link-to "scopes.index" tagName="li"}}
|
|
{{#link-to "scopes.index" data-test-kmip-link-scopes="true"}}
|
|
Scopes
|
|
{{/link-to}}
|
|
{{/link-to}}
|
|
{{#link-to "configuration" tagName="li"}}
|
|
{{#link-to "configuration" data-test-kmip-link-config="true"}}
|
|
Configuration
|
|
{{/link-to}}
|
|
{{/link-to}}
|
|
</ul>
|
|
</nav>
|
|
</div>
|