mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	 11f6aad2b2
			
		
	
	11f6aad2b2
	
	
	
		
			
			* 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!
		
			
				
	
	
		
			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);
 | |
|   }
 | |
| }
 |