-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NG0204: Token InjectionToken X is missing a ɵprov definition after Angular 15 upgrade #218
Comments
Could you please provide a minimal reproducible example? |
Closing as not reproducible. We have an integration app in this repository which is running with Angular 15. Feel free to re-open the issue once you're able to provide a reproducible example. |
Got the same issue, same fix. No idea what's going on. I'm not able to reproduce it on stackblitz... |
Got the same issue after migration to angular 15. |
I saw that the repo was upgraded to angular 15. Could we get a new release? Maybe this fix the issue. |
Well, I could’ve published a new version but I’d want to double check to ensure this is related to a new version. Because that might be an unnecessary publish. I need a reproducible example gentlemen. |
Could you publish a dev version so that I can check against my project? |
I'm using Angular v15, and I don't have an issue. It'll be helpful if you can reproduce it. |
I have had something similar since the upgrade to Angular 15. We have a use case where we want to get a @ContentChild(MatFormFieldControl, { static: true })
private formFieldControl!: MatFormFieldControl<unknown>;
ngOnInit(): void {
this.matFormField._control = this.formFieldControl; For I'll try to provide a reproducible case today |
I was not able to reproduce our issue on a clean project TBH. We are still investigating why it is failing by removing all codes around. Even if I remove the code within the decorator it is failing. Just the fact that we set the decorator has an impact on our I think this is related to angular/angular#48276 but no idea what is the reason. |
Even trying that approach it fails:
So at least, this is not related to this library ;) |
To be honest I have issues in other libraries as well related to decorators. But it’s usually not a library issue but something related to the application. Since I’ve seen already some issues related to decorators this means there actually has been some change in the TS compiler or Angular compiler that might affect it. |
this typescript issue seems to be related |
It is indeed related to a modification of the way properties are set as you can see in the Typescript documentation. This new way is applied when your target is es2022. Angular cli is aware of this as you can this in this code , it will set the correct value The solution then is to set the target to es2021 then Angular Cli will hook the configurations and set es2022 and useDefineForClassFields to false There is only one thing that we still don't understand is that if you set these values yourself to avoid the warning of Angular Cli, then it doesn't work. It seems typescript will read directly the file and just ignore useDefineForClassFields Related tickets:
|
Yeah, I haven't got my hands yet to going through the Angular 15 release completely. In other libraries this is being solved by playing around with |
Have to re-open the issue because I also experienced it in one of my apps (haven't met it earlier):
Not sure how to fix it yet, will be looking for possible resolutions. UPD: I ain't sure this is exactly related to this library. |
@jogelin I have experienced this issue with a control value accessor too. I have fixed it with the Before: provide: NG_VALUE_ACCESSOR,
useExisting: CosAutocompleteComponent After: provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => CosAutocompleteComponent), Your thoughts? P.S. I know it wasn't necessary to use |
Ok, I just doubled checked my app and the issue wasn’t related to this library. Sorry for pinging anyone who’s subscribed to this issue. |
Seems to work too :) |
I'm still able to reproduce the issue in Angular v15.2. Though, I'm not sure if I have to follow this approach #224 (comment) |
After updating to Angular 15, components with the following setup fail with
NG0204: Token InjectionToken X is missing a ɵprov definition.
The error dissapears and the component works after removing the
UntilDestroy
decorator.The text was updated successfully, but these errors were encountered: