jiftechnify / nostatus

A Nostr web client specialized in browsing user status (NIP-38)
https://nostatus.vercel.app
MIT License
23 stars 3 forks source link

Bump virtua from 0.18.0 to 0.20.0 #86

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 8 months ago

Bumps virtua from 0.18.0 to 0.20.0.

Release notes

Sourced from virtua's releases.

0.20.0

BREAKING CHANGES

  • Incomplete padding support was dropped from VList. Use Virtualizer and startMargin/endMargin prop instead.
// VList
<VList style={{ paddingTop:20, paddingBottom: 40 }}>
 {createRows(1000)}
</VList>

// Virtualizer <div style={{ overflowY: 'auto', overflowAnchor: "none" }}> <div style={{ height: 20 }}/> <Virtualizer startMargin={20} endMargin={40}> {createRows(1000)} </Virtualizer> <div style={{ height: 40 }}/> </div>

  • components.Root prop of VList was removed. Use Virtualizer instead. If you want to customize scrollable element, just pass props to wrapper div. If you want to customize inner element, use as prop of Virtualizer.
// VList
<VList components={{ Root: ViewportComponent }}>
 {createRows(1000)}
</VList>

// Virtualizer <div style={{ overflowY: 'auto' }}> <Virtualizer as={ContainerComponent}> {createRows(1000)} </Virtualizer> </div>

  • WVList was renamed and changed to WindowVirtualizer because it has similar usability to Virtualizer. It's wrapper div was removed so add it by yourself if you need to apply some styles.
// WVList
<div style={{ padding: 200 }}>
  <WVList style={{ border: "solid 1px gray" }}>
   {createRows(1000)}
  </WVList>
</div>

// WindowVirtualizer <div style={{ padding: 200 }}> <div style={{ border: "solid 1px gray" }}> <WindowVirtualizer>{createRows(1000)}</WindowVirtualizer> </div> </div>

  • components.Item prop of VList was renamed to item

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
vercel[bot] commented 8 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nostatus ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 8, 2024 1:34am