@appandflow/touchable
Advanced tools
Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "@appandflow/touchable", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"main": "./src/Touchable.js", | ||
@@ -5,0 +5,0 @@ "private": false, |
@@ -65,2 +65,3 @@ // @flow | ||
onPress?: () => any, | ||
onLongPress?: () => any, | ||
disabled?: boolean, | ||
@@ -84,2 +85,3 @@ hitSlop?: { top?: number, bottom?: number, left?: number, right?: number }, | ||
onPress, | ||
onLongPress, | ||
disabled, | ||
@@ -101,2 +103,3 @@ hitSlop, | ||
onPress={onPress} | ||
onLongPress={onLongPress} | ||
> | ||
@@ -111,2 +114,3 @@ <View {...others} /> | ||
onPress={onPress} | ||
onLongPress={onLongPress} | ||
disabled={disabled} | ||
@@ -122,2 +126,3 @@ hitSlop={hitSlop} | ||
onPress={onPress} | ||
onLongPress={onLongPress} | ||
disabled={disabled} | ||
@@ -139,2 +144,3 @@ hitSlop={hitSlop} | ||
onPress={onPress} | ||
onLongPress={onLongPress} | ||
> | ||
@@ -141,0 +147,0 @@ <View {...others} /> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17828
193