@samhuk/paginator
Advanced tools
Vanilla JS paginator UI component
Weekly downloads
Readme
A vanilla JS paginator UI component.
npm i @samhuk/paginator
import { createPaginator } from '@samhuk/paginator'
const element = document.createElement('div')
const paginator = createPaginator({
page: 1,
itemCount: 50,
pageSize: 20,
pageSizeOptions: [20, 50, 100, 500],
})
element.appendChild(paginator.rendered.element)
There are two main ways the styles of the component can be imported into another project. One can either:
import
the scss entrypoint or css bundle file into your .ts or .js file. This is supported by all the main bundlers out there like webpack and esbuild as long as you have the required loader/plugin for scss or css files configured.// Import the scss entrypoint file from the src
import 'node_modules/ /paginator/src/component/styles/index.scss'
// Import the css bundle file
import 'node_modules/ /paginator/dist/styles.css'
@import
the scss entrypoint file into your scss file.@import '[email protected]/paginator/src/component/styles/index.scss';