Skip to content

Releases: vaadin/vaadin-combo-box

v6.0.1

09 Mar 17:18
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v6.0.0:

  • fb76e52 chore: pim @esm-bundle/chai to fix CI build

  • 3555d5c fix: do not clear filter when autoOpenDisabled

v6.0.0

04 Feb 07:52
Compare
Choose a tag to compare

API Documentation →

⚠️ Breaking Changes Since v5.x:

  • The component is updated to be based on Polymer 3
  • IE11 and legacy Edge are no longer supported

Changes Since v6.0.0-alpha1:

  • e54d233 chore: bump dependencies to stable versions (#995)

  • 7a3c292 refactor: remove redundant selector checks

  • 788fb23 refactor: simplify dropdown wrapper code

  • 1b15b0a refactor: remove Polymer 1.x debouncer call

  • 10369cb refactor: cleanup dead code and tests

  • f42ff80 fix: add custom-value-set event types [skip ci] (#990)

  • 014657a chore: align JSDoc, add change event [skip ci] (#989)

  • a2f36b5 refactor: remove ShadyCSS workarounds (#986)

  • fdac1e8 chore: remove dist folder from git [skip ci] (#981)

  • c8791c3 chore: update JSDoc for custom events [skip ci] (#980)

v6.0.0-alpha1

10 Dec 14:45
Compare
Choose a tag to compare
v6.0.0-alpha1 Pre-release
Pre-release

API Documentation →

⚠️ Breaking Changes Since v5.x:

  • The component is updated to be based on Polymer 3
  • IE11 and legacy Edge are no longer supported

Changes Since v5.4.7:

  • 58a1f26 feat!: convert to Polymer 3, add events type definitions (#977)

v5.4.7

04 Dec 07:21
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.4.6:

  • a3385b6 fix: Scrolling quickly to the bottom shows blank items (#978)

    When the dropdown was being scrolled quickly, some pages weren't being loaded and skipped in the end. It has been fixed by resending the skipped pages after the scroller reset and filter those indexes which are close to current scroller position, so as to avoid unnecessary duplicated pages and loading indicator hanging.

    Fixes: #970

  • 13e57f5 fix: support clearing the items property (#975)

v5.4.6

06 Nov 13:29
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.4.5:

  • d257220 fix: filter items regardless of autoOpenDisabled (#968)

v5.4.5

05 Nov 09:42
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.4.4:

v5.4.4

02 Nov 13:17
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.4.3:

  • e768ef1 fix: remove overlay when no items provided (#964)

  • 46a688f fix: set value on dataprovider callback (#961)

v5.4.3

29 Oct 10:47
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.4.2:

  • 7707868 fix: mouse scroll doesn't fetch new items (#962)

    The function _scrollIntoView(index) is used instead of scrollToIndex(index) to provide more accurate scroll while restoring the old position in unknown size lazy loading, and ensure the next page after target index is also loaded and rendered.

    Fixes #957

v5.4.2

26 Oct 10:27
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.4.1:

  • 5007fcc fix: flush the pending requests on size change (#958)

    When the combo box size is being changed, it checks the pending request for non-existing pages and flushes them, if any.

    Fixes vaadin/flow-components#229

v5.4.1

25 Sep 09:15
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.4.0:

  • b7df559 Keep the scroller position while scrolling lazily and with undefined size (#902)