diff --git a/Examples/UIExplorer/TextInputExample.android.js b/Examples/UIExplorer/TextInputExample.android.js index 6e628f350ae5a2..8f9bdd829180e4 100644 --- a/Examples/UIExplorer/TextInputExample.android.js +++ b/Examples/UIExplorer/TextInputExample.android.js @@ -208,7 +208,13 @@ exports.examples = [ { title: 'Auto-focus', render: function() { - return ; + return ( + + ); } }, { diff --git a/Examples/UIExplorer/TextInputExample.ios.js b/Examples/UIExplorer/TextInputExample.ios.js index 49079ff8b917ec..ce72514e0a097d 100644 --- a/Examples/UIExplorer/TextInputExample.ios.js +++ b/Examples/UIExplorer/TextInputExample.ios.js @@ -348,7 +348,13 @@ exports.examples = [ { title: 'Auto-focus', render: function() { - return ; + return ( + + ); } }, { diff --git a/Examples/UIExplorer/TouchableExample.js b/Examples/UIExplorer/TouchableExample.js index dd3b2c9c89f7a6..515a0c2b858c03 100644 --- a/Examples/UIExplorer/TouchableExample.js +++ b/Examples/UIExplorer/TouchableExample.js @@ -144,6 +144,9 @@ var TouchableFeedbackEvents = React.createClass({ this._appendEvent('press')} onPressIn={() => this._appendEvent('pressIn')} onPressOut={() => this._appendEvent('pressOut')} diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index f9c03a1758641f..e04cecce3d9614 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -286,10 +286,6 @@ var TextInput = React.createClass({ * Styles */ style: Text.propTypes.style, - /** - * Used to locate this view in end-to-end tests - */ - testID: PropTypes.string, /** * The color of the textInput underline. * @platform android @@ -453,6 +449,9 @@ var TextInput = React.createClass({ {textContainer} @@ -515,6 +514,9 @@ var TextInput = React.createClass({ return ( {textContainer} diff --git a/Libraries/Components/Touchable/TouchableBounce.js b/Libraries/Components/Touchable/TouchableBounce.js index d3c1696769e8cc..1d7abcc71e8397 100644 --- a/Libraries/Components/Touchable/TouchableBounce.js +++ b/Libraries/Components/Touchable/TouchableBounce.js @@ -117,6 +117,9 @@ var TouchableBounce = React.createClass({