mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 19:47:54 +00:00
27 lines
647 B
Handlebars
27 lines
647 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
{{#if this.enable}}
|
|
{{yield}}
|
|
{{else}}
|
|
<div class="flex" ...attributes>
|
|
<div class="is-flex-grow-1">
|
|
{{#if @attr}}
|
|
<ReadonlyFormField @attr={{@attr}} @value="**********" />
|
|
{{else}}
|
|
<Input aria-label={{@label}} readonly class="input" @type="text" @value="**********" />
|
|
{{/if}}
|
|
</div>
|
|
<div class="align-self-end">
|
|
<Hds::Button
|
|
@text="Enable input"
|
|
@icon="edit"
|
|
@isIconOnly={{true}}
|
|
@color="tertiary"
|
|
{{on "click" (fn (mut this.enable))}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{{/if}} |