Julian Jandl
Julian Jandl
I think this happens because the autosize strategy uses `offsetHeight` to determine the height of elements. It can be off for some subpixels when users zoom in. You shouldn't see...
@AlirezaEbrahimkhani any update? :-)
hey @drakedeatonuk thank u for the input! May I ask what the specific needs are that force you to implement a custom scroll strategy? For me this was the hardest...
You are right, the scrollstrategy would provide you the level of control you need. But this sounds like a common use case and it should be possible to achieve a...
very cool idea, I'd call it `GridVirtualScrollStrategy` :)
**Problem 1: no distinction** ```ts state$ = this.state.select(); // some fn this.state.set('foo', 'bar'); // state$ emits this.state.set('foo', 'bar'); // state$ emits this.state.set('foo', 'bar'); // state$ emits ``` **Problem 2: run...
* depending on the used strategy & workload * `immediate` strategy will never result in waterfall rendering * it's more annoying & present on bootstrap than on updates (preferably we...
hey @jon9090 i'm sorry that the API is confusing for you and your team. In general, both methods serve completely different purposes. `connect` let's u add new values to the...
@dmonad are there any plans to merge this? I also face the very same issue and wanted to raise a PR. Then I noticed this one here. I can also...