v4.3.6

bknd-io/bkndv4.3.6Feb 13, 2026by juliangarnier

AI Summary

This release focuses on fixing a synchronization issue in the Auto Layout feature, ensuring that layout animations now properly sync with scroll events.

Key Highlights

  • Fixed Auto Layout sync issue with onScroll
  • Enabled custom control of layout animations using sync: true option

New Features

  • Improved Auto Layout animation synchronization

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