Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

@bolttech/molecules-dropdown

Package Overview
Dependencies
Maintainers
12
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bolttech/molecules-dropdown

The **Dropdown** component is a customizable React component that provides a dropdown input with a list of selectable options.

latest
npmnpm
Version
0.37.2
Version published
Weekly downloads
918
53.77%
Maintainers
12
Weekly downloads
 
Created
Source

Dropdown Component

The Dropdown component is a customizable React component that provides a dropdown input with a list of selectable options.

Installation

To use the Dropdown component, you need to install the required dependencies:

npm install @bolttech/frontend-foundations @bolttech/molecules-dropdown

or

yarn add @bolttech/frontend-foundations @bolttech/molecules-dropdown

Usage

You can utilize the Dropdown component by importing it and including it in your JSX. Here's an example:

import React from 'react';
import { Dropdown } from '@bolttech/molecules-dropdown'; // Adjust the path to your component

const options = [
  { id: '1', label: 'Option 1', value: 'option1' },
  { id: '2', label: 'Option 2', value: 'option2' },
  { id: '3', label: 'Option 3', value: 'option3' },
];

function App() {
  const handleOptionChange = (selectedOption) => {
    console.log('Selected option:', selectedOption);
  };

  return (
    <div>
      <Dropdown label="Select an option" optionList={options} value="option2" onChange={handleOptionChange} />
    </div>
  );
}

export default App;

Props

The Dropdown component accepts the following props:

PropTypeDescription
labelstringLabel for the dropdown.
variantstringVariant style of the dropdown. Defaults to 'grey'.
requiredbooleanWhether the dropdown is required or not.
optionListOptionType[]Array of selectable options for the dropdown.
disabledbooleanWhether the dropdown is disabled or not.
errorMessagestringError message to display when there's an error with the dropdown.
urlFilterOptionsstringURL for fetching filtered options based on input.
idstringComponent identification.
dataTestIdstringThe data-testid attribute for testing purposes.
filterOptionsParamfunctionFunction to filter options based on input and URL.
valuestringCurrently selected value.
onChangefunctionCallback function triggered when the selected option changes.
onBlurfunctionCallback function triggered when the dropdown loses focus.
onFocusfunctionCallback function triggered when the dropdown is focused.
placeholderstringPlaceholder text for the input.
disableSearchbooleanBoolean that represent if we should disable user searching on the dropdown. Defaults to false
onKeyUpfunctionThe onkeyup event occurs when the user releases a key on the keyboard
onKeyDownbooleanOnkeydown is an event handler in Javascript that gets called when a key is pressed on the keyboard
asyncOptionListbooleanA boolean prop that controls a different behavior when OptionList are set by an API request
helperMessagestringAn optional string to display as a helper message for the dropdown
usePortalbooleanRenders the dropdown options in a portal (document.body), useful when inside overflow containers like modals. Defaults to false.

Functionality

The Dropdown component provides the following functionality:

  • Option Selection: Allows the user to select an option from the dropdown.
  • Input Interaction: The input field can be focused, blurred, and modified.
  • Filtering: Supports dynamic option filtering based on input and URL.
  • Accessibility: Proper accessibility structure is maintained for interacting with the dropdown.

Contribution

Contributions to the Dropdown component are welcomed. If you encounter issues or have suggestions for improvements, feel free to open an issue or submit a pull request on the component's Bitbucket repository.

FAQs

Package last updated on 16 Apr 2026

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