react-native-fpay 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/Fpay.podspec +20 -0
  2. package/LICENSE +20 -0
  3. package/README.md +37 -0
  4. package/android/build.gradle +67 -0
  5. package/android/src/main/AndroidManifest.xml +2 -0
  6. package/android/src/main/java/com/fpay/FpayModule.kt +15 -0
  7. package/android/src/main/java/com/fpay/FpayPackage.kt +31 -0
  8. package/ios/Fpay.h +5 -0
  9. package/ios/Fpay.mm +21 -0
  10. package/lib/module/FountainPayProvider.js +18 -0
  11. package/lib/module/FountainPayProvider.js.map +1 -0
  12. package/lib/module/core/api/client.js +47 -0
  13. package/lib/module/core/api/client.js.map +1 -0
  14. package/lib/module/core/api/index.js +35 -0
  15. package/lib/module/core/api/index.js.map +1 -0
  16. package/lib/module/core/types/index.js +4 -0
  17. package/lib/module/core/types/index.js.map +1 -0
  18. package/lib/module/engine/BLEReceiverService.js +190 -0
  19. package/lib/module/engine/BLEReceiverService.js.map +1 -0
  20. package/lib/module/engine/BLESenderService.js +259 -0
  21. package/lib/module/engine/BLESenderService.js.map +1 -0
  22. package/lib/module/engine/FPEngine.js +340 -0
  23. package/lib/module/engine/FPEngine.js.map +1 -0
  24. package/lib/module/engine/NearbyUsersService.js +87 -0
  25. package/lib/module/engine/NearbyUsersService.js.map +1 -0
  26. package/lib/module/index.js +16 -0
  27. package/lib/module/index.js.map +1 -0
  28. package/lib/module/package.json +1 -0
  29. package/lib/module/ui/components/FPButton.js +71 -0
  30. package/lib/module/ui/components/FPButton.js.map +1 -0
  31. package/lib/module/ui/components/LoadingAnimation/InLoading.js +74 -0
  32. package/lib/module/ui/components/LoadingAnimation/InLoading.js.map +1 -0
  33. package/lib/module/ui/components/LoadingAnimation/index.js +82 -0
  34. package/lib/module/ui/components/LoadingAnimation/index.js.map +1 -0
  35. package/lib/module/ui/components/OtpInput/OTPInputView.js +290 -0
  36. package/lib/module/ui/components/OtpInput/OTPInputView.js.map +1 -0
  37. package/lib/module/ui/components/OtpInput/Styles.js +20 -0
  38. package/lib/module/ui/components/OtpInput/Styles.js.map +1 -0
  39. package/lib/module/ui/components/OtpInput/helpers/codeToArray.js +7 -0
  40. package/lib/module/ui/components/OtpInput/helpers/codeToArray.js.map +1 -0
  41. package/lib/module/ui/components/OtpInput/helpers/device.js +9 -0
  42. package/lib/module/ui/components/OtpInput/helpers/device.js.map +1 -0
  43. package/lib/module/ui/components/OtpInput/helpers/styles.js +17 -0
  44. package/lib/module/ui/components/OtpInput/helpers/styles.js.map +1 -0
  45. package/lib/module/ui/components/OtpInput/helpers/types.js +4 -0
  46. package/lib/module/ui/components/OtpInput/helpers/types.js.map +1 -0
  47. package/lib/module/ui/components/OtpInput/index.js +45 -0
  48. package/lib/module/ui/components/OtpInput/index.js.map +1 -0
  49. package/lib/module/ui/components/PulseAnimation.js +61 -0
  50. package/lib/module/ui/components/PulseAnimation.js.map +1 -0
  51. package/lib/module/ui/modals/FPPaymentRequestModal.js +253 -0
  52. package/lib/module/ui/modals/FPPaymentRequestModal.js.map +1 -0
  53. package/lib/module/ui/modals/FPShell.js +180 -0
  54. package/lib/module/ui/modals/FPShell.js.map +1 -0
  55. package/lib/module/ui/screens/ReceiveScreen.js +291 -0
  56. package/lib/module/ui/screens/ReceiveScreen.js.map +1 -0
  57. package/lib/module/ui/screens/SendScreen.js +216 -0
  58. package/lib/module/ui/screens/SendScreen.js.map +1 -0
  59. package/lib/module/ui/screens/sub/BluetoothSubScreen.js +403 -0
  60. package/lib/module/ui/screens/sub/BluetoothSubScreen.js.map +1 -0
  61. package/lib/module/ui/screens/sub/NFCSubScreen.js +169 -0
  62. package/lib/module/ui/screens/sub/NFCSubScreen.js.map +1 -0
  63. package/lib/module/ui/screens/sub/NQRSubScreen.js +136 -0
  64. package/lib/module/ui/screens/sub/NQRSubScreen.js.map +1 -0
  65. package/lib/module/ui/screens/sub/ProximitySubScreen.js +501 -0
  66. package/lib/module/ui/screens/sub/ProximitySubScreen.js.map +1 -0
  67. package/lib/module/ui/screens/sub/TransferSubScreen.js +361 -0
  68. package/lib/module/ui/screens/sub/TransferSubScreen.js.map +1 -0
  69. package/lib/module/ui/theme/index.js +64 -0
  70. package/lib/module/ui/theme/index.js.map +1 -0
  71. package/lib/module/useFountainPay.js +82 -0
  72. package/lib/module/useFountainPay.js.map +1 -0
  73. package/lib/typescript/package.json +1 -0
  74. package/lib/typescript/src/FountainPayProvider.d.ts +7 -0
  75. package/lib/typescript/src/FountainPayProvider.d.ts.map +1 -0
  76. package/lib/typescript/src/core/api/client.d.ts +7 -0
  77. package/lib/typescript/src/core/api/client.d.ts.map +1 -0
  78. package/lib/typescript/src/core/api/index.d.ts +67 -0
  79. package/lib/typescript/src/core/api/index.d.ts.map +1 -0
  80. package/lib/typescript/src/core/types/index.d.ts +130 -0
  81. package/lib/typescript/src/core/types/index.d.ts.map +1 -0
  82. package/lib/typescript/src/engine/BLEReceiverService.d.ts +43 -0
  83. package/lib/typescript/src/engine/BLEReceiverService.d.ts.map +1 -0
  84. package/lib/typescript/src/engine/BLESenderService.d.ts +39 -0
  85. package/lib/typescript/src/engine/BLESenderService.d.ts.map +1 -0
  86. package/lib/typescript/src/engine/FPEngine.d.ts +24 -0
  87. package/lib/typescript/src/engine/FPEngine.d.ts.map +1 -0
  88. package/lib/typescript/src/engine/NearbyUsersService.d.ts +19 -0
  89. package/lib/typescript/src/engine/NearbyUsersService.d.ts.map +1 -0
  90. package/lib/typescript/src/index.d.ts +4 -0
  91. package/lib/typescript/src/index.d.ts.map +1 -0
  92. package/lib/typescript/src/ui/components/FPButton.d.ts +12 -0
  93. package/lib/typescript/src/ui/components/FPButton.d.ts.map +1 -0
  94. package/lib/typescript/src/ui/components/LoadingAnimation/InLoading.d.ts +7 -0
  95. package/lib/typescript/src/ui/components/LoadingAnimation/InLoading.d.ts.map +1 -0
  96. package/lib/typescript/src/ui/components/LoadingAnimation/index.d.ts +6 -0
  97. package/lib/typescript/src/ui/components/LoadingAnimation/index.d.ts.map +1 -0
  98. package/lib/typescript/src/ui/components/OtpInput/OTPInputView.d.ts +29 -0
  99. package/lib/typescript/src/ui/components/OtpInput/OTPInputView.d.ts.map +1 -0
  100. package/lib/typescript/src/ui/components/OtpInput/Styles.d.ts +330 -0
  101. package/lib/typescript/src/ui/components/OtpInput/Styles.d.ts.map +1 -0
  102. package/lib/typescript/src/ui/components/OtpInput/helpers/codeToArray.d.ts +6 -0
  103. package/lib/typescript/src/ui/components/OtpInput/helpers/codeToArray.d.ts.map +1 -0
  104. package/lib/typescript/src/ui/components/OtpInput/helpers/device.d.ts +6 -0
  105. package/lib/typescript/src/ui/components/OtpInput/helpers/device.d.ts.map +1 -0
  106. package/lib/typescript/src/ui/components/OtpInput/helpers/styles.d.ts +6 -0
  107. package/lib/typescript/src/ui/components/OtpInput/helpers/styles.d.ts.map +1 -0
  108. package/lib/typescript/src/ui/components/OtpInput/helpers/types.d.ts +84 -0
  109. package/lib/typescript/src/ui/components/OtpInput/helpers/types.d.ts.map +1 -0
  110. package/lib/typescript/src/ui/components/OtpInput/index.d.ts +9 -0
  111. package/lib/typescript/src/ui/components/OtpInput/index.d.ts.map +1 -0
  112. package/lib/typescript/src/ui/components/PulseAnimation.d.ts +2 -0
  113. package/lib/typescript/src/ui/components/PulseAnimation.d.ts.map +1 -0
  114. package/lib/typescript/src/ui/modals/FPPaymentRequestModal.d.ts +2 -0
  115. package/lib/typescript/src/ui/modals/FPPaymentRequestModal.d.ts.map +1 -0
  116. package/lib/typescript/src/ui/modals/FPShell.d.ts +2 -0
  117. package/lib/typescript/src/ui/modals/FPShell.d.ts.map +1 -0
  118. package/lib/typescript/src/ui/screens/ReceiveScreen.d.ts +10 -0
  119. package/lib/typescript/src/ui/screens/ReceiveScreen.d.ts.map +1 -0
  120. package/lib/typescript/src/ui/screens/SendScreen.d.ts +9 -0
  121. package/lib/typescript/src/ui/screens/SendScreen.d.ts.map +1 -0
  122. package/lib/typescript/src/ui/screens/sub/BluetoothSubScreen.d.ts +552 -0
  123. package/lib/typescript/src/ui/screens/sub/BluetoothSubScreen.d.ts.map +1 -0
  124. package/lib/typescript/src/ui/screens/sub/NFCSubScreen.d.ts +19 -0
  125. package/lib/typescript/src/ui/screens/sub/NFCSubScreen.d.ts.map +1 -0
  126. package/lib/typescript/src/ui/screens/sub/NQRSubScreen.d.ts +13 -0
  127. package/lib/typescript/src/ui/screens/sub/NQRSubScreen.d.ts.map +1 -0
  128. package/lib/typescript/src/ui/screens/sub/ProximitySubScreen.d.ts +552 -0
  129. package/lib/typescript/src/ui/screens/sub/ProximitySubScreen.d.ts.map +1 -0
  130. package/lib/typescript/src/ui/screens/sub/TransferSubScreen.d.ts +12 -0
  131. package/lib/typescript/src/ui/screens/sub/TransferSubScreen.d.ts.map +1 -0
  132. package/lib/typescript/src/ui/theme/index.d.ts +62 -0
  133. package/lib/typescript/src/ui/theme/index.d.ts.map +1 -0
  134. package/lib/typescript/src/useFountainPay.d.ts +3 -0
  135. package/lib/typescript/src/useFountainPay.d.ts.map +1 -0
  136. package/package.json +217 -0
  137. package/src/FountainPayProvider.tsx +21 -0
  138. package/src/core/api/client.ts +47 -0
  139. package/src/core/api/index.ts +61 -0
  140. package/src/core/types/index.ts +144 -0
  141. package/src/engine/BLEReceiverService.ts +244 -0
  142. package/src/engine/BLESenderService.ts +314 -0
  143. package/src/engine/FPEngine.ts +370 -0
  144. package/src/engine/NearbyUsersService.ts +106 -0
  145. package/src/index.ts +30 -0
  146. package/src/ui/components/FPButton.tsx +42 -0
  147. package/src/ui/components/LoadingAnimation/InLoading.tsx +88 -0
  148. package/src/ui/components/LoadingAnimation/index.tsx +93 -0
  149. package/src/ui/components/OtpInput/OTPInputView.tsx +243 -0
  150. package/src/ui/components/OtpInput/Styles.ts +19 -0
  151. package/src/ui/components/OtpInput/helpers/codeToArray.ts +3 -0
  152. package/src/ui/components/OtpInput/helpers/device.ts +6 -0
  153. package/src/ui/components/OtpInput/helpers/styles.ts +17 -0
  154. package/src/ui/components/OtpInput/helpers/types.ts +88 -0
  155. package/src/ui/components/OtpInput/index.tsx +51 -0
  156. package/src/ui/components/PulseAnimation.tsx +78 -0
  157. package/src/ui/modals/FPPaymentRequestModal.tsx +158 -0
  158. package/src/ui/modals/FPShell.tsx +107 -0
  159. package/src/ui/screens/ReceiveScreen.tsx +119 -0
  160. package/src/ui/screens/SendScreen.tsx +86 -0
  161. package/src/ui/screens/sub/BluetoothSubScreen.tsx +433 -0
  162. package/src/ui/screens/sub/NFCSubScreen.tsx +83 -0
  163. package/src/ui/screens/sub/NQRSubScreen.tsx +61 -0
  164. package/src/ui/screens/sub/ProximitySubScreen.tsx +390 -0
  165. package/src/ui/screens/sub/TransferSubScreen.tsx +146 -0
  166. package/src/ui/theme/index.ts +24 -0
  167. package/src/useFountainPay.ts +95 -0
@@ -0,0 +1,330 @@
1
+ export declare const HideInput: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
2
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
3
+ onAccessibilityTap?: (() => unknown) | undefined;
4
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
5
+ onMagicTap?: (() => unknown) | undefined;
6
+ onAccessibilityEscape?: (() => unknown) | undefined;
7
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
8
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
9
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
10
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
11
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
12
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
13
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
14
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
18
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
19
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
21
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
22
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
23
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
24
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
25
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
26
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
27
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
33
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
34
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
35
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
47
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
48
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
49
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
50
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
51
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
52
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
53
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
54
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
55
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
61
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
62
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
63
+ renderToHardwareTextureAndroid?: boolean | undefined;
64
+ hasTVPreferredFocus?: boolean | undefined;
65
+ nextFocusDown?: number | undefined;
66
+ nextFocusForward?: number | undefined;
67
+ nextFocusLeft?: number | undefined;
68
+ nextFocusRight?: number | undefined;
69
+ nextFocusUp?: number | undefined;
70
+ focusable?: boolean | undefined;
71
+ tabIndex?: 0 | -1;
72
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
73
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
74
+ shouldRasterizeIOS?: boolean | undefined;
75
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
76
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
77
+ "aria-labelledby"?: string | undefined;
78
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
79
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
80
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
81
+ screenReaderFocusable?: boolean;
82
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
83
+ accessibilityIgnoresInvertColors?: boolean | undefined;
84
+ accessibilityViewIsModal?: boolean | undefined;
85
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
86
+ accessibilityLargeContentTitle?: string | undefined;
87
+ "aria-modal"?: boolean | undefined;
88
+ accessibilityElementsHidden?: boolean | undefined;
89
+ accessibilityLanguage?: string | undefined;
90
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
91
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
92
+ accessible?: boolean | undefined;
93
+ accessibilityLabel?: string | undefined;
94
+ accessibilityHint?: string | undefined;
95
+ "aria-label"?: string | undefined;
96
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
97
+ role?: import("react-native").Role | undefined;
98
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
99
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
100
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
101
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
102
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
103
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
104
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
105
+ "aria-busy"?: boolean | undefined;
106
+ "aria-checked"?: (boolean | undefined) | "mixed";
107
+ "aria-disabled"?: boolean | undefined;
108
+ "aria-expanded"?: boolean | undefined;
109
+ "aria-selected"?: boolean | undefined;
110
+ "aria-hidden"?: boolean | undefined;
111
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
112
+ children?: React.ReactNode;
113
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
114
+ collapsable?: boolean | undefined;
115
+ collapsableChildren?: boolean | undefined;
116
+ id?: string;
117
+ testID?: string | undefined;
118
+ nativeID?: string | undefined;
119
+ needsOffscreenAlphaCompositing?: boolean | undefined;
120
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
121
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
122
+ removeClippedSubviews?: boolean | undefined;
123
+ experimental_accessibilityOrder?: Array<string> | undefined;
124
+ }>, never>>, "style" | "experimental_accessibilityOrder">, "onPress" | "style" | "textAlign" | "onBlur" | "onFocus" | "onPressIn" | "onPressOut" | "rejectResponderTermination" | "lineBreakStrategyIOS" | "selectionColor" | "textBreakStrategy" | "allowFontScaling" | "maxFontSizeMultiplier" | "numberOfLines" | "value" | "disableKeyboardShortcuts" | "clearButtonMode" | "clearTextOnFocus" | "dataDetectorTypes" | "enablesReturnKeyAutomatically" | "inputAccessoryViewID" | "inputAccessoryViewButtonLabel" | "keyboardAppearance" | "passwordRules" | "scrollEnabled" | "spellCheck" | "textContentType" | "lineBreakModeIOS" | "smartInsertDelete" | "cursorColor" | "selectionHandleColor" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "autoFocus" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "multiline" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectTextOnFocus" | "blurOnSubmit" | "submitBehavior"> & Omit<Readonly<{
125
+ disableKeyboardShortcuts?: boolean | undefined;
126
+ clearButtonMode?: ("never" | "while-editing" | "unless-editing" | "always") | undefined;
127
+ clearTextOnFocus?: boolean | undefined;
128
+ dataDetectorTypes?: (import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").DataDetectorTypesType | undefined) | ReadonlyArray<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").DataDetectorTypesType>;
129
+ enablesReturnKeyAutomatically?: boolean | undefined;
130
+ inputAccessoryViewID?: string | undefined;
131
+ inputAccessoryViewButtonLabel?: string | undefined;
132
+ keyboardAppearance?: ("default" | "light" | "dark") | undefined;
133
+ passwordRules?: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").PasswordRules | undefined;
134
+ rejectResponderTermination?: boolean | undefined;
135
+ scrollEnabled?: boolean | undefined;
136
+ spellCheck?: boolean | undefined;
137
+ textContentType?: import("react-native").TextContentType | undefined;
138
+ lineBreakStrategyIOS?: ("none" | "standard" | "hangul-word" | "push-out") | undefined;
139
+ lineBreakModeIOS?: ("wordWrapping" | "char" | "clip" | "head" | "middle" | "tail") | undefined;
140
+ smartInsertDelete?: boolean | undefined;
141
+ }>, "onPress" | "style" | "textAlign" | "onBlur" | "onFocus" | "onPressIn" | "onPressOut" | "selectionColor" | "textBreakStrategy" | "allowFontScaling" | "maxFontSizeMultiplier" | "numberOfLines" | "value" | "cursorColor" | "selectionHandleColor" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "autoFocus" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "multiline" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectTextOnFocus" | "blurOnSubmit" | "submitBehavior"> & Omit<Readonly<{
142
+ cursorColor?: import("react-native").ColorValue | undefined;
143
+ selectionHandleColor?: import("react-native").ColorValue | undefined;
144
+ disableFullscreenUI?: boolean | undefined;
145
+ importantForAutofill?: ("auto" | "no" | "noExcludeDescendants" | "yes" | "yesExcludeDescendants") | undefined;
146
+ inlineImageLeft?: string | undefined;
147
+ inlineImagePadding?: number | undefined;
148
+ numberOfLines?: number | undefined;
149
+ returnKeyLabel?: string | undefined;
150
+ rows?: number | undefined;
151
+ showSoftInputOnFocus?: boolean | undefined;
152
+ textBreakStrategy?: ("simple" | "highQuality" | "balanced") | undefined;
153
+ underlineColorAndroid?: import("react-native").ColorValue | undefined;
154
+ }>, "onPress" | "style" | "textAlign" | "onBlur" | "onFocus" | "onPressIn" | "onPressOut" | "selectionColor" | "allowFontScaling" | "maxFontSizeMultiplier" | "value" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "autoFocus" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "multiline" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectTextOnFocus" | "blurOnSubmit" | "submitBehavior"> & Omit<Readonly<{
155
+ experimental_acceptDragAndDropTypes?: ReadonlyArray<string> | undefined;
156
+ autoCapitalize?: import("react-native").AutoCapitalize | undefined;
157
+ autoComplete?: ("additional-name" | "address-line1" | "address-line2" | "birthdate-day" | "birthdate-full" | "birthdate-month" | "birthdate-year" | "cc-csc" | "cc-exp" | "cc-exp-day" | "cc-exp-month" | "cc-exp-year" | "cc-number" | "cc-name" | "cc-given-name" | "cc-middle-name" | "cc-family-name" | "cc-type" | "country" | "current-password" | "email" | "family-name" | "gender" | "given-name" | "honorific-prefix" | "honorific-suffix" | "name" | "name-family" | "name-given" | "name-middle" | "name-middle-initial" | "name-prefix" | "name-suffix" | "new-password" | "nickname" | "one-time-code" | "organization" | "organization-title" | "password" | "password-new" | "postal-address" | "postal-address-country" | "postal-address-extended" | "postal-address-extended-postal-code" | "postal-address-locality" | "postal-address-region" | "postal-code" | "street-address" | "sms-otp" | "tel" | "tel-country-code" | "tel-national" | "tel-device" | "url" | "username" | "username-new" | "off") | undefined;
158
+ autoCorrect?: boolean | undefined;
159
+ autoFocus?: boolean | undefined;
160
+ allowFontScaling?: boolean | undefined;
161
+ caretHidden?: boolean | undefined;
162
+ contextMenuHidden?: boolean | undefined;
163
+ defaultValue?: string | undefined;
164
+ editable?: boolean | undefined;
165
+ forwardedRef?: React.Ref<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputInstance> | undefined;
166
+ enterKeyHint?: import("react-native").EnterKeyHintTypeOptions | undefined;
167
+ inputMode?: import("react-native").InputModeOptions | undefined;
168
+ keyboardType?: import("react-native").KeyboardTypeOptions | undefined;
169
+ maxFontSizeMultiplier?: number | undefined;
170
+ maxLength?: number | undefined;
171
+ multiline?: boolean | undefined;
172
+ onBlur?: ((e: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputBlurEvent) => unknown) | undefined;
173
+ onChange?: ((e: import("react-native").TextInputChangeEvent) => unknown) | undefined;
174
+ onChangeText?: ((text: string) => unknown) | undefined;
175
+ onContentSizeChange?: ((e: import("react-native").TextInputContentSizeChangeEvent) => unknown) | undefined;
176
+ onEndEditing?: ((e: import("react-native").TextInputEndEditingEvent) => unknown) | undefined;
177
+ onFocus?: ((e: import("react-native").TextInputFocusEvent) => unknown) | undefined;
178
+ onKeyPress?: ((e: import("react-native").TextInputKeyPressEvent) => unknown) | undefined;
179
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
180
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
181
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
182
+ onSelectionChange?: ((e: import("react-native").TextInputSelectionChangeEvent) => unknown) | undefined;
183
+ onSubmitEditing?: ((e: import("react-native").TextInputSubmitEditingEvent) => unknown) | undefined;
184
+ onScroll?: ((e: import("react-native").ScrollEvent) => unknown) | undefined;
185
+ placeholder?: string | undefined;
186
+ placeholderTextColor?: import("react-native").ColorValue | undefined;
187
+ readOnly?: boolean | undefined;
188
+ returnKeyType?: import("react-native").ReturnKeyTypeOptions | undefined;
189
+ secureTextEntry?: boolean | undefined;
190
+ selection?: Readonly<{
191
+ start: number;
192
+ end?: number | undefined;
193
+ }> | undefined;
194
+ selectionColor?: import("react-native").ColorValue | undefined;
195
+ selectTextOnFocus?: boolean | undefined;
196
+ blurOnSubmit?: boolean | undefined;
197
+ submitBehavior?: import("react-native").SubmitBehavior | undefined;
198
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
199
+ value?: string | undefined;
200
+ textAlign?: ("left" | "center" | "right") | undefined;
201
+ }>, never>>, "ref"> & {
202
+ ref?: React.Ref<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputInstance>;
203
+ }, never>>;
204
+ export declare const Otpinput: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit<Omit<Readonly<Omit<Readonly<{
205
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
206
+ onAccessibilityTap?: (() => unknown) | undefined;
207
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
208
+ onMagicTap?: (() => unknown) | undefined;
209
+ onAccessibilityEscape?: (() => unknown) | undefined;
210
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
211
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
212
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
213
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
214
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
215
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
216
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
217
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
218
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
219
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
220
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
221
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
222
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
223
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
224
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
225
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
226
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
227
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
228
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
229
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
230
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
231
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
232
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
233
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
234
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
235
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
236
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
237
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
238
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
239
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
240
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
241
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
242
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
243
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
244
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
245
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
246
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
247
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
248
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
249
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "onBlur" | "onFocus" | "testID" | "onClick" | "onBlurCapture" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
250
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
251
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
252
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
253
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
254
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
255
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
256
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
257
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
258
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
259
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
260
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
261
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
262
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
263
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "children" | "focusable" | "hitSlop" | "nativeID" | "testID" | "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "tabIndex" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
264
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
265
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
266
+ renderToHardwareTextureAndroid?: boolean | undefined;
267
+ hasTVPreferredFocus?: boolean | undefined;
268
+ nextFocusDown?: number | undefined;
269
+ nextFocusForward?: number | undefined;
270
+ nextFocusLeft?: number | undefined;
271
+ nextFocusRight?: number | undefined;
272
+ nextFocusUp?: number | undefined;
273
+ focusable?: boolean | undefined;
274
+ tabIndex?: 0 | -1;
275
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
276
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "shouldRasterizeIOS" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
277
+ shouldRasterizeIOS?: boolean | undefined;
278
+ }>, "id" | "pointerEvents" | "style" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
279
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
280
+ "aria-labelledby"?: string | undefined;
281
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
282
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
283
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
284
+ screenReaderFocusable?: boolean;
285
+ }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
286
+ accessibilityIgnoresInvertColors?: boolean | undefined;
287
+ accessibilityViewIsModal?: boolean | undefined;
288
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
289
+ accessibilityLargeContentTitle?: string | undefined;
290
+ "aria-modal"?: boolean | undefined;
291
+ accessibilityElementsHidden?: boolean | undefined;
292
+ accessibilityLanguage?: string | undefined;
293
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
294
+ }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
295
+ accessible?: boolean | undefined;
296
+ accessibilityLabel?: string | undefined;
297
+ accessibilityHint?: string | undefined;
298
+ "aria-label"?: string | undefined;
299
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
300
+ role?: import("react-native").Role | undefined;
301
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
302
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
303
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
304
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
305
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
306
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
307
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
308
+ "aria-busy"?: boolean | undefined;
309
+ "aria-checked"?: (boolean | undefined) | "mixed";
310
+ "aria-disabled"?: boolean | undefined;
311
+ "aria-expanded"?: boolean | undefined;
312
+ "aria-selected"?: boolean | undefined;
313
+ "aria-hidden"?: boolean | undefined;
314
+ }>, "id" | "pointerEvents" | "style" | "children" | "hitSlop" | "nativeID" | "testID" | "collapsable" | "collapsableChildren" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
315
+ children?: React.ReactNode;
316
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
317
+ collapsable?: boolean | undefined;
318
+ collapsableChildren?: boolean | undefined;
319
+ id?: string;
320
+ testID?: string | undefined;
321
+ nativeID?: string | undefined;
322
+ needsOffscreenAlphaCompositing?: boolean | undefined;
323
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
324
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
325
+ removeClippedSubviews?: boolean | undefined;
326
+ experimental_accessibilityOrder?: Array<string> | undefined;
327
+ }>, never>>, "ref"> & {
328
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
329
+ }, never>>;
330
+ //# sourceMappingURL=Styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Styles.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/OtpInput/Styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAiBs0uB,CAAC;;;;;;;;;;;UAX51uB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAQpB,CAAC"}
@@ -0,0 +1,6 @@
1
+ export declare const codeToArray: (code?: string) => string[];
2
+ declare const _default: {
3
+ codeToArray: (code?: string) => string[];
4
+ };
5
+ export default _default;
6
+ //# sourceMappingURL=codeToArray.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codeToArray.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/OtpInput/helpers/codeToArray.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,GAAI,OAAO,MAAM,KAAG,MAAM,EAA2B,CAAC;;yBAA3C,MAAM,KAAG,MAAM,EAAE;;AAEpD,wBAA8B"}
@@ -0,0 +1,6 @@
1
+ export declare const isAutoFillSupported: boolean;
2
+ declare const _default: {
3
+ isAutoFillSupported: boolean;
4
+ };
5
+ export default _default;
6
+ //# sourceMappingURL=device.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"device.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/OtpInput/helpers/device.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,mBAAmB,SAAmD,CAAA;;;;AAEnF,wBAAsC"}
@@ -0,0 +1,6 @@
1
+ import { type TextStyle } from 'react-native';
2
+ declare const styles: Readonly<{
3
+ defaultTextFieldStyle: TextStyle;
4
+ }>;
5
+ export default styles;
6
+ //# sourceMappingURL=styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/OtpInput/helpers/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,SAAS,EAAG,MAAM,cAAc,CAAC;AAG3D,QAAA,MAAM,MAAM;2BAA6C,SAAS;EAWhE,CAAC;AAEH,eAAe,MAAM,CAAC"}
@@ -0,0 +1,84 @@
1
+ import type { TextStyle, ViewStyle } from 'react-native';
2
+ type KeyboardType = 'default' | 'email-address' | 'number-pad' | 'phone-pad';
3
+ export interface InputProps {
4
+ /**
5
+ * Digits of pins in the OTP
6
+ */
7
+ pinCount: number;
8
+ /**
9
+ * Style of the input fields
10
+ */
11
+ codeInputFieldStyle?: TextStyle;
12
+ /**
13
+ * Style of highlighted status for input fields
14
+ */
15
+ codeInputHighlightStyle?: TextStyle;
16
+ /**
17
+ * Callback function
18
+ * Trigger when all fields of the OTP has been filled
19
+ *
20
+ * @param code The verification code
21
+ */
22
+ onCodeFilled?: (code: string) => void;
23
+ /**
24
+ * Callback function
25
+ * Trigger when a field of the OTP is changed
26
+ *
27
+ * @param code The verification code
28
+ */
29
+ onCodeChanged?: (code: string) => void;
30
+ /**
31
+ * If keyboard is automatically brought up when OTP is loaded.
32
+ */
33
+ autoFocusOnLoad?: boolean;
34
+ /**
35
+ * Initial pin code
36
+ */
37
+ code?: string;
38
+ /**
39
+ * Secure input text
40
+ */
41
+ secureTextEntry?: boolean;
42
+ /**
43
+ * Set editable for inputs
44
+ */
45
+ editable?: boolean;
46
+ /**
47
+ * Type of the keyboard
48
+ */
49
+ keyboardType?: KeyboardType;
50
+ /**
51
+ * Placeholder character to fill all inputs when the OTP is empty
52
+ */
53
+ placeholderCharacter?: string;
54
+ /**
55
+ * Placeholder text color of inputs
56
+ */
57
+ placeholderTextColor?: string;
58
+ /**
59
+ * Style of the OTP container view
60
+ */
61
+ style?: ViewStyle;
62
+ /**
63
+ * The highlight (and cursor on iOS) color of the text input.
64
+ */
65
+ selectionColor?: string;
66
+ /**
67
+ * If inputs are automatically cleared.
68
+ */
69
+ clearInputs?: boolean;
70
+ /**
71
+ * Keyboard appearance. The value can be 'default', 'dark' or 'light'.
72
+ */
73
+ keyboardAppearance?: 'default' | 'dark' | 'light';
74
+ /**
75
+ * Keyboard auto-appear on focus. The value can be 'false' or 'true'.
76
+ */
77
+ showSoftInputOnFocus?: boolean;
78
+ }
79
+ export interface OTPInputViewState {
80
+ digits: string[];
81
+ selectedIndex: number;
82
+ }
83
+ export {};
84
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/OtpInput/helpers/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzD,KAAK,YAAY,GAAG,SAAS,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,CAAC;AAE7E,MAAM,WAAW,UAAU;IACvB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,mBAAmB,CAAC,EAAE,SAAS,CAAC;IAChC;;OAEG;IACH,uBAAuB,CAAC,EAAE,SAAS,CAAC;IACpC;;;;;OAKG;IACH,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC;;;;;OAKG;IACH,aAAa,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACvC;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,kBAAkB,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,OAAO,CAAC;IAElD;;OAEG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAClC;AAED,MAAM,WAAW,iBAAiB;IAC9B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;CACzB"}
@@ -0,0 +1,9 @@
1
+ type PropT = {
2
+ callBack: Function;
3
+ pinvalue?: any;
4
+ isSecure?: boolean;
5
+ count?: number;
6
+ };
7
+ export default function OTPInputs({ callBack, pinvalue, isSecure, count, }: PropT): import("react/jsx-runtime").JSX.Element;
8
+ export {};
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/OtpInput/index.tsx"],"names":[],"mappings":"AAKA,KAAK,KAAK,GAAG;IACX,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAChC,QAAQ,EACR,QAAa,EACb,QAAe,EACf,KAAS,GACV,EAAE,KAAK,2CAgBP"}
@@ -0,0 +1,2 @@
1
+ export declare const PulseAnimation: React.FC;
2
+ //# sourceMappingURL=PulseAnimation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PulseAnimation.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/PulseAnimation.tsx"],"names":[],"mappings":"AAeA,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EA8DlC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function FPPaymentRequestModal(): import("react/jsx-runtime").JSX.Element | null;
2
+ //# sourceMappingURL=FPPaymentRequestModal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FPPaymentRequestModal.d.ts","sourceRoot":"","sources":["../../../../../src/ui/modals/FPPaymentRequestModal.tsx"],"names":[],"mappings":"AAOA,wBAAgB,qBAAqB,mDAoIpC"}
@@ -0,0 +1,2 @@
1
+ export declare function FPShell(): import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=FPShell.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FPShell.d.ts","sourceRoot":"","sources":["../../../../../src/ui/modals/FPShell.tsx"],"names":[],"mappings":"AA0BA,wBAAgB,OAAO,4CAsEtB"}
@@ -0,0 +1,10 @@
1
+ import type { FPCurrency, FPCallbacks, FPUserInfo } from '../../core/types';
2
+ interface Props extends FPCallbacks {
3
+ amount?: number;
4
+ currency?: FPCurrency;
5
+ user: FPUserInfo;
6
+ onClose: () => void;
7
+ }
8
+ export declare function ReceiveScreen({ amount, currency, user, onClose, onPaymentReceived, onError }: Props): import("react/jsx-runtime").JSX.Element;
9
+ export {};
10
+ //# sourceMappingURL=ReceiveScreen.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReceiveScreen.d.ts","sourceRoot":"","sources":["../../../../../src/ui/screens/ReceiveScreen.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAU5E,UAAU,KAAM,SAAQ,WAAW;IACjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,IAAI,EAAE,UAAU,CAAC;IACjB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,wBAAgB,aAAa,CAAC,EAAE,MAAM,EAAE,QAAgB,EAAE,IAAI,EAAE,OAAO,EAAE,iBAAiB,EAAE,OAAO,EAAE,EAAE,KAAK,2CAqD3G"}