backstage-dropdown
v1.1.2
Published
backstage dropdown
Downloads
11
Readme
backstage-dropdown
Backstage React dropdown component
Installing
$ npm install backstage-dropdown --save
Required Props
options
: all the options of the dropdown;selectedOption
: current selected option;
Props
onSelectOption
: callback called when the user select any option;onOpen
: callback called when the user open the dropdown;onClose
: callback called when the user close the dropdown:- by selecting an option,
- by clicking in any other place.
className
: custom CSS class to the component;disabled
: disable the component;small
: shows the component in a small size;openUp
: opens the dropdown up;
Example
import React from 'react';
import { render } from 'react-dom';
import Dropdown from 'backstage-dropdown';
const OPTIONS = [
{value: "grape", label: "Grape"},
{value: "apple", label: "Apple"},
{value: "mango", label: "Mango"},
{value: "tangerine", label: "Tangerine"},
];
render(<Dropdown options={OPTIONS} selectedOption='grape' />, document.getElementById('container'));