28 minutes ago
next.js

v16.3.0-canary.29

Misc Changes

  • Replace next-ppr-optimizer with next-cache-components-optimizer: #94035
  • [Skills] next-dev-loop: persist login state across loops: #94105
  • Fix errors.json merge driver to handle gaps in error codes: #93829

Credits

Huge thanks to @gaojude and @sokra for helping!

4 hours ago
react-arborist

v3.8.0

Features

  • rowHeight prop on Tree now accepts a function (node) => number in addition to a fixed number, so each row can be sized from its node. Fixed-height trees keep using react-window's FixedSizeList; the function form uses VariableSizeList. Adds a tree.redrawList() API method to recompute row offsets when a rowHeight function's output changes for reasons the tree can't observe (#341, originally #238)
5 hours ago
dockview

v6.6.0

What's Changed

Full Changelog: https://github.com/mathuo/dockview/compare/v6.5.0...v6.6.0

7 hours ago
virtual

@tanstack/lit-virtual@3.13.27

Patch Changes

  • Updated dependencies [fc992ab]:
    • @tanstack/virtual-core@3.16.0
7 hours ago
virtual

@tanstack/svelte-virtual@3.13.26

Patch Changes

  • Updated dependencies [fc992ab]:
    • @tanstack/virtual-core@3.16.0
7 hours ago
virtual

@tanstack/angular-virtual@5.0.2

Patch Changes

  • Updated dependencies [fc992ab]:
    • @tanstack/virtual-core@3.16.0
7 hours ago
virtual

@tanstack/solid-virtual@3.13.26

Patch Changes

  • Updated dependencies [fc992ab]:
    • @tanstack/virtual-core@3.16.0
7 hours ago
virtual

@tanstack/vue-virtual@3.13.26

Patch Changes

  • Updated dependencies [fc992ab]:
    • @tanstack/virtual-core@3.16.0
7 hours ago
virtual

@tanstack/react-virtual@3.13.26

Patch Changes

  • Updated dependencies [fc992ab]:
    • @tanstack/virtual-core@3.16.0
7 hours ago
virtual

@tanstack/virtual-core@3.16.0

Minor Changes

  • Add end-anchored virtualization support for chat, logs, and reverse feeds. (#1173)

    New anchorTo: 'end' mode keeps the current visible item stable when older items are prepended, while preserving the existing start-anchored behavior by default. It also keeps an end-pinned viewport pinned when the last item grows during streaming output.

    Add followOnAppend so new items scroll into view only when the viewport was already at the end, plus scrollEndThreshold, scrollToEnd(), getDistanceFromEnd(), and isAtEnd() helpers for chat-style integrations.