v4.3.6

elkowar/ewwv4.3.6Feb 13, 2026by juliangarnier

AI Summary

Fixes a regression in the Auto Layout feature that prevented proper synchronization with scroll events. This allows for better control over layout animations triggered by scrolling.

Key Highlights

  • Fixed Auto Layout not properly synced with onScroll
  • Allows controlling layout animations with scroll triggers

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