- inputsConfigOrMountPoint {Object|String} - either the string describing the reduxMountPoint, or the inputsConfig.
- inputKeys {Array} - list of keys to run the selection on
Returns the input state objects, containing properties like value, error, pristine, etc.
Example output
{
name: {
error: 'Fo'
},
email: {
value: 'test@test.com'
}
}
Returns an object of input key to value pairs
Returns true if any inputs corresponding to inputKeys are validating, otherwise false.
Returns true if all inputs corresponding to inputKeys are pristine, otherwise false.
Returns true if all inputs corresponding to inputKeys are valid, otherwise false.