v4.3.6

antgroup/echomimicv4.3.6Feb 13, 2026by juliangarnier

AI Summary

Fixes a synchronization issue in the Auto Layout feature.

Key Highlights

  • Auto layout now properly syncs with `onScroll`
  • Allows controlling layout animations via `sync: true`

New Features

  • Auto layout sync fix
  • `sync: true` support in `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,
  })
});
```