Open
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
12
18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
{
"name": "@rescript-react-native/picker",
"reason": { "react-jsx": 3 },
"jsx": {
"version": 4
},
"package-specs": {
"module": "commonjs",
"in-source": true
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,12 +22,11 @@ external make: (
~accessible: bool=?,
~collapsable: bool=?,
~hitSlop: View.edgeInsets=?,
~importantForAccessibility: @string
[
~importantForAccessibility: [
| #auto
| #yes
| #no
| @as("no-hide-descendants") #noHideDescendants
| #"no-hide-descendants"
]=?,
~nativeID: string=?,
~needsOffscreenAlphaCompositing: bool=?,
Expand All@@ -49,12 +48,11 @@ external make: (
~onResponderTerminationRequest: Event.pressEvent => bool=?,
~onStartShouldSetResponder: Event.pressEvent => bool=?,
~onStartShouldSetResponderCapture: Event.pressEvent => bool=?,
~pointerEvents: @string
[
~pointerEvents: [
| #auto
| #none
| @as("box-none") #boxNone
| @as("box-only") #boxOnly
| #"box-none"
| #"box-only"
]=?,
~removeClippedSubviews: bool=?,
~renderToHardwareTextureAndroid: bool=?,
Expand Down