I'm monitoring the size of an element in angular using ResizeObserver
observer = new window.ResizeObserver(entries => {
...
someComponent.width = width;
});
observer.observe(target);
When you run the code in safary, firefox or chrome 63 it works just fine
So, in chrome 64 (can-i-use -> native support) it doesn't work any more and it looks like this:
Somehow chrome doesn't do changeDetection for triggers from ResizeObserver
Any suggestion what might be the reason for this strange behaviour?
UPDATE: I'v updated my post based on the discussion below