muba-input-text 4.1.6 → 4.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/InputText.js +2 -1
  2. package/package.json +1 -1
package/InputText.js CHANGED
@@ -272,7 +272,8 @@ export default class InputText extends React.Component {
272
272
  selectionColor={this.props.selectionColor}
273
273
  numberOfLines={this.props.numberOfLines}
274
274
  maxLength={this.props.maxLength}
275
- {...this.props} />
275
+ onFocus={this.props.onFocus}
276
+ onBlur={this.props.onBlur} />
276
277
  {this.props.children}
277
278
 
278
279
  {this.props.value != null && !this.props.hideCancel ?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muba-input-text",
3
- "version": "4.1.6",
3
+ "version": "4.1.7",
4
4
  "description": "Input text",
5
5
  "main": "InputText.js",
6
6
  "scripts": {