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

@synerise/ds-badge

v0.6.57

Published

Badge UI Component for the Synerise Design System

Downloads

461

Readme


id: badge title: Badge

Badges are small status descriptors for UI elements such as avatar-like icons. A badge consists of a small circle, typically containing a number, and appears in proximity to another object. It can be used to add information to any content or highlight the status of an object.

Inspired by Ant Design Badge

When to use it


  • To indicate the status of an object: active, inactive, error, success, in process.
  • To draw attention to unread notifications.

Component anatomy


This is a complex component, which means it consists of more components:

Installation


npm i @synerise/ds-badge
or
yarn add @synerise/ds-badge

Usage


import Badge from '@synerise/ds-badge'

<Badge
  count={10}
  overflowCount={11}
  showZero={false}
/>

Badge Standalone


Badge Dot

Badge Count

Badge Status

API


| Property | Description | Type | Default | | ------------------ | ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------- | | backgroundColor | Customize the badge color | Color | - | | backgroundColorHue | Customize brightness of color | 900 / 800 / 700 / 600 / 500 / 400 / 300 / 200 / 100 / 050 | - | | customColor | Customize the badge dot color | red | - | | count | Number to show in the badge counter | ReactNode | | | dot | Display a red dot instead of a counter | boolean | false | | flag | Show the badge as a flag | boolean | false | | offset | The offset of the badge dot in [x, y] format | [number, number] | - | | outlined | Add outline to the badge counter | boolean | false | | overflowCount | Maximum number to show in the counter | number | 99 | | pulsing | Enable pulsing animation | boolean | false | | showZero | Show the badge when the counter is zero | boolean | false | | status | Set badge as a status dot | active / inactive / blocked / processing / warning | - | | text | If status is set, text sets the display text of the status dot | string | '' | | textColor | Customize text color in badge | green / grey / yellow / blue / pink/ mars/ orange/ fern/ cyan/ purple / violet | - | | textColorHue | Customize brightness of color | 900 / 800 / 700 / 600 / 500 / 400 / 300 / 200 / 100 / 050 | - | | title | Text shown when a cursor is hovered over the badge | string | count |

Color

| Values | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | green / grey / yellow / blue / pink/ mars/ orange/ fern/ cyan/ purple / violet / blue-600 / green-600 / mars-600 / purple-600 / cyan-600 / yellow-600 / violet-600 / blue-700 / green-700 / mars-700 / purple-700 / cyan-700 / yellow-700 / violet-700 / blue-500 / green-500 / mars-500 / purple-500 / cyan-500 / yellow-500 / violet-500 |