Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hudoro/multi-select

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hudoro/multi-select

multi select component for Hudoro UI

  • 0.0.1-beta.2
  • npm
  • Socket score

Version published
Weekly downloads
265
increased by33.84%
Maintainers
2
Weekly downloads
 
Created
Source

Hudoro Multi Select

Hudoro Multi Select is a strict and customizable Multi Select component for web development projects, designed for simplicity and adherence to strict design guidelines.

Screenshots

App Screenshot

Package instalation

Instal package using pnpm

  pnpm add @hudoro/multi-select

Instal package using yarn

  yarn add @hudoro/multi-select

Instal package using npm

  npm i @hudoro/multi-select

Usage/Examples (you can combine using icon package hudoro)

import React from "react";
import {MultiSelect} from "@hudoro/multi-select";
import ReactDOM from "react-dom/client";

const App = () => (
  <div>
    <h1>Component test</h1>
    <div style={{margin: "50px", width: "350px"}}>
      <MultiSelect
        sizes="md"
        listSelect={[
          {label: "Indonesia", value: "Indonesia"},
          {label: "Malaysia", value: "Malaysia"},
          {label: "Kamboja", value: "Kamboja"},
          {label: "Thailand", value: "Thailand"},
          {label: "Philipina", value: "Philipina"},
        ]}
        onChange={(e) => console.log("e", e)}
      />
    </div>
  </div>
);

ReactDOM.createRoot(document.getElementById("app")!).render(<App />);

Props @hudoro/multi-select

Props that you can pass to <MultiSelect {...props} />
Prop NameValuerequired
size"sm" / "md" / "lg"false
listSelect{label: string; value: string}[]true
onChange(props: {label: string; value: string}[]) => voidtrue

FAQs

Package last updated on 22 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc