You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When using the animate: directive, DOM nodes are measured immediately before updates are applied to them. But if an update to a parent element already happened, this can result in them being in the wrong place at the time of being measured.
Expected behavior
Toggling the column should cause 3, 6 and 9 to smoothly move to their new location. To achieve this, I think we'd need to measure DOM nodes before any DOM updates happened at all, which sounds tricky to do.
Severity
Medium. It's a bad bug, but a fairly niche situation.
The text was updated successfully, but these errors were encountered:
Describe the bug
When using the
animate:
directive, DOM nodes are measured immediately before updates are applied to them. But if an update to a parent element already happened, this can result in them being in the wrong place at the time of being measured.To Reproduce
https://svelte.dev/repl/8c4d61bba033437bb9add90f5355df25?version=3.21.0 (via https://stackoverflow.com/questions/61430023/svelte-out-transition-in-flip-animation-in-grid-layout-flies-off-from-top-left)
Expected behavior
Toggling the column should cause 3, 6 and 9 to smoothly move to their new location. To achieve this, I think we'd need to measure DOM nodes before any DOM updates happened at all, which sounds tricky to do.
Severity
Medium. It's a bad bug, but a fairly niche situation.
The text was updated successfully, but these errors were encountered: