npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-light-pagination

v1.0.1

Published

simple, lightweight, highly customisable simple react pagination component with typescript support

Downloads

6

Readme

ReactLightPagination

Welcome to ReactLightPagination! This is a simple React pagination component that you can easily integrate into your projects. This component provides a clean and customizable way to handle paginated data in your React applications.

Installation

To install the ReactLightPagination package, simply run the following command:

npm install react-light-pagination

Usage

Here's a quick guide on how to use the ReactLightPagination component in your React application:

import React from 'react';
import Pagination from 'react-light-pagination';
import 'react-light-pagination/dist/Pagination.css'; // Import the default styles

const YourComponent = () => {
  // Your data and event handlers go here

  return (
    <Pagination
      totalNumberOfData={/* Total number of data items */}
      perPage={/* Number of items per page */}
      currentPage={/* Current page number */}
      nextClickHandler={/* Your custom next button click handler */}
      previousClickHandler={/* Your custom previous button click handler */}
      pageClickHandler={/* Your custom page click handler */}
      classNames={{
        container: /* Your custom class for the pagination container */,
        previousButton: /* Your custom class for the previous button */,
        nextButton: /* Your custom class for the next button */,
        pageContainer: /* Your custom class for the page container */,
        pageButton: /* Your custom class for each page button */,
        pageActiveButton: /* Your custom class for the active page button */,
        buttons: /* Your custom class for common button styles */,
      }}
      components={{
        previousButton: /* Your custom ReactNode for the previous button */,
        nextButton: /* Your custom ReactNode for the next button */,
        pageButton: /* Your custom ReactNode for each page button */,
      }}
      inlineStyles={{
        container: /* Your custom inline styles for the pagination container */,
        previousButton: /* Your custom inline styles for the previous button */,
        nextButton: /* Your custom inline styles for the next button */,
        pageContainer: /* Your custom inline styles for the page container */,
        pageButton: /* Your custom inline styles for each page button */,
        pageActiveButton: /* Your custom inline styles for the active page button */,
        buttons: /* Your custom inline styles for common button styles */,
      }}
    />
  );
};

export default YourComponent;

Styling

The default styles for the pagination component are provided in the Pagination.css file. You can customize the appearance of the component by overriding these styles or by providing your own styles using the classNames and inlineStyles props.

Feel free to explore and modify the styles in the Pagination.scss file to match your project's design.

Notes for Issues

If you encounter any issues or have suggestions for improvement, please don't hesitate to open an issue on the GitHub repository.

Happy coding!