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
/* The error message to display if the field is required but not present at validation */
30
+
/** The error message to display if the field is required but not present at validation */
31
31
requiredFieldMessage: PropTypes.string,
32
-
/* An optional validation function. Will be passed in order: the current field value, and the entire form value */
32
+
/** Should an error message render on load (the rendered msg depends on the presence of required or validator) */
33
+
validateOnLoad: PropTypes.bool,
34
+
/** An optional validation function. Will be passed in order: the current field value, and the entire form value */
33
35
validator: PropTypes.func,
34
-
/* An optional nested path at which to access field data. Nested path can be delimted with `.` or with brackets `[]`. For example: my.nested.array[0] */
36
+
/** An optional nested path at which to access field data. Nested path can be delimted with `.` or with brackets `[]`. For example: my.nested.array[0] */
0 commit comments