Home

Awesome

DEPRECATED

Please consider using https://react-select.com/home

Issues License Build Status NPM

react-styled-select

Up to date with react/react-dom 16.2.0 and styled-components 4.1.1

ATTENTION: Work in Progress (sorry about that!)

This project was built with styled-components and is a "rethink" of the awesome project react-select. But what the differences between react-select and this project?

Installation

npm install react-styled-select --save

Demo

http://agutoli.github.io/

Example Usage

import React from 'react'
import Select from 'react-styled-select'

class MyComp extends React.Component {
  render() {
    const options = [
      { label: "One", value: 1},
      { label: "Two", value: 2},
    ]
    return (
      <Select
        options={options}
        onOpen={myOpenFunc}
        onChange={myChangeFunc}
        classes={{
          selectValue: 'my-custom-value',
          selectArrow: 'my-custom-arrow'
        }}
      />
    )
  }
}

Opptions

PropertyTypeDefaultDescription
classesobjectundefinedYou can specify className for each element. Possible values: selectArrow, selectArrowZone, selectClear, selectClearZone, selectControl, selectInput, selectInputField, selectMenu, selectMenuOuter, selectMultiValueWrapper, selectOption, selectPlaceholder, selectValue, selectValueLabel
clearableboolfalseshould it be possible to reset value
disabledboolfalsedisables every events over the component
multiboolfalsemulti values support
virtualizedboolfalse(NEW) efficiently rendering large lists options
virtualizedMaxHeightnumber198(NEW) height of option menu
virtualizedOptionHeightnumber38(NEW) Height of each options
searchablebooltruewhether to enable searching feature or not
placeholderstringSelect...The short hint is displayed in the input field before the user enters a value
loadOptionsfunctionundefinedfunction that returns a promise or calls a callback with the options: function(input, [callback])
classNamestringundefinedRoot element className
valueanyundefinedIf you want to specify a pre selected value
optionsarray[]List of values. Ex. <br> [{"label": "Foo", value: "foo"}]
onOpenfunctionundefinedIt calls when open outer menu
onChangefunctionundefinedIt calls when change selected value
onValueClickfunctionundefinedIt calls when click over a option value
closeMenuOnSelectfunctionundefinedIt calls when click over a option value
onInputClearfunctionundefinedIt calls when input is cleared
valueRendererfunctionundefinedfunction which returns a custom way to render the value selected function (option) {}
optionRendererfunctionundefinedfunction which returns a custom way to render the options in the menu (option) {}

Async options (NEW)

Very similar with react-select API.

var getOptions = function(input, callback) {
  setTimeout(function() {
    callback(null, {
      options: [
        { value: 'one', label: 'One' },
        { value: 'two', label: 'Two' }
      ]
    });
  }, 500);
};

<Select.Async
    loadOptions={getOptions}
/>

Custom appearance with CSS Variebles

Multi Select (NEW)

Default

Customized

class MyForm extends React.Component {
  render() {
    return(){
      <Select className="dark-theme" options={[...]} />
    }
  }
}
.dark-theme {
  --styled-select-placeholder__color: #999;
  --styled-select__color: white;
  --styled-select__background-color: #555;
  --styled-select__border-color: black;
  --styled-select__border-width: 3px;
  --styled-select__border-radius: 5px;

  --styled-select-menu-outer__margin: 10px 0 0 0;
  --styled-select-menu-outer__padding: 0;
  --styled-select-menu-outer__background-color: #555;
  --styled-select-menu-outer__border-color: black;
  --styled-select-menu-outer__border-style: solid;
  --styled-select-menu-outer__border-width: 3px;

  --styled-select-option__background-color: #444;

  --styled-select-option__color--focused: #eee;
  --styled-select-option__background-color--focused: #333;

  --styled-select-option__color--selected: #eee;
  --styled-select-option__background-color--selected: #444;
}

Available CSS variables

<pre> --styled-<b>select-arrow-zone</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/width">width</a>: 25px; --styled-<b>select-arrow</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>: #9b9ba5; --styled-<b>select-arrow</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/size">size</a>: 8; --styled-<b>select-clear-zone</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/width">width</a>: 17px; --styled-<b>select-clear</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>: #999; --styled-<b>select-clear</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-size">font-size</a>: 14px; --styled-<b>select-control</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-color">border-color</a>: #dcdce3; --styled-<b>select-control</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-color">border-color</a>--<b>focused</b>: #40a3f5; --styled-<b>select-control</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/cursor">cursor</a>--<b>disabled</b>: not-allowed; --styled-<b>select-control</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/min-height">min-height</a>: 36px; --styled-<b>select-input</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/height">height</a>: 23px; --styled-<b>select-input</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/line-height">line-height</a>: 23px; --styled-<b>select-input</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 0; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>: #fff; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-color">border-color</a>: #f0f0f5; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius">border-radius</a>: 2px; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-style">border-style</a>: solid; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-width">border-width</a>: 1px; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow">box-shadow</a>: 0 2px 4px rgba(0, 0, 0, 0.05); --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin">margin</a>: 5px 0 0 0; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/max-height">max-height</a>: 200px; --styled-<b>select-menu-outer</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 0; --styled-<b>select-menu</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius">border-radius</a>: 2px; --styled-<b>select-menu</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/max-height">max-height</a>: 198px; --styled-<b>select-multi-value-wrapper</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 3px 0 3px 5px; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>: #eee; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border">border</a>: 1px solid #aaa; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border">border</a>--<b>hover</b>: 1px solid #777; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius">border-radius</a>: 3px; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow">box-shadow</a>: rgba(0,0,0,0.2) 0px 0px 3px; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-size">font-size</a>: 0.9em; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/line-height">line-height</a>: 1.4; --styled-<b>select-multi-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin">margin</a>: 2px 5px 2px 0; --styled-<b>select-no-results</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>: #999; --styled-<b>select-no-results</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-family">font-family</a>: Tahoma, Helvetica, Arial, sans-serif; --styled-<b>select-no-results</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-size">font-size</a>: 14px; --styled-<b>select-no-results</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 8px 10px; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>: #fff; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>--<b>focused</b>: #f0f0f5; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>--<b>selected</b>: #ddd; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>: #777; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>--<b>focused</b>: #333; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>--<b>selected</b>: #333; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-family">font-family</a>: Tahoma, Helvetica, Arial, sans-serif; --styled-<b>select-option</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 8px 10px; --styled-<b>select-placeholder</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>: #d2d2d9; --styled-<b>select-placeholder</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-family">font-family</a>: Tahoma, Helvetica, Arial, sans-serif; --styled-<b>select-placeholder</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-size">font-size</a>: 12px; --styled-<b>select-placeholder</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/line-height">line-height</a>: 34px; --styled-<b>select-placeholder</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 0 10px; --styled-<b>select-value-icon</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>: transparent; --styled-<b>select-value-icon</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>--<b>hover</b>: rgba(0, 0, 0, 0.1); --styled-<b>select-value-icon</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-family">font-family</a>: arial; --styled-<b>select-value-icon</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 1px 5px; --styled-<b>select-value-label</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-family">font-family</a>: Tahoma, Helvetica, Arial, sans-serif; --styled-<b>select-value-label</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 1px 6px; --styled-<b>select-value-wrapper</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/align-content">align-content</a>: space-around; --styled-<b>select-value-wrapper</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/align-items">align-items</a>: center; --styled-<b>select-value-wrapper</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing">box-sizing</a>: border-box; --styled-<b>select-value-wrapper</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/display">display</a>: flex; --styled-<b>select-value-wrapper</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex">flex</a>: 2 100%; --styled-<b>select-value-wrapper</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 0 0 0 5px; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>: Tahoma, Helvetica, Arial, sans-serif; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/font-size">font-size</a>: 14px; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/line-height">line-height</a>: 34px; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/max-width">max-width</a>: 100%; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/overflow">overflow</a>: hidden; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/padding">padding</a>: 0 5px; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow">text-overflow</a>: ellipsis; --styled-<b>select-value</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/white-space">white-space</a>: nowrap; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-color">background-color</a>: #fff; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius">border-radius</a>: 2px; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-style">border-style</a>: solid; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-width">border-width</a>: 1px; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing">box-sizing</a>: border-box; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color">color</a>: #777; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/cursor">cursor</a>--<b>disabled</b>: not-allowed; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/opacity">opacity</a>--<b>disabled</b>: 0.5; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events">pointer-events</a>--<b>disabled</b>: none; --styled-<b>select</b>__<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/position">position</a>: relative; </pre>

Inspiration

This project was based on react-select.

Collaborators

Special thanks to:

License

The MIT License (MIT)

Copyright (c) 2017-2018 Bruno Agutoli

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.