Open
Description
Looks to be working ok with Angular 12 but there's a warning on npm install
about peer dependencies:
npm WARN ngx-sortablejs@11.1.0 requires a peer of @angular/common@^11.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN ngx-sortablejs@11.1.0 requires a peer of @angular/core@^11.0.0 but none is installed. You must install peer dependencies yourself.
Activity
Anikethana commentedon Sep 18, 2021
pull request #246
nunoarruda commentedon Nov 2, 2021
Node.js LTS version is now v16.x which includes npm v8.x. These versions will error out on
npm install
if there is an incorrect (and potentially broken) dependency resolution which looks to be the case withngx-sortablejs
:Workaround: use
npm install --force
ornpm install --legacy-peer-deps
.@smnbbrv can you please fix this when you have a chance?
arimus commentedon Nov 28, 2021
It might be appropriate to not depend on a specific version of Angular and do a greater than the min requirements as a peer dependency instead? Would prevent having to create new builds for every Angular release.
imtiazShakil commentedon Nov 22, 2022
is this project dead?
nunoarruda commentedon Nov 22, 2022
At this stage, it looks like this project is pretty much dead and/or abandoned. I suggest you folks give these alternatives a try:
https://material.angular.io/cdk/drag-drop/overview (for mixed direction, follow MikaStark workaround)
https://valor-software.com/ng2-dragula/
https://kreuzerk.github.io/ng-sortgrid/
COBRASoft5 commentedon Nov 22, 2022
cdk doesn't work with grids
dragula also dead
sortgrid doesn't cut it
SortableJs is the best available, but it needs to be maintained :(
Deitsch commentedon Nov 23, 2022
Yes, it's dead.
I'd suggest https://github.com/ThibaultJanBeyer/DragSelect as alternative
SylvainUMI commentedon Jul 28, 2023
Holly shit it's too bad ....
nzbin commentedon Aug 2, 2023
Hi, folks, I suggest you can try the ng-dnd library and it's very easy to solve the mixed direction issue (angular/components#13372), please check the following example:
https://stackblitz.com/edit/867pxw?file=src%2Fexample%2Fchips-drag-drop-example.html