nuke-input
Advanced tools
Comparing version 1.0.56 to 1.0.57
@@ -60,5 +60,5 @@ 'use strict'; | ||
if (nextProps.value !== null) { | ||
return nextProps.value !== this.props.value || nextProps.readOnly !== this.props.readOnly || nextProps.disabled !== this.props.disabled; | ||
return nextProps.value !== this.props.value || nextProps.readOnly !== this.props.readOnly || nextProps.disabled !== this.props.disabled || nextProps.maxLength !== this.props.maxLength; | ||
} | ||
return _typeof(nextProps.value) !== _typeof(this.props.value) || nextProps.readOnly !== this.props.readOnly || nextProps.disabled !== this.props.disabled; | ||
return _typeof(nextProps.value) !== _typeof(this.props.value) || nextProps.readOnly !== this.props.readOnly || nextProps.disabled !== this.props.disabled || nextProps.maxLength !== this.props.maxLength; | ||
} | ||
@@ -65,0 +65,0 @@ }, { |
{ | ||
"name": "nuke-input", | ||
"version": "1.0.56", | ||
"version": "1.0.57", | ||
"description": "输入框", | ||
"main": "lib/index", | ||
"files": [ | ||
"lib", | ||
"docs", | ||
"theme", | ||
"README.md", | ||
"HISTORY.md" | ||
], | ||
"keywords": [ | ||
"nuke", | ||
"input" | ||
], | ||
"files": ["lib", "docs", "theme", "README.md", "HISTORY.md"], | ||
"keywords": ["nuke", "input"], | ||
"author": { | ||
@@ -58,4 +49,4 @@ "name": "leanhunter", | ||
"publishConfig": { | ||
"registry": "http://registry.npmjs.org" | ||
"registry": "https://registry.npmjs.org" | ||
} | ||
} |
183104