v1.0.41
Added
- #270 - Added support for dropdowns showing selected options with tags to have tooltips whenever the text on the tag overflows its parent. (PR #286 by @gnbm )
- Added several accessibility improvements, such as:
- fixed the disabled behaviour since when a keyboard was in use to navigate through the screen it was possible to open a disabled dropdown;
- improved the options structure to reflect the correct information about each one by changing the way the focus was being managed;
- disabled
tabindex=0
on all options and set it only to the one that is focused; - removed
live-region
, while managing/updating focus when it will not be needed aria-label
was added to all the options;- disabled search input focus when there are no options to show;
- added the ability to clear all the selected options when the user uses the backspace or delete key;
(PR #276 and #294 by @joselrio)
Fixed
- #291 - Fixed an issue when opening a dropdown with search and pressing Tab when the search bar was enabled, where the dropdown was not being closed. (PR #276 by @joselrio)
- #290 - Fixed an issue where disabled elements were still functional if accessed via the keyboard. (PR #276 by @joselrio)
- Fixed issue an issue with
selectAllOnlyVisible:true
and empty filtered lists (filtering by an unexisting word the list was empty but the select all checkbox was being checked). (PR #287 by @gnbm)