mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			473 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			473 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: MPL-2.0
 | |
|  */
 | |
| 
 | |
| 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);
 | |
|   }
 | |
| }
 | 
