Skip to content

Releases: Blazored/Typeahead

v4.7.0

15 Jul 07:36
a317c8b
Compare
Choose a tag to compare

What's Changed

🐛 Bug Fixes

🧰 Maintenance

v4.6.0

27 Mar 13:52
Compare
Choose a tag to compare

What's Changed

🚀 Features

🐛 Bug Fixes

🧰 Maintenance

  • (#207) Additional IE support in blazored-typeahead.js - Thanks to @fclinton

v4.5.1

07 Jan 07:19
590589a
Compare
Choose a tag to compare

What's Changed

🐛 Bug Fixes

v4.5.0

04 Jan 11:16
11a3e33
Compare
Choose a tag to compare

What's Changed

🚀 Features

  • (#192) Added DisableClear parameter to hide clear button - Thanks to @chrissainty
  • (#166) Add a public method to focus the component - Thanks to @kiasyn

🐛 Bug Fixes

  • (#193) Added check to only show dropdown icon on disabled control when dropdown mode is active - Thanks to @chrissainty
  • (#191) Added a check so reselecting the current selection doesnt update Value - Thanks to @chrissainty

🧰 Maintenance

📖 Documentation

v4.4.1

01 Nov 00:44
b7b3c68
Compare
Choose a tag to compare

What's Changed

🐛 Bug Fixes

  • (#181) Fixes error when pressing backspace in multiselect mode - Thanks to @chrissainty

📖 Documentation

v4.4.0

24 Sep 08:48
93d9145
Compare
Choose a tag to compare

What's Changed

🚀 Features

  • (#152) Remove last entry from multi-select by pressing backspace - Thanks to @chrissainty

🐛 Bug Fixes

  • (#159) Update blazored-typeahead.js - Thanks to @AskYous
  • (#142) Added a null check before adding the event listener - Thanks to @ThaRaven403

🧰 Maintenance

  • (#151) Move CI over to GitHub Actions - Thanks to @chrissainty
  • (#127) Added questions template and moved to GitHub actions for release drafter - Thanks to @chrissainty

v4.3.0

06 Mar 15:12
Compare
Choose a tag to compare

Bug Fixes

  • #112 - Reworked the JavaScript to use an older syntax, compatible with IE11
  • #110 - Added check for element before calling focus

Features

  • #91 - Added the ability to be able to tab into the control and start typing without the need to press enter/mouse click first.
  • #111 - Added a new HelpTemplate which is shown when the user hasn't reached the specific MinimumLength to perform a search.
  • Slight perf improvements

v4.2.2

29 Dec 13:55
22bcb26
Compare
Choose a tag to compare

Features

  • #98 - Added the ability for developers to set stop propagation and prevent default on the input control.

Misc

  • The component has been reworked to use a partial class design instead of a base class.

V4.2.1

06 Dec 18:13
aee3c94
Compare
Choose a tag to compare

Bug Fixes

  • When the control was bound to a null value and it was also disabled, it would cause an exception as it tried to load the SelectedTemplate passing the null value. This is now fixed.
  • #81 - Control will now retain focus after a value is selected

v4.2.0

23 Nov 15:44
Compare
Choose a tag to compare

Features

  • New header template - You can now define a header template which shows at the top of the suggestions drop down. Thanks to @natsuo
  • Show suggestions using down arrow - If the EnableDropDown param is true users can active the suggestions drop down by pressing the down arrow when the control is in focus. Thanks to @magahl
  • Ability to disable the typeahead in multi-select mode
  • Values are now displayed when typeahead is disabled
  • When only one suggestion is present in the suggestions list, pressing enter will automatically select it.