v4.3.6

MODSetter/SurfSensev4.3.6Feb 13, 2026by juliangarnier

AI Summary

This release fixes a synchronization bug in the Auto Layout component where layout animations were not properly synced with scroll events.

Key Highlights

  • Fixed Auto Layout sync with onScroll functionality
  • Enables proper control of layout animations using the animate method
  • Code example provided for controlling animations via scroll

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