Maurizio Cescon
Maurizio Cescon
@LayZeeDK not sure it's the same case... IMO in your AppModule you're missing some mandatory providers (which are defined in my case): ``` @NgModule({ bootstrap: [AppComponent], declarations: [AppComponent], imports: [...
I checked also #4063 and it seems to me it's a little bit different: my setup (AppModule) is module-based... so I guess the error might be the same (as the...
Just in case, this is an easier example to check https://stackblitz.com/edit/stackblitz-starters-pculha?file=src%2Fapp%2Fshared.module.ts
Thanks a lot for the PR! Maybe I'm missing something stupid (then my bad), but I wonder: isn't the PR covering only inputs? Meaning: outputs (model) are still out?
Any chance to have the standalone code being merged? Angular is moving away from modules... the changes are very much needed! Thanks!
@rainerhahnekamp yep! You can quickly take a look at the tests to see what's supported. @markostanimirovic any thought about this PR? In line with what the team has in mind...
Yeah, I understand. Closing it!
Ok, created a dedicated ticket https://github.com/ngrx/platform/issues/4446
Hey! Well, I assume the most updated answer to this issue would be something like: [once this PR](https://github.com/angular/angular/pull/56501) is merged, just use `effect` to sync the your `signal` with your...
I guess you can support `update` as well: ``` typescript interface MirrorSignal { (): T; set(value: T): void; update(updateFn: (value: T) => T): void; // asReadonly(): Signal; ??? once you...