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,6 +1,129 @@
1
1
  import React from 'react';
2
2
  import type { KeyboardFocus } from '../../types';
3
- export declare const KeyboardFocusView: React.ForwardRefExoticComponent<import("react-native").ViewProps & {
3
+ export declare const KeyboardFocusView: React.ForwardRefExoticComponent<Readonly<Omit<Readonly<{
4
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
5
+ onAccessibilityTap?: (() => unknown) | undefined;
6
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
7
+ onMagicTap?: (() => unknown) | undefined;
8
+ onAccessibilityEscape?: (() => unknown) | undefined;
9
+ }>, "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<{
10
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
11
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
12
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
13
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
14
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
19
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
21
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
22
+ }>, "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<{
23
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
24
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
25
+ }>, "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<{
26
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
27
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
34
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
35
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
+ }>, "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<{
49
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
50
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
51
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
52
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
53
+ }>, "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<{
54
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
55
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
62
+ }>, "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<{
63
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
64
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
65
+ renderToHardwareTextureAndroid?: boolean | undefined;
66
+ hasTVPreferredFocus?: boolean | undefined;
67
+ nextFocusDown?: number | undefined;
68
+ nextFocusForward?: number | undefined;
69
+ nextFocusLeft?: number | undefined;
70
+ nextFocusRight?: number | undefined;
71
+ nextFocusUp?: number | undefined;
72
+ focusable?: boolean | undefined;
73
+ tabIndex?: 0 | -1;
74
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
75
+ }>, "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<{
76
+ shouldRasterizeIOS?: boolean | undefined;
77
+ }>, "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<{
78
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
79
+ "aria-labelledby"?: string | undefined;
80
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
81
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
82
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
83
+ screenReaderFocusable?: boolean;
84
+ }>, "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<{
85
+ accessibilityIgnoresInvertColors?: boolean | undefined;
86
+ accessibilityViewIsModal?: boolean | undefined;
87
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
88
+ accessibilityLargeContentTitle?: string | undefined;
89
+ "aria-modal"?: boolean | undefined;
90
+ accessibilityElementsHidden?: boolean | undefined;
91
+ accessibilityLanguage?: string | undefined;
92
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
93
+ }>, "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"> & {
94
+ accessible?: boolean | undefined;
95
+ accessibilityLabel?: string | undefined;
96
+ accessibilityHint?: string | undefined;
97
+ "aria-label"?: string | undefined;
98
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
99
+ role?: import("react-native").Role | undefined;
100
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
101
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
102
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
103
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
104
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
105
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
106
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
107
+ "aria-busy"?: boolean | undefined;
108
+ "aria-checked"?: (boolean | undefined) | "mixed";
109
+ "aria-disabled"?: boolean | undefined;
110
+ "aria-expanded"?: boolean | undefined;
111
+ "aria-selected"?: boolean | undefined;
112
+ "aria-hidden"?: boolean | undefined;
113
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
114
+ children?: React.ReactNode;
115
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
116
+ collapsable?: boolean | undefined;
117
+ collapsableChildren?: boolean | undefined;
118
+ id?: string;
119
+ testID?: string | undefined;
120
+ nativeID?: string | undefined;
121
+ needsOffscreenAlphaCompositing?: boolean | undefined;
122
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
123
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
124
+ removeClippedSubviews?: boolean | undefined;
125
+ experimental_accessibilityOrder?: Array<string> | undefined;
126
+ }>, never>> & {
4
127
  focusableWrapper?: boolean;
5
128
  onFocusChange?: import("../..").OnFocusChangeFn;
6
129
  onKeyUpPress?: import("../..").OnKeyPressFn;
@@ -1 +1 @@
1
- {"version":3,"file":"KeyboardFocusView.d.ts","sourceRoot":"","sources":["../../../../../src/components/KeyboardFocusView/KeyboardFocusView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAGV,aAAa,EACd,MAAM,aAAa,CAAC;AAKrB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;oBAkBxB,CAAL;;;uCA8DA,CAAC"}
1
+ {"version":3,"file":"KeyboardFocusView.d.ts","sourceRoot":"","sources":["../../../../../src/components/KeyboardFocusView/KeyboardFocusView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAGV,aAAa,EACd,MAAM,aAAa,CAAC;AAKrB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAkBxB,CAAL;;;uCA8DA,CAAC"}
@@ -1,5 +1,162 @@
1
1
  import { type PressableProps, type ViewProps, type View } from 'react-native';
2
2
  import type { WithKeyboardFocusPropsWithRef } from '../../types';
3
- export declare const Pressable: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("../..").WithKeyboardFocusProps<PressableProps & import("react").RefAttributes<View>, unknown, View>, "ref"> & import("react").RefAttributes<import("../..").KeyboardFocus | View>>>;
3
+ export declare const Pressable: import("react").NamedExoticComponent<Omit<import("../..").WithKeyboardFocusProps<Omit<Readonly<Omit<Omit<Readonly<Omit<Readonly<{
4
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
5
+ onAccessibilityTap?: (() => unknown) | undefined;
6
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
7
+ onMagicTap?: (() => unknown) | undefined;
8
+ onAccessibilityEscape?: (() => unknown) | undefined;
9
+ }>, "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<{
10
+ onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
11
+ onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
12
+ onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
13
+ onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
14
+ onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
+ onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
+ onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
+ onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
+ onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
19
+ onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
+ onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
21
+ onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
22
+ }>, "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<{
23
+ onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
24
+ onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
25
+ }>, "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<{
26
+ onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
27
+ onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
+ onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
+ onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
+ onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
+ onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
+ onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
+ onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
34
+ onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
35
+ onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
+ onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
+ onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
+ onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
+ onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
+ onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
+ onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
+ onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
+ onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
+ onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
+ onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
+ onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
+ onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
+ }>, "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<{
49
+ onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
50
+ onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
51
+ onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
52
+ onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
53
+ }>, "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<{
54
+ onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
55
+ onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
+ onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
+ onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
+ onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
+ onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
+ onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
+ onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
62
+ }>, "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<{
63
+ nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
64
+ nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
65
+ renderToHardwareTextureAndroid?: boolean | undefined;
66
+ hasTVPreferredFocus?: boolean | undefined;
67
+ nextFocusDown?: number | undefined;
68
+ nextFocusForward?: number | undefined;
69
+ nextFocusLeft?: number | undefined;
70
+ nextFocusRight?: number | undefined;
71
+ nextFocusUp?: number | undefined;
72
+ focusable?: boolean | undefined;
73
+ tabIndex?: 0 | -1;
74
+ onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
75
+ }>, "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<{
76
+ shouldRasterizeIOS?: boolean | undefined;
77
+ }>, "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<{
78
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
79
+ "aria-labelledby"?: string | undefined;
80
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
81
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
82
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
83
+ screenReaderFocusable?: boolean;
84
+ }>, "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<{
85
+ accessibilityIgnoresInvertColors?: boolean | undefined;
86
+ accessibilityViewIsModal?: boolean | undefined;
87
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
88
+ accessibilityLargeContentTitle?: string | undefined;
89
+ "aria-modal"?: boolean | undefined;
90
+ accessibilityElementsHidden?: boolean | undefined;
91
+ accessibilityLanguage?: string | undefined;
92
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
93
+ }>, "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"> & {
94
+ accessible?: boolean | undefined;
95
+ accessibilityLabel?: string | undefined;
96
+ accessibilityHint?: string | undefined;
97
+ "aria-label"?: string | undefined;
98
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
99
+ role?: import("react-native").Role | undefined;
100
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
101
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
102
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
103
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
104
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
105
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
106
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
107
+ "aria-busy"?: boolean | undefined;
108
+ "aria-checked"?: (boolean | undefined) | "mixed";
109
+ "aria-disabled"?: boolean | undefined;
110
+ "aria-expanded"?: boolean | undefined;
111
+ "aria-selected"?: boolean | undefined;
112
+ "aria-hidden"?: boolean | undefined;
113
+ }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
114
+ children?: React.ReactNode;
115
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
116
+ collapsable?: boolean | undefined;
117
+ collapsableChildren?: boolean | undefined;
118
+ id?: string;
119
+ testID?: string | undefined;
120
+ nativeID?: string | undefined;
121
+ needsOffscreenAlphaCompositing?: boolean | undefined;
122
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
123
+ pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
124
+ removeClippedSubviews?: boolean | undefined;
125
+ experimental_accessibilityOrder?: Array<string> | undefined;
126
+ }>, never>>, "onMouseEnter" | "onMouseLeave">, "children" | "style" | "testID" | "hitSlop" | "onLayout" | "cancelable" | "onPress" | "onPressIn" | "onPressOut" | "onLongPress" | "delayHoverIn" | "delayHoverOut" | "delayLongPress" | "disabled" | "pressRetentionOffset" | "onHoverIn" | "onHoverOut" | "onPressMove" | "blockNativeResponder" | "android_disableSound" | "android_ripple" | "testOnly_pressed" | "unstable_pressDelay"> & Omit<Readonly<{
127
+ cancelable?: boolean | undefined;
128
+ children?: React.ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode);
129
+ delayHoverIn?: number | undefined;
130
+ delayHoverOut?: number | undefined;
131
+ delayLongPress?: number | undefined;
132
+ disabled?: boolean | undefined;
133
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/Rect").RectOrSize | undefined;
134
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/Rect").RectOrSize | undefined;
135
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
136
+ onHoverIn?: ((event: import("react-native").MouseEvent) => unknown) | undefined;
137
+ onHoverOut?: ((event: import("react-native").MouseEvent) => unknown) | undefined;
138
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
139
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
140
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
141
+ onPressMove?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
142
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
143
+ blockNativeResponder?: boolean | undefined;
144
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ViewStyleProp_Internal | ((state: import("react-native").PressableStateCallbackType) => import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp) | undefined;
145
+ testID?: string | undefined;
146
+ android_disableSound?: boolean | undefined;
147
+ android_ripple?: import("react-native").PressableAndroidRippleConfig | undefined;
148
+ testOnly_pressed?: boolean | undefined;
149
+ unstable_pressDelay?: number | undefined;
150
+ }>, never>>, "ref"> & {
151
+ ref?: React.Ref<React.ComponentRef<typeof View>>;
152
+ }, unknown, (props: Omit<ViewProps, keyof {
153
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
154
+ }> & {
155
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
156
+ }) => React.ReactNode>, "ref"> & import("react").RefAttributes<import("../..").KeyboardFocus | ((props: Omit<ViewProps, keyof {
157
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
158
+ }> & {
159
+ ref?: React.Ref<React.ComponentRef<typeof import("react-native").unstable_NativeView>>;
160
+ }) => React.ReactNode)>>;
4
161
  export type KeyboardPressableProps = WithKeyboardFocusPropsWithRef<PressableProps, ViewProps['style'], View>;
5
162
  //# sourceMappingURL=Pressable.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Pressable.d.ts","sourceRoot":"","sources":["../../../../../src/components/Touchable/Pressable.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,SAAS,EACd,KAAK,IAAI,EACV,MAAM,cAAc,CAAC;AAGtB,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AAEjE,eAAO,MAAM,SAAS,gRAAiC,CAAC;AAExD,MAAM,MAAM,sBAAsB,GAAG,6BAA6B,CAChE,cAAc,EACd,SAAS,CAAC,OAAO,CAAC,EAClB,IAAI,CACL,CAAC"}
1
+ {"version":3,"file":"Pressable.d.ts","sourceRoot":"","sources":["../../../../../src/components/Touchable/Pressable.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,SAAS,EACd,KAAK,IAAI,EACV,MAAM,cAAc,CAAC;AAGtB,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AAEjE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAOkY,CAAC;;OAAyE,CAAC;;OAA3E,CAAC;;OAAyE,CAAC;wBAP5a,CAAC;AAExD,MAAM,MAAM,sBAAsB,GAAG,6BAA6B,CAChE,cAAc,EACd,SAAS,CAAC,OAAO,CAAC,EAClB,IAAI,CACL,CAAC"}
@@ -5,6 +5,6 @@ type KeyboardOrderFocusGroupProps = {
5
5
  groupId?: string;
6
6
  children?: React.ReactNode;
7
7
  };
8
- export declare const KeyboardOrderFocusGroup: ({ children, groupId, }: KeyboardOrderFocusGroupProps) => React.JSX.Element;
8
+ export declare const KeyboardOrderFocusGroup: ({ children, groupId, }: KeyboardOrderFocusGroupProps) => import("react/jsx-runtime").JSX.Element;
9
9
  export {};
10
10
  //# sourceMappingURL=OrderFocusContext.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"OrderFocusContext.d.ts","sourceRoot":"","sources":["../../../../src/context/OrderFocusContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAEjD,eAAO,MAAM,sBAAsB,mCAElC,CAAC;AAEF,eAAO,MAAM,kBAAkB,0BAA2C,CAAC;AAE3E,KAAK,4BAA4B,GAAG;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAAI,wBAGrC,4BAA4B,sBAQ9B,CAAC"}
1
+ {"version":3,"file":"OrderFocusContext.d.ts","sourceRoot":"","sources":["../../../../src/context/OrderFocusContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAEjD,eAAO,MAAM,sBAAsB,mCAElC,CAAC;AAEF,eAAO,MAAM,kBAAkB,0BAA2C,CAAC;AAE3E,KAAK,4BAA4B,GAAG;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAAI,wBAGrC,4BAA4B,4CAQ9B,CAAC"}