-
-
Notifications
You must be signed in to change notification settings - Fork 980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add touchAction
prop.
#2787
Merged
Merged
Add touchAction
prop.
#2787
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
m-bert
commented
Mar 4, 2024
j-piasecki
approved these changes
Mar 4, 2024
Comment on lines
+658
to
+660
if (props.touchAction !== undefined) { | ||
applyTouchActionProp(props.touchAction, gestureConfig); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We may want to figure out a better approach to do this, that's outside of the scope of this PR though 😄
m-bert
added a commit
that referenced
this pull request
Mar 7, 2024
## Description This is a follow-up PR to #2787 that is meant to fix scrolling of swipeable elements. It overrides `shouldHandlerBeCancelledBy` method so that **_active_** `NativeViewGestureHandler` that is _**not a button**_, will cancel other handler. Keep in mind that on web, if scroll has already started we cannot cancel it by calling `preventDefault`, hence it makes sense to cancel other handlers in that case (but we may want to limit it just to `Pan`). Fixes #2617 ## Test plan Tested on - Swipeable example in our example app - Transformations example with added text to achieve scrolling <details> <summary> Modified code from #2617 </summary> ```jsx import React from 'react'; import { View, Text } from 'react-native'; import { FlatList, GestureHandlerRootView } from 'react-native-gesture-handler'; import Swipeable from 'react-native-gesture-handler/Swipeable'; export default function Home() { type ItemProps = { item: { text: string; }; }; const data = Array.from({ length: 50 }, (_, i) => ({ id: i, text: `Item ${i}`, })); const Item = ({ item }: ItemProps) => { return ( <View style={{ margin: 10 }}> <Swipeable renderRightActions={() => ( <View style={{ justifyContent: 'center', }}> <Text style={{ color: 'white', textAlign: 'center' }}> Delete </Text> </View> )}> <View style={{ height: 50, backgroundColor: 'white', justifyContent: 'center', }}> <Text>{item.text}</Text> </View> </Swipeable> </View> ); }; return ( <GestureHandlerRootView> <FlatList data={data} keyExtractor={(item) => item.id.toString()} renderItem={({ item }) => <Item item={item} />} style={{ maxHeight: 400 }} /> </GestureHandlerRootView> ); } ``` </details>
github-merge-queue bot
referenced
this pull request
in valora-inc/wallet
Apr 13, 2024
…5237) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react-native-gesture-handler](https://togithub.com/software-mansion/react-native-gesture-handler) | [`^2.15.0` -> `^2.16.0`](https://renovatebot.com/diffs/npm/react-native-gesture-handler/2.15.0/2.16.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-native-gesture-handler/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-native-gesture-handler/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-native-gesture-handler/2.15.0/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-native-gesture-handler/2.15.0/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>software-mansion/react-native-gesture-handler (react-native-gesture-handler)</summary> ### [`v2.16.0`](https://togithub.com/software-mansion/react-native-gesture-handler/releases/tag/2.16.0) [Compare Source](https://togithub.com/software-mansion/react-native-gesture-handler/compare/2.15.0...2.16.0) #### ❗ Important changes - Add `mouseButton` implementation on Android by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2680](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2680) - Add `pointerType` to event by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2760](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2760) - feat: add necessary changes for new arch on RN 0.74 by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2766](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2766) - Add `touchAction` prop. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2787](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2787) - Allows to apply different border radius to RectButton component by [@​camilossantos2809](https://togithub.com/camilossantos2809) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2792](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2792) - Improve RectButton border styles on Android by [@​camilossantos2809](https://togithub.com/camilossantos2809) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2798](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2798) - Make FlingHandler use velocity as the activation metric. by [@​LatekVo](https://togithub.com/LatekVo) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2796](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2796) - Add corner area detection to Fling gesture. by [@​LatekVo](https://togithub.com/LatekVo) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2807](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2807) #### 🐛 Bug fixes - Add rotation and pinch velocity on macOS by [@​jfedak](https://togithub.com/jfedak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2706](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2706) - Fix `ConcurrentModificationException`. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2750](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2750) - Fix pointers count on iOS by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2755](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2755) - fix: remove usage of bridge uimanager in one more place by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2768](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2768) - Remove hardcoded version of `cocoapods` by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2772](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2772) - Move `customDirectEventTypes` to separate files. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2786](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2786) - Fix nested taps activation by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2759](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2759) - Cancel handlers by `NativeViewGestureHandler` by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2788](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2788) - Make simultaneous handlers always symmetric on iOS by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2800](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2800) - Update mocks to work when testing for the new arch by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2801](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2801) - fix(web): After swiping closed, the Swipeable component cannot be swiped open again by [@​yatessss](https://togithub.com/yatessss) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2802](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2802) - Remove event listeners on handler drop by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2815](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2815) - Use correct origin point for calculating the absolute position on Android by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2826](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2826) - Add check when removing handlers from orchestrator by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2831](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2831) - Use `locationOfTouch:inView` over `locationInView` for focal point by [@​rrebase](https://togithub.com/rrebase) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2834](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2834) #### 👍 Improvements - Pass `{ flex: 1 }` as default style to `GestureHandlerRootView` by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2757](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2757) - Stop sending event on pressure changes by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2762](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2762) - feat: use proper APIs for newest RN versions on new arch by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2767](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2767) - Remove circular dependencies on web by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2783](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2783) - Address compilation warnings by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2597](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2597) - Add `userSelect` to TouchableOpacity by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2812](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2812) - Web `Orchestrator` refactor. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2819](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2819) - Replace `mach_absolute_time` with `CACurrentMediaTime` by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2830](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2830) #### 🔢 Miscellaneous - Restyle Gesture Handler Documentation by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2753](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2753) - Fix incorrect link to Github repository by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2761](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2761) - Add links to each gesture on landing in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2763](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2763) - Update pods on CI by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2765](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2765) - Restyle steps in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2774](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2774) - Fix wrong admonition color on initial render by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2779](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2779) - Various style fixes in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2780](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2780) - Add closable App.js banner to docs landing page by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2781](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2781) - Add `mouseButton` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2789](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2789) - Add `pointerType` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2791](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2791) - Add `enableContextMenu` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2790](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2790) - Add `touchAction` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2794](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2794) - docs: change accent color to blue by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2795](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2795) - Change `MouseButton` export type. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2804](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2804) - Fix babel config in the root project by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2717](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2717) #### New Contributors - [@​patrycjakalinska](https://togithub.com/patrycjakalinska) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2753](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2753) - [@​camilossantos2809](https://togithub.com/camilossantos2809) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2792](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2792) - [@​yatessss](https://togithub.com/yatessss) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2802](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2802) - [@​LatekVo](https://togithub.com/LatekVo) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2796](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2796) - [@​rrebase](https://togithub.com/rrebase) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2834](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2834) **Full Changelog**: software-mansion/react-native-gesture-handler@2.15.0...2.16.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 5pm,every weekend" in timezone America/Los_Angeles, Automerge - "after 5pm,every weekend" in timezone America/Los_Angeles. 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/valora-inc/wallet). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: valora-bot <[email protected]>
github-merge-queue bot
referenced
this pull request
in valora-inc/wallet
Apr 13, 2024
…5237) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react-native-gesture-handler](https://togithub.com/software-mansion/react-native-gesture-handler) | [`^2.15.0` -> `^2.16.0`](https://renovatebot.com/diffs/npm/react-native-gesture-handler/2.15.0/2.16.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-native-gesture-handler/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-native-gesture-handler/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-native-gesture-handler/2.15.0/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-native-gesture-handler/2.15.0/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>software-mansion/react-native-gesture-handler (react-native-gesture-handler)</summary> ### [`v2.16.0`](https://togithub.com/software-mansion/react-native-gesture-handler/releases/tag/2.16.0) [Compare Source](https://togithub.com/software-mansion/react-native-gesture-handler/compare/2.15.0...2.16.0) #### ❗ Important changes - Add `mouseButton` implementation on Android by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2680](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2680) - Add `pointerType` to event by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2760](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2760) - feat: add necessary changes for new arch on RN 0.74 by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2766](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2766) - Add `touchAction` prop. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2787](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2787) - Allows to apply different border radius to RectButton component by [@​camilossantos2809](https://togithub.com/camilossantos2809) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2792](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2792) - Improve RectButton border styles on Android by [@​camilossantos2809](https://togithub.com/camilossantos2809) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2798](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2798) - Make FlingHandler use velocity as the activation metric. by [@​LatekVo](https://togithub.com/LatekVo) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2796](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2796) - Add corner area detection to Fling gesture. by [@​LatekVo](https://togithub.com/LatekVo) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2807](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2807) #### 🐛 Bug fixes - Add rotation and pinch velocity on macOS by [@​jfedak](https://togithub.com/jfedak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2706](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2706) - Fix `ConcurrentModificationException`. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2750](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2750) - Fix pointers count on iOS by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2755](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2755) - fix: remove usage of bridge uimanager in one more place by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2768](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2768) - Remove hardcoded version of `cocoapods` by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2772](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2772) - Move `customDirectEventTypes` to separate files. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2786](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2786) - Fix nested taps activation by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2759](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2759) - Cancel handlers by `NativeViewGestureHandler` by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2788](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2788) - Make simultaneous handlers always symmetric on iOS by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2800](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2800) - Update mocks to work when testing for the new arch by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2801](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2801) - fix(web): After swiping closed, the Swipeable component cannot be swiped open again by [@​yatessss](https://togithub.com/yatessss) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2802](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2802) - Remove event listeners on handler drop by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2815](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2815) - Use correct origin point for calculating the absolute position on Android by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2826](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2826) - Add check when removing handlers from orchestrator by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2831](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2831) - Use `locationOfTouch:inView` over `locationInView` for focal point by [@​rrebase](https://togithub.com/rrebase) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2834](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2834) #### 👍 Improvements - Pass `{ flex: 1 }` as default style to `GestureHandlerRootView` by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2757](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2757) - Stop sending event on pressure changes by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2762](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2762) - feat: use proper APIs for newest RN versions on new arch by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2767](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2767) - Remove circular dependencies on web by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2783](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2783) - Address compilation warnings by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2597](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2597) - Add `userSelect` to TouchableOpacity by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2812](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2812) - Web `Orchestrator` refactor. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2819](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2819) - Replace `mach_absolute_time` with `CACurrentMediaTime` by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2830](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2830) #### 🔢 Miscellaneous - Restyle Gesture Handler Documentation by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2753](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2753) - Fix incorrect link to Github repository by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2761](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2761) - Add links to each gesture on landing in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2763](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2763) - Update pods on CI by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2765](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2765) - Restyle steps in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2774](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2774) - Fix wrong admonition color on initial render by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2779](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2779) - Various style fixes in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2780](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2780) - Add closable App.js banner to docs landing page by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2781](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2781) - Add `mouseButton` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2789](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2789) - Add `pointerType` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2791](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2791) - Add `enableContextMenu` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2790](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2790) - Add `touchAction` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2794](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2794) - docs: change accent color to blue by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2795](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2795) - Change `MouseButton` export type. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2804](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2804) - Fix babel config in the root project by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2717](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2717) #### New Contributors - [@​patrycjakalinska](https://togithub.com/patrycjakalinska) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2753](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2753) - [@​camilossantos2809](https://togithub.com/camilossantos2809) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2792](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2792) - [@​yatessss](https://togithub.com/yatessss) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2802](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2802) - [@​LatekVo](https://togithub.com/LatekVo) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2796](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2796) - [@​rrebase](https://togithub.com/rrebase) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2834](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2834) **Full Changelog**: software-mansion/react-native-gesture-handler@2.15.0...2.16.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 5pm,every weekend" in timezone America/Los_Angeles, Automerge - "after 5pm,every weekend" in timezone America/Los_Angeles. 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/valora-inc/wallet). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: valora-bot <[email protected]>
shottah
referenced
this pull request
in zed-io/kolektivo
May 15, 2024
…alora-inc#5237) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react-native-gesture-handler](https://togithub.com/software-mansion/react-native-gesture-handler) | [`^2.15.0` -> `^2.16.0`](https://renovatebot.com/diffs/npm/react-native-gesture-handler/2.15.0/2.16.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-native-gesture-handler/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-native-gesture-handler/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-native-gesture-handler/2.15.0/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-native-gesture-handler/2.15.0/2.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>software-mansion/react-native-gesture-handler (react-native-gesture-handler)</summary> ### [`v2.16.0`](https://togithub.com/software-mansion/react-native-gesture-handler/releases/tag/2.16.0) [Compare Source](https://togithub.com/software-mansion/react-native-gesture-handler/compare/2.15.0...2.16.0) #### ❗ Important changes - Add `mouseButton` implementation on Android by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2680](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2680) - Add `pointerType` to event by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2760](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2760) - feat: add necessary changes for new arch on RN 0.74 by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2766](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2766) - Add `touchAction` prop. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2787](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2787) - Allows to apply different border radius to RectButton component by [@​camilossantos2809](https://togithub.com/camilossantos2809) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2792](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2792) - Improve RectButton border styles on Android by [@​camilossantos2809](https://togithub.com/camilossantos2809) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2798](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2798) - Make FlingHandler use velocity as the activation metric. by [@​LatekVo](https://togithub.com/LatekVo) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2796](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2796) - Add corner area detection to Fling gesture. by [@​LatekVo](https://togithub.com/LatekVo) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2807](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2807) #### 🐛 Bug fixes - Add rotation and pinch velocity on macOS by [@​jfedak](https://togithub.com/jfedak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2706](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2706) - Fix `ConcurrentModificationException`. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2750](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2750) - Fix pointers count on iOS by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2755](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2755) - fix: remove usage of bridge uimanager in one more place by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2768](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2768) - Remove hardcoded version of `cocoapods` by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2772](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2772) - Move `customDirectEventTypes` to separate files. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2786](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2786) - Fix nested taps activation by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2759](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2759) - Cancel handlers by `NativeViewGestureHandler` by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2788](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2788) - Make simultaneous handlers always symmetric on iOS by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2800](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2800) - Update mocks to work when testing for the new arch by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2801](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2801) - fix(web): After swiping closed, the Swipeable component cannot be swiped open again by [@​yatessss](https://togithub.com/yatessss) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2802](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2802) - Remove event listeners on handler drop by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2815](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2815) - Use correct origin point for calculating the absolute position on Android by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2826](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2826) - Add check when removing handlers from orchestrator by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2831](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2831) - Use `locationOfTouch:inView` over `locationInView` for focal point by [@​rrebase](https://togithub.com/rrebase) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2834](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2834) #### 👍 Improvements - Pass `{ flex: 1 }` as default style to `GestureHandlerRootView` by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2757](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2757) - Stop sending event on pressure changes by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2762](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2762) - feat: use proper APIs for newest RN versions on new arch by [@​WoLewicki](https://togithub.com/WoLewicki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2767](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2767) - Remove circular dependencies on web by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2783](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2783) - Address compilation warnings by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2597](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2597) - Add `userSelect` to TouchableOpacity by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2812](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2812) - Web `Orchestrator` refactor. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2819](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2819) - Replace `mach_absolute_time` with `CACurrentMediaTime` by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2830](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2830) #### 🔢 Miscellaneous - Restyle Gesture Handler Documentation by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2753](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2753) - Fix incorrect link to Github repository by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2761](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2761) - Add links to each gesture on landing in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2763](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2763) - Update pods on CI by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2765](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2765) - Restyle steps in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2774](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2774) - Fix wrong admonition color on initial render by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2779](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2779) - Various style fixes in docs by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2780](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2780) - Add closable App.js banner to docs landing page by [@​patrycjakalinska](https://togithub.com/patrycjakalinska) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2781](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2781) - Add `mouseButton` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2789](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2789) - Add `pointerType` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2791](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2791) - Add `enableContextMenu` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2790](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2790) - Add `touchAction` description to docs. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2794](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2794) - docs: change accent color to blue by [@​kacperkapusciak](https://togithub.com/kacperkapusciak) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2795](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2795) - Change `MouseButton` export type. by [@​m-bert](https://togithub.com/m-bert) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2804](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2804) - Fix babel config in the root project by [@​j-piasecki](https://togithub.com/j-piasecki) in [https://github.com/software-mansion/react-native-gesture-handler/pull/2717](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2717) #### New Contributors - [@​patrycjakalinska](https://togithub.com/patrycjakalinska) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2753](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2753) - [@​camilossantos2809](https://togithub.com/camilossantos2809) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2792](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2792) - [@​yatessss](https://togithub.com/yatessss) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2802](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2802) - [@​LatekVo](https://togithub.com/LatekVo) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2796](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2796) - [@​rrebase](https://togithub.com/rrebase) made their first contribution in [https://github.com/software-mansion/react-native-gesture-handler/pull/2834](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2834) **Full Changelog**: software-mansion/react-native-gesture-handler@2.15.0...2.16.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 5pm,every weekend" in timezone America/Los_Angeles, Automerge - "after 5pm,every weekend" in timezone America/Los_Angeles. 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/valora-inc/wallet). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: valora-bot <[email protected]>
This was referenced May 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR adds new prop to gesture handlers -
touchAction
.While working on fix scroll interactions PR we've found it difficult to remove
touch-action: none;
and ensure correct behavior of handlers with scroll, especially with swipeable components. What made it even harder were differences between platforms.We decided to kill two birds with one stone - give our users possibility to manipulate
touchAction
, which will also make it easier for us to properly handle scroll.Test plan
Tested on example app.