vault/ui/lib/core/addon/components/input-search.hbs
Vault Automation 504334f8bb
UI: Add policy flyout to PKI (#12335) (#12373)
* 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>
2026-02-17 19:28:47 -08:00

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>