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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@talbinyamini/shl-ui-lib

v0.4.4

Published

UI library for SHL.

Readme

SHL React components lib

Installation

Run the following command:

npm install @talbinyamini/shl-ui-lib [email protected] [email protected] react-password-strength-bar [email protected] [email protected]

Note: The lib depends on bootstrap for styling

Styles

Import the following css file from the lib -

import "@talbinyamini/shl-ui-lib/dist/css/main.css";

CSS classes

Colors

:root {
  --prim-color: #e86d17;
  --prim-color-dark: #e45217;
  --secondary-color: #435fc5;
  --secondary-color-dark: #2c449a;
  --item-selected-bg-color: rgba(25, 73, 203, 0.16);
  --item-selected-color: #1949cb;
  --muted-color: #707070;
  --border-color: #d5d8e2;
  --prim-gradient: transparent linear-gradient(180deg, #fd9441 0%, var(--prim-color) 100%)
    0% 0% no-repeat padding-box;
  --secondary-gradient: transparent linear-gradient(180deg, var(--secondary-color-dark) 0%, var(--secondary-color) 100%)
    0% 0% no-repeat padding-box;
}

.prim-color {
  color: var(--prim-color) !important;
}

.prim-bg-color {
  background-color: var(--prim-color) !important;
  color: #fff !important;
}

.prim-color-dark {
  color: var(--prim-color-dark) !important;
}

.prim-bg-color-dark {
  background-color: var(--prim-color-dark) !important;
  color: #fff !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

.secondary-bg-color {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
}

.secondary-color-dark {
  color: var(--secondary-color-dark) !important;
}

.secondary-bg-color-dark {
  background-color: var(--secondary-color-dark) !important;
  color: #fff !important;
}


.muted-color {
  color: var(--muted-color) !important;
}

.prim-bg-gradient-color {
  background: var(--prim-gradient) !important;
}

.secondary-bg-gradient-color {
  background: var(--secondary-gradient) !important;
}

Utils

.cursor-pointer {
  cursor: pointer;
}

.absolute-center {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cut-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.app-link {
  font-size: 0.75rem !important;
  color: #2c449a !important;
  text-decoration: underline !important;
}

.font-md {
  font-size: 0.875rem;
  line-height: 1.3;
}

.font-sm {
  font-size: 0.75rem;
}

.capitalized {
  text-transform: uppercase;
}

.capitalized-first {
  text-transform: capitalize;
}

.app-shadow {
  box-shadow: 0px 3px 6px #00000029;
}

.app-border {
  border: 2px solid rgb(213, 216, 226);
}

.mx-sm {
  margin: 0 0.2rem;
}

.text-decoration-link {
  text-decoration: underline !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.z-index-front {
  z-index: 2;
}

.z-index-back {
  z-index: 1;
}

.z-index-max {
  z-index: 999;
}

Publish

  1. Update lib package.json version
  2. Run the following command
npm run upload

Working Flow

  1. Create branch for the required feature / bugfix / ...
  2. Checkout the new branch
  3. Update the code
  4. Once implementation done, commit the changes and create a Merge Request (PR)
  5. After PR approved and changes are merged, create a "Release" branch (from develop) with the changes
  6. Update the lib package.json version
  7. From the "Release" branch created, publish the package with the following command:
npm run upload