mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 11:38:02 +00:00
25 lines
492 B
JavaScript
25 lines
492 B
JavaScript
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class inputSelect extends Component {
|
|
/*
|
|
* @public
|
|
* @param Function
|
|
*
|
|
* Function called when any of the inputs change
|
|
*
|
|
*/
|
|
@tracked searchInput = '';
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.searchInput = this.args?.initialValue;
|
|
}
|
|
|
|
@action
|
|
inputChanged() {
|
|
this.args.onChange(this.searchInput);
|
|
}
|
|
}
|