Skip to content
This repository was archived by the owner on Sep 14, 2021. It is now read-only.

v36.0.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 08 May 01:23
· 160 commits to master since this release
8766bbe

36.0.0 (2018-05-08)

Features

  • Checkbox: Adding field message support (#479) (8766bbe)

BREAKING CHANGES

  • Checkbox: Checkbox component now has some reserved space below for field messages. To maintain existing functionality you can set message explicitly to false as per our other form components.

To retain existing behaviour you can do the following:

- <Checkbox id="id" label="Label" />
+ <Checkbox id="id" label="Label" message={false} />

Now supports the standard field props, for example:

- <Checkbox id="id" label="Label" />
+ <Checkbox id="id" label="Label" valid={false} message="Invalid"  />