mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-18 18:38:08 -05:00
* make router-lookup helper * add policyPaths arg to flyout and update route cache to map * update kv flyouts and test coverage * round out test coverage, rename method from get to lookup * alphabetize PATH_MAP * support other change events for inputSearch to allow copy/pasting items * update overview requests and improve ux for limited permissions * request each key permissions * add flyout to pki page header * update changelog Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
24 lines
No EOL
555 B
Handlebars
24 lines
No EOL
555 B
Handlebars
{{!
|
|
Copyright IBM Corp. 2016, 2025
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
<div class="field" ...attributes>
|
|
<Hds::Form::TextInput::Field
|
|
@type="text"
|
|
@id={{@id}}
|
|
@value={{this.searchInput}}
|
|
{{on (or @changeEvent "keyup") this.inputChanged}}
|
|
placeholder={{@placeholder}}
|
|
autocomplete="off"
|
|
data-test-input-search={{@id}}
|
|
as |F|
|
|
>
|
|
{{#if @label}}
|
|
<F.Label>{{@label}}</F.Label>
|
|
{{/if}}
|
|
{{#if @subText}}
|
|
<F.HelperText>{{@subText}}</F.HelperText>
|
|
{{/if}}
|
|
</Hds::Form::TextInput::Field>
|
|
</div> |