diff --git a/releases/next/docs/textinput.html b/releases/next/docs/textinput.html
index 9f027ab8d04..496fda6067f 100644
--- a/releases/next/docs/textinput.html
+++ b/releases/next/docs/textinput.html
@@ -87,13 +87,16 @@ This may cause issues with components that have position: 'absolute'
while keyboard is active. To avoid this behavior either specify windowSoftInputMode
in AndroidManifest.xml ( https://developer.android.com/guide/topics/manifest/activity-element.html )
or control this param programmatically with native code.
Can tell TextInput to automatically capitalize certain characters.
characters: all characters.words: first letter of each word.sentences: first letter of each sentence (default).none: don't auto capitalize anything.If false, disables auto-correct. The default value is true.
If true, focuses the input on componentDidMount.
-The default value is false.
If true, the text field will blur when submitted.
+The default value is false.
If true, will increase the height of the textbox if need be. If false, +the textbox will become scrollable once the height is reached. The +default value is false.
If true, the text field will blur when submitted.
The default value is true for single-line fields and false for
multiline fields. Note that for multiline fields, setting blurOnSubmit
to true means that pressing return will blur the field and trigger the
onSubmitEditing event instead of inserting a newline into the field.
If true, caret is hidden. The default value is false.
Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you do not want to deal with listening -to events and updating the value prop to keep the controlled state in sync.
If false, text is not editable. The default value is true.
Determines which keyboard to open, e.g.numeric.
The following values work across platforms:
defaultnumericemail-addressphone-padLimits the maximum number of characters that can be entered. Use this +to events and updating the value prop to keep the controlled state in sync.
If false, text is not editable. The default value is true.
Determines which keyboard to open, e.g.numeric.
The following values work across platforms:
defaultnumericemail-addressphone-padIf autogrow is true, limits the height that the TextInput box can grow
+to. Once it reaches this height, the TextInput becomes scrollable.
Limits the maximum number of characters that can be entered. Use this instead of implementing the logic in JS to avoid flicker.
If true, the text input can be multiple lines.
The default value is false.
Callback that is called when the text input is blurred.
Callback that is called when the text input's text changes.
Callback that is called when the text input's text changes. Changed text is passed as an argument to the callback handler.
Callback that is called when the text input's content size changes.