Hello, when I instatiate PaginatedGrid object it throws the below exception

Hello, when I instatiate PaginatedGrid object it throws the below exception.
I’m on Vaadin 14. Is there a way to resolve this problem?

java.lang.IllegalStateException: Couldn't find the definition of the element with tag 'plutonium-pagination' in any template file declared using '@JsModule' annotations. Check the availability of the template files in your WAR file or provide alternative implementation of the method getTemplateContent() which should return an element representing the content of the template file
	at com.vaadin.flow.component.polymertemplate.NpmTemplateParser.getTemplateContent(NpmTemplateParser.java:135)
	at com.vaadin.flow.component.polymertemplate.TemplateDataAnalyzer.parseTemplate(TemplateDataAnalyzer.java:200)
	at com.vaadin.flow.component.polymertemplate.TemplateInitializer.<init>(TemplateInitializer.java:91)
	at com.vaadin.flow.component.polymertemplate.PolymerTemplate.<init>(PolymerTemplate.java:88)
	at com.vaadin.flow.component.polymertemplate.PolymerTemplate.<init>(PolymerTemplate.java:103)
	at org.vaadin.klaudeta.PlutoniumPagination.<init>(PlutoniumPagination.java:82)

Hi,
The reason of the exception is that version 1.0.x of the component is using a bower packaged web-component while Vaadin 14 (default mode) looks for npm-packaged component.

There is now GridPagination 2.0.0 which uses lit-pagination web-component as an npm package and it is compatible with Vaadin 14 (npm mode).

Regards,