Skip to content

Releases: code4romania/taskforce-fe-components

v1.0.24 (2020-05-05)

05 May 07:33
277a14c
Compare
Choose a tag to compare

v1.0.24 (2020-05-05)

🌱 Internal

v1.0.23 (2020-04-29)

29 Apr 18:59
edc5ee3
Compare
Choose a tag to compare

v1.0.23 (2020-04-29)

🌱 Internal

  • search-list-item
    • #178 Only show date when is set. Add link to title. Resize developBy images. (@Utwo)
  • form

v1.0.22 (2020-04-27)

27 Apr 19:37
e2975ef
Compare
Choose a tag to compare

v1.0.22 (2020-04-27)

🐛 Bugfix

  • sidebar-menu-item

v1.0.21 (2020-04-27)

27 Apr 18:48
bd36653
Compare
Choose a tag to compare

v1.0.21 (2020-04-27)

🚔 this version also has a bug, please use 1.0.22 🚔

🐛 Bugfix

  • accordion, sidebar-menu-item

v1.0.20 (2020-04-27)

27 Apr 17:42
918e518
Compare
Choose a tag to compare

v1.0.20 (2020-04-27)

🚔 this version has a bug, please use 1.0.22 🚔

🌱 Internal

  • accordion, sidebar-menu-item

v1.0.19 (2020-04-26)

26 Apr 10:38
244c781
Compare
Choose a tag to compare

v1.0.19 (2020-04-26)

🌱 Internal

  • list, list-item

  • button

  • 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

⚠️ Deprecation

  • select
    • The usage of options.selected field has been deprecated in favor of the defaultValue 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}
        />

v1.0.18 (2020-04-25)

25 Apr 16:39
f93c180
Compare
Choose a tag to compare

🌱 Internal

v1.0.17 (2020-04-25)

25 Apr 12:03
79c4451
Compare
Choose a tag to compare

🌱 Internal

🐛 Bugfix

v1.0.16 (2020-04-22)

22 Apr 16:59
47780d8
Compare
Choose a tag to compare

🌱 Internal

  • form
    • #164 Adding the ability to use the default next question on the question (@mmircea16)
  • input

v1.0.15 (2020-04-21)

21 Apr 18:19
daf091a
Compare
Choose a tag to compare

🐛 Bugfix

  • Fixing issue when a date picker question is skipped #162 by @mmircea16