v4.3.6
cheshire-cat-ai/corev4.3.6Feb 13, 2026by juliangarnier
AI Summary
This release fixes a synchronization issue in the Auto Layout feature, ensuring that layout animations now properly respond to scroll events.
Key Highlights
- Fixed Auto Layout synchronization with `onScroll`
- Enabled `sync: true` for better control over layout animations
- Resolved bug preventing layout animation control
Full Release Notes
## Bug Fixes
- **Auto Layout**
- Fix auto layout not properly synced with onScroll, allowing controlling layout animations like this:
```js
layout.animate({
autoplay: onScroll({
sync: true,
})
});
```