mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-04 04:39:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			185 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			185 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import TextField from '@ember/component/text-field';
 | 
						|
 | 
						|
export default class DisableBubbleInput extends TextField {
 | 
						|
  /**
 | 
						|
   * Prevents click event bubbling
 | 
						|
   */
 | 
						|
  click: () => false;
 | 
						|
}
 |