[feature request] Angular 18 support
Please add support for Angular 18.
Any estimated time period when angular 18 support would be available? Thanks
Any updates on this?
Any updates?
What we are doing for now which seems to be OK
"overrides": {
"ng2-dragula": {
"@types/dragula": "^3.7.3",
"@angular/animations": "18.1.3",
"@angular/common": "18.1.3",
"@angular/core": "18.1.3"
}
}
And maybe Angular 19. 😄
Currently updating on my way up from 14 to the possibly highest version. Will try out the override workaround with 19 and report back with my experiences.
Hey, here is my report (had to wait for compat of ng-slider for ng19, which is has been shipped a few days ago):
Changes overrides to (19.1.3 is the latest version as of today):
"overrides": {
"ng2-dragula": {
"@types/dragula": "^3.7.3",
"@angular/animations": "19.1.3",
"@angular/common": "19.1.3",
"@angular/core": "19.1.3"
}
}
Had to run ng update like this: ng update @angular/core@19 @angular/cli@19 --force, because otherwise it would not update due to dragula incompatibility (even though there is the override).
I am not done testing my whole app. But drag and drop works :) Thanks for the tip, @joh-klein !
any update on this ?
Not sure if this will help anyone else, but for people that 'fall here' from google searching for a solution, after doing a bit more searches I came up with this, and this lets me do the npm install without the force, so figured I'd put it here for anyone else that might encounter this. Feels a bit 'better' to since if there are any further updates in the future one might want to implement, they don't have to update the number in two places.
"overrides": {
"ng2-dragula": {
"@types/dragula": "^3.7.5",
"@angular/animations": "$@angular/animations",
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
}
}
any forks?
Hi! v6.0.0 is released and it supports all the way including angular v19, v20 is on its way