Skip to content

Releases: twisty/formsy-react-components

v1.0.0-beta.3

12 Jan 20:43
Compare
Choose a tag to compare
v1.0.0-beta.3 Pre-release
Pre-release

Bug Fixes

  • Allow passing any renderable content for label (0f10e0b), closes #121

v1.0.0-beta.2

17 Nov 23:03
Compare
Choose a tag to compare
v1.0.0-beta.2 Pre-release
Pre-release

Update to allow using with React 16 and new formsy-react release.

v1.0.0-beta.1

17 Nov 23:14
Compare
Choose a tag to compare
v1.0.0-beta.1 Pre-release
Pre-release

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

17 Nov 23:09
Compare
Choose a tag to compare

This release has no changes from v0.11.0. It was released to fix an error with tagging v1.0.0-beta.1 as latest in npm, when it should have been on the next tag.

v0.11.0

11 Oct 23:11
Compare
Choose a tag to compare
  • Update to remove deprecation warnings when used with newer versions of React (now using prop-types and create-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

04 Oct 08:27
Compare
Choose a tag to compare
v1.0.0-alpha.7 Pre-release
Pre-release
  • Re-publish to address an packaging error. (#113)

v1.0.0-alpha.6

03 Oct 13:39
Compare
Choose a tag to compare
v1.0.0-alpha.6 Pre-release
Pre-release
  • 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

19 Sep 21:47
Compare
Choose a tag to compare
v1.0.0-alpha.5 Pre-release
Pre-release
  • Fix: we have restored the ability to add custom classnames 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

15 Sep 14:33
Compare
Choose a tag to compare
v1.0.0-alpha.4 Pre-release
Pre-release

Fix a defaultProp error with the <Select /> component.

v1.0.0-alpha.3

15 Sep 00:29
Compare
Choose a tag to compare
v1.0.0-alpha.3 Pre-release
Pre-release

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