## SearchSelect
The `SearchSelect` is an implementation of the [ember-power-select-with-create](https://github.com/poteto/ember-cli-flash) used for form elements where options come dynamically from the API.
| Param | Type | Description |
| --- | --- | --- |
| id | String
| The name of the form field |
| models | String
| An array of model types to fetch from the API. |
| onChange | Func
| The onchange action for this form field. |
| inputValue | String
| A comma-separated string or an array of strings. |
| [helpText] | String
| Text to be displayed in the info tooltip for this form field |
| label | String
| Label for this form field |
| fallbackComponent | String
| name of component to be rendered if the API call 403s |
**Example**
```js
```
**See**
- [Uses of SearchSelect](https://github.com/hashicorp/vault/search?l=Handlebars&q=SearchSelect+OR+search-select)
- [SearchSelect Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/search-select.js)
---