react-native-external-keyboard 0.11.0 → 1.0.0

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 (52) hide show
  1. package/android/src/main/java/com/externalkeyboard/ExternalKeyboardViewPackage.java +24 -22
  2. package/android/src/main/java/com/externalkeyboard/services/KeyboardService.java +4 -13
  3. package/android/src/newarch/TextInputFocusWrapperManagerSpec.java +0 -3
  4. package/lib/commonjs/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  5. package/lib/commonjs/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  6. package/lib/commonjs/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  7. package/lib/commonjs/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  8. package/lib/module/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  9. package/lib/module/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  10. package/lib/module/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  11. package/lib/module/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  12. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts +129 -3
  13. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts.map +1 -1
  14. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts +372 -6
  15. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts.map +1 -1
  16. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.d.ts +1 -1
  17. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.d.ts.map +1 -1
  18. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts +1 -1
  19. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts.map +1 -1
  20. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts +124 -1
  21. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts.map +1 -1
  22. package/lib/typescript/src/components/Touchable/Pressable.d.ts +158 -1
  23. package/lib/typescript/src/components/Touchable/Pressable.d.ts.map +1 -1
  24. package/lib/typescript/src/context/OrderFocusContext.d.ts +1 -1
  25. package/lib/typescript/src/context/OrderFocusContext.d.ts.map +1 -1
  26. package/lib/typescript/src/index.d.ts +656 -9
  27. package/lib/typescript/src/index.d.ts.map +1 -1
  28. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts +2 -2
  29. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts.map +1 -1
  30. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts +2 -2
  31. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts.map +1 -1
  32. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts +2 -2
  33. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts.map +1 -1
  34. package/lib/typescript/src/nativeSpec/NativeExternalKeyboardModule.d.ts +1 -1
  35. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts +2 -2
  36. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts.map +1 -1
  37. package/lib/typescript/src/types/focus.types.d.ts +1 -10
  38. package/lib/typescript/src/types/focus.types.d.ts.map +1 -1
  39. package/lib/typescript/src/utils/useFocusStyle.d.ts +1005 -3
  40. package/lib/typescript/src/utils/useFocusStyle.d.ts.map +1 -1
  41. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts +867 -3
  42. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts.map +1 -1
  43. package/lib/typescript/src/utils/useRenderedChildren.d.ts +1 -1
  44. package/lib/typescript/src/utils/useRenderedChildren.d.ts.map +1 -1
  45. package/lib/typescript/src/utils/withKeyboardFocus.d.ts +6 -2
  46. package/lib/typescript/src/utils/withKeyboardFocus.d.ts.map +1 -1
  47. package/package.json +4 -7
  48. package/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  49. package/src/nativeSpec/ExternalKeyboardViewNativeComponent.ts +6 -5
  50. package/src/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  51. package/src/nativeSpec/TextInputFocusWrapperNativeComponent.ts +5 -3
  52. package/src/types/focus.types.ts +1 -10
@@ -1,17 +1,383 @@
1
1
  import React from 'react';
2
- import { TextInput } from 'react-native';
3
- export declare const KeyboardExtendedInput: React.ForwardRefExoticComponent<Omit<import("react-native").TextInputProps, "rejectResponderTermination" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier"> & {
2
+ export declare const KeyboardExtendedInput: React.ForwardRefExoticComponent<Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
3
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
4
+ onAccessibilityTap?: (() => unknown) | undefined;
5
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
6
+ onMagicTap?: (() => unknown) | undefined;
7
+ onAccessibilityEscape?: (() => unknown) | undefined;
8
+ }>, "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" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
9
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
10
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
11
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
12
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
13
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
14
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
19
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
21
+ }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
22
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
23
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
24
+ }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
25
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
26
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
27
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
34
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
35
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
+ }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
48
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
49
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
50
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
51
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
52
+ }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
53
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
54
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
55
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
+ }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
62
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
63
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
64
+ renderToHardwareTextureAndroid?: boolean | undefined;
65
+ hasTVPreferredFocus?: boolean | undefined;
66
+ nextFocusDown?: number | undefined;
67
+ nextFocusForward?: number | undefined;
68
+ nextFocusLeft?: number | undefined;
69
+ nextFocusRight?: number | undefined;
70
+ nextFocusUp?: number | undefined;
71
+ focusable?: boolean | undefined;
72
+ tabIndex?: 0 | -1;
73
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
74
+ }>, "shouldRasterizeIOS" | "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
75
+ shouldRasterizeIOS?: boolean | undefined;
76
+ }>, "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" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
77
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
78
+ "aria-labelledby"?: string | undefined;
79
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
80
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
81
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
82
+ screenReaderFocusable?: boolean;
83
+ }>, "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<{
84
+ accessibilityIgnoresInvertColors?: boolean | undefined;
85
+ accessibilityViewIsModal?: boolean | undefined;
86
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
87
+ accessibilityLargeContentTitle?: string | undefined;
88
+ "aria-modal"?: boolean | undefined;
89
+ accessibilityElementsHidden?: boolean | undefined;
90
+ accessibilityLanguage?: string | undefined;
91
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
92
+ }>, "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"> & {
93
+ accessible?: boolean | undefined;
94
+ accessibilityLabel?: string | undefined;
95
+ accessibilityHint?: string | undefined;
96
+ "aria-label"?: string | undefined;
97
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
98
+ role?: import("react-native").Role | undefined;
99
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
100
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
101
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
102
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
103
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
104
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
105
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
106
+ "aria-busy"?: boolean | undefined;
107
+ "aria-checked"?: (boolean | undefined) | "mixed";
108
+ "aria-disabled"?: boolean | undefined;
109
+ "aria-expanded"?: boolean | undefined;
110
+ "aria-selected"?: boolean | undefined;
111
+ "aria-hidden"?: boolean | undefined;
112
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
113
+ children?: React.ReactNode;
114
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
115
+ collapsable?: boolean | undefined;
116
+ collapsableChildren?: boolean | undefined;
117
+ id?: string;
118
+ testID?: string | undefined;
119
+ nativeID?: string | undefined;
120
+ needsOffscreenAlphaCompositing?: boolean | undefined;
121
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
122
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
123
+ removeClippedSubviews?: boolean | undefined;
124
+ experimental_accessibilityOrder?: Array<string> | undefined;
125
+ }>, never>>, "style" | "experimental_accessibilityOrder">, "onBlur" | "onFocus" | "style" | "autoFocus" | "blurOnSubmit" | "multiline" | "rejectResponderTermination" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier" | "disableKeyboardShortcuts" | "clearButtonMode" | "clearTextOnFocus" | "dataDetectorTypes" | "enablesReturnKeyAutomatically" | "inputAccessoryViewID" | "inputAccessoryViewButtonLabel" | "keyboardAppearance" | "passwordRules" | "scrollEnabled" | "spellCheck" | "textContentType" | "lineBreakStrategyIOS" | "lineBreakModeIOS" | "smartInsertDelete" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "numberOfLines" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "textBreakStrategy" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "allowFontScaling" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onPress" | "onPressIn" | "onPressOut" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectionColor" | "selectTextOnFocus" | "submitBehavior" | "value" | "textAlign"> & Omit<Readonly<{
126
+ disableKeyboardShortcuts?: boolean | undefined;
127
+ clearButtonMode?: ("never" | "while-editing" | "unless-editing" | "always") | undefined;
128
+ clearTextOnFocus?: boolean | undefined;
129
+ 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>;
130
+ enablesReturnKeyAutomatically?: boolean | undefined;
131
+ inputAccessoryViewID?: string | undefined;
132
+ inputAccessoryViewButtonLabel?: string | undefined;
133
+ keyboardAppearance?: ("default" | "light" | "dark") | undefined;
134
+ passwordRules?: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").PasswordRules | undefined;
135
+ rejectResponderTermination?: boolean | undefined;
136
+ scrollEnabled?: boolean | undefined;
137
+ spellCheck?: boolean | undefined;
138
+ textContentType?: import("react-native").TextContentType | undefined;
139
+ lineBreakStrategyIOS?: ("none" | "standard" | "hangul-word" | "push-out") | undefined;
140
+ lineBreakModeIOS?: ("wordWrapping" | "char" | "clip" | "head" | "middle" | "tail") | undefined;
141
+ smartInsertDelete?: boolean | undefined;
142
+ }>, "onBlur" | "onFocus" | "style" | "autoFocus" | "blurOnSubmit" | "multiline" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier" | "disableFullscreenUI" | "importantForAutofill" | "inlineImageLeft" | "inlineImagePadding" | "numberOfLines" | "returnKeyLabel" | "rows" | "showSoftInputOnFocus" | "textBreakStrategy" | "underlineColorAndroid" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "allowFontScaling" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onPress" | "onPressIn" | "onPressOut" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectionColor" | "selectTextOnFocus" | "submitBehavior" | "value" | "textAlign"> & Omit<Readonly<{
143
+ cursorColor?: import("react-native").ColorValue | undefined;
144
+ selectionHandleColor?: import("react-native").ColorValue | undefined;
145
+ disableFullscreenUI?: boolean | undefined;
146
+ importantForAutofill?: ("auto" | "no" | "noExcludeDescendants" | "yes" | "yesExcludeDescendants") | undefined;
147
+ inlineImageLeft?: string | undefined;
148
+ inlineImagePadding?: number | undefined;
149
+ numberOfLines?: number | undefined;
150
+ returnKeyLabel?: string | undefined;
151
+ rows?: number | undefined;
152
+ showSoftInputOnFocus?: boolean | undefined;
153
+ textBreakStrategy?: ("simple" | "highQuality" | "balanced") | undefined;
154
+ underlineColorAndroid?: import("react-native").ColorValue | undefined;
155
+ }>, "onBlur" | "onFocus" | "style" | "autoFocus" | "blurOnSubmit" | "multiline" | "maxFontSizeMultiplier" | "experimental_acceptDragAndDropTypes" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "allowFontScaling" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "forwardedRef" | "enterKeyHint" | "inputMode" | "keyboardType" | "maxLength" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onKeyPress" | "onPress" | "onPressIn" | "onPressOut" | "onSelectionChange" | "onSubmitEditing" | "onScroll" | "placeholder" | "placeholderTextColor" | "readOnly" | "returnKeyType" | "secureTextEntry" | "selection" | "selectionColor" | "selectTextOnFocus" | "submitBehavior" | "value" | "textAlign"> & Omit<Readonly<{
156
+ experimental_acceptDragAndDropTypes?: ReadonlyArray<string> | undefined;
157
+ autoCapitalize?: import("react-native").AutoCapitalize | undefined;
158
+ 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;
159
+ autoCorrect?: boolean | undefined;
160
+ autoFocus?: boolean | undefined;
161
+ allowFontScaling?: boolean | undefined;
162
+ caretHidden?: boolean | undefined;
163
+ contextMenuHidden?: boolean | undefined;
164
+ defaultValue?: string | undefined;
165
+ editable?: boolean | undefined;
166
+ forwardedRef?: React.Ref<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputInstance> | undefined;
167
+ enterKeyHint?: import("react-native").EnterKeyHintTypeOptions | undefined;
168
+ inputMode?: import("react-native").InputModeOptions | undefined;
169
+ keyboardType?: import("react-native").KeyboardTypeOptions | undefined;
170
+ maxFontSizeMultiplier?: number | undefined;
171
+ maxLength?: number | undefined;
172
+ multiline?: boolean | undefined;
173
+ onBlur?: ((e: import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputBlurEvent) => unknown) | undefined;
174
+ onChange?: ((e: import("react-native").TextInputChangeEvent) => unknown) | undefined;
175
+ onChangeText?: ((text: string) => unknown) | undefined;
176
+ onContentSizeChange?: ((e: import("react-native").TextInputContentSizeChangeEvent) => unknown) | undefined;
177
+ onEndEditing?: ((e: import("react-native").TextInputEndEditingEvent) => unknown) | undefined;
178
+ onFocus?: ((e: import("react-native").TextInputFocusEvent) => unknown) | undefined;
179
+ onKeyPress?: ((e: import("react-native").TextInputKeyPressEvent) => unknown) | undefined;
180
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
181
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
182
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
183
+ onSelectionChange?: ((e: import("react-native").TextInputSelectionChangeEvent) => unknown) | undefined;
184
+ onSubmitEditing?: ((e: import("react-native").TextInputSubmitEditingEvent) => unknown) | undefined;
185
+ onScroll?: ((e: import("react-native").ScrollEvent) => unknown) | undefined;
186
+ placeholder?: string | undefined;
187
+ placeholderTextColor?: import("react-native").ColorValue | undefined;
188
+ readOnly?: boolean | undefined;
189
+ returnKeyType?: import("react-native").ReturnKeyTypeOptions | undefined;
190
+ secureTextEntry?: boolean | undefined;
191
+ selection?: Readonly<{
192
+ start: number;
193
+ end?: number | undefined;
194
+ }> | undefined;
195
+ selectionColor?: import("react-native").ColorValue | undefined;
196
+ selectTextOnFocus?: boolean | undefined;
197
+ blurOnSubmit?: boolean | undefined;
198
+ submitBehavior?: import("react-native").SubmitBehavior | undefined;
199
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
200
+ value?: string | undefined;
201
+ textAlign?: ("left" | "center" | "right") | undefined;
202
+ }>, never>>, "rejectResponderTermination" | "selectionHandleColor" | "cursorColor" | "maxFontSizeMultiplier"> & {
4
203
  rejectResponderTermination?: boolean | null | undefined;
5
- selectionHandleColor?: import("react-native").ColorValue | null | undefined;
6
- cursorColor?: import("react-native").ColorValue | null | undefined;
204
+ selectionHandleColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal | undefined;
205
+ cursorColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal | undefined;
7
206
  maxFontSizeMultiplier?: number | null | undefined;
8
207
  } & {
9
208
  focusType?: "default" | "press" | "auto";
10
209
  blurType?: "default" | "disable" | "auto";
11
- containerStyle?: import("react-native").StyleProp<import("react-native").ViewStyle>;
210
+ containerStyle?: import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
211
+ display?: "none" | "flex" | "contents";
212
+ width?: import("react-native").DimensionValue;
213
+ height?: import("react-native").DimensionValue;
214
+ bottom?: import("react-native").DimensionValue;
215
+ end?: import("react-native").DimensionValue;
216
+ left?: import("react-native").DimensionValue;
217
+ right?: import("react-native").DimensionValue;
218
+ start?: import("react-native").DimensionValue;
219
+ top?: import("react-native").DimensionValue;
220
+ inset?: import("react-native").DimensionValue;
221
+ insetBlock?: import("react-native").DimensionValue;
222
+ insetBlockEnd?: import("react-native").DimensionValue;
223
+ insetBlockStart?: import("react-native").DimensionValue;
224
+ insetInline?: import("react-native").DimensionValue;
225
+ insetInlineEnd?: import("react-native").DimensionValue;
226
+ insetInlineStart?: import("react-native").DimensionValue;
227
+ minWidth?: import("react-native").DimensionValue;
228
+ maxWidth?: import("react-native").DimensionValue;
229
+ minHeight?: import("react-native").DimensionValue;
230
+ maxHeight?: import("react-native").DimensionValue;
231
+ margin?: import("react-native").DimensionValue;
232
+ marginBlock?: import("react-native").DimensionValue;
233
+ marginBlockEnd?: import("react-native").DimensionValue;
234
+ marginBlockStart?: import("react-native").DimensionValue;
235
+ marginBottom?: import("react-native").DimensionValue;
236
+ marginEnd?: import("react-native").DimensionValue;
237
+ marginHorizontal?: import("react-native").DimensionValue;
238
+ marginInline?: import("react-native").DimensionValue;
239
+ marginInlineEnd?: import("react-native").DimensionValue;
240
+ marginInlineStart?: import("react-native").DimensionValue;
241
+ marginLeft?: import("react-native").DimensionValue;
242
+ marginRight?: import("react-native").DimensionValue;
243
+ marginStart?: import("react-native").DimensionValue;
244
+ marginTop?: import("react-native").DimensionValue;
245
+ marginVertical?: import("react-native").DimensionValue;
246
+ padding?: import("react-native").DimensionValue;
247
+ paddingBlock?: import("react-native").DimensionValue;
248
+ paddingBlockEnd?: import("react-native").DimensionValue;
249
+ paddingBlockStart?: import("react-native").DimensionValue;
250
+ paddingBottom?: import("react-native").DimensionValue;
251
+ paddingEnd?: import("react-native").DimensionValue;
252
+ paddingHorizontal?: import("react-native").DimensionValue;
253
+ paddingInline?: import("react-native").DimensionValue;
254
+ paddingInlineEnd?: import("react-native").DimensionValue;
255
+ paddingInlineStart?: import("react-native").DimensionValue;
256
+ paddingLeft?: import("react-native").DimensionValue;
257
+ paddingRight?: import("react-native").DimensionValue;
258
+ paddingStart?: import("react-native").DimensionValue;
259
+ paddingTop?: import("react-native").DimensionValue;
260
+ paddingVertical?: import("react-native").DimensionValue;
261
+ borderWidth?: number;
262
+ borderBottomWidth?: number;
263
+ borderEndWidth?: number;
264
+ borderLeftWidth?: number;
265
+ borderRightWidth?: number;
266
+ borderStartWidth?: number;
267
+ borderTopWidth?: number;
268
+ position?: "absolute" | "relative" | "static";
269
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
270
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
271
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
272
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
273
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
274
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
275
+ overflow?: "visible" | "hidden" | "scroll";
276
+ flex?: number;
277
+ flexGrow?: number;
278
+ flexShrink?: number;
279
+ flexBasis?: number | string;
280
+ aspectRatio?: number | string;
281
+ boxSizing?: "border-box" | "content-box";
282
+ zIndex?: number;
283
+ direction?: "inherit" | "ltr" | "rtl";
284
+ rowGap?: number | string;
285
+ columnGap?: number | string;
286
+ gap?: number | string;
287
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
288
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
289
+ shadowOffset?: Readonly<{
290
+ width?: number;
291
+ height?: number;
292
+ }>;
293
+ shadowOpacity?: number;
294
+ shadowRadius?: number;
295
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
296
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
297
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
298
+ } | {
299
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
300
+ } | {
301
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
302
+ } | {
303
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
304
+ } | {
305
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
306
+ } | {
307
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
308
+ } | {
309
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
310
+ } | {
311
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
312
+ } | {
313
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
314
+ } | {
315
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
316
+ } | {
317
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
318
+ } | {
319
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
320
+ } | {
321
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
322
+ } | {
323
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
324
+ }>>>> | string;
325
+ transformOrigin?: [string | number, string | number, string | number] | string;
326
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
327
+ backfaceVisibility?: "visible" | "hidden";
328
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
329
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
330
+ borderCurve?: "circular" | "continuous";
331
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
332
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
333
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
334
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
335
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
336
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
337
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
338
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
339
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
340
+ borderRadius?: number | string;
341
+ borderBottomEndRadius?: number | string;
342
+ borderBottomLeftRadius?: number | string;
343
+ borderBottomRightRadius?: number | string;
344
+ borderBottomStartRadius?: number | string;
345
+ borderEndEndRadius?: number | string;
346
+ borderEndStartRadius?: number | string;
347
+ borderStartEndRadius?: number | string;
348
+ borderStartStartRadius?: number | string;
349
+ borderTopEndRadius?: number | string;
350
+ borderTopLeftRadius?: number | string;
351
+ borderTopRightRadius?: number | string;
352
+ borderTopStartRadius?: number | string;
353
+ borderStyle?: "solid" | "dotted" | "dashed";
354
+ borderWidth?: number;
355
+ borderBottomWidth?: number;
356
+ borderEndWidth?: number;
357
+ borderLeftWidth?: number;
358
+ borderRightWidth?: number;
359
+ borderStartWidth?: number;
360
+ borderTopWidth?: number;
361
+ opacity?: number;
362
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
363
+ outlineOffset?: number;
364
+ outlineStyle?: "solid" | "dotted" | "dashed";
365
+ outlineWidth?: number;
366
+ elevation?: number;
367
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
368
+ cursor?: import("react-native").CursorValue;
369
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
370
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
371
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
372
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
373
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
374
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
375
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
376
+ isolation?: "auto" | "isolate";
377
+ }>, never>>, never> & Omit<Readonly<{}>, never>>> | undefined;
12
378
  onFocusChange?: (isFocused: boolean) => void;
13
379
  focusStyle?: import("../../types").FocusStyle;
14
380
  containerFocusStyle?: import("../../types").FocusStyle;
15
381
  submitBehavior?: string;
16
- } & import("../../types/baseKeyboardView.types").CommonFocusProps & import("../../types").FocusOrderProps & React.RefAttributes<TextInput>>;
382
+ } & import("../../types/baseKeyboardView.types").CommonFocusProps & import("../../types").FocusOrderProps & React.RefAttributes<import("react-native/types_generated/Libraries/Components/TextInput/TextInput.flow").TextInputType>>;
17
383
  //# sourceMappingURL=KeyboardExtendedInput.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"KeyboardExtendedInput.d.ts","sourceRoot":"","sources":["../../../../../src/components/KeyboardExtendedInput/KeyboardExtendedInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AACvC,OAAO,EAAE,SAAS,EAAY,MAAM,cAAc,CAAC;AAenD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;2IA+IjC,CAAC"}
1
+ {"version":3,"file":"KeyboardExtendedInput.d.ts","sourceRoot":"","sources":["../../../../../src/components/KeyboardExtendedInput/KeyboardExtendedInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAgBvC,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAgJ0tmB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAuvD,CAAC;kBAAoB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oOADzgqB,CAAC"}
@@ -1,3 +1,3 @@
1
1
  import { type ViewProps } from 'react-native';
2
- export declare const FocusFrame: (props: ViewProps) => import("react").JSX.Element;
2
+ export declare const FocusFrame: (props: ViewProps) => import("react/jsx-runtime").JSX.Element;
3
3
  //# sourceMappingURL=FocusFrame.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FocusFrame.d.ts","sourceRoot":"","sources":["../../../../../../src/components/KeyboardFocusLock/FocusFrame/FocusFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAGpD,eAAO,MAAM,UAAU,GAAI,OAAO,SAAS,gCAI1C,CAAC"}
1
+ {"version":3,"file":"FocusFrame.d.ts","sourceRoot":"","sources":["../../../../../../src/components/KeyboardFocusLock/FocusFrame/FocusFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAGpD,eAAO,MAAM,UAAU,GAAI,OAAO,SAAS,4CAI1C,CAAC"}
@@ -1,3 +1,3 @@
1
1
  import type { KeyboardFocusLockProps } from '../../../types';
2
- export declare const FocusTrap: ({ forceLock, ...props }: KeyboardFocusLockProps) => import("react").JSX.Element;
2
+ export declare const FocusTrap: ({ forceLock, ...props }: KeyboardFocusLockProps) => import("react/jsx-runtime").JSX.Element;
3
3
  //# sourceMappingURL=FocusTrap.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FocusTrap.d.ts","sourceRoot":"","sources":["../../../../../../src/components/KeyboardFocusLock/FocusTrap/FocusTrap.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAG7D,eAAO,MAAM,SAAS,GAAI,yBAGvB,sBAAsB,gCAiBxB,CAAC"}
1
+ {"version":3,"file":"FocusTrap.d.ts","sourceRoot":"","sources":["../../../../../../src/components/KeyboardFocusLock/FocusTrap/FocusTrap.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAG7D,eAAO,MAAM,SAAS,GAAI,yBAGvB,sBAAsB,4CAiBxB,CAAC"}