-
## Bug, Feature, or Question?
Bug (possibly?)
## Current Behavior
The componentWillRecieveProps method of a form's child components does not get an updated errors object as part of nextProps.…
-
Issue initially reported at https://github.com/jquense/yup/issues/174
Copy/pasting with some edits here, as the problem seems related to Formik.
I've configured a validation schema which deals w…
-
Getting
```
W20180418-10:47:59.137(-6)? (STDERR) TypeError: _interopRequireDefault is not a function
W20180418-10:47:59.137(-6)? (STDERR) at livedata_connection.js (/Users/scotttolinski/Si…
-
## Bug, Feature, or Question?
Let's say I have a set of initial values that looks like this:
```js
{
email: '',
categories: {
foo: false
}
}
```
and I define a schema to …
-
## Acceptance Criteria
- [ ] It shouldn't allow you to search for groups if there is no specific filter, campus, or zip code selected. One of the three has to be chosen in order for the search to f…
-
Hi everyone,
I have the following component using Formik ... i have two problems i am struggling to fix for half a day now :(
1) The console.log u see there renders twice per change ... so if i …
-
## Bug, Feature, or Question?
Bug/Question ? I am not sure if I am missing something of if it is in fact the behaviour.
```
const RegisterFormWithFormik = withFormik({
validationSchema: valida…
-
I am trying to write a test where I fill out a formik form, then press the submit button and see if my yup schema is properly connected to my input fields. I am using this example https://github.com/j…
-
I'm using the yup validationSchema for field validation at the moment and, unfortunately, I'm finding the current validation set up a little inflexible regarding field-level validation. It might just …
-
I have a following schema:
```javascript
const schema = yup.object().shape({,
minimumAge: yup.number().required().min(0).integer(),
});
```
And in the following:
```javascript
schema.isValid…