v4.3.6

enricoros/big-AGIv4.3.6Feb 13, 2026by juliangarnier

AI Summary

Fixes a synchronization issue in the Auto Layout feature where layout animations were not properly synced with scroll events.

Key Highlights

  • Fixed Auto Layout sync with onScroll
  • Enabled control over layout animations using onScroll

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,
  })
});
```