Skip to content

Releases: vaadin/vaadin-grid

v5.6.3

04 Jun 06:23
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.6.2:

v5.5.4

04 Jun 09:59
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.5.3:

  • a4c5c73 Revert "perf: skip scrollToIndex(0) on _effectiveSize changes (#1722)" (#1730)

  • d64b99b fix: use offsetWidth for column auto width calculation (#1745)

  • e3bd716 Click first cell child on space keyup (#1739) (#1741)

  • d73306f perf: skip scrollToIndex(0) on _effectiveSize changes (#1722)

v5.7.0-alpha2

28 May 13:09
Compare
Choose a tag to compare
v5.7.0-alpha2 Pre-release
Pre-release

Live Demo →
API Documentation →

Changes Since v5.7.0-alpha1:

  • 33bb3c6 chore: update dependencies versions [skip ci]

  • e20bccf Click first cell child on space keyup (#1739)

  • 0303bf8 refactor: replace usage of legacy API (#1734)

  • f46c9ba Don't run renderers for missing header/footer cells (#1735)

v5.6.2

22 May 08:24
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.6.1:

  • cb1e821 Don't run renderers for missing header/footer cells (#1735) (#1736)

  • b48fbb3 refactor: remove obsolete unused methods

  • 3fdc4e1 Update scroller measurements on dir changed (#1731)

v5.7.0-alpha1

11 May 14:28
Compare
Choose a tag to compare
v5.7.0-alpha1 Pre-release
Pre-release

Live Demo →
API Documentation →

New Features

  • Added TypeScript definitions for Polymer 3 version

Changes Since v5.6.1:

  • a022c33 chore: bump dependencies for TS defs

  • ede00dd feat: prepare for TS defs generation (#1720)

  • b48fbb3 refactor: remove obsolete unused methods

  • 3fdc4e1 Update scroller measurements on dir changed (#1731)

v5.6.1

06 May 07:42
be05643
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.6.0:

  • 1c66ef2 Revert "perf: skip scrollToIndex(0) on _effectiveSize changes (#1722)" (#1730)

    This reverts commit 13e9e39.

    #1722 caused a regression in TreeGridHugeTreeNavigationIT.keyboard_navigation, focus is lost while navigating with keyboard.

v5.6.0

05 May 13:02
Compare
Choose a tag to compare

Live Demo →
API Documentation →

New Features

  • Added right-to-left (RTL) support.

Changes Since v5.6.0-alpha3:

  • 68c1049 Bump dependencies to stable (#1728)

  • 13e9e39 perf: skip scrollToIndex(0) on _effectiveSize changes (#1722)

    scrollToIndex causes two calls to costly _assignModels, even when nothing actually changed.

    This causes a lot of extra computation, especially with the Flow component method TreeGrid::expandRecursively,
    which repeatedly changes _effectiveSize, which in turn resets the scroll position.

  • 24d5258 chore: remove Android Emulator from CRON

  • 90966ef docs: Document heightByRows performance implications [skip ci] (#1710)

v5.6.0-alpha3

08 Apr 10:56
Compare
Choose a tag to compare
v5.6.0-alpha3 Pre-release
Pre-release

Live Demo →
API Documentation →

Changes Since v5.6.0-alpha2:

  • 1f8e815 test: skip dom-repeat flaky tests on iOS

  • e035001 Add rtl resizing and navigation implementation

  • 0269bad Add test for resizing and navigation in RTL

  • 67d6d31 Add rtl support (#1706)

v5.5.3

03 Apr 06:43
c5f834a
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.5.2:

v5.6.0-alpha2

24 Feb 11:54
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v5.6.0-alpha1:

  • 9cbe6c1 Rerender grid after loading items. (#1694)

    Fixes vaadin/vaadin-grid-flow#476

    • Grid is re-rendered after every callback. Undoes #1491
    • ensureSubCacheForScaledIndex is only called for items in $.items.children
    • _isExpanded now uses a Set to lookup item ids.