Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency virtua to v0.20.5 #205

Merged
merged 2 commits into from
Jan 16, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
virtua 0.18.0 -> 0.20.5 age adoption passing confidence

@coderabbitai: ignore


Release Notes

inokawa/virtua (virtua)

v0.20.5

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.20.4...0.20.5

v0.20.4

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.20.3...0.20.4

v0.20.3

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.20.2...0.20.3

v0.20.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.20.1...0.20.2

v0.20.1

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.20.0...0.20.1

v0.20.0

Compare Source

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
  • initialItemSize prop was renamed to itemSize
  • onScrollStop prop was renamed to onScrollEnd

What's Changed

Full Changelog: inokawa/virtua@0.19.2...0.20.0

v0.19.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.19.1...0.19.2

v0.19.1

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.19.0...0.19.1

v0.19.0

Compare Source

  • BREAKING: initialItemCount prop was renamed to ssrCount and now only for SSR

What's Changed

Full Changelog: inokawa/virtua@0.18.1...0.19.0

v0.18.1

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.18.0...0.18.1


Configuration

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

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.18.1 fix(deps): update dependency virtua to v0.19.0 Jan 2, 2024
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.19.0 fix(deps): update dependency virtua to v0.19.2 Jan 4, 2024
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.19.2 fix(deps): update dependency virtua to v0.20.0 Jan 7, 2024
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.20.0 fix(deps): update dependency virtua to v0.20.1 Jan 8, 2024
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 2 times, most recently from 90f3fab to 03c60eb Compare January 8, 2024 18:07
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.20.1 fix(deps): update dependency virtua to v0.20.2 Jan 8, 2024
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 5 times, most recently from a5ffe8d to d936b39 Compare January 10, 2024 19:46
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.20.2 fix(deps): update dependency virtua to v0.20.3 Jan 10, 2024
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 3 times, most recently from 1528f2a to c6da07c Compare January 12, 2024 04:53
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.20.3 fix(deps): update dependency virtua to v0.20.4 Jan 12, 2024
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.20.4 fix(deps): update dependency virtua to v0.20.5 Jan 14, 2024
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 6 times, most recently from 4308834 to 72ed5e6 Compare January 16, 2024 04:23
@takecchi takecchi merged commit f0a6218 into main Jan 16, 2024
5 checks passed
@takecchi takecchi deleted the renovate/virtua-0.x branch January 16, 2024 10:52
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.

None yet

1 participant