Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bvaughn/react-window
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.8.9
Choose a base ref
...
head repository: bvaughn/react-window
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.8.10
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Nov 30, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dd73de8 View commit details

Commits on Apr 17, 2023

  1. Prettier

    bvaughn committed Apr 17, 2023
    Copy the full SHA
    6ff5694 View commit details

Commits on Nov 22, 2023

  1. Copy the full SHA
    7853dd3 View commit details
  2. 1.8.9 -> 1.8.10

    bvaughn committed Nov 22, 2023
    Copy the full SHA
    efad3d8 View commit details
Showing with 6 additions and 3 deletions.
  1. +3 −0 CHANGELOG.md
  2. +1 −1 package.json
  3. +1 −1 src/__tests__/FixedSizeList.js
  4. +1 −1 src/createListComponent.js
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
------------

### 1.8.10
* Fix scrollDirection when direction is RTL (#690)

### 1.8.9
* Readme changes

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-window",
"version": "1.8.9",
"version": "1.8.10",
"description": "React components for efficiently rendering large, scrollable lists and tabular data",
"author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
"contributors": [
2 changes: 1 addition & 1 deletion src/__tests__/FixedSizeList.js
Original file line number Diff line number Diff line change
@@ -601,7 +601,7 @@ describe('FixedSizeList', () => {
const ref = createRef();
ReactDOM.render(
<FixedSizeList {...defaultProps} ref={ref} />,
document.createElement('div'),
document.createElement('div')
);

// Mimic the vertical list not being horizontally scrollable.
2 changes: 1 addition & 1 deletion src/createListComponent.js
Original file line number Diff line number Diff line change
@@ -580,7 +580,7 @@ export default function createListComponent({
return {
isScrolling: true,
scrollDirection:
prevState.scrollOffset < scrollLeft ? 'forward' : 'backward',
prevState.scrollOffset < scrollOffset ? 'forward' : 'backward',
scrollOffset,
scrollUpdateWasRequested: false,
};