Releases: code4romania/taskforce-fe-components
Releases · code4romania/taskforce-fe-components
v1.0.24 (2020-05-05)
v1.0.24 (2020-05-05)
🌱 Internal
search-list-item
- #187 refactor: reverse temperature chart axes (@moonflare)
form
v1.0.23 (2020-04-29)
v1.0.22 (2020-04-27)
v1.0.21 (2020-04-27)
v1.0.21 (2020-04-27)
🚔 this version also has a bug, please use 1.0.22 🚔
🐛 Bugfix
accordion
,sidebar-menu-item
- #176 fix: usage of onEnterOrSpace util (@moonflare)
v1.0.20 (2020-04-27)
v1.0.20 (2020-04-27)
🚔 this version has a bug, please use 1.0.22 🚔
🌱 Internal
accordion
,sidebar-menu-item
- #175 a11y: feat: SidebarMenu and Accordion components accesibility (@andreibesleaga)
v1.0.19 (2020-04-26)
v1.0.19 (2020-04-26)
🌱 Internal
-
list
,list-item
-
button
- #165 refactor: Makes
onClick
callback optional (@moonflare) - #165 refactor: Adds
warning
type (@moonflare)
- #165 refactor: Makes
-
select
- #165 refactor: Change inputs from uncontrolled to controlled. (@moonflare)
- #165 refactor: Changes
defaultValue
selection functionality (@moonflare) - #165 refactor: Adds deprecation message for the usage of
options.selected
field (@moonflare)
-
search-dropdown
- #165 a11y: Adds initial tab navigation. (We can navigate with tab, open the dropdown and select an item by pressing Enter) (@moonflare)
🐛 Bugfix
input
,select
- #165 refactor: Fixes type errors (@moonflare)
⚠️ Deprecation
select
- The usage of
options.selected
field has been deprecated in favor of thedefaultValue
prop.- Before:
const options = [ { text: "Option 1", value: "value1", selected: true }, { text: "Option 2", value: "value2" }, { text: "Option 3", value: "value3" } ]; <Select options={options} />
- After:
const options = [ { text: "Option 1", value: "value1" }, { text: "Option 2", value: "value2" }, { text: "Option 3", value: "value3" } ]; const initialValue = options[0].value; <Select defaultValue={initialValue} options={options} />
- The usage of
v1.0.18 (2020-04-25)
🌱 Internal
form
- #172 reversed buttons & fixed styling issues (@adascaliteiradu)
date-picker
v1.0.17 (2020-04-25)
🌱 Internal
input
- #166 Add custom validation message (@irinel-nistor)
🐛 Bugfix
date-picker
- #167 fix: style for days outside month (@adascaliteiradu)
v1.0.16 (2020-04-22)
🌱 Internal
form
- #164 Adding the ability to use the default next question on the question (@mmircea16)
input
v1.0.15 (2020-04-21)
🐛 Bugfix
- Fixing issue when a date picker question is skipped #162 by @mmircea16