louh / weekender

Unofficial proof-of-concept modern update for MTA's Weekender.
https://louhuang.com/weekender-hd-remaster/
MIT License
21 stars 2 forks source link

chore(deps): bump downshift from 4.0.8 to 6.0.0 #210

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps downshift from 4.0.8 to 6.0.0.

Release notes

Sourced from downshift's releases.

v6.0.0

6.0.0 (2020-07-21)

BREAKING CHANGES

  • Update TS typings for selectedItem to accept null in both useSelect and useCombobox.

To migrate to the new change, update your types or code if necessary. selectedItem, defaultSelectedItem and initialSelectedItem now have Item | null instead of Item type. PR with the changes: downshift-js/downshift#1090

  • Update TS typings for itemToString to accept null for the item parameter, in useSelect and useCombobox + in Downshift where this was missing. useMultipleSelection type for itemToString stays the same as it can't receive null as item.

To migrate to the new change, update your types or code if necessary. itemToString: (item: Item) => string -> itemToString: (item: Item | null) => string}. PR with the changes: downshift-js/downshift#1075 downshift-js/downshift#1105

  • Pass type to the onChange (onInputValueChange, onHighlightedIndexChange, onSelectedItemChange, onIsOpenChange) handler parameters, as specified in the documentation. Also updated the TS typings to reflect this + onStateChange - the type parameter was passed but it was not reflected in the TS types.

To migrate to the new change, update your types or code if necessary, better to view the changes in the PR: downshift-js/downshift#985.

BREAKING BEHAVIOUR [useCombobox]: When an item is highlighted by keyboard and user closes the menu using mouse/touch, the item is not selected anymore. The only selection on Blur happens using either Tab / Shift+Tab. PR with the changes: downshift-js/downshift#1109

BREAKING BEHAVIOUR [useCombobox & downshift]: When pressing Escape and the menu is open, only close the menu. When the menu is closed and there is an item selected and/or text in the input, clear the selectedItem and the inputValue. PR with the changes: downshift-js/downshift#719

v5.4.7

5.4.7 (2020-07-20)

Bug Fixes

  • useSelect: ensure the initial selected item is scrolled into view on first open (#1113) (d7bf498)

v5.4.6

5.4.6 (2020-07-08)

Bug Fixes

  • useCombobox: fix onSelectedItemChange not triggering with controlled selectedItem in React.StrictMode (#1107) (5353265)

v5.4.5

5.4.5 (2020-06-19)

Bug Fixes

  • useCombobox: focus input after selection by click (#1083) (19f6bc0)

v5.4.4

Commits
  • ddd0e6d downshift v6 (#1104)
  • d7bf498 fix(useSelect): ensure the initial selected item is scrolled into view on fir...
  • 490bdb7 docs: add IwalkAlone as a contributor (#1115)
  • 5353265 fix(useCombobox): fix onSelectedItemChange not triggering with controlled sel...
  • 65d2f11 docs(useCombobox): fix the action example (#1103)
  • 27f5694 docs: add link to the docs (#1094)
  • 415d934 docs: add react-virtual examples (#1093)
  • 2814cd5 chore(getterProps): only check on first render if getter props are called (#1...
  • db96d76 docs(hooks): improve playgrounds and links (#1086)
  • c0a8b5b docs(useCombobox): fix the default value for circularNavigation (#1089)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by silviuaavram, a new releaser for downshift since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
dependabot-preview[bot] commented 4 years ago

Superseded by #211.