v4.3.6
zumerlab/snapdomv4.3.6Feb 13, 2026by juliangarnier
AI Summary
Fixed a bug in Auto Layout where it was not properly synced with `onScroll`, now allowing users to control layout animations more effectively.
Key Highlights
- Fixed auto layout not properly synced with onScroll
- Enabled controlling layout animations with onScroll sync
New Features
- Improved Auto Layout animation control
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,
})
});
```