Skip to content

Commit 0f75a88

Browse files
author
Clauderic Demers
committed
2.1.5
1 parent 2e91d7a commit 0f75a88

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,59 @@
1-
Changelog
2-
------------
3-
### 2.1.3
1+
## Changelog
2+
3+
### 2.1.5
4+
5+
Fix itemSizeGetter bug when `scrollToIndex` is defined [#40](https://github.com/clauderic/react-tiny-virtual-list/issues/40), [#56](https://github.com/clauderic/react-tiny-virtual-list/pull/56)
6+
7+
### 2.1.4
8+
49
Fix misuse of second argument of `componentDidUpdate` as `nextState` (the actual argument is `prevState`) [#27](https://github.com/clauderic/react-tiny-virtual-list/pull/27). Thanks [@gabrielecirulli](https://github.com/gabrielecirulli)!
510

611
### 2.1.3
12+
713
Include TypeScript type definitions in npm package [#26](https://github.com/clauderic/react-tiny-virtual-list/issues/26)
814

915
### 2.1.2
16+
1017
Fixed build script for es modules build [#22](https://github.com/clauderic/react-tiny-virtual-list/issues/22)
1118

1219
### 2.1.1
20+
1321
Renamed `onRowsRendered` prop to `onItemsRendered`.
1422

1523
### 2.1.0
24+
1625
- Added `scrollToAlignment="auto"` option, which scrolls the least amount possible to ensure that the specified `scrollToIndex` item is fully visible [#19](https://github.com/clauderic/react-tiny-virtual-list/issues/19)
1726
- Added `onRowsRendered` prop that is invoked with information about the slice of rows that were just rendered [#14](https://github.com/clauderic/react-tiny-virtual-list/issues/13)
1827
- Converted project to TypeScript and added `types` entry to `package.json`
1928

2029
### 2.0.6
30+
2131
Fix PropType definitions for `width` and `height` props ([#13](https://github.com/clauderic/react-tiny-virtual-list/issues/13))
2232

2333
### 2.0.5
34+
2435
Fixes slow wheel scrolling / scroll-interruption issues with browsers such as Firefox (see [#7](https://github.com/clauderic/react-tiny-virtual-list/pull/7)). Thanks for the contribution [Magnitus-](https://github.com/Magnitus-)!
2536

2637
### 2.0.4
38+
2739
Use `prop-types` package for PropType validation for compatibility with React ^15.5
2840

2941
### 2.0.3
42+
3043
Fixes a bug introduced in `2.0.2` where `nextProps.estimatedItemSize` wasn't being passed down properly in `componentWillReceiveProps`
3144

3245
### 2.0.2
46+
3347
Added support for dynamic property updates to `itemCount` and `estimatedItemSize` [#3](https://github.com/clauderic/react-tiny-virtual-list/issues/3)
3448

3549
### 2.0.1
50+
3651
Fix certain unhandled scenarios in `componentWillReceiveProps`
3752

3853
### 2.0.0
54+
3955
Added support for horizontal lists via the `scrollDirection` prop
4056

4157
### 1.0.0
58+
4259
Initial release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-tiny-virtual-list",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "A tiny but mighty list virtualization component, with zero dependencies 💪",
55
"main": "build/react-tiny-virtual-list.cjs.js",
66
"module": "build/react-tiny-virtual-list.es.js",

0 commit comments

Comments
 (0)