v0.2.0
Breaking Changes
- a11y: Enforce aria-label if no label/title (#46)
// Form components now require `aria-label`
// if not provided with "label". This will throw an error in development mode.
- <Checkbox label="" />
+ <Checkbox label="" aria-label="Descriptive label for screen readers" />
New Features
- Support secondaryLabel for Select and ComboBox components (#48)