Skip to content

v0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Dec 14:34

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)