Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-window-infinite-loader (source) 1.0.10 -> 2.0.0 age adoption passing confidence

Release Notes

bvaughn/react-window-infinite-loader (react-window-infinite-loader)

v2.0.0

Compare Source

Rewrite to be compatible with react-window version two API.

The recommended way to use this library is the new useInfiniteLoader hook:

import { useInfiniteLoader } from "react-window-infinite-loader";

function Example() {
  const onRowsRendered = useInfiniteLoader(props);

  return <List onRowsRendered={onRowsRendered} {...rest} />;
}

The InfiniteLoader component also exists, though it has changed since version 1:

  • Child function onItemsRendered parameter renamed to onRowsRendered
  • Child function listRef parameter removed
import { InfiniteLoader } from "react-window-infinite-loader";

function Example() {
  return (
    <InfiniteLoader {...props}>
      {({ onRowsRendered }) => <List onRowsRendered={onRowsRendered} {...rest} />}
    </InfiniteLoader>
  );
}

Note this package now includes and bundles its own TypeScript definitions and so the external @types/react-window-infinite-loader package has been deprecated.


Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Sep 20, 2025
@renovate renovate bot force-pushed the renovate/react-window-infinite-loader-2.x branch 14 times, most recently from 857a573 to 718c70b Compare September 29, 2025 14:52
@renovate renovate bot force-pushed the renovate/react-window-infinite-loader-2.x branch 4 times, most recently from 19f5d2f to e5153eb Compare October 6, 2025 09:07
@renovate renovate bot force-pushed the renovate/react-window-infinite-loader-2.x branch 4 times, most recently from a790f05 to efb38e7 Compare October 15, 2025 06:26
@renovate renovate bot force-pushed the renovate/react-window-infinite-loader-2.x branch from efb38e7 to 58b9bf6 Compare October 20, 2025 10:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants