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

@hudoro/dropdown

Package Overview
Dependencies
Maintainers
0
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hudoro/dropdown

dropdown component for Hudoro UI

  • 0.0.3-beta.45
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Hudoro Dropdown

Hudoro Dropdown is a strict and customizable Dropdown 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/dropdown

Instal package using yarn

  yarn add @hudoro/dropdown

Instal package using npm

  npm i @hudoro/dropdown

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

 import {
 Dropdown
} from '@hudoro/dropdown'



import React, {SVGProps} from "react";
import ReactDOM from "react-dom/client";

const CustomIcon: React.FC<SVGProps<SVGSVGElement>> = (props) => {
  return (
    <svg
      width="20"
      height="20"
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <g id="Curved/Random">
        <path
          id="shape"
          d="M3.33333 13.3333C3.33333 13.3333 4.16666 12.5 6.66666 12.5C9.16666 12.5 10.8333 14.1667 13.3333 14.1667C15.8333 14.1667 16.6667 13.3333 16.6667 13.3333V3.33333C16.6667 3.33333 15.8333 4.16667 13.3333 4.16667C10.8333 4.16667 9.16666 2.5 6.66666 2.5C4.16666 2.5 3.33333 3.33333 3.33333 3.33333V17.5"
          stroke="currentColor"
          strokeWidth="1.5"
          strokeLinecap="round"
          strokeLinejoin="round"
        />
      </g>
    </svg>
  );
};

const App = () => (
  <div>
    <h1>Component test</h1>
    <div style={{margin: "100px"}}>
      <Dropdown
        dropdownLists={[
          {
            icon: <CustomIcon color="gray" />,
            label: "testing 1",
            value: "testing 1",
          },
          {
            icon: <CustomIcon color="red" />,
            label: "testing 2",
            value: "testing 2",
          },
          {
            icon: <CustomIcon color="blue" />,
            label: "testing 3",
            value: "testing 3",
          },
        ]}
        onChange={(e) => {
          console.log("e", e);
        }}
        defaultValue={[
          {
            label: "testing 3",
            value: "testing 3",
          },
        ]}
        iconLeft={<CustomIcon />}
        multiSelect
        searchAble
        onSearch={(e) => console.log(e)}
      />
    </div>
  </div>
);

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

Props @hudoro/menu

Props that you can pass to <Menu {...props}>
Prop NameTypeValueDefaultrequireddescription
onChangefunction(props: {label: string; value: string}[]) => voidrequiredtrue""
onSearchfunction(props:string) => voidfalse""
dropdownListsarray of objects[{icon?:React.ReactElement,label: string,value: string}]requiredtruedata list for handle change
defaultValuearray of objects[label: string,value: string}]default value
sizestring"sm" / "md" / "lg"'md'falsesizes for dropdown
multiSelectbooleantrue/falsefalsefalsemulti select for dropdown
searchAblebooleantrue/falsefalsefalsesearch for dropdown
iconLeftReact.ReactElementReact.ReactElementfalseicon for dropdown
placeholderstringstringfalseplaceholder for dropdown

FAQs

Package last updated on 21 Nov 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