Garrett Darnell
Garrett Darnell
I've thrown something together on StackBlitz that addresses this feature request: https://stackblitz.com/edit/tinymce-angular-material There are some rough edges, though. Specifically, it's not very strict, so if you don't put the editor...
> The [floatLabel] of mat-form-field seems not to be working in 'auto' mode. It only works as 'always'. Don't you know how to fix it? Or maybe you might add...
This appears to have been introduced by https://github.com/angular/components/pull/13598 Prior to that change, the call to _setSelectionByValue() was not gated by an equality check on the value. Now that it is...
Could you share a reproduction of this problem? Without being able to see the import that is reported by NG6002, this isn't very actionable.
I understand, but NG6002 is working as intended here. What's supposed to happen is that as the compiler inspects your modules, the "real" error is found in your SharedModule (for...
I've created a minimal reproduction that doesn't use lazy-loaded components or the router here: https://stackblitz.com/edit/angular-extdt1?file=src%2Fmain.ts The issue is that your components have the same selector. I'm not sure why this...
I think the root cause is that standalone component injectors are cached by their component id here: https://github.com/angular/angular/blob/4550fe42f704b18f48bd0c490b0c6a283ea912c5/packages/core/src/render3/features/standalone_feature.ts#L26-L41 This explains why the order of component activation matters for your reproduction....
I've been looking into this, and it's unrelated to the bottom sheet and the forms module. What's happening is the NG_VALIDATORS token provided by the ChildComponent is being injected by...
@nahgrin I hope you don't mind, I've thrown your code into StackBlitz so that I could play around with it. [https://stackblitz.com/edit/nahgrin-virtual-scroll-table](https://stackblitz.com/edit/nahgrin-virtual-scroll-table) There was a tiny bit of cleanup, but it...
The lack of a heartbeat/keep-alive bit me this week at work. Heroku will terminate connections it considers to be idle after 55 seconds (see https://devcenter.heroku.com/articles/error-codes#h15-idle-connection), so my tRPC connections are...