v4.3.6

sergeyzwezdin/hubav4.3.6Feb 13, 2026by juliangarnier

AI Summary

Fixes an Auto Layout synchronization issue with scroll events, enabling smoother control over layout animations.

Key Highlights

  • Auto layout now properly synced with scroll events
  • Support for `autoplay: onScroll` configuration

New Features

  • Scroll synchronization for layout animations

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