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

@licuido-ui/ui_select-chip

v5.0.0

Published

Chips are compact elements that represent an input, attribute, or action.

Downloads

101

Readme

SelectChip

Chips are compact elements that represent an input, attribute, or action.

User Guidelines

Multiple select

If you want to enable multiple select, you need to pass an array of objects as the state value and also include the isMultiple prop.

Single select

If you prefer single select, you don't need to pass an array of objects in the state value, and there's no need to include the isMultiple prop. You can simply pass a single object as the value

Author

Link

Story Book Link SelectChip

PlayGround

Try it have a fun codeBox

Installation

npm i @licuido-ui/ui_select-chip

Import component

import { SelectChip } from '@licuido-ui/ui_select-chip';

Usage

    <SelectChip
      showLabel={'title'}
      options={data}
      selectChange={(value: any) => handleChange(value)}
      isMultiple={true}
      value={selected}
      isShowIcon={false}
      startIcon={<AddIcon sx={{ height: '12px', width: '12px' }} />}
    />

Image

alt text

Sample Code

<SelectChip
  options={[
    { label: 'Male', value: 'Male' },
    { label: 'Female', value: 'Female' },
    { label: 'Others', value: 'Others' },
  ]}
  id={''}
  disabled={false}
  exclusive={false}
  error={false}
  errorMessage={''}
  label={''}
  required={false}
  selectChange={()=>void}
  isMultiple = {false}
  isShowIcon = {true}
  startIcon ={null}
  selectedWithIcon={true}
/>

Props

| Prop | Type | Description | Default Props | | ------------- | -------- | ---------------------------------------- | ----------------- | | id | string | The ID of the component. | N/A | | className | string | Additional CSS class for styling. | '' | | className | string | Additional CSS class for styling. | '' | | showLabel | string | Additional Condition for a options label | '' |

| sx | object | The sx prop for styling using Theme UI. | {} | | value | Array | object | The selected value(s) of the component. | | options | array | An array of options for the component. | [] | | exclusive | boolean | If true, enables exclusive selection mode where only one option can be selected at a time. | N/A | | error | boolean | If true, indicates an error state. | false | | errorMessage | string | Custom error message text to be displayed when an error state is active. | N/A | | label | string | Custom label text for the component. | N/A | | required | boolean | If true, indicates that the component requires a selection. | false | | selectChipStyles | object | Custom styles for the SelectChip component. | {} | | selectChange | function | Callback function triggered when a selection change occurs. | console.log | | isMultiple | boolean | If true, allows the selection of multiple options simultaneously. | false | | isShowIcon | boolean | If true, displays an icon in the Select component. | true | | startIcon | Icon | React node representing the icon to be displayed at the start of the Select component. | N/A (No icon displayed by default) | | borderRadius | string | The border radius for styling. | N/A | | selectedBgcolor | string | Background color when an option is selected. | N/A | | selectedTextColor | string | Text color when an option is selected. | N/A | | bgColor | string | Background color for the component. | N/A | | bgColorHover | string | Background color when hovering over an option. | N/A | | borderColor | string | Border color for the component. | N/A | | selectedBorderColor | string | Border color when an option is selected. | N/A | | iconStyle | sx | The sx prop for styling the icon. | N/A | | selectedWithIcon | boolean | If true, after selected the chip with icon | N/A |