19 lines
395 B
JavaScript
19 lines
395 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 = '';
|
||
|
@action
|
||
|
inputChanged() {
|
||
|
this.args.onChange(this.searchInput);
|
||
|
}
|
||
|
}
|