mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	* add NavHeader component * use NavHeader in SplashPage component and application.hbs * let download button take a block * add RadialProgress component * use RadialProgress in ShamirFlow component * style up the RadialProgress component * update ember-basic-dropdown, ember-basic-dropdown-hover * rework operation token generation workflow * directly depend on ember-maybe-in-element
		
			
				
	
	
		
			9 lines
		
	
	
		
			267 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			267 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { text, isPresent } from 'ember-cli-page-object';
 | 
						|
 | 
						|
export default {
 | 
						|
  ele: isPresent('[data-test-navheader]'),
 | 
						|
  homeText: text('[data-test-navheader-home]'),
 | 
						|
  itemsText: text('[data-test-navheader-items]'),
 | 
						|
  mainText: text('[data-test-navheader-main]'),
 | 
						|
};
 |