react-select-virtualized
Advanced tools
Comparing version 0.0.21 to 0.0.22
{ | ||
"name": "react-select-virtualized", | ||
"version": "0.0.21", | ||
"version": "0.0.22", | ||
"description": "react-select v2 + react-virtualized + react hooks", | ||
@@ -5,0 +5,0 @@ "author": "guiyep", |
# react-select-virtualized | ||
\***\* UNSTABLE VERSION - NOT YET FINISHED \*\*** SOON TO BE RELEASED \*\*\*\* | ||
\* UNSTABLE VERSION - NOT YET FINISHED - SOON TO BE RELEASED \* | ||
@@ -50,10 +50,10 @@ > react-select v2 + react-virtualized + react hooks! | ||
- [x] useCallback everywhere. | ||
- [x] move fast options to group. | ||
- [x] move fast options to group. | ||
- [x] fix minimum input search on grouped component. | ||
- [x] upgrade alpha version. | ||
- [x] review all the TODOs. | ||
- [x] improve filtering function in `fast-react-select`. | ||
- [x] improved performance by 50% | ||
- [x] add gzip. | ||
- [ ] review support to all the react-select props. Should all work but multi-val. | ||
- [x] upgrade alpha version. | ||
- [x] review all the TODOs. | ||
- [x] improve filtering function in `fast-react-select`. | ||
- [x] improved performance by 50% | ||
- [x] add gzip. | ||
- [ ] - IN PROCESS -review support to all the react-select props. Should all work but multi-val. (Update Doc) | ||
@@ -63,4 +63,5 @@ ```bash | ||
``` | ||
\*\* ----> First Release <---- \*\* | ||
\* ----> First Release <---- \* | ||
- [ ] filtering data on infinite loader, performance degradation start after 30000 elements we need to filter only first batch size so we don't see any | ||
@@ -71,6 +72,22 @@ - [ ] add multi value support | ||
## Documentation | ||
## Documentation - Select Component - this are special to this library none is required | ||
... | ||
| Props | Type | Default | Description | | ||
| -------------------------------------------- | --------------------------------------------------- | ------- | ---------------------------------------------------------------------------------------- | | ||
| grouped | boolean | false | specify if options are grouped | | ||
| formatGroupHeaderLabel | function({ label, options}) => component | | will render a custom component in the grouped select label and header (only for grouped) | | ||
| formatOptionLabel (coming from react-select) | function({ label, lang }, { context }) => component | | will render a custom component in the label (not for grouped) | | ||
| optionHeight | number | 31 | height of each option | | ||
| groupHeaderHeight | number | | header row height in the popover list | | ||
| maxHeight (coming from react-select) | number | auto | header row height in the popover list | | ||
| maxWidth (coming from react-select) | number | 500 | header row height in the popover list | | ||
## What we do support and don't from react-select | ||
- [x] We support all the UI related props for the input. Extension also. | ||
`List: (...To be completed)` | ||
- [x] We do not support any related prop to the popup list. We extend it. \*Sorry no extension of any component inside the list.\* | ||
`List Props Supported: (...To be completed)` | ||
## Usage without group | ||
@@ -106,3 +123,3 @@ | ||
## Usage with group | ||
## Usage with group - tooooo easy!!! | ||
@@ -109,0 +126,0 @@ check storybook for more examples |
48906
163