Skip to content
This repository has been archived by the owner on Aug 23, 2022. It is now read-only.

v1.16.0

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 03 Nov 03:55
· 132 commits to master since this release
  • 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}
  />
);
  • Parser documentation updated - it only takes one value, not two.
  • React Native findDOMNode issue (#792) fixed by @peterdivvito: #998
  • Other TypeScript definition and small doc updates.