diff --git a/releases/next/docs/textinput.html b/releases/next/docs/textinput.html
index a35c3d30af3..fba4843df50 100644
--- a/releases/next/docs/textinput.html
+++ b/releases/next/docs/textinput.html
@@ -88,7 +88,7 @@ multiline fields. Note that for multiline fields, setting blurOnSubmittrue means that pressing return will blur the field and trigger the
onSubmitEditing event instead of inserting a newline into the field.
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-addressLimits 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-padLimits 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 text input ends.
Callback that is called when the text input is focused.
Invoked on mount and layout changes with {x, y, width, height}.
Callback that is called when the text input selection is changed.
Callback that is called when the text input's submit button is pressed.