Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: merge master #191

Open
wants to merge 2 commits into
base: v2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,41 @@

## NEXT VERSION

## v1.10.4 (2020-07-02)

- fix: flicker on expanding in dynamic mode

## v1.10.3 (2020-06-30)

- fix: horizontal scrollbar in flex mode with dynamic row height
- chore: tweak row height measurement

## v1.10.2 (2020-06-26)

- fix: regression of expansion with frozen columns
- fix: dynamic rowHeight is not updated when `data` or `columns` changed

## v1.10.1 (2020-06-24)

- fix: dynamic rowHeight is not calculated correctly with frozen columns
- fix: dynamic rowHeight is not updated when resizing column

## v1.10.0 (2020-06-22)

- feat: add `estimatedRowHeight` to support dynamic row height

## v1.9.4 (2020-06-22)

- chore: loosen prop type check for `data`

## v1.9.3 (2020-05-26)

- fix: wrong description for Column props

## v1.9.2 (2020-04-22)

- fix: frozen data not shown with empty data

## v1.9.1 (2019-10-17)

- reverted #80, now custom renderer doesn't support top level hooks, see #109
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ We are using a advanced table component based on `BaseTable` internally, with mu

![AdvanceTable](screenshots/advance-table.png)

[In real products](https://blogs.autodesk.com/bim360-release-notes/2019/11/18/bim-360-cost-management-update-november-2019/)

## Contributing

Please check [guidelines](CONTRIBUTING.md) for more details
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-base-table",
"version": "1.9.1",
"version": "1.10.4",
"description": "a react table component to display large data set with high performance and flexibility",
"main": "dist/index.js",
"module": "dist/react-base-table.esm.js",
Expand Down
Loading