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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (180) hide show
  1. package/.flowconfig +3 -3
  2. package/CHANGELOG.json +386 -14
  3. package/CHANGELOG.md +159 -9
  4. package/IntegrationTests/BUCK +4 -1
  5. package/Libraries/ActionSheetIOS/ActionSheetIOS.js +7 -0
  6. package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +1 -0
  7. package/Libraries/Alert/Alert.win32.js +1 -1
  8. package/Libraries/Animated/AnimatedImplementation.js +1 -1
  9. package/Libraries/Animated/NativeAnimatedHelper.js +55 -9
  10. package/Libraries/Animated/NativeAnimatedModule.js +1 -0
  11. package/Libraries/Animated/NativeAnimatedTurboModule.js +1 -0
  12. package/Libraries/Animated/animations/TimingAnimation.js +6 -11
  13. package/Libraries/Animated/createAnimatedComponent.js +2 -2
  14. package/Libraries/Animated/nodes/AnimatedColor.js +95 -29
  15. package/Libraries/Animated/nodes/AnimatedInterpolation.js +19 -22
  16. package/Libraries/Animated/nodes/AnimatedNode.js +2 -2
  17. package/Libraries/Animated/nodes/AnimatedValue.js +1 -1
  18. package/Libraries/AppState/AppState.js +1 -1
  19. package/Libraries/Blob/URL.js +7 -1
  20. package/Libraries/Components/Button.js +3 -0
  21. package/Libraries/Components/DatePickerAndroid/NativeDatePickerAndroid.js +5 -0
  22. package/Libraries/Components/Pressable/Pressable.js +3 -3
  23. package/Libraries/Components/Pressable/Pressable.win32.js +3 -3
  24. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +47 -38
  25. package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +15 -7
  26. package/Libraries/Components/ScrollView/ScrollView.js +1 -1
  27. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +16 -3
  28. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +3 -1
  29. package/Libraries/Components/Slider/Slider.js +0 -2
  30. package/Libraries/Components/Slider/SliderNativeComponent.js +0 -1
  31. package/Libraries/Components/StatusBar/StatusBar.js +6 -1
  32. package/Libraries/Components/Switch/Switch.js +13 -2
  33. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +114 -109
  34. package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +17 -9
  35. package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +13 -5
  36. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
  37. package/Libraries/Components/TextInput/TextInput.js +1 -8
  38. package/Libraries/Components/TextInput/TextInputState.js +10 -2
  39. package/Libraries/Components/TextInput/TextInputState.win32.js +10 -2
  40. package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js.map +1 -1
  41. package/Libraries/Components/Touchable/TouchableBounce.js +1 -0
  42. package/Libraries/Components/Touchable/TouchableHighlight.js +1 -0
  43. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -0
  44. package/Libraries/Components/Touchable/TouchableOpacity.js +7 -1
  45. package/Libraries/Components/Touchable/TouchableWin32.Props.d.ts +3 -1
  46. package/Libraries/Components/Touchable/TouchableWin32.Props.js.map +1 -1
  47. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +2 -0
  48. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -0
  49. package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +1 -0
  50. package/Libraries/Components/View/View.win32.js +33 -1
  51. package/Libraries/Components/View/ViewNativeComponent.js +68 -8
  52. package/Libraries/Components/View/ViewPropTypes.js +36 -4
  53. package/Libraries/Components/View/ViewPropTypes.win32.js +36 -4
  54. package/Libraries/Components/View/ViewWin32.Props.d.ts +1 -1
  55. package/Libraries/Components/View/ViewWin32.Props.js.map +1 -1
  56. package/Libraries/Core/Devtools/parseHermesStack.js +1 -1
  57. package/Libraries/Core/ExceptionsManager.js +1 -1
  58. package/Libraries/Core/RawEventEmitter.js +38 -0
  59. package/Libraries/Core/ReactNativeVersion.js +2 -2
  60. package/Libraries/Core/polyfillPromise.js +32 -0
  61. package/Libraries/Core/setUpReactDevTools.js +3 -2
  62. package/Libraries/EventEmitter/NativeEventEmitter.js +3 -3
  63. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +2 -1
  64. package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +3 -3
  65. package/Libraries/Events/CustomEvent.js +32 -0
  66. package/Libraries/Events/EventPolyfill.js +239 -0
  67. package/Libraries/Image/Image.android.js +0 -6
  68. package/Libraries/Image/Image.ios.js +0 -6
  69. package/Libraries/Image/Image.win32.js +2 -8
  70. package/Libraries/Image/ImageViewNativeComponent.js +18 -3
  71. package/Libraries/Image/TextInlineImageNativeComponent.js +23 -15
  72. package/Libraries/Image/resolveAssetSource.win32.js +1 -1
  73. package/Libraries/Inspector/Inspector.js +2 -4
  74. package/Libraries/Inspector/Inspector.win32.js +7 -9
  75. package/Libraries/Interaction/BridgeSpyStallHandler.js +4 -3
  76. package/Libraries/Interaction/InteractionManager.js +1 -12
  77. package/Libraries/Interaction/TaskQueue.js +5 -4
  78. package/Libraries/LayoutAnimation/LayoutAnimation.js +13 -0
  79. package/Libraries/Linking/Linking.js +1 -1
  80. package/Libraries/Lists/FlatList.js +27 -6
  81. package/Libraries/Lists/VirtualizedList.js +71 -55
  82. package/Libraries/Lists/VirtualizedListContext.js +7 -3
  83. package/Libraries/Lists/VirtualizedSectionList.js +2 -2
  84. package/Libraries/Lists/__tests__/{FillRateHelper-test.windows.js → FillRateHelper-test.js} +2 -2
  85. package/Libraries/Lists/__tests__/{FlatList-test.windows.js → FlatList-test.js} +2 -2
  86. package/Libraries/Lists/__tests__/{SectionList-test.windows.js → SectionList-test.js} +14 -14
  87. package/Libraries/Lists/__tests__/{VirtualizeUtils-test.windows.js → VirtualizeUtils-test.js} +3 -3
  88. package/Libraries/Lists/__tests__/{VirtualizedList-test.windows.js → VirtualizedList-test.js} +92 -43
  89. package/Libraries/Lists/__tests__/{VirtualizedSectionList-test.windows.js → VirtualizedSectionList-test.js} +16 -14
  90. package/Libraries/LogBox/Data/LogBoxData.js +2 -2
  91. package/Libraries/LogBox/Data/LogBoxLog.js +1 -1
  92. package/Libraries/LogBox/Data/LogBoxSymbolication.js +1 -1
  93. package/Libraries/LogBox/Data/parseLogBoxLog.js +1 -1
  94. package/Libraries/LogBox/LogBox.js +2 -21
  95. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +1 -0
  96. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +2 -1
  97. package/Libraries/NativeComponent/BaseViewConfig.android.js +295 -0
  98. package/Libraries/NativeComponent/BaseViewConfig.ios.js +333 -0
  99. package/Libraries/NativeComponent/BaseViewConfig.win32.js +334 -0
  100. package/Libraries/NativeComponent/NativeComponentRegistry.js +0 -2
  101. package/Libraries/NativeComponent/PlatformBaseViewConfig.js +24 -0
  102. package/Libraries/NativeComponent/StaticViewConfigValidator.js +7 -42
  103. package/Libraries/NativeComponent/ViewConfig.js +4 -4
  104. package/Libraries/NativeComponent/ViewConfigIgnore.js +54 -0
  105. package/Libraries/Network/FormData.js +7 -1
  106. package/Libraries/Network/RCTNetworking.win32.js +1 -1
  107. package/Libraries/Pressability/Pressability.js +115 -46
  108. package/Libraries/Pressability/Pressability.win32.js +174 -69
  109. package/Libraries/Pressability/PressabilityDebug.js +5 -9
  110. package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +1 -0
  111. package/Libraries/ReactNative/AppContainer.js +1 -1
  112. package/Libraries/ReactNative/{DummyUIManager.js → BridgelessUIManager.js} +62 -40
  113. package/Libraries/ReactNative/PaperUIManager.win32.js +5 -5
  114. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +39 -0
  115. package/Libraries/ReactNative/UIManager.js +2 -3
  116. package/Libraries/ReactNative/renderApplication.js +4 -0
  117. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +8 -0
  118. package/Libraries/Renderer/implementations/ReactFabric-dev.js +5908 -4906
  119. package/Libraries/Renderer/implementations/ReactFabric-prod.js +2100 -1918
  120. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +2567 -2352
  121. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +5610 -4844
  122. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +1710 -1556
  123. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +1830 -1639
  124. package/Libraries/Renderer/shims/ReactNativeTypes.js +2 -1
  125. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +2 -1
  126. package/Libraries/StyleSheet/EdgeInsetsPropType.js +4 -1
  127. package/Libraries/StyleSheet/StyleSheetTypes.js +59 -66
  128. package/Libraries/StyleSheet/normalizeColor.js +1 -1
  129. package/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.js +15 -0
  130. package/Libraries/StyleSheet/private/_TransformStyle.js +53 -0
  131. package/Libraries/Text/Text.js +13 -7
  132. package/Libraries/Text/TextNativeComponent.js +2 -0
  133. package/Libraries/Text/TextNativeComponent.win32.js +2 -0
  134. package/Libraries/Text/TextProps.js +10 -0
  135. package/Libraries/Types/CoreEventTypes.js +13 -1
  136. package/Libraries/Types/CoreEventTypes.win32.js +26 -1
  137. package/Libraries/Utilities/Appearance.js +0 -8
  138. package/Libraries/Utilities/HMRClient.js +1 -1
  139. package/Libraries/Utilities/ReactNativeTestTools.js +1 -0
  140. package/Libraries/Utilities/codegenNativeComponent.js +17 -6
  141. package/Libraries/Utilities/stringifySafe.js +4 -1
  142. package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +3 -3
  143. package/Libraries/WebSocket/WebSocket.js +1 -1
  144. package/Libraries/vendor/emitter/_EmitterSubscription.js +1 -1
  145. package/Libraries/vendor/emitter/_EventEmitter.js +1 -1
  146. package/Libraries/vendor/emitter/_EventSubscription.js +1 -1
  147. package/index.js +30 -25
  148. package/index.win32.js +30 -25
  149. package/jest/preprocessor.js +24 -107
  150. package/jest/preprocessor_DO_NOT_USE.js +122 -0
  151. package/metro.config.js +3 -47
  152. package/overrides.json +39 -46
  153. package/package.json +28 -26
  154. package/rntypes/index.d.ts +19 -7
  155. package/src/Libraries/Components/Touchable/Tests/TouchableWin32Test.tsx +1 -1
  156. package/src/Libraries/Components/Touchable/TouchableWin32.Props.tsx +3 -1
  157. package/src/Libraries/Components/View/ViewWin32.Props.ts +1 -0
  158. package/src/Libraries/Lists/__tests__/__snapshots__/FlatList-test.js.snap +427 -0
  159. package/src/Libraries/Lists/__tests__/__snapshots__/SectionList-test.js.snap +391 -0
  160. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizeUtils-test.js.snap +3 -0
  161. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedList-test.js.snap +4565 -0
  162. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedSectionList-test.js.snap +1153 -0
  163. package/src/rntypes/index.d.ts +19 -7
  164. package/typings-index.js +5 -1
  165. package/typings-index.js.map +1 -1
  166. package/Libraries/Components/SegmentedControlIOS/RCTSegmentedControlNativeComponent.js +0 -44
  167. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.android.js +0 -45
  168. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js +0 -123
  169. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.js +0 -45
  170. package/Libraries/Components/View/ReactNativeViewViewConfig.js +0 -360
  171. package/Libraries/Components/View/ReactNativeViewViewConfig.win32.js +0 -401
  172. package/Libraries/Components/View/ReactNativeViewViewConfigAndroid.js +0 -83
  173. package/Libraries/ReactNative/UIManagerInjection.js +0 -15
  174. package/Libraries/Renderer/implementations/ReactFabric-dev.fb.js +0 -24527
  175. package/Libraries/Renderer/implementations/ReactFabric-prod.fb.js +0 -8309
  176. package/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js +0 -8961
  177. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js +0 -24948
  178. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js +0 -8400
  179. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js +0 -9049
  180. package/flow/Promise.js +0 -47
package/.flowconfig CHANGED
@@ -16,7 +16,6 @@
16
16
  <PROJECT_ROOT>/Libraries/Components/TextInput/TextInputState.js
17
17
  <PROJECT_ROOT>/Libraries/Components/Touchable/TouchableNativeFeedback.js
18
18
  <PROJECT_ROOT>/Libraries/Components/View/ReactNativeViewAttributes.js
19
- <PROJECT_ROOT>/Libraries/Components/View/ReactNativeViewViewConfig.js
20
19
  <PROJECT_ROOT>/Libraries/Components/View/View.js
21
20
  <PROJECT_ROOT>/Libraries/Components/View/ViewPropTypes.js
22
21
  <PROJECT_ROOT>/Libraries/Image/Image.js
@@ -59,6 +58,8 @@
59
58
  ; Ignore files with flow typing issues #9223
60
59
  .*/react-native-win32/Libraries/Core/ReactNativeVersionCheck.js
61
60
 
61
+ .*/node_modules/resolve/test/resolver/malformed_package_json/package\.json$
62
+
62
63
  [untyped]
63
64
  .*/node_modules/@react-native-community/cli/.*/.*
64
65
  ; Should work out how to do this properly
@@ -108,7 +109,6 @@ nonstrict-import=warn
108
109
  deprecated-type=error
109
110
  unsafe-getters-setters=warn
110
111
  unnecessary-invariant=warn
111
- signature-verification-failure=warn
112
112
 
113
113
  [strict]
114
114
  deprecated-type
@@ -120,4 +120,4 @@ untyped-import
120
120
  untyped-type-import
121
121
 
122
122
  [version]
123
- ^0.170.0
123
+ ^0.176.3
package/CHANGELOG.json CHANGED
@@ -2,43 +2,415 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 14 Feb 2022 16:07:41 GMT",
6
- "tag": "@office-iss/react-native-win32_v0.68.0-preview.2",
7
- "version": "0.68.0-preview.2",
5
+ "date": "Wed, 04 May 2022 23:29:33 GMT",
6
+ "tag": "@office-iss/react-native-win32_v0.69.0-preview.1",
7
+ "version": "0.69.0-preview.1",
8
8
  "comments": {
9
9
  "prerelease": [
10
10
  {
11
11
  "author": "jthysell@microsoft.com",
12
12
  "package": "@office-iss/react-native-win32",
13
- "commit": "2d99c664143875740d513d7a9c1e9063eea234d5",
14
- "comment": "[0.68] Bump minimum Node version to 14"
13
+ "commit": "460c63a1d225ae27c0ca64a4ef0d21ea477e546b",
14
+ "comment": "Promote 0.69 to preview"
15
15
  },
16
16
  {
17
17
  "author": "beachball",
18
18
  "package": "@office-iss/react-native-win32",
19
- "comment": "Bump @react-native-windows/virtualized-list to v0.68.0-preview.2",
20
- "commit": "02283c2582cfc8befa62b6fc32df18f022fff29b"
19
+ "comment": "Bump @react-native-windows/virtualized-list to v0.69.0-preview.1",
20
+ "commit": "4ec3e5663977bb8a0079f362fd35e21cf39dc636"
21
21
  }
22
22
  ]
23
23
  }
24
24
  },
25
25
  {
26
- "date": "Mon, 07 Feb 2022 16:09:26 GMT",
27
- "tag": "@office-iss/react-native-win32_v0.68.0-preview.1",
28
- "version": "0.68.0-preview.1",
26
+ "date": "Mon, 02 May 2022 21:26:42 GMT",
27
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.148",
28
+ "version": "0.0.0-canary.148",
29
+ "comments": {
30
+ "prerelease": [
31
+ {
32
+ "author": "34109996+chiaramooney@users.noreply.github.com",
33
+ "package": "@office-iss/react-native-win32",
34
+ "commit": "a54f8ccd6ad0a78815e8b89d5027a494e6614647",
35
+ "comment": "Implement no-hide-accessibility"
36
+ },
37
+ {
38
+ "author": "patboyd@microsoft.com",
39
+ "package": "@office-iss/react-native-win32",
40
+ "commit": "c5a5ce42968a5b33563a29770b0d71b3f668d7c3",
41
+ "comment": "Add ListItem as an accessibilityRole type and add a List, ListItem, ControllerFor test example"
42
+ }
43
+ ]
44
+ }
45
+ },
46
+ {
47
+ "date": "Wed, 27 Apr 2022 05:10:23 GMT",
48
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.147",
49
+ "version": "0.0.0-canary.147",
50
+ "comments": {
51
+ "prerelease": [
52
+ {
53
+ "author": "34109996+chiaramooney@users.noreply.github.com",
54
+ "package": "@office-iss/react-native-win32",
55
+ "commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b",
56
+ "comment": "Integrate 4/15 Test"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@office-iss/react-native-win32",
61
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.41",
62
+ "commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
63
+ },
64
+ {
65
+ "author": "beachball",
66
+ "package": "@office-iss/react-native-win32",
67
+ "comment": "Bump @rnw-scripts/eslint-config to v1.1.12",
68
+ "commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
69
+ },
70
+ {
71
+ "author": "beachball",
72
+ "package": "@office-iss/react-native-win32",
73
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.6",
74
+ "commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
75
+ },
76
+ {
77
+ "author": "beachball",
78
+ "package": "@office-iss/react-native-win32",
79
+ "comment": "Bump react-native-platform-override to v1.6.11",
80
+ "commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
81
+ }
82
+ ]
83
+ }
84
+ },
85
+ {
86
+ "date": "Thu, 21 Apr 2022 05:09:33 GMT",
87
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.146",
88
+ "version": "0.0.0-canary.146",
89
+ "comments": {
90
+ "prerelease": [
91
+ {
92
+ "author": "beachball",
93
+ "package": "@office-iss/react-native-win32",
94
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.40",
95
+ "commit": "cee6f05fac576b0380d16d1dade68e0bbd1ce572"
96
+ },
97
+ {
98
+ "author": "beachball",
99
+ "package": "@office-iss/react-native-win32",
100
+ "comment": "Bump react-native-platform-override to v1.6.10",
101
+ "commit": "cee6f05fac576b0380d16d1dade68e0bbd1ce572"
102
+ }
103
+ ]
104
+ }
105
+ },
106
+ {
107
+ "date": "Thu, 14 Apr 2022 05:09:19 GMT",
108
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.145",
109
+ "version": "0.0.0-canary.145",
110
+ "comments": {
111
+ "prerelease": [
112
+ {
113
+ "author": "34109996+chiaramooney@users.noreply.github.com",
114
+ "package": "@office-iss/react-native-win32",
115
+ "commit": "2777d696c740f663f8f35191cda5d99cb251af48",
116
+ "comment": "Integrate RN Nightly Build 4/11"
117
+ },
118
+ {
119
+ "author": "beachball",
120
+ "package": "@office-iss/react-native-win32",
121
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.39",
122
+ "commit": "2e771eea4e5bbe3b3a812ce426215f8084fcb535"
123
+ }
124
+ ]
125
+ }
126
+ },
127
+ {
128
+ "date": "Tue, 12 Apr 2022 05:10:37 GMT",
129
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.144",
130
+ "version": "0.0.0-canary.144",
131
+ "comments": {
132
+ "prerelease": [
133
+ {
134
+ "author": "34109996+chiaramooney@users.noreply.github.com",
135
+ "package": "@office-iss/react-native-win32",
136
+ "commit": "938b09653f9bf9b089a36caa184204658f15f114",
137
+ "comment": "Fix Overrides"
138
+ },
139
+ {
140
+ "author": "beachball",
141
+ "package": "@office-iss/react-native-win32",
142
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.38",
143
+ "commit": "938b09653f9bf9b089a36caa184204658f15f114"
144
+ },
145
+ {
146
+ "author": "beachball",
147
+ "package": "@office-iss/react-native-win32",
148
+ "comment": "Bump react-native-platform-override to v1.6.9",
149
+ "commit": "938b09653f9bf9b089a36caa184204658f15f114"
150
+ }
151
+ ]
152
+ }
153
+ },
154
+ {
155
+ "date": "Sat, 09 Apr 2022 05:10:10 GMT",
156
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.143",
157
+ "version": "0.0.0-canary.143",
158
+ "comments": {
159
+ "prerelease": [
160
+ {
161
+ "author": "email not defined",
162
+ "package": "@office-iss/react-native-win32",
163
+ "commit": "69f4432924079c65c25d29b3a43e34b1e871a61c",
164
+ "comment": "integrate 4/4"
165
+ },
166
+ {
167
+ "author": "beachball",
168
+ "package": "@office-iss/react-native-win32",
169
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.37",
170
+ "commit": "66ca5ce8b0dad82b3008e283903ce2816840ce5d"
171
+ }
172
+ ]
173
+ }
174
+ },
175
+ {
176
+ "date": "Tue, 05 Apr 2022 05:10:13 GMT",
177
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.142",
178
+ "version": "0.0.0-canary.142",
179
+ "comments": {
180
+ "prerelease": [
181
+ {
182
+ "author": "beachball",
183
+ "package": "@office-iss/react-native-win32",
184
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.36",
185
+ "commit": "02e23ab160f96d0960988a4d28e83f1e6ce3a0d3"
186
+ },
187
+ {
188
+ "author": "beachball",
189
+ "package": "@office-iss/react-native-win32",
190
+ "comment": "Bump react-native-platform-override to v1.6.8",
191
+ "commit": "02e23ab160f96d0960988a4d28e83f1e6ce3a0d3"
192
+ }
193
+ ]
194
+ }
195
+ },
196
+ {
197
+ "date": "Fri, 01 Apr 2022 05:09:58 GMT",
198
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.141",
199
+ "version": "0.0.0-canary.141",
200
+ "comments": {
201
+ "prerelease": [
202
+ {
203
+ "author": "beachball",
204
+ "package": "@office-iss/react-native-win32",
205
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.35",
206
+ "commit": "bf81027650625e9e44610f192e194fee8559f605"
207
+ },
208
+ {
209
+ "author": "beachball",
210
+ "package": "@office-iss/react-native-win32",
211
+ "comment": "Bump react-native-platform-override to v1.6.7",
212
+ "commit": "bf81027650625e9e44610f192e194fee8559f605"
213
+ }
214
+ ]
215
+ }
216
+ },
217
+ {
218
+ "date": "Thu, 31 Mar 2022 05:10:18 GMT",
219
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.140",
220
+ "version": "0.0.0-canary.140",
221
+ "comments": {
222
+ "prerelease": [
223
+ {
224
+ "author": "34109996+chiaramooney@users.noreply.github.com",
225
+ "package": "@office-iss/react-native-win32",
226
+ "commit": "040176bfc09ef4b3d914b447ee151f94da0452ee",
227
+ "comment": "Integrate 3/11"
228
+ },
229
+ {
230
+ "author": "beachball",
231
+ "package": "@office-iss/react-native-win32",
232
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.34",
233
+ "commit": "c42f0dd251c1d4db3efd790ba08e25a4b2e84174"
234
+ }
235
+ ]
236
+ }
237
+ },
238
+ {
239
+ "date": "Tue, 29 Mar 2022 05:09:49 GMT",
240
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.139",
241
+ "version": "0.0.0-canary.139",
242
+ "comments": {
243
+ "prerelease": [
244
+ {
245
+ "author": "34109996+chiaramooney@users.noreply.github.com",
246
+ "package": "@office-iss/react-native-win32",
247
+ "commit": "b0dbc51d8ac6add9172891a5ab97a68eec9b979a",
248
+ "comment": "Integrate 3/11"
249
+ },
250
+ {
251
+ "author": "beachball",
252
+ "package": "@office-iss/react-native-win32",
253
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.33",
254
+ "commit": "b0dbc51d8ac6add9172891a5ab97a68eec9b979a"
255
+ }
256
+ ]
257
+ }
258
+ },
259
+ {
260
+ "date": "Thu, 17 Mar 2022 05:09:18 GMT",
261
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.138",
262
+ "version": "0.0.0-canary.138",
263
+ "comments": {
264
+ "prerelease": [
265
+ {
266
+ "author": "email not defined",
267
+ "package": "@office-iss/react-native-win32",
268
+ "commit": "26b1a72c753692d07739027984a74ca35b2c2205",
269
+ "comment": "integrates 2/27/22"
270
+ },
271
+ {
272
+ "author": "beachball",
273
+ "package": "@office-iss/react-native-win32",
274
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.32",
275
+ "commit": "26b1a72c753692d07739027984a74ca35b2c2205"
276
+ }
277
+ ]
278
+ }
279
+ },
280
+ {
281
+ "date": "Wed, 09 Mar 2022 06:09:07 GMT",
282
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.137",
283
+ "version": "0.0.0-canary.137",
284
+ "comments": {
285
+ "prerelease": [
286
+ {
287
+ "author": "53799235+ZihanChen-MSFT@users.noreply.github.com",
288
+ "package": "@office-iss/react-native-win32",
289
+ "commit": "afb7e6c78ac73d700c7369d6f514c34b1b464985",
290
+ "comment": "Upgrade @types/react-native"
291
+ }
292
+ ]
293
+ }
294
+ },
295
+ {
296
+ "date": "Sat, 05 Mar 2022 06:08:58 GMT",
297
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.136",
298
+ "version": "0.0.0-canary.136",
299
+ "comments": {
300
+ "prerelease": [
301
+ {
302
+ "author": "email not defined",
303
+ "package": "@office-iss/react-native-win32",
304
+ "commit": "f9160f690118754fc9e788aced5c51376513617d",
305
+ "comment": "integrate 2/13/2022 Nightly RN Build"
306
+ },
307
+ {
308
+ "author": "beachball",
309
+ "package": "@office-iss/react-native-win32",
310
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.31",
311
+ "commit": "95638afb58acf9bdb662a72c945ee8f0f2b6a72a"
312
+ }
313
+ ]
314
+ }
315
+ },
316
+ {
317
+ "date": "Sun, 13 Feb 2022 06:08:34 GMT",
318
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.135",
319
+ "version": "0.0.0-canary.135",
320
+ "comments": {
321
+ "prerelease": [
322
+ {
323
+ "author": "beachball",
324
+ "package": "@office-iss/react-native-win32",
325
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.30",
326
+ "commit": "dfc6ca9c55b67a3d2186884d0e1110c6d4690a97"
327
+ },
328
+ {
329
+ "author": "beachball",
330
+ "package": "@office-iss/react-native-win32",
331
+ "comment": "Bump react-native-platform-override to v1.6.6",
332
+ "commit": "dfc6ca9c55b67a3d2186884d0e1110c6d4690a97"
333
+ }
334
+ ]
335
+ }
336
+ },
337
+ {
338
+ "date": "Sat, 12 Feb 2022 06:08:36 GMT",
339
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.134",
340
+ "version": "0.0.0-canary.134",
341
+ "comments": {
342
+ "prerelease": [
343
+ {
344
+ "author": "ngerlem@microsoft.com",
345
+ "package": "@office-iss/react-native-win32",
346
+ "commit": "3dfb9c2cf511fd9a0150bb1ebbd2be066e9b720f",
347
+ "comment": "Share monorepo-friendly metro config between dev packages"
348
+ }
349
+ ]
350
+ }
351
+ },
352
+ {
353
+ "date": "Fri, 11 Feb 2022 06:08:20 GMT",
354
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.133",
355
+ "version": "0.0.0-canary.133",
29
356
  "comments": {
30
357
  "prerelease": [
31
358
  {
32
359
  "author": "ngerlem@microsoft.com",
33
360
  "package": "@office-iss/react-native-win32",
34
- "commit": "ac9ed3d3d6983034815a6a82f56e9710f7b1809e",
35
- "comment": "Promote 0.68 to preview"
361
+ "commit": "ae5b3283fd03ec97f9b3ff33b9820778edb4188f",
362
+ "comment": "Integrate Feb 6 Nightly RN Build"
363
+ },
364
+ {
365
+ "author": "beachball",
366
+ "package": "@office-iss/react-native-win32",
367
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.29",
368
+ "commit": "c93141bf6be4574ca32c38d1a92dcda143001cd7"
369
+ },
370
+ {
371
+ "author": "beachball",
372
+ "package": "@office-iss/react-native-win32",
373
+ "comment": "Bump react-native-platform-override to v1.6.5",
374
+ "commit": "c93141bf6be4574ca32c38d1a92dcda143001cd7"
375
+ }
376
+ ]
377
+ }
378
+ },
379
+ {
380
+ "date": "Wed, 09 Feb 2022 06:09:35 GMT",
381
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.132",
382
+ "version": "0.0.0-canary.132",
383
+ "comments": {
384
+ "prerelease": [
385
+ {
386
+ "author": "jthysell@microsoft.com",
387
+ "package": "@office-iss/react-native-win32",
388
+ "commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447",
389
+ "comment": "Bump minimum Node version to 14"
390
+ },
391
+ {
392
+ "author": "beachball",
393
+ "package": "@office-iss/react-native-win32",
394
+ "comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.28",
395
+ "commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
396
+ },
397
+ {
398
+ "author": "beachball",
399
+ "package": "@office-iss/react-native-win32",
400
+ "comment": "Bump @rnw-scripts/eslint-config to v1.1.11",
401
+ "commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
402
+ },
403
+ {
404
+ "author": "beachball",
405
+ "package": "@office-iss/react-native-win32",
406
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.5",
407
+ "commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
36
408
  },
37
409
  {
38
410
  "author": "beachball",
39
411
  "package": "@office-iss/react-native-win32",
40
- "comment": "Bump @react-native-windows/virtualized-list to v0.68.0-preview.1",
41
- "commit": "56a374de6d1c238a865a0eb55407a32a08770e93"
412
+ "comment": "Bump react-native-platform-override to v1.6.5",
413
+ "commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
42
414
  }
43
415
  ]
44
416
  }
package/CHANGELOG.md CHANGED
@@ -1,26 +1,176 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- This log was last generated on Mon, 14 Feb 2022 16:07:41 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 04 May 2022 23:29:33 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.68.0-preview.2
7
+ ## 0.69.0-preview.1
8
8
 
9
- Mon, 14 Feb 2022 16:07:41 GMT
9
+ Wed, 04 May 2022 23:29:33 GMT
10
10
 
11
11
  ### Changes
12
12
 
13
- - [0.68] Bump minimum Node version to 14 (jthysell@microsoft.com)
14
- - Bump @react-native-windows/virtualized-list to v0.68.0-preview.2
13
+ - Promote 0.69 to preview (jthysell@microsoft.com)
14
+ - Bump @react-native-windows/virtualized-list to v0.69.0-preview.1
15
15
 
16
- ## 0.68.0-preview.1
16
+ ## 0.0.0-canary.148
17
17
 
18
- Mon, 07 Feb 2022 16:09:26 GMT
18
+ Mon, 02 May 2022 21:26:42 GMT
19
19
 
20
20
  ### Changes
21
21
 
22
- - Promote 0.68 to preview (ngerlem@microsoft.com)
23
- - Bump @react-native-windows/virtualized-list to v0.68.0-preview.1
22
+ - Implement no-hide-accessibility (34109996+chiaramooney@users.noreply.github.com)
23
+ - Add ListItem as an accessibilityRole type and add a List, ListItem, ControllerFor test example (patboyd@microsoft.com)
24
+
25
+ ## 0.0.0-canary.147
26
+
27
+ Wed, 27 Apr 2022 05:10:23 GMT
28
+
29
+ ### Changes
30
+
31
+ - Integrate 4/15 Test (34109996+chiaramooney@users.noreply.github.com)
32
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.41
33
+ - Bump @rnw-scripts/eslint-config to v1.1.12
34
+ - Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.6
35
+ - Bump react-native-platform-override to v1.6.11
36
+
37
+ ## 0.0.0-canary.146
38
+
39
+ Thu, 21 Apr 2022 05:09:33 GMT
40
+
41
+ ### Changes
42
+
43
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.40
44
+ - Bump react-native-platform-override to v1.6.10
45
+
46
+ ## 0.0.0-canary.145
47
+
48
+ Thu, 14 Apr 2022 05:09:19 GMT
49
+
50
+ ### Changes
51
+
52
+ - Integrate RN Nightly Build 4/11 (34109996+chiaramooney@users.noreply.github.com)
53
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.39
54
+
55
+ ## 0.0.0-canary.144
56
+
57
+ Tue, 12 Apr 2022 05:10:37 GMT
58
+
59
+ ### Changes
60
+
61
+ - Fix Overrides (34109996+chiaramooney@users.noreply.github.com)
62
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.38
63
+ - Bump react-native-platform-override to v1.6.9
64
+
65
+ ## 0.0.0-canary.143
66
+
67
+ Sat, 09 Apr 2022 05:10:10 GMT
68
+
69
+ ### Changes
70
+
71
+ - integrate 4/4 (email not defined)
72
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.37
73
+
74
+ ## 0.0.0-canary.142
75
+
76
+ Tue, 05 Apr 2022 05:10:13 GMT
77
+
78
+ ### Changes
79
+
80
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.36
81
+ - Bump react-native-platform-override to v1.6.8
82
+
83
+ ## 0.0.0-canary.141
84
+
85
+ Fri, 01 Apr 2022 05:09:58 GMT
86
+
87
+ ### Changes
88
+
89
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.35
90
+ - Bump react-native-platform-override to v1.6.7
91
+
92
+ ## 0.0.0-canary.140
93
+
94
+ Thu, 31 Mar 2022 05:10:18 GMT
95
+
96
+ ### Changes
97
+
98
+ - Integrate 3/11 (34109996+chiaramooney@users.noreply.github.com)
99
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.34
100
+
101
+ ## 0.0.0-canary.139
102
+
103
+ Tue, 29 Mar 2022 05:09:49 GMT
104
+
105
+ ### Changes
106
+
107
+ - Integrate 3/11 (34109996+chiaramooney@users.noreply.github.com)
108
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.33
109
+
110
+ ## 0.0.0-canary.138
111
+
112
+ Thu, 17 Mar 2022 05:09:18 GMT
113
+
114
+ ### Changes
115
+
116
+ - integrates 2/27/22 (email not defined)
117
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.32
118
+
119
+ ## 0.0.0-canary.137
120
+
121
+ Wed, 09 Mar 2022 06:09:07 GMT
122
+
123
+ ### Changes
124
+
125
+ - Upgrade @types/react-native (53799235+ZihanChen-MSFT@users.noreply.github.com)
126
+
127
+ ## 0.0.0-canary.136
128
+
129
+ Sat, 05 Mar 2022 06:08:58 GMT
130
+
131
+ ### Changes
132
+
133
+ - integrate 2/13/2022 Nightly RN Build (email not defined)
134
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.31
135
+
136
+ ## 0.0.0-canary.135
137
+
138
+ Sun, 13 Feb 2022 06:08:34 GMT
139
+
140
+ ### Changes
141
+
142
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.30
143
+ - Bump react-native-platform-override to v1.6.6
144
+
145
+ ## 0.0.0-canary.134
146
+
147
+ Sat, 12 Feb 2022 06:08:36 GMT
148
+
149
+ ### Changes
150
+
151
+ - Share monorepo-friendly metro config between dev packages (ngerlem@microsoft.com)
152
+
153
+ ## 0.0.0-canary.133
154
+
155
+ Fri, 11 Feb 2022 06:08:20 GMT
156
+
157
+ ### Changes
158
+
159
+ - Integrate Feb 6 Nightly RN Build (ngerlem@microsoft.com)
160
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.29
161
+ - Bump react-native-platform-override to v1.6.5
162
+
163
+ ## 0.0.0-canary.132
164
+
165
+ Wed, 09 Feb 2022 06:09:35 GMT
166
+
167
+ ### Changes
168
+
169
+ - Bump minimum Node version to 14 (jthysell@microsoft.com)
170
+ - Bump @react-native-windows/virtualized-list to v0.0.0-canary.28
171
+ - Bump @rnw-scripts/eslint-config to v1.1.11
172
+ - Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.5
173
+ - Bump react-native-platform-override to v1.6.5
24
174
 
25
175
  ## 0.0.0-canary.131
26
176
 
@@ -17,7 +17,10 @@ rn_library(
17
17
  "websocket_integration_test_server.js",
18
18
  ],
19
19
  ),
20
- labels = ["supermodule:xplat/default/public.react_native.tests"],
20
+ labels = [
21
+ "pfh:ReactNative_CommonInfrastructurePlaceholder",
22
+ "supermodule:xplat/default/public.react_native.tests",
23
+ ],
21
24
  skip_processors = True,
22
25
  visibility = ["PUBLIC"],
23
26
  deps = [
@@ -143,6 +143,13 @@ const ActionSheetIOS = {
143
143
  successCallback,
144
144
  );
145
145
  },
146
+
147
+ dismissActionSheet: () => {
148
+ invariant(RCTActionSheetManager, "ActionSheetManager doesn't exist");
149
+ if (typeof RCTActionSheetManager.dismissActionSheet === 'function') {
150
+ RCTActionSheetManager.dismissActionSheet();
151
+ }
152
+ },
146
153
  };
147
154
 
148
155
  module.exports = ActionSheetIOS;
@@ -47,6 +47,7 @@ export interface Spec extends TurboModule {
47
47
  |}) => void,
48
48
  successCallback: (completed: boolean, activityType: ?string) => void,
49
49
  ) => void;
50
+ +dismissActionSheet?: () => void;
50
51
  }
51
52
 
52
53
  export default (TurboModuleRegistry.get<Spec>('ActionSheetManager'): ?Spec);