muba-input-text 5.0.0 → 5.0.1

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 +3 -1
  2. package/package.json +1 -1
package/InputText.js CHANGED
@@ -271,7 +271,9 @@ export default class InputText extends React.Component {
271
271
  selection={this.props.selection}
272
272
  selectionColor={this.props.selectionColor}
273
273
  numberOfLines={this.props.numberOfLines}
274
- maxLength={this.props.maxLength} />
274
+ maxLength={this.props.maxLength}
275
+ onFocus={this.props.onFocus}
276
+ onBlur={this.props.onBlur} />
275
277
  {this.props.children}
276
278
 
277
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": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Input text",
5
5
  "main": "InputText.js",
6
6
  "scripts": {