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.
		
		
		
		
		
			
		
			
				
					
					
						
							21 lines
						
					
					
						
							472 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							472 B
						
					
					
				
								/* eslint-disable */
							 | 
						|
								var utils = require('../wxs/utils.wxs');
							 | 
						|
								
							 | 
						|
								function inputStyle(autosize) {
							 | 
						|
								  if (autosize && autosize.constructor === 'Object') {
							 | 
						|
								    var style = '';
							 | 
						|
								    if (autosize.minHeight) {
							 | 
						|
								      style += 'min-height:' + utils.addUnit(autosize.minHeight) + ';';
							 | 
						|
								    }
							 | 
						|
								    if (autosize.maxHeight) {
							 | 
						|
								      style += 'max-height:' + utils.addUnit(autosize.maxHeight) + ';';
							 | 
						|
								    }
							 | 
						|
								    return style;
							 | 
						|
								  }
							 | 
						|
								
							 | 
						|
								  return '';
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								module.exports = {
							 | 
						|
								  inputStyle: inputStyle
							 | 
						|
								};
							 |