Skip to content

Releases: schrodinger/fixed-data-table-2

v2.0.14

22 Aug 02:23
Compare
Choose a tag to compare

Update dependencies to fix security vulnerabilities:

v2.0.13

22 Aug 01:22
Compare
Choose a tag to compare

v2.0.12

24 Jun 11:02
Compare
Choose a tag to compare

v2.0.11

23 May 05:14
Compare
Choose a tag to compare

v2.0.10

14 Apr 00:59
Compare
Choose a tag to compare

Update dependencies to fix security vulnerabilities:

v2.0.9

11 Apr 00:13
Compare
Choose a tag to compare
  • Change testing framework from Mocha to Jest (#719)
  • Fix scrollbar thumb crashing in React@next (v19) (#718)

v2.0.8

30 Mar 10:48
Compare
Choose a tag to compare

Update dependencies to fix security vulnerabilities:

v2.0.7

15 Feb 16:51
Compare
Choose a tag to compare

Update dependencies to fix security vulnerabilities:

v2.0.6

10 Jan 09:58
Compare
Choose a tag to compare

Fixes vertical scrollbar offset when isVerticalScrollExact is true (#712) (Fixes #711)

v2.0.5

19 Dec 16:49
Compare
Choose a tag to compare

Fetch and Cache previous row heights (#701) (Fixes #700)

Added new table prop isVerticalScrollExact (defaulted as false), which can be turned on to make vertical scrolls accurate.
This is done by making FDT fetch the row heights for ALL rows in the table.

There's also an internal cache so that FDT won't request keep requesting all rows on every render.
Incase the cached row height needs to be reset, the new public API updateRowHeights(rowIndex) can be used to reset the row heights starting from rowIndex until the end of the table.