-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Support for Angular 16 #3192
Comments
Hello, just now I found this bookstore, I find it very good. I am using angular 16, and when I try to install it, it says that it is not compatible. Please correct this dependency error... and please make it also compatible with standalone components |
Is there any solution that we have to follow until they fix the problem ? |
Work Around - For New ProjectsAssuming you're ok with stepping down to Angular CLI version 15.2.8 for the project If you're here from the Fireship Angular tutorial project, this is particularly for you! You can create a new angular project that uses Angular15 by using the following command: and then in the new project directory you can run the add command as directed by the Nebular Installation guide. |
@AstroClef |
@matiasAS I understand the frustration. If you're stuck on 16 then I'm sorry that workaround doesn't work for you. (Updating comment headline to include "New Projects" for clarity) I wrote it to help anyone with a new project; particularly those following the Fireship tutorial and find themselves here: |
@AstroClef when will support for angular 16 be available? |
@matiasAS Sorry, I don't know. I'm not a contributor to Nebular. I actually came from that tutorial! |
@AstroClef ok i thought you were part of nebular development team |
I tried to do the neccessary changes to update to Angular 16 in the nebular source code. Seems to work fine, but I am not able to commit my changes without linter errors. The linting for the project does not seem to be set up properly. So for now I commited my changes with the |
Hi, BTW, we have migrated to v16 using |
I see there is already a pull request submitted for it. |
I did a PR for the same thing before I saw your PR or issue, with a linting fix and other things you can look at #3194, However, I do not see any response to either my PR or yours, and I have a feeling that Nebular has died and that all projects built on it will perish🤦♂️😩. Therefore, if anyone from the Nebular team is listening to us, I hope that they clarify what we are about to reach here because many projects trusted you and they will not be happy to lose that trust forever. |
Since the release of angular 17 is near and nebular is still missing angular 16 support. I think it's time to search for some alternatives. Any ideas? (I don't like the Angular Material layout) |
@kisimediaDE You can also used primeflex and primeng its a very good combination |
Nebular is usually quite behind the current Angular versions. The workaround without having to use {
"dependencies": {
"@angular/common": "^16.2.6",
"@angular/core": "^16.2.6",
"@angular/router": "^16.2.6",
"@nebular/security": "^11.0.1"
}
"overrides": {
"@nebular/security": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core",
"@angular/router": "$@angular/router"
}
}
} |
Nebular 12 has just been released and now should support Angular 16. |
Just in time for Angular 17! |
we need support for Angular 17 :( :( |
I have this same issue now with Angular 17. Just sharing. Maybe the log exceptions of my builds can help you figure out what this Error: Error: node_modules/@nebular/theme/components/cdk/table/row.d.ts:39:5 - error TS2610: 'sticky' is defined as an accessor in class 'CdkFooterRowDef', but is overridden here in 'NbFooterRowDefDirective' as an instance property.
39 sticky: boolean;
~~~~~~ |
Issue type
I'm submitting a ...
Issue description
Current behavior:
Nebular 11 does not support Angular 16, it expects Angular 15 as a dependency. When used with Angular 16,
npm
complains about unresolved dependencies.Expected behavior:
Nebular should work out of the box with Angular 16.
Steps to reproduce:
Basically follow the installation instructions of Nebular: https://akveo.github.io/nebular/docs/guides/install-nebular#install-nebular
npm install -g @angular/cli@16
ng new --defaults angular-nebular-test
cd angular-nebular-test
ng add @nebular/theme
Other information:
npm, node, OS, Browser
Node
v16.15.1
npm:
8.11.0
Angular, Nebular
Angular:
16.0.0
Nebular:
11.0.0
The text was updated successfully, but these errors were encountered: