Skip to content

Releases: vaadin/vaadin-combo-box

v5.0.6

24 Jul 08:12
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.0.5:

  • 1b5cce9 fix performance issue with fast scrolling (#825)

v5.0.5

08 Jul 08:31
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.0.4:

  • 73165be fix: set filteredItems with dataProvider (#824)

    • Set filteredItems with dataProvider, add test

    • Skip clear button test for comboBoxLight

v5.0.4

01 Jul 10:42
01d6882
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.0.3:

  • e73a09d fix: toggle button should not leave focus on external element (#787)

  • 249881e fix: focused check

v5.0.3

11 Jun 08:39
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.0.2:

v5.0.2

21 May 07:16
0a93a9c
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.0.1:

  • a4e06d8
    • fix: allow changing value in value-changed listener (#651, #810)
    • fix: multiple value-changed events fired (#811)
  • 677d7ab fix: don't fire custom-value-set on item click (#804)
  • e545cc0 fix: stop enter keyboard event (#806, #808)

v5.0.1

09 May 11:42
5ebd263
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.0.0:

v5.0.0

29 Apr 08:21
Compare
Choose a tag to compare

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 the clearButtonVisible property. (Note: if the value of the combo box is empty, the clear button is always hidden.)

Changes Since v5.0.0-alpha1:

  • 2ef1653 fix: broken focus-ring behaviour on IE11

  • 395e706 perf: defer overlay positioning to improve typing in Edge (#800)

v4.0.4

29 Apr 07:21
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Fixes

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)

  • e25b8e2 Fix duplicate custom-value-set events fired (#799)

v4.2.9

26 Apr 10:17
c7e7d85
Compare
Choose a tag to compare

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)

    Fixes vaadin/vaadin-combo-box-flow#245

  • 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.

    Fix vaadin/vaadin-combo-box-flow#167

v5.0.0-alpha1

29 Mar 18:19
Compare
Choose a tag to compare
v5.0.0-alpha1 Pre-release
Pre-release

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 the clearButtonVisible 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. Added pointer-events: auto; to vaadin-combo-box-light when the overlay is open, to make the basic click behaviour consistent with vaadin-combo-box.