react-functional-select icon indicating copy to clipboard operation
react-functional-select copied to clipboard

Micro-sized & micro-optimized select component for React.js

Results 16 react-functional-select issues
Sort by recently updated
recently updated
newest added

Hello, Unless I'm mistaken, there is no way to add styles for the Single Value component. Based on the source code: ``` const SINGLE_VALUE_BASE_STYLE = css` top: 50%; overflow: hidden;...

In the published package the `./src/types` folder doesn't appear to be included in the `./dist` folder. If you check `Select.d.ts` you can see it importing from `./types` which doesn't exist...

Just a raw feedback after 2 hours spent on testing component. Promising but fixes needed (imho). 1. Options cannot be passed as `readable` meaning they are prone to mutation. A...

See issue: https://github.com/based-ghost/react-functional-select/issues/25 This PR adds the ability to render menu options and the selected option in the control differently. Multi select already provided this ability via `renderMultiOptions`, I also...

See issue: https://github.com/based-ghost/react-functional-select/issues/26 This PR proposes support for variable sizes of menu items/options. I'm open to ideas on other ways to implement this or changes to the public API. This...

Is there a plan to support a separate render prop for the selected option in the control vs the menu? Currently `renderOptionLabel` is applied to both. I am rendering custom...

I have a case where I render items which have optional subtext (see example below). In the case where the subtext is not available I'd like to show a smaller...

Hi, For a huge number of options in the select list, I think a sortable feature would be useful. As I can see from the docs that the library doesn't...

Hello, I am trying to implement the react-functional-select component into an application that I am working on, I am wondering if there is a way to capture the input from...

1) If `hideSelectedOptions` is set to true, all other options disappear after an option is selected. (Might be related to search functionality) 2) If `hideSelectedOptions` is set to false, `rfs-option-selected`...