Joost Koehoorn

Results 268 comments of Joost Koehoorn

This turned out to be missing support from the AOT compiler which has been addressed in angular/angular#48091. ~~I cannot close issues in this repo.~~ **EDIT** I can now!

I think I have observed a similar situation when using `scheduled` with `asapScheduler`, causing emissions to get stuck. The workaround was to switch to `switchMap(x => from(Promise.resolve(x)))` to achieve the...

Indeed, this seems to be inverted. A PR to fix it would be appreciated.

This is what _model inputs_ intent to address in the future, [as outlined in the RFC](https://github.com/angular/angular/discussions/49682). These are being designed at the moment.

This is a bit of a gotcha, it currently needs to be ```ts input(300, { transform: numberAttribute }); ``` The reason is that a transform introduces a divergence in the...

Also, in this particular case, you can opt not to specify any type arguments at all. In that case everything is fully inferred. It's only the partial inference that doesn't...

What version of the Angular extension are you using?

I don't quite understand what this is requesting, it seems like rendering components without host element?

Okay, that would be removing the host element in that case (#18877). Angular today is highly dependant on that element for features like host directives and host bindings/listeners, it's not...