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-components-sruthi

v1.0.11

Published

A React component library for faster development

Downloads

4

Readme

React Components

A React component library for faster development

The available components are :

  1. Avatar
  2. Button
  3. Chip
  4. Loader
  5. Menu
  6. Pagination
  7. Progress Bar
  8. Select
  9. Snackbar
  10. Stack
  11. Table
  12. Tooltip

Avatar

Usage

Props

| Name | Type | Default | Description | | -------------------------------------- | :-----------------: | --------- | :------------------------------: | | imgSrc | string | | The src for image avatar | | initialLength | number (1 | 2) | 1 | The length of initials on avatar | | name | string | | The name of the person | | size | number | 56 | The size of avatar in px | | variant* | 'image' |'initial' | 'initial' | The type of avatar |

Button

Usage

Props

| Name | Type | Default | Description | | ------- | :----: | ------- | :-------------: | | variant | 'icon' | | For icon button |

Chip

Usage

Props

| Name | Type | Default | Description | | --------------------------------------- | :------: | ------- | :----------------------------------------: | | label | string | | | | onDelete | function | | Callback fired when clicked on delete icon |

Loader

Usage

Props

| Name | Type | Default | Description | | -------------------------------------- | :-----: | ------- | :--------------------------: | | background | string | | | | color | string | | | | loading* | boolean | | Determines loader visibility | | size | number | | Size in pixels |

Menu

Usage

Props

| Name | Type | Default | Description | | ----------------------------------------- | :---------------------------------------------------------------: | -------- | :------------------------------------: | | classes | { menu?: string button?: string list?: string item?: string } | | Class map for menu components | | menuButton | ReactNode | | The children for Menu Button component | | menuItems | Array<{children: ReactNode | string, clickHandler: function}> | | Array of items constituting the menu | | horizontal | 'left' | 'center'| 'right' | 'left' | Horizontal position for menu | | vertical | 'bottom' | 'center' | 'top' | 'bottom' | Vertical position for menu | | horizontalOffset | number | | Horizontal offset in px | | verticalOffset | number | | Vertical offset in px |

Pagination

Usage

Props

| Name | Type | Default | Description | | ------------------------------------------ | :--------------------------------------------------------------------------: | ------- | :-------------------------------------------------------------------: | | changePage | (page: number) => void | | Function to update current page | | classes | { root?: string, arrowButton?: string, pageButton?: string, dots?: string } | | Class map for Pagination components | | currentPage | number | | Active page number | | pageCount* | number | | Total number of pages | | siblingCount | number | 1 | Minimum number of page buttons show on either side of the active page |

Progress Bar

Usage

Props

| Name | Type | Default | Description | | --------------------------------------- | :----------------------------: | ------- | :----------------------: | | classes | {root?: string, bar?: string } | | | | progress* | number | | Number between 0 and 100 |

Select

Usage

Props

| Name | Type | Default | Description | | -------------------------------------- | :---------------------------------------------------------------------: | ---------- | :---------: | | classes | {root?: string, label?: string, optionsList?: string, option?: string } | | | | defaultOption | { label: string, value: string } | options[0] | | | options* | Array<{ label: string, value: string }> | | |

Snackbar

Usage

Props

| Name | Type | Default | Description | | ------------------------------------ | :------------------: | ------- | :-----------------------------------------------: | | duration | number | 3000 | Number of milliseconds snackbar appears on screen | | imgSrc | string | | The src for icon | | label* | string | | Label on the snackbar | | variant | 'success' | 'error' | 'error' | |

Stack

Usage

Props

| Name | Type | Default | Description | | ------------- | :---------------: | ------- | :--------------------------: | | children | ReactNode | | | | direction | 'row' | 'column' | 'row' | | | columnSpacing | number | 1 | Space between columns in rem | | rowSpacing | number | 1 | Space between rows in rem | | wrap | boolean | false | |

Table

Usage

Props

| Name | Type | Default | Description | | ------------------------------------- | :-----------------------------------------------------------------------------------: | ------- | :----------------------------: | | classes | { table?: string header?: string headerCell?: string row?: string cell?: string } | | Class map for table components | | header | Array<{title: string, selector: string}> | | Data displayed on table header | | rows | Array<{ }> | | Data displayed on table body |

Tooltip

Usage

Props

| Name | Type | Default | Description | | ---------------------------------------- | :------------------------------------: | ------- | :------------------------------------: | | background | string | | | | children | ReactNode | | | | classes | {wrapper?: string, text?: string} | | Class map for tooltip wrapper and text | | color | string | | | | direction | 'top' | 'right' | 'bottom' | 'left' | 'top' | | | title | string | | |