Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Releases: tiagovtristao/react-table-container

v2.0.2

18 Jan 09:23
Compare
Choose a tag to compare
  • Security vulnerability in dependency package fixed

v2.0.0

06 Oct 16:00
Compare
Choose a tag to compare

This upcoming version comes with the following features and breaking changes:

  • ReactTableContainer now supports tables with the tfoot element (or the component rendering it) on them;
  • Both maxWidth and maxHeight props are no longer supported. You should now use the style prop (ie. style={{ maxWidth: "200px", maxHeight: "200px" }}) instead. This allows for greater flexibility and customisation of the container, if necessary.
  • Out of the box support for React components that render HTML table elements was dropped. This could only be achieved by cloning the table twice under the hood. A solution like this could really turn problematic for long tables or rows with dynamic behaviour (ie. making HTTP requests on mount). This new version will still support components, but now the header related components must be specified in the new customHeader prop to ensure that nothing else gets cloned.

v1.1.0

19 Aug 00:11
Compare
Choose a tag to compare
  • style and className props have now been introduced and are optional. They provide direct access to styling/positioning the container element whenever the user might need them.

v1.0.0

18 Aug 16:55
Compare
Choose a tag to compare
  • API and features for v1.0.0 finalised;
  • React components that render HTML table elements are now supported;
  • Scrollbar interaction performance increased;
  • First batch of test cases have now been added;
  • Travis CI set up;
  • The build process now also produces a minified UMD file;
  • React 0.14 officially supported for users still using it;
  • Code base compatible with React 16 and upcoming versions.

v0.2.2

19 Mar 23:06
Compare
Choose a tag to compare
  • Fixed inability to select text either inside or outside the container. Thanks @heatherbooker

v0.2.1

10 Mar 20:22
Compare
Choose a tag to compare
  • Fixed container's display css property

v0.2.0

10 Mar 20:39
Compare
Choose a tag to compare

First release

26 Feb 11:22
Compare
Choose a tag to compare
v0.1.0

Initial commit