This repository was archived by the owner on Sep 14, 2021. It is now read-only.
v36.0.0
36.0.0 (2018-05-08)
Features
BREAKING CHANGES
- Checkbox: Checkbox component now has some reserved space below for field messages. To maintain existing functionality you can set
messageexplicitly tofalseas 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" />