diff --git a/Examples/UIExplorer/TextInputExample.android.js b/Examples/UIExplorer/TextInputExample.android.js index f3691f14b..3652b974c 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 49e28ffce..eac262d77 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 dd3b2c9c8..515a0c2b8 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 e72c98cdf..7a902576c 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -290,10 +290,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 @@ -457,6 +453,9 @@ var TextInput = React.createClass({ {textContainer} @@ -520,6 +519,9 @@ var TextInput = React.createClass({ return ( {textContainer} diff --git a/Libraries/Components/Touchable/TouchableBounce.js b/Libraries/Components/Touchable/TouchableBounce.js index d3c169676..1d7abcc71 100644 --- a/Libraries/Components/Touchable/TouchableBounce.js +++ b/Libraries/Components/Touchable/TouchableBounce.js @@ -117,6 +117,9 @@ var TouchableBounce = React.createClass({