Best way to move items in a list when the list is paginated

I have a paginated list where the user drags and drops items to change the order. This list is paginated, so when the length of the list is longer than the page there is no clear way to move items outside of the current page. Is there a design pattern I could use?

The application is an Angular app with a UI very similar to this. The lists have a considerable number of items so due to performance issues we are adding pagination to it, which is causing a lot of UI problems.