This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
v1.15.0
- Documentation fixes thanks to @ralphstodomingo - #973 #974 #976
- Fixed bug that prevented passing options to actions.merge, thanks to @tylercrompton #979
- Fixed bug with validation on change where Object.keys called on undefined #983
- 🆕 Added
fieldValue
to mapped props whenwithFieldValue
provided to<Control>
, so now you can have this:
<Control.custom
model="foo.bar"
component={MyInput}
withFieldValue
/>
and that will pass fieldValue
as a prop directly into your <MyInput>
component. See #984