v4.3.6

badges/shieldsv4.3.6Feb 13, 2026by juliangarnier

AI Summary

This release fixes an issue where Auto Layout was not properly synced with the onScroll event, enabling better control over layout animations.

Key Highlights

  • Fixed Auto Layout synchronization with onScroll
  • Enabled layout animation control with sync: true option
  • Improved animation syntax for layout.animate()

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