This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
Releases: tiagovtristao/react-table-container
Releases · tiagovtristao/react-table-container
v2.0.2
v2.0.0
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
andmaxHeight
props are no longer supported. You should now use thestyle
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
- 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
- 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
- Fixed inability to select text either inside or outside the container. Thanks @heatherbooker
v0.2.1
- Fixed container's display css property
v0.2.0
- Fixed typings not being included in installation. (@heatherbooker)
- New
maxWidth
andmaxHeight
options available. Thanks @heatherbooker!
First release
v0.1.0 Initial commit