{"id":21031919,"url":"https://github.com/agutoli/react-styled-select","last_synced_at":"2025-04-13T04:09:27.171Z","repository":{"id":57345884,"uuid":"95509155","full_name":"agutoli/react-styled-select","owner":"agutoli","description":"A Select control built with Reactjs, styled-components and :heart: http://agutoli.github.io/","archived":false,"fork":false,"pushed_at":"2021-03-25T08:17:51.000Z","size":3708,"stargazers_count":108,"open_issues_count":8,"forks_count":21,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T04:09:23.019Z","etag":null,"topics":["css3","javascript","react","select","styled-components"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agutoli.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-06-27T02:28:54.000Z","updated_at":"2023-06-10T16:08:53.000Z","dependencies_parsed_at":"2022-09-17T06:31:29.974Z","dependency_job_id":null,"html_url":"https://github.com/agutoli/react-styled-select","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agutoli%2Freact-styled-select","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agutoli%2Freact-styled-select/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agutoli%2Freact-styled-select/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agutoli%2Freact-styled-select/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agutoli","download_url":"https://codeload.github.com/agutoli/react-styled-select/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248661704,"owners_count":21141450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css3","javascript","react","select","styled-components"],"created_at":"2024-11-19T12:38:40.469Z","updated_at":"2025-04-13T04:09:27.119Z","avatar_url":"https://github.com/agutoli.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DEPRECATED\n\nPlease consider using https://react-select.com/home \n\n\n[![Issues](https://img.shields.io/github/issues/agutoli/react-styled-select.svg)](https://github.com/agutoli/react-styled-select/issues) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://www.npmjs.com/package/react-styled-select)\n[![Build Status](https://travis-ci.org/agutoli/react-styled-select.svg?branch=master)](https://travis-ci.org/agutoli/react-styled-select)\n[![NPM](https://img.shields.io/npm/v/react-styled-select.svg)](https://www.npmjs.com/package/react-styled-select)\n\nreact-styled-select\n============\n\nUp to date with react/react-dom `16.2.0` and styled-components `4.1.1`\n\n### ATTENTION: Work in Progress (sorry about that!)\n\nThis project was built with [styled-components](https://github.com/styled-components/styled-components) and is a \"rethink\" of the awesome project [react-select](https://github.com/JedWatson/react-select). But what the differences between [react-select](https://github.com/JedWatson/react-select) and this project?\n\n* Lightweight!\n* It don`t force you to load any external css.\n* Works with css-modules concept and not with global class names. Here has a good discussion about this problem ([here](https://github.com/oliviertassinari/a-journey-toward-better-style)).\n* [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables): Very easy to customize for your need.\n* [Shadow DOM](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Shadow_DOM): If you has or had problems with input fields globally stylized you can \"encapsulate\" your component using this awesome feature.\n\n## Installation\n\n`npm install react-styled-select --save`\n\n## Demo\n\n[http://agutoli.github.io/](http://agutoli.github.io/)\n\n## Example Usage\n\n    import React from 'react'\n    import Select from 'react-styled-select'\n\n    class MyComp extends React.Component {\n      render() {\n        const options = [\n          { label: \"One\", value: 1},\n          { label: \"Two\", value: 2},\n        ]\n        return (\n          \u003cSelect\n            options={options}\n            onOpen={myOpenFunc}\n            onChange={myChangeFunc}\n            classes={{\n              selectValue: 'my-custom-value',\n              selectArrow: 'my-custom-arrow'\n            }}\n          /\u003e\n        )\n      }\n    }\n\n\n\n## Opptions\n\n| Property | Type | Default | Description\n:---|:---|:---|:---\n| `classes` | object | `undefined` | You can specify `className` for each element. Possible values: `selectArrow`, `selectArrowZone`, `selectClear`, `selectClearZone`, `selectControl`, `selectInput`, `selectInputField`, `selectMenu`, `selectMenuOuter`, `selectMultiValueWrapper`, `selectOption`, `selectPlaceholder`, `selectValue`, `selectValueLabel`\n|`clearable` | bool | `false` | should it be possible to reset value\n|`disabled` | bool | `false` | disables every events over the component\n|`multi` | bool | `false` | multi values support\n|`virtualized`| bool | `false` | (`NEW`) efficiently rendering large lists options\n|`virtualizedMaxHeight`| number | `198` | (`NEW`) height of option menu\n|`virtualizedOptionHeight`| number | `38` | (`NEW`) Height of each options\n|`searchable`| bool | `true` | whether to enable searching feature or not\n|`placeholder`| string | `Select...` | The short hint is displayed in the input field before the user enters a value\n| `loadOptions` | function | `undefined` | function that returns a promise or calls a callback with the options: `function(input, [callback])`\n| `className` | string | `undefined` | Root element className\n| `value` | any | `undefined` | If you want to specify a pre selected value\n| `options` | array | `[]` | List of values. Ex. \u003cbr\u003e `[{\"label\": \"Foo\", value: \"foo\"}]`\n|`onOpen`| function | `undefined` | It calls when open outer menu\n|`onChange`| function | `undefined` | It calls when change selected value\n|`onValueClick`| function | `undefined` | It calls when click over a option value\n|`closeMenuOnSelect`| function | `undefined` | It calls when click over a option value\n|`onInputClear`|function| `undefined` | It calls when input is cleared\n|`valueRenderer`|function| `undefined` | function which returns a custom way to render the value selected function (option) {}\n|`optionRenderer`|function| `undefined` | function which returns a custom way to render the options in the menu (option) {}\n\n## Async options (NEW)\n\nVery similar with `react-select` API.\n\n    var getOptions = function(input, callback) {\n      setTimeout(function() {\n        callback(null, {\n          options: [\n            { value: 'one', label: 'One' },\n            { value: 'two', label: 'Two' }\n          ]\n        });\n      }, 500);\n    };\n\n    \u003cSelect.Async\n        loadOptions={getOptions}\n    /\u003e\n\n## Custom appearance with CSS Variebles\n\n#### Multi Select (NEW)\n![](https://image.ibb.co/h69O2Q/print_multi_select.png)\n\n#### Default\n![](https://image.ibb.co/bC4i7k/Captura_de_Tela_2017_06_27_a_s_03_18_09.png)\n\n#### Customized\n![](https://image.ibb.co/bSei7k/Captura_de_Tela_2017_06_27_a_s_03_17_59.png)\n\n* Your react file ex. `MyForm.jsx`\n\n```javascript\nclass MyForm extends React.Component {\n  render() {\n    return(){\n      \u003cSelect className=\"dark-theme\" options={[...]} /\u003e\n    }\n  }\n}\n```\n\n* Your project CSS file ex. `mysite.css`\n\n```css\n.dark-theme {\n  --styled-select-placeholder__color: #999;\n  --styled-select__color: white;\n  --styled-select__background-color: #555;\n  --styled-select__border-color: black;\n  --styled-select__border-width: 3px;\n  --styled-select__border-radius: 5px;\n\n  --styled-select-menu-outer__margin: 10px 0 0 0;\n  --styled-select-menu-outer__padding: 0;\n  --styled-select-menu-outer__background-color: #555;\n  --styled-select-menu-outer__border-color: black;\n  --styled-select-menu-outer__border-style: solid;\n  --styled-select-menu-outer__border-width: 3px;\n\n  --styled-select-option__background-color: #444;\n\n  --styled-select-option__color--focused: #eee;\n  --styled-select-option__background-color--focused: #333;\n\n  --styled-select-option__color--selected: #eee;\n  --styled-select-option__background-color--selected: #444;\n}\n```\n\n## Available CSS variables\n\n\u003cpre\u003e\n--styled-\u003cb\u003eselect-arrow-zone\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/width\"\u003ewidth\u003c/a\u003e: 25px;\n\n--styled-\u003cb\u003eselect-arrow\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e: #9b9ba5;\n--styled-\u003cb\u003eselect-arrow\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/size\"\u003esize\u003c/a\u003e: 8;\n\n--styled-\u003cb\u003eselect-clear-zone\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/width\"\u003ewidth\u003c/a\u003e: 17px;\n\n--styled-\u003cb\u003eselect-clear\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e: #999;\n--styled-\u003cb\u003eselect-clear\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-size\"\u003efont-size\u003c/a\u003e: 14px;\n\n--styled-\u003cb\u003eselect-control\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-color\"\u003eborder-color\u003c/a\u003e: #dcdce3;\n--styled-\u003cb\u003eselect-control\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-color\"\u003eborder-color\u003c/a\u003e--\u003cb\u003efocused\u003c/b\u003e: #40a3f5;\n--styled-\u003cb\u003eselect-control\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/cursor\"\u003ecursor\u003c/a\u003e--\u003cb\u003edisabled\u003c/b\u003e: not-allowed;\n--styled-\u003cb\u003eselect-control\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/min-height\"\u003emin-height\u003c/a\u003e: 36px;\n\n--styled-\u003cb\u003eselect-input\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/height\"\u003eheight\u003c/a\u003e: 23px;\n--styled-\u003cb\u003eselect-input\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/line-height\"\u003eline-height\u003c/a\u003e: 23px;\n--styled-\u003cb\u003eselect-input\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 0;\n\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e: #fff;\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-color\"\u003eborder-color\u003c/a\u003e: #f0f0f5;\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius\"\u003eborder-radius\u003c/a\u003e: 2px;\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-style\"\u003eborder-style\u003c/a\u003e: solid;\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-width\"\u003eborder-width\u003c/a\u003e: 1px;\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow\"\u003ebox-shadow\u003c/a\u003e: 0 2px 4px rgba(0, 0, 0, 0.05);\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin\"\u003emargin\u003c/a\u003e: 5px 0 0 0;\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/max-height\"\u003emax-height\u003c/a\u003e: 200px;\n--styled-\u003cb\u003eselect-menu-outer\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 0;\n\n--styled-\u003cb\u003eselect-menu\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius\"\u003eborder-radius\u003c/a\u003e: 2px;\n--styled-\u003cb\u003eselect-menu\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/max-height\"\u003emax-height\u003c/a\u003e: 198px;\n\n--styled-\u003cb\u003eselect-multi-value-wrapper\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 3px 0 3px 5px;\n\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e: #eee;\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border\"\u003eborder\u003c/a\u003e: 1px solid #aaa;\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border\"\u003eborder\u003c/a\u003e--\u003cb\u003ehover\u003c/b\u003e: 1px solid #777;\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius\"\u003eborder-radius\u003c/a\u003e: 3px;\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow\"\u003ebox-shadow\u003c/a\u003e: rgba(0,0,0,0.2) 0px 0px 3px;\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-size\"\u003efont-size\u003c/a\u003e: 0.9em;\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/line-height\"\u003eline-height\u003c/a\u003e: 1.4;\n--styled-\u003cb\u003eselect-multi-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin\"\u003emargin\u003c/a\u003e: 2px 5px 2px 0;\n\n--styled-\u003cb\u003eselect-no-results\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e: #999;\n--styled-\u003cb\u003eselect-no-results\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-family\"\u003efont-family\u003c/a\u003e: Tahoma, Helvetica, Arial, sans-serif;\n--styled-\u003cb\u003eselect-no-results\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-size\"\u003efont-size\u003c/a\u003e: 14px;\n--styled-\u003cb\u003eselect-no-results\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 8px 10px;\n\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e: #fff;\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e--\u003cb\u003efocused\u003c/b\u003e: #f0f0f5;\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e--\u003cb\u003eselected\u003c/b\u003e: #ddd;\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e: #777;\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e--\u003cb\u003efocused\u003c/b\u003e: #333;\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e--\u003cb\u003eselected\u003c/b\u003e: #333;\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-family\"\u003efont-family\u003c/a\u003e: Tahoma, Helvetica, Arial, sans-serif;\n--styled-\u003cb\u003eselect-option\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 8px 10px;\n\n--styled-\u003cb\u003eselect-placeholder\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e: #d2d2d9;\n--styled-\u003cb\u003eselect-placeholder\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-family\"\u003efont-family\u003c/a\u003e: Tahoma, Helvetica, Arial, sans-serif;\n--styled-\u003cb\u003eselect-placeholder\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-size\"\u003efont-size\u003c/a\u003e: 12px;\n--styled-\u003cb\u003eselect-placeholder\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/line-height\"\u003eline-height\u003c/a\u003e: 34px;\n--styled-\u003cb\u003eselect-placeholder\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 0 10px;\n\n--styled-\u003cb\u003eselect-value-icon\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e: transparent;\n--styled-\u003cb\u003eselect-value-icon\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e--\u003cb\u003ehover\u003c/b\u003e: rgba(0, 0, 0, 0.1);\n--styled-\u003cb\u003eselect-value-icon\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-family\"\u003efont-family\u003c/a\u003e: arial;\n--styled-\u003cb\u003eselect-value-icon\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 1px 5px;\n\n--styled-\u003cb\u003eselect-value-label\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-family\"\u003efont-family\u003c/a\u003e: Tahoma, Helvetica, Arial, sans-serif;\n--styled-\u003cb\u003eselect-value-label\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 1px 6px;\n\n--styled-\u003cb\u003eselect-value-wrapper\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-content\"\u003ealign-content\u003c/a\u003e: space-around;\n--styled-\u003cb\u003eselect-value-wrapper\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-items\"\u003ealign-items\u003c/a\u003e: center;\n--styled-\u003cb\u003eselect-value-wrapper\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing\"\u003ebox-sizing\u003c/a\u003e: border-box;\n--styled-\u003cb\u003eselect-value-wrapper\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/display\"\u003edisplay\u003c/a\u003e: flex;\n--styled-\u003cb\u003eselect-value-wrapper\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex\"\u003eflex\u003c/a\u003e: 2 100%;\n--styled-\u003cb\u003eselect-value-wrapper\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 0 0 0 5px;\n\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e: Tahoma, Helvetica, Arial, sans-serif;\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/font-size\"\u003efont-size\u003c/a\u003e: 14px;\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/line-height\"\u003eline-height\u003c/a\u003e: 34px;\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/max-width\"\u003emax-width\u003c/a\u003e: 100%;\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/overflow\"\u003eoverflow\u003c/a\u003e: hidden;\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\"\u003epadding\u003c/a\u003e: 0 5px;\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow\"\u003etext-overflow\u003c/a\u003e: ellipsis;\n--styled-\u003cb\u003eselect-value\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/white-space\"\u003ewhite-space\u003c/a\u003e: nowrap;\n\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\"\u003ebackground-color\u003c/a\u003e: #fff;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius\"\u003eborder-radius\u003c/a\u003e: 2px;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-style\"\u003eborder-style\u003c/a\u003e: solid;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-width\"\u003eborder-width\u003c/a\u003e: 1px;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing\"\u003ebox-sizing\u003c/a\u003e: border-box;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/color\"\u003ecolor\u003c/a\u003e: #777;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/cursor\"\u003ecursor\u003c/a\u003e--\u003cb\u003edisabled\u003c/b\u003e: not-allowed;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/opacity\"\u003eopacity\u003c/a\u003e--\u003cb\u003edisabled\u003c/b\u003e: 0.5;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events\"\u003epointer-events\u003c/a\u003e--\u003cb\u003edisabled\u003c/b\u003e: none;\n--styled-\u003cb\u003eselect\u003c/b\u003e__\u003ca href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/position\"\u003eposition\u003c/a\u003e: relative;\n\u003c/pre\u003e\n\n## Inspiration\nThis project was based on [react-select](https://github.com/JedWatson/react-select).\n\n## Collaborators\nSpecial thanks to:\n* [Willis Plummer](https://github.com/willisplummer)\n* [Rob Walker](https://github.com/robwalkerco)\n* [Viktor Havrylin](https://github.com/Fer0x)\n* [Fredrik Pettersen](https://github.com/Fumler)\n* [Alex Trost](https://github.com/AlexTrost)\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2017-2018 Bruno Agutoli\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagutoli%2Freact-styled-select","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagutoli%2Freact-styled-select","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagutoli%2Freact-styled-select/lists"}