floAtEbcont
floAtEbcont
Workaround for me was to not use `(vsEnd)` but the native `(scroll)` instead. In the template: ```html ``` In the component code: ```typescript loadMoreIfRequired(event: Event): void { const element =...
@bdavis252 's workaround works for me :+1: Another workaround (more effort, but also a bit cleaner maybe) would be to use https://github.com/ngneat/reactive-forms (a wrapper to angular's form classes) and implement...
@rbalet You only addressed `onTranslationChange`, but to be consistent, I think `get()` should have a signal equivalent too - here's a method that works for me: ```typescript class ExtendedTranslateService extends...
@homj > This should also extend to actual translation. I propose to add a method similar to stream, that returns a signal which reacts on lang or translation change. We...