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-tags

v0.8.40

Published

Tags UI Component for the Synerise Design System

Downloads

979

Readme


id: tags title: Tags

Tags UI Component

Demo

Tag API

| Property | Description | Type | Default | | --------- | ---------------------------------------- | --------------------------------- | ---------------------- | | className | tag container class | string | - | | color | primary color (background/border) of tag | string | - | | disabled | whether tag should be disabled | boolean | - | | id | id of tag (necessary if using Tags) | string / number | - | | name | title of tag | string | - | | onClick | onClick event on tag body | () => void | - | | onRemove | callback when tag is removed | (tagKey: string / number) => void | - | | removable | show remove button | boolean | - | | shape | shape of the tag | TagShape | TagShape.DEFAULT_ROUND | | textColor | color of tag name label | string | - |

Tags API (Group of )

| Property | Description | Type | Default | | ---------------- | ------------------------------------------------------------------- | ----------------------------------------------- | ------- | | addable | Allow adding tags from data (which are not present in selected) | boolean | - | | className | Tag Group container class | string | - | | creatable | Allow creating new tags | boolean | - | | data | All available tags | Tag[] | [] | | disabled | Disable entire group (all tags) | boolean | - | | manageLink | optional link visible in add tag dropdown | string | - | | onCreate | fired whenever a new tag has been created | (tagName: string) => void | - | | onSelectedChange | fired whenever the list of selected tags changes | (tags: Tag[], actionTaken: ActionTaken) => void | - | | removable | Allow removing tags from selected | boolean | - | | style | Tag Group container styles | React.CSSProperties | - | | selected | Selected tags | Tag[] | [] | | tagShape | Shape of tags | TagShape | - | | texts | necessary texts to render tags group | TagsTexts | {} |

ActionTaken

| Property | Description | Type | | -------- | -------------------------------------------------------------- | ---------------- | | tag | Affected tag | Tag | | type | Type of action taken that caused onSelectedChange to be called | 'ADD' / 'REMOVE' |

TagsTexts

| Property | Description | Type | Default | | -------------------- | ------------------------------------------------------------- | ------------------------ | ------------ | | addButtonLabel | Label for add tag button | string / React.ReactNode | | | clearTooltip | Tooltip text displayed on search clear icon hover | string / React.ReactNode | | | deleteTooltip | Tooltip text displayed on remove icon hover | string / React.ReactNode | Delete | | searchPlaceholder | Search input placeholder for add tag dropdown | string | | | manageLinkLabel | Label for manage link for add tag dropdown | string / React.ReactNode | | | createTagButtonLabel | Label for create tag button for add tag dropdown | string / React.ReactNode | | | noResultsLabel | Label displayed when filtering tags returns an empty array | string / React.ReactNode | No results | | dropdownNoTags | Text for a label displayed when no tags are found to be added | string / React.ReactNode | |

TagShape Enum

| Property | | -------------------------------- | | TagShape.SINGLE_CHARACTER_ROUND | | TagShape.SINGLE_CHARACTER_SQUARE | | TagShape.DEFAULT_ROUND | | TagShape.DEFAULT_SQUARE | | TagShape.SMALL_ROUND | | TagShape.SMALL_SQUARE | | TagShape.STATUS_NEUTRAL | | TagShape.STATUS_SUCCESS | | TagShape.STATUS_ERROR | | TagShape.STATUS_WARNING |