v4.3.6

ruixenui/ruixen.comv4.3.6Feb 13, 2026by juliangarnier

AI Summary

Fixes a bug in the Auto Layout component where synchronization with the `onScroll` event was broken, allowing developers to better control layout animations.

Key Highlights

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

New Features

  • Improved animation control via `layout.animate({ autoplay: onScroll({ sync: true }) })`

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