StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
				https://doi.org/10.1109/TVCG.2020.3030352
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							773 B
						
					
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							773 B
						
					
					
				| const CONSTANT = {
 | |
|   DEFAULT_TYPE: 'info',
 | |
|   DEFAULT_BTN_CLOSE_TEXT: 'Close',
 | |
|   DEFAULT_BTN_CONFIRM_TEXT: 'Confirm',
 | |
|   INVALID_TYPE: 'INVALID_TYPE'
 | |
| }
 | |
| 
 | |
| export default {
 | |
|   name: 'simplertConfig',
 | |
|   config: {
 | |
|     show: false,
 | |
|     showSimplert: false,
 | |
|     title: '',
 | |
|     message: '',
 | |
|     type: CONSTANT.DEFAULT_TYPE, // info (default), success, warning, error
 | |
|     customClass: '',
 | |
|     customIconUrl: '',
 | |
|     onOpen: null,
 | |
|     customCloseBtnText: CONSTANT.DEFAULT_BTN_CLOSE_TEXT,
 | |
|     customCloseBtnClass: '',
 | |
|     onClose: null,
 | |
|     useConfirmBtn: false,
 | |
|     customConfirmBtnText: CONSTANT.DEFAULT_BTN_CONFIRM_TEXT,
 | |
|     customConfirmBtnClass: '',
 | |
|     onConfirm: null,
 | |
|     disableOverlayClick: false,
 | |
|     hideAllButton: false,
 | |
|     showXclose: false
 | |
|   },
 | |
|   defaultCons: CONSTANT
 | |
| }
 | |
| 
 |