Results 4 comments of Alexey Zuev

Yea, please look at this branch https://github.com/alexzuza/angular-plugin-architecture/tree/cli8

As a possible workaround you can revert position: ``` constructor(private dragulaService: DragulaService) { this.subscription = this.dragulaService.drop().subscribe(({ name }) => { this.dragulaService.find(name).drake.cancel(true); }); } ``` https://stackoverflow.com/questions/63532041/ng2-dragula-after-adding-new-item-its-getting-displayed-at-the-top/63609337#63609337

Minimal reproduction https://ng-run.com/edit/8ZCWt14EFPjErwI54zah?open=app%2Fapp.component.html

@psykolm22 Hey! The reason for this is that your library is released with wrong metadata for `AngularGooglePlaceDirective` symbol: ``` "AngularGooglePlaceDirective": { "__symbolic": "reference", "name": "AngularGooglePlaceDirective" }, ``` The problem is...