|
| 1 | +# Changes planned from Beta -> RC: |
| 2 | + |
| 3 | +* [ ] Look into package size reduction, extract optional modules, e.g |
| 4 | + * createFilter could be optional, saving 2.6k gz |
| 5 | + * vendor simple Menu by default, allow opt-in to advanced usage |
| 6 | +* [ ] Bind getStyles for each component |
| 7 | + |
| 8 | +--- |
| 9 | + |
| 10 | +# Order of focus: |
| 11 | + |
| 12 | +* [ ] Review how the `required` state of the `<input>` can be handled |
| 13 | +* [ ] Example of how to implement Separators |
| 14 | +* [ ] Handle Header and Footer elements in the Menu |
| 15 | +* [ ] Keyboard focusing of values in multi select |
| 16 | + |
| 17 | +--- |
| 18 | + |
| 19 | +# Review: |
| 20 | + |
| 21 | +### Select Component Props |
| 22 | + |
| 23 | +* [ ] `backspaceToRemoveMessage` _investigate_ |
| 24 | +* [x] `className` _investigate_ might need to move the className util into commonProps |
| 25 | +* [x] `openOnClick` / `openOnFocus` needs implementation |
| 26 | +* [ ] `required` _|||_ this has some complex behaviour in v1 which may or may not be needed |
| 27 | +* [x] `tabIndex` needs implementation |
| 28 | + |
| 29 | +#### Done |
| 30 | + |
| 31 | +* [x] `id` |
| 32 | +* [x] `inputId` falls back to `react-select-${props.instanceId}-input` |
| 33 | +* [x] `autoBlur` **REMOVED** can be handled with `onChange` |
| 34 | +* [x] `autosize` **REMOVED** can replace `<Input />` component |
| 35 | +* [x] `onClose` --> `onMenuClose` |
| 36 | +* [x] `onOpen` --> `onMenuOpen` |
| 37 | +* [x] `onBlurResetsInput` / `onCloseResetsInput` / `onSelectResetsInput` **REMOVED** now that `inputValue` can be controlled, these should be unnecessary |
| 38 | +* [x] `onMenuScrollToBottom` implemented |
| 39 | +* [x] `clearable` --> `isClearable` |
| 40 | +* [x] `rtl` --> `isRTL` |
| 41 | +* [x] `pageSize` |
| 42 | +* [x] `menuShouldScrollIntoView` |
| 43 | +* [x] `searchable` --> `isSearchable` |
| 44 | +* [x] `resetValue` **REMOVED** can be handled with `onInputChange` |
| 45 | +* [x] `clearAllText` / `clearValueText` **REMOVED** title no longer applied, can replace `<ClearIndicator />` |
| 46 | + |
| 47 | +### Async Component Props |
| 48 | + |
| 49 | +* [ ] `autoLoad` _investigate_ should be considered in conjunction with `searchPromptText`, may affect `defaultOptions` behaviour |
| 50 | +* [ ] `searchPromptText` _investigate_ how do we know to display it? (https://goo.gl/PLTwV5) |
| 51 | + |
| 52 | +--- |
| 53 | + |
| 54 | +# Maybe: |
| 55 | + |
| 56 | +* [ ] Virtualisation |
| 57 | +* [ ] Prevent values from being popped, was `option.clearableValue === false` |
| 58 | +* [ ] Async w/ pagination |
| 59 | +* [ ] Extention point to reorder / change menu options array when it's created |
| 60 | + |
| 61 | +--- |
| 62 | + |
| 63 | +# Later: |
| 64 | + |
| 65 | +* [ ] Reordering of Options (drag and drop) |
| 66 | + |
| 67 | +--- |
| 68 | + |
| 69 | +# Done: |
| 70 | + |
| 71 | +* [x] Tags mode (Creatable) |
| 72 | +* [x] Handle changing of isDisabled prop |
| 73 | +* [x] Better mobile support and touch handling |
| 74 | +* [x] Better control of flip behaviour |
| 75 | +* [x] Scroll the menu into view when it opens |
| 76 | +* [x] Handle touch outside (see v1 implementation) |
| 77 | +* [x] Review implementation of `isSearchable` prop (creates a "fake" input) |
| 78 | +* [x] Async + Creatable variant |
| 79 | +* [x] Cleanup |
| 80 | +* [x] Documentation - Props, Customisation |
| 81 | +* [x] Upgrade Guide from v1 -> v2 |
| 82 | +* [x] Lock scrolling on Menu (enable with prop) |
| 83 | +* [x] Make inputValue a controllable prop |
| 84 | +* [x] Make menuIsOpen a controllable prop |
| 85 | +* [x] Finalise theme and style customisation framework |
| 86 | +* [x] Remove `disabledKey`, clean up similar functionality |
| 87 | +* [x] Pseudo-focus Options |
| 88 | +* [x] Keyboard navigation |
| 89 | +* [x] Make `isDisabled` / `isSelected` etc. props |
| 90 | +* [x] Scroll to focused option |
| 91 | +* [x] Add `autofocus` prop |
| 92 | +* [x] Add HTML Form Input |
| 93 | +* [x] Async with: |
| 94 | +* [x] * promises |
| 95 | +* [x] * better loading state and behaviour |
| 96 | +* [x] Pass more (and consistent?) props and state from Select to Components |
| 97 | +* [x] Fix issue with how the mouse hover interacts with keyboard scrolling |
| 98 | +* [x] Ability to customise built-in strings |
0 commit comments