v3.8.0
Features
-
rowHeightprop onTreenow accepts a function(node) => numberin addition to a fixed number, so each row can be sized from its node. Fixed-height trees keep using react-window'sFixedSizeList; the function form usesVariableSizeList. Adds atree.redrawList()API method to recompute row offsets when arowHeightfunction's output changes for reasons the tree can't observe (#341, originally #238)
v6.6.0
- fix(dockview-vue): accept components via prop (resolves #1301) by @mathuo in https://github.com/mathuo/dockview/pull/1302
Full Changelog: https://github.com/mathuo/dockview/compare/v6.5.0...v6.6.0
@tanstack/lit-virtual@3.13.27
- Updated dependencies [
fc992ab]:- @tanstack/virtual-core@3.16.0
@tanstack/svelte-virtual@3.13.26
- Updated dependencies [
fc992ab]:- @tanstack/virtual-core@3.16.0
@tanstack/angular-virtual@5.0.2
- Updated dependencies [
fc992ab]:- @tanstack/virtual-core@3.16.0
@tanstack/solid-virtual@3.13.26
- Updated dependencies [
fc992ab]:- @tanstack/virtual-core@3.16.0
@tanstack/vue-virtual@3.13.26
- Updated dependencies [
fc992ab]:- @tanstack/virtual-core@3.16.0
@tanstack/react-virtual@3.13.26
- Updated dependencies [
fc992ab]:- @tanstack/virtual-core@3.16.0
@tanstack/virtual-core@3.16.0
-
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
followOnAppendso new items scroll into view only when the viewport was already at the end, plusscrollEndThreshold,scrollToEnd(),getDistanceFromEnd(), andisAtEnd()helpers for chat-style integrations.