mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
* initial fix. need to clear out local storage to see it work. * first draft * clean up * test fix * add test coverage * pairing to do clean up * update tests
24 lines
548 B
Handlebars
24 lines
548 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<div class="field is-grouped" ...attributes>
|
|
<div class="control is-expanded">
|
|
{{#if @label}}
|
|
<label for={{@id}} class="is-label">{{@label}}</label>
|
|
{{/if}}
|
|
{{#if @subText}}
|
|
<p class="sub-text">{{@subText}}</p>
|
|
{{/if}}
|
|
<Input
|
|
id={{@id}}
|
|
class="input"
|
|
@type="text"
|
|
@value={{this.searchInput}}
|
|
{{on "keyup" this.inputChanged}}
|
|
placeholder={{@placeholder}}
|
|
autocomplete="off"
|
|
/>
|
|
</div>
|
|
</div> |