You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: react-redux-form.d.ts
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -409,6 +409,20 @@ interface BaseFormProps {
409
409
* Indicates whether native HTML5 constraint validation error messages should be shown. This does not preclude the form from failing to submit if native validation fails.
410
410
*/
411
411
hideNativeErrors?: boolean;
412
+
/**
413
+
* Specify an encoding method for the body of the form's POST request.
414
+
*
415
+
* The possible values are:
416
+
* * application/x-www-form-urlencoded (Default): all characters are encoded
417
+
* before being sent. Spaces are converted to "+" and symbols are
418
+
* converted to ASCII HEX values.
419
+
* * multipart/form-data: No characters are encoded. This option is required
420
+
* for forms with file inputs.
421
+
* * text/plain: Spaces are converted to "+", but symbols are not encoded.
422
+
* Its behavior is unpredictable, so avoid this option unless you
0 commit comments