f3a8fdd4f0
* Inital pki overview page code setup * Add more properties to pki-overview * Remove previous selectable card component and update template * Add capability check for roles and issuers * Add acceptance tests for overview page * Update SelectableCardForm component * Code refactor! * Add selectable-card-form test * More code cleanup and move function to test helper file * Address most feedback. Pending refactor of issue certificate card! * Add integration test * Moves form to SelectableCard and add tests * Add jsdoc props to SelectableCard and fix placeholder * Move back SelectableCard * Covert to typescript and finish up tests * Dont use try catch for hasConfig * Add overview card test * More overview card tests * Address feedback!
18 lines
446 B
Handlebars
18 lines
446 B
Handlebars
<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}}
|
|
/>
|
|
</div>
|
|
</div> |