WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2025

This PR contains the following updates:

Package Change Age Confidence
virtua 0.47.1 -> 0.48.2 age confidence

Release Notes

inokawa/virtua (virtua)

v0.48.2

Compare Source

What's Changed

  • Revert flex-direction: column-reverse and writing-mode support by @​inokawa in #​830

Full Changelog: inokawa/virtua@0.48.1...0.48.2

v0.48.1

Compare Source

What's Changed

  • Fix incorrect negative overflow detection especially in Windows by @​inokawa in #​827

Full Changelog: inokawa/virtua@0.48.0...0.48.1

v0.48.0

Compare Source

BREAKING CHANGES

Removed reverse prop from VList for React (#​774)

// before
<VList reverse>{children}</VList>;

// after
// Recommended markup to align items to the bottom
<div
  style={{
    overflowY: "auto",
    height: "100%",
    display: "flex",
    flexDirection: "column",
  }}
>
  <div style={{ flexGrow: 1 }} />
  <Virtualizer>{children}</Virtualizer>
</div>;
// or if you want the exactly same markup as reverse prop, use this
const scrollRef = useRef(null);
<div
  ref={scrollRef}
  style={{
    display: "block",
    overflowY: "auto",
    contain: "strict",
    width: "100%",
    height: "100%",
  }}
>
  <div
    style={{
      display: "flex",
      flexDirection: "column",
      justifyContent: "flex-end",
      minHeight: "100%",
      overflow: "clip",
    }}
  >
    <Virtualizer scrollRef={scrollRef}>{children}</Virtualizer>
  </div>
</div>;
// ...or we can use "column-reverse" to invert scroll direction in 0.48.0. May fit depending on your usecase
<div
  style={{
    height: "100%",
    overflowY: "auto",
    display: "flex",
    flexDirection: "column-reverse",
  }}
>
  <Virtualizer>{children}</Virtualizer>
</div>;

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.47.2...0.48.0

v0.47.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.47.1...0.47.2


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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.

@github-actions
Copy link

github-actions bot commented Nov 29, 2025

built with Refined Cloudflare Pages Action

⚡ Cloudflare Pages Deployment

Name Status Preview Last Commit
diffs ✅ Ready (View Log) Visit Preview 166937b

@renovate renovate bot force-pushed the renovate/virtua-0.x branch from b25b991 to 0cb680d Compare December 3, 2025 13:31
@renovate renovate bot changed the title Update dependency virtua to v0.47.2 Update dependency virtua to v0.48.0 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 0cb680d to a8fa3cc Compare December 3, 2025 17:07
@renovate renovate bot changed the title Update dependency virtua to v0.48.0 Update dependency virtua to v0.48.1 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from a8fa3cc to 293e39e Compare December 4, 2025 06:56
@renovate renovate bot changed the title Update dependency virtua to v0.48.1 Update dependency virtua to v0.48.2 Dec 4, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 293e39e to 166937b Compare December 6, 2025 04:07
@jpenilla jpenilla merged commit 51208ef into master Dec 6, 2025
4 checks passed
@renovate renovate bot deleted the renovate/virtua-0.x branch December 6, 2025 04:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants