I have a layout that has a long list of links pinned to the right, then on click 'slides' to the left via a view transition and renders that item's content to the right. That list has a scroll, and jumps back to top on navigate between the base page and the detail page.
base page/layout:
[ calendar ] [ events list ]
detail page/layout:
[ events list ] [ details ]
How can I persist scroll on the events list between page navigation without jeopradising the view transition? I've tried using the lifecycle hooks like before-swap and after-swap but that breaks the view transition for some reason. Also the transition:persist doesn't work for that either.