All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.
- Issues when using select with less than 2 children (placeholder, options or separators). #147
- Issue in using placeholder together with array of options in select. #161
- Fix incompatibility with Windows. From now on it doesn't break anymore when doing
npm install belle
. #20
- [Combobox] The onUpdate callback now includes 3 more properties in the argument. #146
onUpdate({
value: value string,
identifier: identifier of the type you passed,
isMatchingOption: true/false,
isOptionSelection: true/false
})
- Instead of using a copy of React 0.13.3 to create Markup for custom styles now the locally installed React version is used. #150
- Fix server-side rendering of Belle components by preventing to inject styles into the DOM without being available. #150
- [TextInput] When rendered on the server the TextInput will have a height of 0px instead of throwing an exception. #157
- [Combobox] Filtered options are now updated when the ComboBox receives new props. #141
- [ComboBox] Avoid exception when no Options children are supplied to ComboBox. #136