Releases: vaadin/vaadin-combo-box
v5.0.6
Live Demo →
API Documentation →
Changes Since v5.0.5:
v5.0.5
Live Demo →
API Documentation →
Changes Since v5.0.4:
v5.0.4
Live Demo →
API Documentation →
Changes Since v5.0.3:
v5.0.3
Live Demo →
API Documentation →
Changes Since v5.0.2:
v5.0.2
v5.0.1
v5.0.0
Live Demo →
API Documentation →
⚠️ Breaking Changes Since v4.x:
- The clear button is now hidden by default. To make it visible, set the
clear-button-visible
attribute or use theclearButtonVisible
property. (Note: if the value of the combo box is empty, the clear button is always hidden.)
Changes Since v5.0.0-alpha1:
v4.0.4
Live Demo →
API Documentation →
Fixes
-
fa4aa8c perf: defer overlay positioning to improve typing in Edge (#800)
Improve typing performance in Edge.
-
65e4c94 fix: broken
focus-ring
behaviour on IE11
Changes Since v4.0.3:
-
6332232 test: don't detect Edge as Chrome
-
81289af, b972f6c test: skip problematic test on IE11, Edge and iOS
The test in question is not a problem anymore in v4.2.1+ since commit 8192d24 but that fix hasn't been backported to this
vaadin-10
branch so we'll skip it for now so we can more easily notice if something actually breaks in other newly backported fixes. -
65e4c94 fix: broken
focus-ring
behaviour on IE11 -
fa4aa8c perf: defer overlay positioning to improve typing in Edge (#800)
v4.2.9
Live Demo →
API Documentation →
Changes Since v4.2.8:
-
67b8a31 fix: broken focus-ring behaviour on IE11
The test "toggling-dropdown.html > toggling the dropdown > opening > should restore attribute focus-ring if it was initially set before opening and combo-box is focused" was failing on IE11 and focus-ring was visibly not set correctly in this case. This is now fixed.
-
cda885d perf: defer overlay positioning to improve typing in Edge (#800)
-
df1376f Fix duplicate custom-value-set events fired (#799)
The _onClosed function was running twice when the overlay was closed:
- once by reacting to the dropdown closing event
- another time by the opened property observer
Because of this, the custom-value-set event was fired twice.
This was not caught by the tests, because the test combo box didn't
have any items, so there was no overlay, which would be closed to make
the extra _onClosed call.
v5.0.0-alpha1
Live Demo →
API Documentation →
⚠️ Breaking Changes Since v4.x:
- The clear button is now hidden by default. To make it visible, set the
clear-button-visible
attribute or use theclearButtonVisible
property. (Note: if the value of the combo box is empty, the clear button is always hidden.)
Changes Since v4.2.8:
Breaking changes
-
feat: add clear-button-visible API from
<vaadin-text-field>
(#794)Makes the clear button hidden by default (breaking change)
Fixes #786
Fixes
-
fix: focus, open/close and clear behaviour for
vaadin-combo-box-light
There were some issues with
vaadin-combo-box-light
behaviour related to focus, opening/closing the overlay and using a custom clear button. Addedpointer-events: auto;
tovaadin-combo-box-light
when the overlay is open, to make the basic click behaviour consistent withvaadin-combo-box
.