@office-iss/react-native-win32 0.68.0 → 0.69.0-preview.3

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 (183) hide show
  1. package/.eslintrc.js +1 -0
  2. package/.flowconfig +1 -3
  3. package/CHANGELOG.json +386 -32
  4. package/CHANGELOG.md +166 -19
  5. package/IntegrationTests/BUCK +4 -1
  6. package/Libraries/ActionSheetIOS/ActionSheetIOS.js +7 -0
  7. package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +1 -0
  8. package/Libraries/Alert/Alert.win32.js +1 -1
  9. package/Libraries/Animated/AnimatedImplementation.js +1 -1
  10. package/Libraries/Animated/NativeAnimatedHelper.js +55 -9
  11. package/Libraries/Animated/NativeAnimatedModule.js +1 -0
  12. package/Libraries/Animated/NativeAnimatedTurboModule.js +1 -0
  13. package/Libraries/Animated/animations/TimingAnimation.js +6 -11
  14. package/Libraries/Animated/createAnimatedComponent.js +2 -2
  15. package/Libraries/Animated/nodes/AnimatedColor.js +95 -29
  16. package/Libraries/Animated/nodes/AnimatedInterpolation.js +19 -22
  17. package/Libraries/Animated/nodes/AnimatedNode.js +2 -2
  18. package/Libraries/Animated/nodes/AnimatedValue.js +1 -1
  19. package/Libraries/AppState/AppState.js +1 -1
  20. package/Libraries/Blob/URL.js +7 -1
  21. package/Libraries/Components/Button.js +3 -0
  22. package/Libraries/Components/DatePickerAndroid/NativeDatePickerAndroid.js +5 -0
  23. package/Libraries/Components/Pressable/Pressable.js +3 -3
  24. package/Libraries/Components/Pressable/Pressable.win32.js +3 -3
  25. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +47 -38
  26. package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +15 -7
  27. package/Libraries/Components/ScrollView/ScrollView.js +1 -1
  28. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +16 -3
  29. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +3 -1
  30. package/Libraries/Components/Slider/Slider.js +0 -2
  31. package/Libraries/Components/Slider/SliderNativeComponent.js +0 -1
  32. package/Libraries/Components/StatusBar/StatusBar.js +6 -1
  33. package/Libraries/Components/Switch/Switch.js +11 -1
  34. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +114 -109
  35. package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +17 -9
  36. package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +13 -5
  37. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
  38. package/Libraries/Components/TextInput/TextInput.js +1 -8
  39. package/Libraries/Components/TextInput/TextInputState.js +10 -2
  40. package/Libraries/Components/TextInput/TextInputState.win32.js +10 -2
  41. package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js.map +1 -1
  42. package/Libraries/Components/Touchable/TouchableBounce.js +1 -0
  43. package/Libraries/Components/Touchable/TouchableHighlight.js +1 -0
  44. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -0
  45. package/Libraries/Components/Touchable/TouchableOpacity.js +7 -1
  46. package/Libraries/Components/Touchable/TouchableWin32.Props.d.ts +3 -1
  47. package/Libraries/Components/Touchable/TouchableWin32.Props.js.map +1 -1
  48. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +2 -0
  49. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -0
  50. package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +1 -0
  51. package/Libraries/Components/View/View.win32.js +33 -1
  52. package/Libraries/Components/View/ViewNativeComponent.js +68 -8
  53. package/Libraries/Components/View/ViewPropTypes.js +36 -4
  54. package/Libraries/Components/View/ViewPropTypes.win32.js +36 -4
  55. package/Libraries/Components/View/ViewWin32.Props.d.ts +1 -1
  56. package/Libraries/Components/View/ViewWin32.Props.js.map +1 -1
  57. package/Libraries/Core/Devtools/parseHermesStack.js +1 -1
  58. package/Libraries/Core/ExceptionsManager.js +1 -1
  59. package/Libraries/Core/RawEventEmitter.js +38 -0
  60. package/Libraries/Core/ReactNativeVersion.js +2 -2
  61. package/Libraries/Core/polyfillPromise.js +32 -0
  62. package/Libraries/Core/setUpReactDevTools.js +3 -2
  63. package/Libraries/EventEmitter/NativeEventEmitter.js +3 -3
  64. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +2 -1
  65. package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +3 -3
  66. package/Libraries/Events/CustomEvent.js +32 -0
  67. package/Libraries/Events/EventPolyfill.js +239 -0
  68. package/Libraries/Image/Image.android.js +0 -6
  69. package/Libraries/Image/Image.ios.js +0 -6
  70. package/Libraries/Image/Image.win32.js +2 -8
  71. package/Libraries/Image/ImageViewNativeComponent.js +18 -3
  72. package/Libraries/Image/TextInlineImageNativeComponent.js +23 -15
  73. package/Libraries/Image/resolveAssetSource.win32.js +1 -1
  74. package/Libraries/Inspector/Inspector.js +2 -4
  75. package/Libraries/Inspector/Inspector.win32.js +7 -9
  76. package/Libraries/Interaction/BridgeSpyStallHandler.js +4 -3
  77. package/Libraries/Interaction/InteractionManager.js +1 -12
  78. package/Libraries/Interaction/TaskQueue.js +5 -4
  79. package/Libraries/LayoutAnimation/LayoutAnimation.js +13 -0
  80. package/Libraries/Linking/Linking.js +1 -1
  81. package/Libraries/Lists/FlatList.js +27 -6
  82. package/Libraries/Lists/VirtualizedList.js +71 -55
  83. package/Libraries/Lists/VirtualizedListContext.js +7 -3
  84. package/Libraries/Lists/VirtualizedSectionList.js +2 -2
  85. package/Libraries/Lists/__tests__/{FillRateHelper-test.windows.js → FillRateHelper-test.js} +2 -2
  86. package/Libraries/Lists/__tests__/{FlatList-test.windows.js → FlatList-test.js} +2 -2
  87. package/Libraries/Lists/__tests__/{SectionList-test.windows.js → SectionList-test.js} +14 -14
  88. package/Libraries/Lists/__tests__/{VirtualizeUtils-test.windows.js → VirtualizeUtils-test.js} +3 -3
  89. package/Libraries/Lists/__tests__/{VirtualizedList-test.windows.js → VirtualizedList-test.js} +92 -43
  90. package/Libraries/Lists/__tests__/{VirtualizedSectionList-test.windows.js → VirtualizedSectionList-test.js} +16 -14
  91. package/Libraries/LogBox/Data/LogBoxData.js +2 -2
  92. package/Libraries/LogBox/Data/LogBoxLog.js +1 -1
  93. package/Libraries/LogBox/Data/LogBoxSymbolication.js +1 -1
  94. package/Libraries/LogBox/Data/parseLogBoxLog.js +1 -1
  95. package/Libraries/LogBox/LogBox.js +2 -21
  96. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +1 -0
  97. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +2 -1
  98. package/Libraries/NativeComponent/BaseViewConfig.android.js +295 -0
  99. package/Libraries/NativeComponent/BaseViewConfig.ios.js +333 -0
  100. package/Libraries/NativeComponent/BaseViewConfig.win32.js +334 -0
  101. package/Libraries/NativeComponent/NativeComponentRegistry.js +0 -2
  102. package/Libraries/NativeComponent/PlatformBaseViewConfig.js +24 -0
  103. package/Libraries/NativeComponent/StaticViewConfigValidator.js +7 -42
  104. package/Libraries/NativeComponent/ViewConfig.js +4 -4
  105. package/Libraries/NativeComponent/ViewConfigIgnore.js +54 -0
  106. package/Libraries/Network/FormData.js +7 -1
  107. package/Libraries/Network/RCTNetworking.win32.js +1 -1
  108. package/Libraries/Pressability/Pressability.js +115 -46
  109. package/Libraries/Pressability/Pressability.win32.js +174 -69
  110. package/Libraries/Pressability/PressabilityDebug.js +5 -9
  111. package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +1 -0
  112. package/Libraries/ReactNative/AppContainer.js +1 -1
  113. package/Libraries/ReactNative/{DummyUIManager.js → BridgelessUIManager.js} +62 -40
  114. package/Libraries/ReactNative/PaperUIManager.win32.js +5 -5
  115. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +39 -0
  116. package/Libraries/ReactNative/UIManager.js +2 -3
  117. package/Libraries/ReactNative/renderApplication.js +4 -0
  118. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +8 -0
  119. package/Libraries/Renderer/implementations/ReactFabric-dev.js +5908 -4906
  120. package/Libraries/Renderer/implementations/ReactFabric-prod.js +2100 -1918
  121. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +2567 -2352
  122. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +5610 -4844
  123. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +1710 -1556
  124. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +1830 -1639
  125. package/Libraries/Renderer/shims/ReactNativeTypes.js +2 -1
  126. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +2 -1
  127. package/Libraries/StyleSheet/EdgeInsetsPropType.js +4 -1
  128. package/Libraries/StyleSheet/StyleSheetTypes.js +59 -66
  129. package/Libraries/StyleSheet/normalizeColor.js +1 -1
  130. package/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.js +15 -0
  131. package/Libraries/StyleSheet/private/_TransformStyle.js +53 -0
  132. package/Libraries/Text/Text.js +13 -7
  133. package/Libraries/Text/TextNativeComponent.js +2 -0
  134. package/Libraries/Text/TextNativeComponent.win32.js +2 -0
  135. package/Libraries/Text/TextProps.js +10 -0
  136. package/Libraries/Types/CoreEventTypes.js +13 -1
  137. package/Libraries/Types/CoreEventTypes.win32.js +26 -1
  138. package/Libraries/Utilities/Appearance.js +0 -8
  139. package/Libraries/Utilities/HMRClient.js +1 -1
  140. package/Libraries/Utilities/ReactNativeTestTools.js +1 -0
  141. package/Libraries/Utilities/codegenNativeComponent.js +16 -6
  142. package/Libraries/Utilities/stringifySafe.js +4 -1
  143. package/Libraries/Utilities/useColorScheme.js +9 -15
  144. package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +3 -3
  145. package/Libraries/WebSocket/WebSocket.js +1 -1
  146. package/Libraries/vendor/emitter/_EmitterSubscription.js +1 -1
  147. package/Libraries/vendor/emitter/_EventEmitter.js +1 -1
  148. package/Libraries/vendor/emitter/_EventSubscription.js +1 -1
  149. package/flow/{use-subscription.js → use-sync-external-store.js} +4 -4
  150. package/index.js +30 -25
  151. package/index.win32.js +30 -25
  152. package/jest/preprocessor.js +24 -107
  153. package/jest/preprocessor_DO_NOT_USE.js +122 -0
  154. package/metro.config.js +3 -47
  155. package/overrides.json +39 -46
  156. package/package.json +32 -29
  157. package/rntypes/index.d.ts +19 -7
  158. package/src/Libraries/Components/Touchable/Tests/TouchableWin32Test.tsx +1 -1
  159. package/src/Libraries/Components/Touchable/TouchableWin32.Props.tsx +3 -1
  160. package/src/Libraries/Components/View/ViewWin32.Props.ts +1 -0
  161. package/src/Libraries/Lists/__tests__/__snapshots__/FlatList-test.js.snap +427 -0
  162. package/src/Libraries/Lists/__tests__/__snapshots__/SectionList-test.js.snap +391 -0
  163. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizeUtils-test.js.snap +3 -0
  164. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedList-test.js.snap +4565 -0
  165. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedSectionList-test.js.snap +1153 -0
  166. package/src/rntypes/index.d.ts +19 -7
  167. package/typings-index.js +5 -1
  168. package/typings-index.js.map +1 -1
  169. package/Libraries/Components/SegmentedControlIOS/RCTSegmentedControlNativeComponent.js +0 -44
  170. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.android.js +0 -45
  171. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js +0 -123
  172. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.js +0 -45
  173. package/Libraries/Components/View/ReactNativeViewViewConfig.js +0 -360
  174. package/Libraries/Components/View/ReactNativeViewViewConfig.win32.js +0 -401
  175. package/Libraries/Components/View/ReactNativeViewViewConfigAndroid.js +0 -83
  176. package/Libraries/ReactNative/UIManagerInjection.js +0 -15
  177. package/Libraries/Renderer/implementations/ReactFabric-dev.fb.js +0 -24527
  178. package/Libraries/Renderer/implementations/ReactFabric-prod.fb.js +0 -8309
  179. package/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js +0 -8961
  180. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js +0 -24948
  181. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js +0 -8400
  182. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js +0 -9049
  183. package/flow/Promise.js +0 -47
@@ -33,6 +33,7 @@ type Props = $ReadOnly<{|
33
33
  accessibilityActions?: ?$ReadOnlyArray<AccessibilityActionInfo>,
34
34
  accessibilityElementsHidden?: ?boolean,
35
35
  accessibilityHint?: ?Stringish,
36
+ accessibilityLanguage?: ?Stringish,
36
37
  accessibilityIgnoresInvertColors?: ?boolean,
37
38
  accessibilityLabel?: ?Stringish,
38
39
  accessibilityLiveRegion?: ?('none' | 'polite' | 'assertive'),
@@ -72,6 +73,7 @@ const PASSTHROUGH_PROPS = [
72
73
  'accessibilityActions',
73
74
  'accessibilityElementsHidden',
74
75
  'accessibilityHint',
76
+ 'accessibilityLanguage',
75
77
  'accessibilityIgnoresInvertColors',
76
78
  'accessibilityLabel',
77
79
  'accessibilityLiveRegion',
@@ -21,6 +21,7 @@ const UIView = {
21
21
  accessibilityState: true,
22
22
  accessibilityValue: true,
23
23
  accessibilityHint: true,
24
+ accessibilityLanguage: true,
24
25
  importantForAccessibility: true,
25
26
  nativeID: true,
26
27
  testID: true,
@@ -21,6 +21,7 @@ const UIView = {
21
21
  accessibilityState: true,
22
22
  accessibilityValue: true,
23
23
  accessibilityHint: true,
24
+ accessibilityLanguage: true,
24
25
  importantForAccessibility: true,
25
26
  nativeID: true,
26
27
  testID: true,
@@ -75,13 +75,33 @@ const View: React.AbstractComponent<
75
75
  props.onKeyUpCapture && props.onKeyUpCapture(event);
76
76
  };
77
77
 
78
+ // [Windows
79
+ const childrenWithImportantForAccessibility = children => {
80
+ return React.Children.map(children, child => {
81
+ if (React.isValidElement(child)) {
82
+ if (child.props.children) {
83
+ return React.cloneElement(child, {
84
+ accessible: false,
85
+ children: childrenWithImportantForAccessibility(
86
+ child.props.children,
87
+ ),
88
+ });
89
+ } else {
90
+ return React.cloneElement(child, {accessible: false});
91
+ }
92
+ }
93
+ return child;
94
+ });
95
+ };
96
+ // Windows]
97
+
78
98
  return (
79
99
  // [Windows
80
100
  // In core this is a TextAncestor.Provider value={false} See
81
101
  // https://github.com/facebook/react-native/commit/66601e755fcad10698e61d20878d52194ad0e90c
82
102
  // But since Views are not currently supported in Text, we do not need the extra provider
83
103
  <TextAncestor.Consumer>
84
- {(hasTextAncestor) => {
104
+ {hasTextAncestor => {
85
105
  invariant(
86
106
  !hasTextAncestor,
87
107
  'Nesting of <View> within <Text> is not currently supported.',
@@ -94,6 +114,18 @@ const View: React.AbstractComponent<
94
114
  onKeyDownCapture={_keyDownCapture}
95
115
  onKeyUp={_keyUp}
96
116
  onKeyUpCapture={_keyUpCapture}
117
+ // [Windows
118
+ accessible={
119
+ props.importantForAccessibility === 'no-hide-descendants'
120
+ ? false
121
+ : props.accessible
122
+ }
123
+ children={
124
+ props.importantForAccessibility === 'no-hide-descendants'
125
+ ? childrenWithImportantForAccessibility(props.children)
126
+ : props.children
127
+ }
128
+ // Windows]
97
129
  />
98
130
  );
99
131
  }}
@@ -9,19 +9,79 @@
9
9
  */
10
10
 
11
11
  import * as NativeComponentRegistry from '../../NativeComponent/NativeComponentRegistry';
12
- import {type HostComponent} from '../../Renderer/shims/ReactNativeTypes';
13
- import Platform from '../../Utilities/Platform';
12
+ import type {
13
+ HostComponent,
14
+ PartialViewConfig,
15
+ } from '../../Renderer/shims/ReactNativeTypes';
14
16
  import codegenNativeCommands from '../../Utilities/codegenNativeCommands';
15
- import ReactNativeViewViewConfigAndroid from './ReactNativeViewViewConfigAndroid';
16
17
  import {type ViewProps as Props} from './ViewPropTypes';
18
+ import Platform from '../../Utilities/Platform';
19
+
17
20
  import * as React from 'react';
18
21
 
22
+ export const __INTERNAL_VIEW_CONFIG: PartialViewConfig =
23
+ Platform.OS === 'android'
24
+ ? {
25
+ uiViewClassName: 'RCTView',
26
+ validAttributes: {
27
+ // ReactClippingViewManager @ReactProps
28
+ removeClippedSubviews: true,
29
+
30
+ // ReactViewManager @ReactProps
31
+ accessible: true,
32
+ hasTVPreferredFocus: true,
33
+ nextFocusDown: true,
34
+ nextFocusForward: true,
35
+ nextFocusLeft: true,
36
+ nextFocusRight: true,
37
+ nextFocusUp: true,
38
+
39
+ borderRadius: true,
40
+ borderTopLeftRadius: true,
41
+ borderTopRightRadius: true,
42
+ borderBottomRightRadius: true,
43
+ borderBottomLeftRadius: true,
44
+ borderTopStartRadius: true,
45
+ borderTopEndRadius: true,
46
+ borderBottomStartRadius: true,
47
+ borderBottomEndRadius: true,
48
+
49
+ borderStyle: true,
50
+ hitSlop: true,
51
+ pointerEvents: true,
52
+ nativeBackgroundAndroid: true,
53
+ nativeForegroundAndroid: true,
54
+ needsOffscreenAlphaCompositing: true,
55
+
56
+ borderWidth: true,
57
+ borderLeftWidth: true,
58
+ borderRightWidth: true,
59
+ borderTopWidth: true,
60
+ borderBottomWidth: true,
61
+ borderStartWidth: true,
62
+ borderEndWidth: true,
63
+
64
+ borderColor: {process: require('../../StyleSheet/processColor')},
65
+ borderLeftColor: {process: require('../../StyleSheet/processColor')},
66
+ borderRightColor: {process: require('../../StyleSheet/processColor')},
67
+ borderTopColor: {process: require('../../StyleSheet/processColor')},
68
+ borderBottomColor: {
69
+ process: require('../../StyleSheet/processColor'),
70
+ },
71
+ borderStartColor: {process: require('../../StyleSheet/processColor')},
72
+ borderEndColor: {process: require('../../StyleSheet/processColor')},
73
+
74
+ focusable: true,
75
+ overflow: true,
76
+ backfaceVisibility: true,
77
+ },
78
+ }
79
+ : {
80
+ uiViewClassName: 'RCTView',
81
+ };
82
+
19
83
  const ViewNativeComponent: HostComponent<Props> =
20
- NativeComponentRegistry.get<Props>('RCTView', () =>
21
- Platform.OS === 'android'
22
- ? ReactNativeViewViewConfigAndroid
23
- : {uiViewClassName: 'RCTView'},
24
- );
84
+ NativeComponentRegistry.get<Props>('RCTView', () => __INTERNAL_VIEW_CONFIG);
25
85
 
26
86
  interface NativeCommands {
27
87
  +hotspotUpdate: (
@@ -14,11 +14,12 @@ import type {
14
14
  BlurEvent,
15
15
  FocusEvent,
16
16
  MouseEvent,
17
+ PointerEvent,
17
18
  PressEvent,
18
19
  Layout,
19
20
  LayoutEvent,
20
21
  } from '../../Types/CoreEventTypes';
21
- import type {EdgeInsetsProp} from '../../StyleSheet/EdgeInsetsPropType';
22
+ import type {EdgeInsetsOrSizeProp} from '../../StyleSheet/EdgeInsetsPropType';
22
23
  import type {Node} from 'react';
23
24
  import type {ViewStyleProp} from '../../StyleSheet/StyleSheet';
24
25
  import type {
@@ -84,8 +85,29 @@ type DirectEventProps = $ReadOnly<{|
84
85
  |}>;
85
86
 
86
87
  type MouseEventProps = $ReadOnly<{|
87
- onMouseEnter?: (event: MouseEvent) => void,
88
- onMouseLeave?: (event: MouseEvent) => void,
88
+ onMouseEnter?: ?(event: MouseEvent) => void,
89
+ onMouseLeave?: ?(event: MouseEvent) => void,
90
+ |}>;
91
+
92
+ // Experimental/Work in Progress Pointer Event Callbacks (not yet ready for use)
93
+ type PointerEventProps = $ReadOnly<{|
94
+ onPointerEnter?: ?(event: PointerEvent) => void,
95
+ onPointerLeave?: ?(event: PointerEvent) => void,
96
+ onPointerMove?: ?(event: PointerEvent) => void,
97
+ onPointerCancel?: ?(e: PointerEvent) => void,
98
+ onPointerCancelCapture?: ?(e: PointerEvent) => void,
99
+ onPointerDown?: ?(e: PointerEvent) => void,
100
+ onPointerDownCapture?: ?(e: PointerEvent) => void,
101
+ onPointerUp?: ?(e: PointerEvent) => void,
102
+ onPointerUpCapture?: ?(e: PointerEvent) => void,
103
+
104
+ // FIXME: these events are temporary while we converge pointer event handling
105
+ onPointerEnter2?: ?(e: PointerEvent) => void,
106
+ onPointerEnter2Capture?: ?(e: PointerEvent) => void,
107
+ onPointerLeave2?: ?(e: PointerEvent) => void,
108
+ onPointerLeave2Capture?: ?(e: PointerEvent) => void,
109
+ onPointerMove2?: ?(e: PointerEvent) => void,
110
+ onPointerMove2Capture?: ?(e: PointerEvent) => void,
89
111
  |}>;
90
112
 
91
113
  type TouchEventProps = $ReadOnly<{|
@@ -381,6 +403,7 @@ export type ViewProps = $ReadOnly<{|
381
403
  ...DirectEventProps,
382
404
  ...GestureResponderEventProps,
383
405
  ...MouseEventProps,
406
+ ...PointerEventProps,
384
407
  ...TouchEventProps,
385
408
  ...AndroidViewProps,
386
409
  ...IOSViewProps,
@@ -415,6 +438,15 @@ export type ViewProps = $ReadOnly<{|
415
438
  */
416
439
  accessibilityHint?: ?Stringish,
417
440
 
441
+ /**
442
+ * Indicates to the accessibility services that the UI component is in
443
+ * a specific language. The provided string should be formatted following
444
+ * the BCP 47 specification (https://www.rfc-editor.org/info/bcp47).
445
+ *
446
+ * @platform ios
447
+ */
448
+ accessibilityLanguage?: ?Stringish,
449
+
418
450
  /**
419
451
  * Indicates to accessibility services to treat UI component like a specific role.
420
452
  */
@@ -481,7 +513,7 @@ export type ViewProps = $ReadOnly<{|
481
513
  *
482
514
  * See https://reactnative.dev/docs/view#hitslop
483
515
  */
484
- hitSlop?: ?EdgeInsetsProp,
516
+ hitSlop?: ?EdgeInsetsOrSizeProp,
485
517
 
486
518
  /**
487
519
  * Controls whether the `View` can be the target of touch events.
@@ -14,12 +14,13 @@ import type {
14
14
  BlurEvent,
15
15
  FocusEvent,
16
16
  MouseEvent,
17
+ PointerEvent,
17
18
  PressEvent,
18
19
  Layout,
19
20
  LayoutEvent,
20
21
  KeyEvent, // [Windows]
21
22
  } from '../../Types/CoreEventTypes';
22
- import type {EdgeInsetsProp} from '../../StyleSheet/EdgeInsetsPropType';
23
+ import type {EdgeInsetsOrSizeProp} from '../../StyleSheet/EdgeInsetsPropType';
23
24
  import type {Node} from 'react';
24
25
  import type {ViewStyleProp} from '../../StyleSheet/StyleSheet';
25
26
  import type {
@@ -85,8 +86,29 @@ type DirectEventProps = $ReadOnly<{|
85
86
  |}>;
86
87
 
87
88
  type MouseEventProps = $ReadOnly<{|
88
- onMouseEnter?: (event: MouseEvent) => void,
89
- onMouseLeave?: (event: MouseEvent) => void,
89
+ onMouseEnter?: ?(event: MouseEvent) => void,
90
+ onMouseLeave?: ?(event: MouseEvent) => void,
91
+ |}>;
92
+
93
+ // Experimental/Work in Progress Pointer Event Callbacks (not yet ready for use)
94
+ type PointerEventProps = $ReadOnly<{|
95
+ onPointerEnter?: ?(event: PointerEvent) => void,
96
+ onPointerLeave?: ?(event: PointerEvent) => void,
97
+ onPointerMove?: ?(event: PointerEvent) => void,
98
+ onPointerCancel?: ?(e: PointerEvent) => void,
99
+ onPointerCancelCapture?: ?(e: PointerEvent) => void,
100
+ onPointerDown?: ?(e: PointerEvent) => void,
101
+ onPointerDownCapture?: ?(e: PointerEvent) => void,
102
+ onPointerUp?: ?(e: PointerEvent) => void,
103
+ onPointerUpCapture?: ?(e: PointerEvent) => void,
104
+
105
+ // FIXME: these events are temporary while we converge pointer event handling
106
+ onPointerEnter2?: ?(e: PointerEvent) => void,
107
+ onPointerEnter2Capture?: ?(e: PointerEvent) => void,
108
+ onPointerLeave2?: ?(e: PointerEvent) => void,
109
+ onPointerLeave2Capture?: ?(e: PointerEvent) => void,
110
+ onPointerMove2?: ?(e: PointerEvent) => void,
111
+ onPointerMove2Capture?: ?(e: PointerEvent) => void,
90
112
  |}>;
91
113
 
92
114
  type TouchEventProps = $ReadOnly<{|
@@ -429,6 +451,7 @@ export type ViewProps = $ReadOnly<{|
429
451
  ...DirectEventProps,
430
452
  ...GestureResponderEventProps,
431
453
  ...MouseEventProps,
454
+ ...PointerEventProps,
432
455
  ...TouchEventProps,
433
456
  ...AndroidViewProps,
434
457
  ...IOSViewProps,
@@ -464,6 +487,15 @@ export type ViewProps = $ReadOnly<{|
464
487
  */
465
488
  accessibilityHint?: ?Stringish,
466
489
 
490
+ /**
491
+ * Indicates to the accessibility services that the UI component is in
492
+ * a specific language. The provided string should be formatted following
493
+ * the BCP 47 specification (https://www.rfc-editor.org/info/bcp47).
494
+ *
495
+ * @platform ios
496
+ */
497
+ accessibilityLanguage?: ?Stringish,
498
+
467
499
  /**
468
500
  * Indicates to accessibility services to treat UI component like a specific role.
469
501
  */
@@ -530,7 +562,7 @@ export type ViewProps = $ReadOnly<{|
530
562
  *
531
563
  * See https://reactnative.dev/docs/view#hitslop
532
564
  */
533
- hitSlop?: ?EdgeInsetsProp,
565
+ hitSlop?: ?EdgeInsetsOrSizeProp,
534
566
 
535
567
  /**
536
568
  * Controls whether the `View` can be the target of touch events.
@@ -25,7 +25,7 @@ export declare type IHandledKeyboardEvent = PartiallyRequired<INativeKeyboardEve
25
25
  export interface IViewWin32 {
26
26
  focus: () => void;
27
27
  }
28
- export declare type ARIARole = 'alert' | 'alertdialog' | 'application' | 'button' | 'checkbox' | 'combobox' | 'dialog' | 'group' | 'link' | 'menu' | 'menubar' | 'menuitem' | 'none' | 'presentation' | 'progressbar' | 'radio' | 'radiogroup' | 'scrollbar' | 'search' | 'spinbutton' | 'switch' | 'tab' | 'tablist' | 'tabpanel' | 'textbox' | 'timer' | 'toolbar' | 'tree' | 'treeitem';
28
+ export declare type ARIARole = 'alert' | 'alertdialog' | 'application' | 'button' | 'checkbox' | 'combobox' | 'dialog' | 'group' | 'link' | 'listitem' | 'menu' | 'menubar' | 'menuitem' | 'none' | 'presentation' | 'progressbar' | 'radio' | 'radiogroup' | 'scrollbar' | 'search' | 'spinbutton' | 'switch' | 'tab' | 'tablist' | 'tabpanel' | 'textbox' | 'timer' | 'toolbar' | 'tree' | 'treeitem';
29
29
  export declare type AnnotationType = 'AdvanceProofingIssue' | 'Author' | 'CircularReferenceError' | 'Comment' | 'ConflictingChange' | 'DataValidationError' | 'DeletionChange' | 'EditingLockedChange' | 'Endnote' | 'ExternalChange' | 'Footer' | 'Footnote' | 'FormatChange' | 'FormulaError' | 'GrammarError' | 'Header' | 'Highlighted' | 'InsertionChange' | 'Mathematics' | 'MoveChange' | 'SpellingError' | 'TrackChanges' | 'Unknown' | 'UnsyncedChange';
30
30
  export declare type AccessibilityAnnotationInfo = Readonly<{
31
31
  typeID: AnnotationType;
@@ -1 +1 @@
1
- {"version":3,"file":"ViewWin32.Props.js","sourceRoot":"","sources":["../../../src/Libraries/Components/View/ViewWin32.Props.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;AAeb,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,2CAAI,CAAA;IACJ,qDAAS,CAAA;IACT,mDAAQ,CAAA;IACR,mDAAQ,CAAA;AACV,CAAC,EALW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAKrB","sourcesContent":["'use strict';\nimport React from 'react'\nimport RN = require('react-native');\n\n// removes from interface T the members of interface K\ntype Omit<T, K> = Pick<T, Exclude<keyof T, keyof K>>;\n\n// All of T becomes optional except for Keys\ntype PartiallyRequired<T, Keys extends keyof T = keyof T> = Pick<Partial<T>, Exclude<keyof T, Keys>> & Pick<T, Keys>;\n\n/**\n * All of TOrigin except Key from TUse\n */\nexport type UseFrom<TOrigin, TUse, Key extends keyof TUse> = Pick<TOrigin, Exclude<keyof TOrigin, Key>> & Pick<TUse, Key>;\n\nexport enum EventPhase {\n None,\n Capturing,\n AtTarget,\n Bubbling\n}\n\nexport interface INativeKeyboardEvent {\n altKey: boolean;\n ctrlKey: boolean;\n metaKey: boolean;\n shiftKey: boolean;\n key: string;\n eventPhase: EventPhase;\n}\nexport type IKeyboardEvent = RN.NativeSyntheticEvent<INativeKeyboardEvent>;\nexport type IHandledKeyboardEvent = PartiallyRequired<INativeKeyboardEvent, 'key'>;\n\nexport interface IViewWin32 {\n focus: () => void;\n}\n\nexport type ARIARole =\n | 'alert'\n | 'alertdialog'\n | 'application'\n | 'button'\n | 'checkbox'\n | 'combobox'\n | 'dialog'\n | 'group'\n | 'link'\n | 'menu'\n | 'menubar'\n | 'menuitem'\n | 'none'\n | 'presentation'\n | 'progressbar'\n | 'radio'\n | 'radiogroup'\n | 'scrollbar'\n | 'search'\n | 'spinbutton'\n | 'switch'\n | 'tab'\n | 'tablist'\n | 'tabpanel'\n | 'textbox'\n | 'timer'\n | 'toolbar'\n | 'tree'\n | 'treeitem';\n\nexport type AnnotationType =\n | 'AdvanceProofingIssue'\n | 'Author'\n | 'CircularReferenceError'\n | 'Comment'\n | 'ConflictingChange'\n | 'DataValidationError'\n | 'DeletionChange'\n | 'EditingLockedChange'\n | 'Endnote'\n | 'ExternalChange'\n | 'Footer'\n | 'Footnote'\n | 'FormatChange'\n | 'FormulaError'\n | 'GrammarError'\n | 'Header'\n | 'Highlighted'\n | 'InsertionChange'\n | 'Mathematics'\n | 'MoveChange'\n | 'SpellingError'\n | 'TrackChanges'\n | 'Unknown'\n | 'UnsyncedChange';\n\nexport type AccessibilityAnnotationInfo = Readonly<{\n typeID: AnnotationType;\n typeName?: string;\n author?: string;\n dateTime?: string;\n target?: string;\n}>;\n\nexport type AccessibilityActionName =\n | RN.AccessibilityActionName\n | 'AddToSelection'\n | 'RemoveFromSelection'\n | 'Select'\n | 'Expand'\n | 'Collapse';\n\nexport type Cursor =\n | 'auto'\n | 'default'\n | 'pointer'\n | 'help'\n | 'not-allowed'\n | 'wait'\n | 'move'\n | 'nesw-resize'\n | 'ns-resize'\n | 'nwse-resize'\n | 'we-resize'\n | 'text'\n\nexport type AccessibilityActionInfo = Readonly<{\n name: AccessibilityActionName;\n label?: string;\n}>;\n\nexport type AccessibilityState = RN.AccessibilityState & { multiselectable?: boolean, required?: boolean };\n\nexport type SharedAccessibilityPropsIOSandWin32 = {\n onAccessibilityTap?: () => void;\n};\n\nexport type OmittedAccessibilityPropsWin32 = {\n accessibilityActions?: ReadonlyArray<RN.AccessibilityActionInfo>;\n accessibilityRole?: RN.AccessibilityRole;\n accessibilityState?: RN.AccessibilityState;\n};\n\nexport type BasePropsWin32 = {\n /**\n * Tells a person using a screen reader the type of element they are focused on.\n *\n * Overrides the `accessibilityRole` prop on React Native to accept a subset of ARIA roles.\n *\n * Possible values for ARIARole are: alert, alertdialog, application, button, checkbox,\n * comobox, dialog, group, link, menu, menubar, menuitem, none, presentation, progressbar,\n * radio, radiogroup, scrollbar, search, spinbutton, switch, tab, tablist, tabpanel, textbox,\n * timer, toolbar, tree, and treeitem.\n */\n accessibilityRole?: RN.AccessibilityRole | ARIARole;\n accessibilityState?: AccessibilityState;\n accessibilityActions?: ReadonlyArray<AccessibilityActionInfo>;\n\n /**\n * Windows Accessibility extensions for allowing other DOM elements to label or describe a given element.\n *\n * Defined as a reference to another DOM element inheriting from the primary base classes of React-Native elements.\n * The reference will be converted to a native reference (tag) before passing to the native platform.\n */\n accessibilityDescribedBy?: React.RefObject<any>;\n accessibilityLabeledBy?: React.RefObject<any>;\n\n /**\n * Identifies the element whose contents or presence are controlled by another element. \n * \n * This is mainly used for a Textbox with a Dropdown PeoplePicker-type list. This allows an \n * accessibility tool to query those other providers for properties and listen to their events.\n */\n accessibilityControls?: React.RefObject<any>; \n\n /**\n * Identifies the ItemType property, which is a text string describing the type of the automation element.\n * ItemType is used to obtain information about items in a list, tree view, or data grid. For example, an item in a file directory view might be a \"Document File\" or a \"Folder\".\n */\n accessibilityItemType?: string;\n};\n\nexport type ViewWin32OmitTypes = RN.ViewPropsAndroid &\n RN.ViewPropsIOS &\n RN.AccessibilityPropsAndroid &\n Omit<RN.AccessibilityPropsIOS, SharedAccessibilityPropsIOSandWin32> &\n OmittedAccessibilityPropsWin32;\n\n/**\n * Properties for ViewWin32 component\n */\nexport interface IViewWin32Props extends Omit<RN.ViewProps, ViewWin32OmitTypes>, BasePropsWin32 {\n type?: React.ElementType;\n children?: React.ReactNode;\n accessibilityActions?: ReadonlyArray<AccessibilityActionInfo>;\n /**\n * Tells a person using a screen reader what kind of annotation they\n * have selected. If available, it will also tell a person the author of the annotation and\n * the date and time the annotation was posted.\n *\n * Note: If typeID is 'Unknown', a typeName must be provided.\n */\n accessibilityAnnotation?: AccessibilityAnnotationInfo;\n /**\n * accessibilityDescription provides more detailed information specific to the element (i.e. last edit date, full location for a file)\n * while accessibilityHint provides infomation on what will happen when they perform an action.\n *\n */\n accessibilityDescription?: string;\n accessibilityLevel?: number;\n accessibilityPositionInSet?: number;\n\n accessibilitySetSize?: number;\n animationClass?: string;\n focusable?: boolean;\n enableFocusRing?: boolean;\n\n /**\n * The onBlur event occurs when an element loses focus. The opposite of onBlur is onFocus. Note that in React\n * Native, unlike in the web, the onBlur event bubbles (similar to onFocusOut in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onBlur?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n /**\n * The onBlur event occurs when an element loses focus. The opposite of onBlur is onFocus. Note that in React\n * Native, unlike in the web, the onBlur event bubbles (similar to onFocusOut in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onBlurCapture?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n /**\n * The onFocus event occurs when an element gets focus. The opposite of onFocus is onBlur. Note that in React\n * Native, unlike in the web, the onFocus event bubbles (similar to onFocusIn in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onFocus?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n /**\n * The onFocus event occurs when an element gets focus. The opposite of onFocus is onBlur. Note that in React\n * Native, unlike in the web, the onFocus event bubbles (similar to onFocusIn in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onFocusCapture?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n\n onKeyDown?: (args: IKeyboardEvent) => void;\n onKeyDownCapture?: (args: IKeyboardEvent) => void;\n onKeyUp?: (args: IKeyboardEvent) => void;\n onKeyUpCapture?: (args: IKeyboardEvent) => void;\n\n onMouseEnter?: () => void;\n onMouseLeave?: () => void;\n\n keyDownEvents?: IHandledKeyboardEvent[];\n keyUpEvents?: IHandledKeyboardEvent[];\n\n /**\n * Provides a screentip to be used on hover of the view\n */\n tooltip?: string;\n cursor?: Cursor;\n}\n"]}
1
+ {"version":3,"file":"ViewWin32.Props.js","sourceRoot":"","sources":["../../../src/Libraries/Components/View/ViewWin32.Props.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;AAeb,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,2CAAI,CAAA;IACJ,qDAAS,CAAA;IACT,mDAAQ,CAAA;IACR,mDAAQ,CAAA;AACV,CAAC,EALW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAKrB","sourcesContent":["'use strict';\nimport React from 'react'\nimport RN = require('react-native');\n\n// removes from interface T the members of interface K\ntype Omit<T, K> = Pick<T, Exclude<keyof T, keyof K>>;\n\n// All of T becomes optional except for Keys\ntype PartiallyRequired<T, Keys extends keyof T = keyof T> = Pick<Partial<T>, Exclude<keyof T, Keys>> & Pick<T, Keys>;\n\n/**\n * All of TOrigin except Key from TUse\n */\nexport type UseFrom<TOrigin, TUse, Key extends keyof TUse> = Pick<TOrigin, Exclude<keyof TOrigin, Key>> & Pick<TUse, Key>;\n\nexport enum EventPhase {\n None,\n Capturing,\n AtTarget,\n Bubbling\n}\n\nexport interface INativeKeyboardEvent {\n altKey: boolean;\n ctrlKey: boolean;\n metaKey: boolean;\n shiftKey: boolean;\n key: string;\n eventPhase: EventPhase;\n}\nexport type IKeyboardEvent = RN.NativeSyntheticEvent<INativeKeyboardEvent>;\nexport type IHandledKeyboardEvent = PartiallyRequired<INativeKeyboardEvent, 'key'>;\n\nexport interface IViewWin32 {\n focus: () => void;\n}\n\nexport type ARIARole =\n | 'alert'\n | 'alertdialog'\n | 'application'\n | 'button'\n | 'checkbox'\n | 'combobox'\n | 'dialog'\n | 'group'\n | 'link'\n | 'listitem'\n | 'menu'\n | 'menubar'\n | 'menuitem'\n | 'none'\n | 'presentation'\n | 'progressbar'\n | 'radio'\n | 'radiogroup'\n | 'scrollbar'\n | 'search'\n | 'spinbutton'\n | 'switch'\n | 'tab'\n | 'tablist'\n | 'tabpanel'\n | 'textbox'\n | 'timer'\n | 'toolbar'\n | 'tree'\n | 'treeitem';\n\nexport type AnnotationType =\n | 'AdvanceProofingIssue'\n | 'Author'\n | 'CircularReferenceError'\n | 'Comment'\n | 'ConflictingChange'\n | 'DataValidationError'\n | 'DeletionChange'\n | 'EditingLockedChange'\n | 'Endnote'\n | 'ExternalChange'\n | 'Footer'\n | 'Footnote'\n | 'FormatChange'\n | 'FormulaError'\n | 'GrammarError'\n | 'Header'\n | 'Highlighted'\n | 'InsertionChange'\n | 'Mathematics'\n | 'MoveChange'\n | 'SpellingError'\n | 'TrackChanges'\n | 'Unknown'\n | 'UnsyncedChange';\n\nexport type AccessibilityAnnotationInfo = Readonly<{\n typeID: AnnotationType;\n typeName?: string;\n author?: string;\n dateTime?: string;\n target?: string;\n}>;\n\nexport type AccessibilityActionName =\n | RN.AccessibilityActionName\n | 'AddToSelection'\n | 'RemoveFromSelection'\n | 'Select'\n | 'Expand'\n | 'Collapse';\n\nexport type Cursor =\n | 'auto'\n | 'default'\n | 'pointer'\n | 'help'\n | 'not-allowed'\n | 'wait'\n | 'move'\n | 'nesw-resize'\n | 'ns-resize'\n | 'nwse-resize'\n | 'we-resize'\n | 'text'\n\nexport type AccessibilityActionInfo = Readonly<{\n name: AccessibilityActionName;\n label?: string;\n}>;\n\nexport type AccessibilityState = RN.AccessibilityState & { multiselectable?: boolean, required?: boolean };\n\nexport type SharedAccessibilityPropsIOSandWin32 = {\n onAccessibilityTap?: () => void;\n};\n\nexport type OmittedAccessibilityPropsWin32 = {\n accessibilityActions?: ReadonlyArray<RN.AccessibilityActionInfo>;\n accessibilityRole?: RN.AccessibilityRole;\n accessibilityState?: RN.AccessibilityState;\n};\n\nexport type BasePropsWin32 = {\n /**\n * Tells a person using a screen reader the type of element they are focused on.\n *\n * Overrides the `accessibilityRole` prop on React Native to accept a subset of ARIA roles.\n *\n * Possible values for ARIARole are: alert, alertdialog, application, button, checkbox,\n * comobox, dialog, group, link, menu, menubar, menuitem, none, presentation, progressbar,\n * radio, radiogroup, scrollbar, search, spinbutton, switch, tab, tablist, tabpanel, textbox,\n * timer, toolbar, tree, and treeitem.\n */\n accessibilityRole?: RN.AccessibilityRole | ARIARole;\n accessibilityState?: AccessibilityState;\n accessibilityActions?: ReadonlyArray<AccessibilityActionInfo>;\n\n /**\n * Windows Accessibility extensions for allowing other DOM elements to label or describe a given element.\n *\n * Defined as a reference to another DOM element inheriting from the primary base classes of React-Native elements.\n * The reference will be converted to a native reference (tag) before passing to the native platform.\n */\n accessibilityDescribedBy?: React.RefObject<any>;\n accessibilityLabeledBy?: React.RefObject<any>;\n\n /**\n * Identifies the element whose contents or presence are controlled by another element. \n * \n * This is mainly used for a Textbox with a Dropdown PeoplePicker-type list. This allows an \n * accessibility tool to query those other providers for properties and listen to their events.\n */\n accessibilityControls?: React.RefObject<any>; \n\n /**\n * Identifies the ItemType property, which is a text string describing the type of the automation element.\n * ItemType is used to obtain information about items in a list, tree view, or data grid. For example, an item in a file directory view might be a \"Document File\" or a \"Folder\".\n */\n accessibilityItemType?: string;\n};\n\nexport type ViewWin32OmitTypes = RN.ViewPropsAndroid &\n RN.ViewPropsIOS &\n RN.AccessibilityPropsAndroid &\n Omit<RN.AccessibilityPropsIOS, SharedAccessibilityPropsIOSandWin32> &\n OmittedAccessibilityPropsWin32;\n\n/**\n * Properties for ViewWin32 component\n */\nexport interface IViewWin32Props extends Omit<RN.ViewProps, ViewWin32OmitTypes>, BasePropsWin32 {\n type?: React.ElementType;\n children?: React.ReactNode;\n accessibilityActions?: ReadonlyArray<AccessibilityActionInfo>;\n /**\n * Tells a person using a screen reader what kind of annotation they\n * have selected. If available, it will also tell a person the author of the annotation and\n * the date and time the annotation was posted.\n *\n * Note: If typeID is 'Unknown', a typeName must be provided.\n */\n accessibilityAnnotation?: AccessibilityAnnotationInfo;\n /**\n * accessibilityDescription provides more detailed information specific to the element (i.e. last edit date, full location for a file)\n * while accessibilityHint provides infomation on what will happen when they perform an action.\n *\n */\n accessibilityDescription?: string;\n accessibilityLevel?: number;\n accessibilityPositionInSet?: number;\n\n accessibilitySetSize?: number;\n animationClass?: string;\n focusable?: boolean;\n enableFocusRing?: boolean;\n\n /**\n * The onBlur event occurs when an element loses focus. The opposite of onBlur is onFocus. Note that in React\n * Native, unlike in the web, the onBlur event bubbles (similar to onFocusOut in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onBlur?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n /**\n * The onBlur event occurs when an element loses focus. The opposite of onBlur is onFocus. Note that in React\n * Native, unlike in the web, the onBlur event bubbles (similar to onFocusOut in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onBlurCapture?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n /**\n * The onFocus event occurs when an element gets focus. The opposite of onFocus is onBlur. Note that in React\n * Native, unlike in the web, the onFocus event bubbles (similar to onFocusIn in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onFocus?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n /**\n * The onFocus event occurs when an element gets focus. The opposite of onFocus is onBlur. Note that in React\n * Native, unlike in the web, the onFocus event bubbles (similar to onFocusIn in the web).\n *\n * `ev.target === ev.currentTarget` when the focus is being lost from this component.\n * `ev.target !== ev.currentTarget` when the focus is being lost from a descendant.\n */\n onFocusCapture?: (ev: RN.NativeSyntheticEvent<{}>) => void;\n\n onKeyDown?: (args: IKeyboardEvent) => void;\n onKeyDownCapture?: (args: IKeyboardEvent) => void;\n onKeyUp?: (args: IKeyboardEvent) => void;\n onKeyUpCapture?: (args: IKeyboardEvent) => void;\n\n onMouseEnter?: () => void;\n onMouseLeave?: () => void;\n\n keyDownEvents?: IHandledKeyboardEvent[];\n keyUpEvents?: IHandledKeyboardEvent[];\n\n /**\n * Provides a screentip to be used on hover of the view\n */\n tooltip?: string;\n cursor?: Cursor;\n}\n"]}
@@ -100,7 +100,7 @@ function parseLine(line: string): ?HermesStackEntry {
100
100
 
101
101
  module.exports = function parseHermesStack(stack: string): HermesParsedStack {
102
102
  const lines = stack.split(/\n/);
103
- let entries = [];
103
+ let entries: Array<HermesStackEntryFrame | HermesStackEntrySkipped> = [];
104
104
  let lastMessageLine = -1;
105
105
  for (let i = 0; i < lines.length; ++i) {
106
106
  const line = lines[i];
@@ -5,7 +5,7 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
7
  * @format
8
- * @flow strict-local
8
+ * @flow strict
9
9
  */
10
10
 
11
11
  'use strict';
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ * @flow strict-local
8
+ * @format
9
+ */
10
+
11
+ import EventEmitter from '../vendor/emitter/EventEmitter';
12
+ import type {IEventEmitter} from '../vendor/emitter/EventEmitter';
13
+
14
+ export type RawEventEmitterEvent = $ReadOnly<{|
15
+ eventName: string,
16
+ // We expect, but do not/cannot require, that nativeEvent is an object
17
+ // with the properties: key, elementType (string), type (string), tag (numeric),
18
+ // and a stateNode of the native element/Fiber the event was emitted to.
19
+ nativeEvent: {[string]: mixed},
20
+ |}>;
21
+
22
+ type RawEventDefinitions = {
23
+ [eventChannel: string]: [RawEventEmitterEvent],
24
+ };
25
+
26
+ const RawEventEmitter: IEventEmitter<RawEventDefinitions> =
27
+ new EventEmitter<RawEventDefinitions>();
28
+
29
+ // See the React renderer / react repo for how this is used.
30
+ // Raw events are emitted here when they are received in JS
31
+ // and before any event Plugins process them or before components
32
+ // have a chance to respond to them. This allows you to implement
33
+ // app-specific perf monitoring, which is unimplemented by default,
34
+ // making this entire RawEventEmitter do nothing by default until
35
+ // *you* add listeners for your own app.
36
+ // Besides perf monitoring and maybe debugging, this RawEventEmitter
37
+ // should not be used.
38
+ export default RawEventEmitter;
@@ -11,7 +11,7 @@
11
11
 
12
12
  exports.version = {
13
13
  major: 0,
14
- minor: 68,
14
+ minor: 69,
15
15
  patch: 0,
16
- prerelease: null,
16
+ prerelease: 'rc.3',
17
17
  };
@@ -11,6 +11,7 @@
11
11
  'use strict';
12
12
 
13
13
  const {polyfillGlobal} = require('../Utilities/PolyfillFunctions');
14
+ const warnOnce = require('../Utilities/warnOnce');
14
15
 
15
16
  /**
16
17
  * Set up Promise. The native Promise implementation throws the following error:
@@ -36,3 +37,34 @@ if (global?.HermesInternal?.hasPromise?.()) {
36
37
  } else {
37
38
  polyfillGlobal('Promise', () => require('../Promise'));
38
39
  }
40
+
41
+ if (__DEV__) {
42
+ // $FlowFixMe
43
+ const done = Promise.prototype.done;
44
+ if (done != null) {
45
+ let depth = 0;
46
+ /* eslint-disable no-extend-native */
47
+ // $FlowFixMe
48
+ Promise.prototype.done = function () {
49
+ ++depth;
50
+ try {
51
+ // Avoid infinite recursion if done() happens to be triggered by warnOnce.
52
+ if (depth === 1) {
53
+ // Warn once per unique call stack. Not super efficient, but we're in
54
+ // __DEV__ and .done() calls are rare to begin with.
55
+ const key = new Error().stack;
56
+ warnOnce(
57
+ key,
58
+ 'Promise.prototype.done(): This nonstandard polyfill ' +
59
+ 'has been deprecated and will be removed in a future release. ' +
60
+ 'Please instead use `.then()`.',
61
+ );
62
+ }
63
+ } finally {
64
+ --depth;
65
+ }
66
+ return done.apply(this, arguments);
67
+ };
68
+ /* eslint-enable no-extend-native */
69
+ }
70
+ }
@@ -58,12 +58,13 @@ if (__DEV__) {
58
58
  isWebSocketOpen = true;
59
59
  });
60
60
 
61
- const viewConfig = require('../Components/View/ReactNativeViewViewConfig');
61
+ const ReactNativeStyleAttributes = require('../Components/View/ReactNativeStyleAttributes');
62
+
62
63
  reactDevTools.connectToDevTools({
63
64
  isAppActive,
64
65
  resolveRNStyle: require('../StyleSheet/flattenStyle'),
65
66
  nativeStyleEditorValidAttributes: Object.keys(
66
- viewConfig.validAttributes.style,
67
+ ReactNativeStyleAttributes,
67
68
  ),
68
69
  websocket: ws,
69
70
  });
@@ -10,9 +10,9 @@
10
10
 
11
11
  'use strict';
12
12
 
13
- import {
14
- type EventSubscription,
15
- type IEventEmitter,
13
+ import type {
14
+ EventSubscription,
15
+ IEventEmitter,
16
16
  } from '../vendor/emitter/EventEmitter';
17
17
  import Platform from '../Utilities/Platform';
18
18
  import RCTDeviceEventEmitter from './RCTDeviceEventEmitter';
@@ -8,7 +8,8 @@
8
8
  * @format
9
9
  */
10
10
 
11
- import EventEmitter, {type IEventEmitter} from '../vendor/emitter/EventEmitter';
11
+ import EventEmitter from '../vendor/emitter/EventEmitter';
12
+ import type {IEventEmitter} from '../vendor/emitter/EventEmitter';
12
13
 
13
14
  // FIXME: use typed events
14
15
  type RCTDeviceEventDefinitions = $FlowFixMe;
@@ -8,9 +8,9 @@
8
8
  * @flow strict-local
9
9
  */
10
10
 
11
- import {
12
- type EventSubscription,
13
- type IEventEmitter,
11
+ import type {
12
+ EventSubscription,
13
+ IEventEmitter,
14
14
  } from '../../vendor/emitter/EventEmitter';
15
15
  import RCTDeviceEventEmitter from '../RCTDeviceEventEmitter';
16
16
 
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ * @format
8
+ * @flow strict-local
9
+ */
10
+
11
+ // Make sure global Event is defined
12
+ import EventPolyfill from './EventPolyfill';
13
+
14
+ type CustomEvent$Options = $ReadOnly<{|
15
+ bubbles?: boolean,
16
+ cancelable?: boolean,
17
+ composed?: boolean,
18
+ detail?: {...},
19
+ |}>;
20
+
21
+ class CustomEvent extends EventPolyfill {
22
+ detail: ?{...};
23
+
24
+ constructor(typeArg: string, options: CustomEvent$Options) {
25
+ const {bubbles, cancelable, composed} = options;
26
+ super(typeArg, {bubbles, cancelable, composed});
27
+
28
+ this.detail = options.detail; // this would correspond to `NativeEvent` in SyntheticEvent
29
+ }
30
+ }
31
+
32
+ export default CustomEvent;