This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
v1.16.0
shallow-compare
updated for React v16 compatibility. #987- #988 (intent clearing bug) fixed by @kabbi
- Nodes are now allowed for message values in
<Errors messages={...}/>
. #990 - π You can now use a
formatter
prop with<Control>
! #985
const formatValue = val => val.toUpperCase();
// ...
return (
<Control.text
model="foo.bar"
format={formatValue}
/>
);