Releases: twisty/formsy-react-components
v1.0.0-beta.3
v1.0.0-beta.2
Update to allow using with React 16 and new formsy-react release.
v1.0.0-beta.1
This release was unpublished on npm
as it was incorrectly tagged as latest
, when it should have been on the next
tag.
v0.11.1
v0.11.0
- Update to remove deprecation warnings when used with newer versions of React (now using
prop-types
andcreate-react-class
packages). #114 - Fix peer dependency warning when installing using React 16.
Note: you need to install create-react-class
in your app until issue christianalfoni/formsy-react#469 is fixed.
v1.0.0-alpha.7
- Re-publish to address an packaging error. (#113)
v1.0.0-alpha.6
- Fixed a situation where an implicit form submission (triggered by hitting return in an input) was missing an up-to-date
setValue
call. (#112) - Fixed a situation where
setValue
was being called twice. - Don't call
setValue
on blur events when the value has not been changed. (For example, when "tabbing through" form controls.)
v1.0.0-alpha.5
- Fix: we have restored the ability to add custom
classname
s to the form component (#111). - Breaking change:
updateOn
prop in<Input />
and<Textarea />
components.
The updateOn
prop has gone.
For the <Input />
and <Textarea />
components, the props that tweak the events that trigger a setValue
call have been changed.
Previously, we used a space-separated string:
updateOn="blur change"
Now we use booleans:
updateOnBlur // default: true
updateOnChange // default: true
v1.0.0-alpha.4
Fix a defaultProp
error with the <Select />
component.
v1.0.0-alpha.3
Source has been updated to conform to the Airbnb JavaScript Style Guide and is now formatted via prettier.
Breaking change
The optional debounce
prop of the <Input />
and <Textarea />
components has been changed from an object (with blur
and change
keys).
Debounce intervals are now specified via two separate optional props, blurDebounceInterval
and changeDebounceInterval
.
Fixes
Install with npm
or yarn
npm install formsy-react-components@next
yarn add formsy-react-components@next