react-native-windows 0.82.3 → 0.83.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 (223) hide show
  1. package/.flowconfig +2 -7
  2. package/Libraries/Animated/components/AnimatedFlatList.js +5 -3
  3. package/Libraries/Animated/components/AnimatedImage.js +4 -3
  4. package/Libraries/Animated/components/AnimatedSectionList.js +2 -2
  5. package/Libraries/Animated/components/AnimatedText.js +7 -3
  6. package/Libraries/Animated/components/AnimatedView.js +3 -2
  7. package/Libraries/Animated/createAnimatedComponent.js +24 -12
  8. package/Libraries/Animated/nodes/AnimatedColor.js +26 -10
  9. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +43 -15
  10. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.windows.js +43 -15
  11. package/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts +2 -2
  12. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts +2 -2
  13. package/Libraries/Components/Glyph/Glyph.js +4 -1
  14. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts +2 -2
  15. package/Libraries/Components/RefreshControl/RefreshControl.d.ts +3 -3
  16. package/Libraries/Components/SafeAreaView/SafeAreaView.d.ts +2 -2
  17. package/Libraries/Components/ScrollView/ScrollView.js +1 -0
  18. package/Libraries/Components/ScrollView/ScrollView.windows.js +1 -0
  19. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +6 -6
  20. package/Libraries/Components/Switch/Switch.d.ts +2 -2
  21. package/Libraries/Components/Switch/Switch.windows.js +1 -1
  22. package/Libraries/Components/TextInput/TextInput.d.ts +2 -5
  23. package/Libraries/Components/TextInput/TextInput.js +6 -0
  24. package/Libraries/Components/TextInput/TextInput.windows.js +6 -0
  25. package/Libraries/Components/Touchable/TouchableBounce.js +7 -7
  26. package/Libraries/Components/Touchable/TouchableBounce.windows.js +7 -7
  27. package/Libraries/Components/Touchable/TouchableWithoutFeedback.windows.js +1 -1
  28. package/Libraries/Components/View/ReactNativeStyleAttributes.js +19 -1
  29. package/Libraries/Components/View/View.d.ts +2 -2
  30. package/Libraries/Components/View/View.windows.js +0 -1
  31. package/Libraries/Components/View/ViewNativeComponent.js +13 -1
  32. package/Libraries/Core/ReactNativeVersion.js +3 -3
  33. package/Libraries/Core/setUpPerformance.js +2 -0
  34. package/Libraries/Debugging/DebuggingOverlay.js +14 -14
  35. package/Libraries/Debugging/DebuggingOverlayRegistry.js +8 -2
  36. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +5 -2
  37. package/Libraries/Image/Image.d.ts +3 -3
  38. package/Libraries/Image/ImageInjection.js +3 -6
  39. package/Libraries/Image/ImageTypes.flow.js +3 -7
  40. package/Libraries/Lists/FlatList.js +8 -8
  41. package/Libraries/Lists/SectionList.d.ts +5 -1
  42. package/Libraries/Lists/ViewabilityHelper.js +1 -1
  43. package/Libraries/Lists/VirtualizedList.js +1 -0
  44. package/Libraries/LogBox/UI/AnsiHighlight.js +4 -1
  45. package/Libraries/NativeComponent/BaseViewConfig.android.js +11 -2
  46. package/Libraries/NativeComponent/NativeComponentRegistry.d.ts +98 -0
  47. package/Libraries/NativeComponent/NativeComponentRegistry.js +2 -0
  48. package/Libraries/NativeComponent/NativeComponentRegistryUnstable.js +3 -1
  49. package/Libraries/NativeComponent/ViewConfigIgnore.windows.js +45 -0
  50. package/Libraries/Network/RCTNetworking.android.js +3 -1
  51. package/Libraries/Network/RCTNetworking.ios.js +3 -0
  52. package/Libraries/Network/RCTNetworking.windows.js +3 -0
  53. package/Libraries/Network/XMLHttpRequest.js +1 -41
  54. package/Libraries/Pressability/usePressability.js +14 -3
  55. package/Libraries/ReactNative/PaperUIManager.windows.js +3 -3
  56. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +20 -82
  57. package/Libraries/ReactNative/getNativeComponentAttributes.js +12 -0
  58. package/Libraries/Renderer/implementations/ReactFabric-dev.js +6759 -4478
  59. package/Libraries/Renderer/implementations/ReactFabric-prod.js +3169 -3119
  60. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +4732 -3535
  61. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +6646 -4070
  62. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +3136 -2825
  63. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +4761 -3312
  64. package/Libraries/Renderer/shims/ReactNative.js +3 -1
  65. package/Libraries/Renderer/shims/ReactNativeTypes.js +2 -1
  66. package/Libraries/Renderer/shims/ReactNativeTypes.windows.js +2 -1
  67. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +1 -1
  68. package/Libraries/StyleSheet/StyleSheetTypes.js +44 -0
  69. package/Libraries/StyleSheet/processBackgroundPosition.js +284 -0
  70. package/Libraries/StyleSheet/processBackgroundRepeat.js +105 -0
  71. package/Libraries/StyleSheet/processBackgroundSize.js +104 -0
  72. package/Libraries/Text/Text.d.ts +2 -2
  73. package/Libraries/Text/TextNativeComponent.js +10 -0
  74. package/Libraries/TurboModule/TurboModuleRegistry.js +3 -9
  75. package/Libraries/Utilities/DevLoadingView.js +14 -6
  76. package/Libraries/Utilities/HMRClient.js +13 -5
  77. package/Microsoft.ReactNative/CompositionComponentView.idl +2 -0
  78. package/Microsoft.ReactNative/CompositionHwndHost.idl +1 -0
  79. package/Microsoft.ReactNative/Fabric/ComponentView.cpp +1 -1
  80. package/Microsoft.ReactNative/Fabric/ComponentView.h +1 -1
  81. package/Microsoft.ReactNative/Fabric/Composition/CompositionHwndHost.cpp +10 -40
  82. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +3 -80
  83. package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.cpp +45 -12
  84. package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.h +8 -0
  85. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +61 -74
  86. package/Microsoft.ReactNative/Fabric/Composition/ParagraphComponentView.h +4 -0
  87. package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.h +1 -0
  88. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +4 -3
  89. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.h +2 -1
  90. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeWindow.cpp +245 -0
  91. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeWindow.h +80 -0
  92. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentDescriptor.h +20 -36
  93. package/Microsoft.ReactNative/Fabric/Composition/UriImageManager.cpp +5 -0
  94. package/Microsoft.ReactNative/IReactCompositionViewComponentBuilder.idl +1 -0
  95. package/Microsoft.ReactNative/Modules/ImageViewManagerModule.cpp +1 -1
  96. package/Microsoft.ReactNative/Modules/LogBoxModule.cpp +20 -94
  97. package/Microsoft.ReactNative/Modules/LogBoxModule.h +1 -3
  98. package/Microsoft.ReactNative/ReactNativeAppBuilder.cpp +0 -41
  99. package/Microsoft.ReactNative/ReactNativeAppBuilder.idl +0 -11
  100. package/Microsoft.ReactNative/ReactNativeIsland.idl +2 -3
  101. package/Microsoft.ReactNative/ReactNativeWin32App.cpp +31 -101
  102. package/Microsoft.ReactNative/ReactNativeWin32App.h +2 -13
  103. package/Microsoft.ReactNative/ReactNativeWindow.idl +44 -0
  104. package/Microsoft.ReactNative.Cxx/AutoDraw.h +9 -1
  105. package/Microsoft.ReactNative.Cxx/ReactCommon/CallInvoker.h +13 -16
  106. package/Microsoft.ReactNative.Cxx/ReactCommon/TurboModule.h +24 -36
  107. package/Microsoft.ReactNative.Cxx/ReactCommon/TurboModuleUtils.h +5 -8
  108. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/AString.h +8 -6
  109. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Array.h +32 -49
  110. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Base.h +27 -76
  111. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Bool.h +4 -2
  112. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/CallbackWrapper.h +19 -18
  113. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Class.h +25 -48
  114. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Convert.h +38 -31
  115. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Error.h +11 -6
  116. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/EventEmitter.h +47 -45
  117. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Function.h +69 -89
  118. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/HighResTimeStamp.h +8 -8
  119. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/LongLivedObject.h +6 -6
  120. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Number.h +16 -8
  121. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Object.h +17 -24
  122. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Promise.h +17 -17
  123. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Value.h +20 -29
  124. package/Microsoft.ReactNative.Cxx/ReactCommon/react/debug/react_native_assert.h +2 -7
  125. package/Microsoft.ReactNative.Cxx/ReactCommon/react/timing/primitives.h +127 -115
  126. package/PropertySheets/Generated/PackageVersion.g.props +4 -4
  127. package/PropertySheets/Warnings.props +2 -1
  128. package/ReactCommon/ReactCommon.vcxproj +11 -2
  129. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/CxxNativeModule.cpp +2 -2
  130. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/Instance.cpp +4 -2
  131. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/JSExecutor.cpp +4 -2
  132. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/JSIndexedRAMBundle.cpp +4 -2
  133. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/MethodCall.cpp +4 -2
  134. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/ModuleRegistry.cpp +5 -3
  135. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/NativeToJsBridge.cpp +4 -4
  136. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/RAMBundleRegistry.cpp +6 -4
  137. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/ReactMarker.cpp +2 -0
  138. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/TraceSection.h +25 -35
  139. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsi/jsi/test/testlib.cpp +86 -67
  140. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsiexecutor/jsireact/JSIExecutor.cpp +15 -8
  141. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsiexecutor/jsireact/JSINativeModules.cpp +4 -2
  142. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.cpp +84 -68
  143. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.h +31 -35
  144. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/Utf8.h +4 -5
  145. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/network/HttpUtils.cpp +2 -1
  146. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/core/ReactCommon/TurboModule.h +24 -36
  147. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/dom/NativeDOM.h +28 -66
  148. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/webperformance/NativePerformance.cpp +5 -0
  149. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/componentregistry/ComponentDescriptorRegistry.cpp +3 -3
  150. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/image/conversions.h +8 -4
  151. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/text/ParagraphShadowNode.cpp +19 -16
  152. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/text/platform/android/react/renderer/components/text/ParagraphState.h +8 -9
  153. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/AccessibilityPrimitives.h +25 -95
  154. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/BaseViewProps.cpp +36 -0
  155. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/accessibilityPropsConversions.h +85 -42
  156. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/core/EventDispatcher.cpp +2 -0
  157. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/core/EventQueueProcessor.cpp +2 -0
  158. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/imagemanager/primitives.h +25 -31
  159. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/uimanager/UIManager.cpp +19 -5
  160. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/ReactInstance.cpp +16 -1
  161. package/Scripts/Tfs/Layout-Desktop-Headers.ps1 +1 -15
  162. package/Scripts/creaternwapp.cmd +1 -1
  163. package/Scripts/perf/compare-results.js +357 -0
  164. package/Scripts/perf/create-perf-test.js +343 -0
  165. package/Scripts/perf/post-pr-comment.js +210 -0
  166. package/Shared/Hermes/HermesRuntimeTargetDelegate.cpp +8 -0
  167. package/Shared/Hermes/HermesRuntimeTargetDelegate.h +3 -0
  168. package/Shared/Shared.vcxitems +15 -3
  169. package/Shared/Shared.vcxitems.filters +11 -3
  170. package/codegen/NativeIntersectionObserverSpec.g.h +2 -0
  171. package/codegen/NativeNetworkingIOSSpec.g.h +2 -0
  172. package/codegen/NativePerformanceSpec.g.h +6 -0
  173. package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +229 -139
  174. package/codegen/react/components/rnwcore/ActivityIndicatorView.g.h +2 -1
  175. package/codegen/react/components/rnwcore/AndroidDrawerLayout.g.h +42 -25
  176. package/codegen/react/components/rnwcore/AndroidHorizontalScrollContentView.g.h +2 -1
  177. package/codegen/react/components/rnwcore/AndroidProgressBar.g.h +2 -1
  178. package/codegen/react/components/rnwcore/AndroidSwipeRefreshLayout.g.h +11 -6
  179. package/codegen/react/components/rnwcore/AndroidSwitch.g.h +11 -6
  180. package/codegen/react/components/rnwcore/DebuggingOverlay.g.h +1 -0
  181. package/codegen/react/components/rnwcore/InputAccessory.g.h +2 -1
  182. package/codegen/react/components/rnwcore/ModalHostView.g.h +40 -23
  183. package/codegen/react/components/rnwcore/Props.cpp +6 -1
  184. package/codegen/react/components/rnwcore/Props.h +1 -0
  185. package/codegen/react/components/rnwcore/PullToRefreshView.g.h +11 -6
  186. package/codegen/react/components/rnwcore/SafeAreaView.g.h +1 -0
  187. package/codegen/react/components/rnwcore/Switch.g.h +11 -6
  188. package/codegen/react/components/rnwcore/UnimplementedNativeView.g.h +2 -1
  189. package/codegen/react/components/rnwcore/VirtualView.g.h +41 -8
  190. package/codegen/react/components/rnwcore/VirtualViewExperimental.g.h +45 -8
  191. package/codegen/rnwcoreJSI.h +3973 -6059
  192. package/index.js +6 -0
  193. package/index.windows.js +6 -0
  194. package/jest/mockComponent.js +6 -6
  195. package/jest/setup.js +15 -10
  196. package/package.json +27 -27
  197. package/src/private/components/virtualview/VirtualView.js +22 -27
  198. package/src/private/components/virtualview/VirtualViewExperimentalNativeComponent.js +6 -0
  199. package/src/private/featureflags/ReactNativeFeatureFlags.js +100 -19
  200. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +18 -3
  201. package/src/private/setup/setUpDefaultReactNativeEnvironment.js +6 -0
  202. package/src/private/specs_DEPRECATED/components/SwitchNativeComponent.js +1 -1
  203. package/src/private/specs_DEPRECATED/modules/NativeNetworkingIOS.js +1 -0
  204. package/src/private/webapis/dom/nodes/ReactNativeElement.js +12 -2
  205. package/src/private/webapis/intersectionobserver/IntersectionObserver.js +76 -15
  206. package/src/private/webapis/intersectionobserver/internals/IntersectionObserverManager.js +1 -0
  207. package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +1 -0
  208. package/src/private/webapis/performance/ResourceTiming.js +31 -4
  209. package/src/private/webapis/performance/internals/RawPerformanceEntry.js +4 -1
  210. package/src/private/webapis/performance/specs/NativePerformance.js +3 -0
  211. package/stubs/double-conversion/double-conversion.h +5 -0
  212. package/templates/cpp-app/template.config.js +1 -1
  213. package/templates/cpp-app/windows/MyApp/MyApp.vcxproj +1 -1
  214. package/templates/cpp-lib/template.config.js +1 -1
  215. package/templates/cpp-lib/windows/MyLib/MyLib.vcxproj +1 -1
  216. package/types/index.d.ts +1 -0
  217. package/types/public/ReactNativeTypes.d.ts +115 -2
  218. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +0 -152
  219. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/conversions.h +0 -1574
  220. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/core/ShadowNode.cpp +0 -528
  221. package/Scripts/OpenSSL.nuspec +0 -39
  222. package/Scripts/OpenSSL.targets +0 -36
  223. package/codegen/rnwcoreJSI-generated.cpp +0 -3470
@@ -22,72 +22,87 @@ struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleS
22
22
  SyncMethod<bool() noexcept>{2, L"cdpInteractionMetricsEnabled"},
23
23
  SyncMethod<bool() noexcept>{3, L"cxxNativeAnimatedEnabled"},
24
24
  SyncMethod<bool() noexcept>{4, L"cxxNativeAnimatedRemoveJsSync"},
25
- SyncMethod<bool() noexcept>{5, L"disableFabricCommitInCXXAnimated"},
26
- SyncMethod<bool() noexcept>{6, L"disableMountItemReorderingAndroid"},
27
- SyncMethod<bool() noexcept>{7, L"disableOldAndroidAttachmentMetricsWorkarounds"},
28
- SyncMethod<bool() noexcept>{8, L"disableTextLayoutManagerCacheAndroid"},
29
- SyncMethod<bool() noexcept>{9, L"enableAccessibilityOrder"},
30
- SyncMethod<bool() noexcept>{10, L"enableAccumulatedUpdatesInRawPropsAndroid"},
31
- SyncMethod<bool() noexcept>{11, L"enableAndroidTextMeasurementOptimizations"},
32
- SyncMethod<bool() noexcept>{12, L"enableBridgelessArchitecture"},
33
- SyncMethod<bool() noexcept>{13, L"enableCppPropsIteratorSetter"},
34
- SyncMethod<bool() noexcept>{14, L"enableCustomFocusSearchOnClippedElementsAndroid"},
35
- SyncMethod<bool() noexcept>{15, L"enableDestroyShadowTreeRevisionAsync"},
36
- SyncMethod<bool() noexcept>{16, L"enableDoubleMeasurementFixAndroid"},
37
- SyncMethod<bool() noexcept>{17, L"enableEagerMainQueueModulesOnIOS"},
38
- SyncMethod<bool() noexcept>{18, L"enableEagerRootViewAttachment"},
39
- SyncMethod<bool() noexcept>{19, L"enableFabricLogs"},
40
- SyncMethod<bool() noexcept>{20, L"enableFabricRenderer"},
41
- SyncMethod<bool() noexcept>{21, L"enableFontScaleChangesUpdatingLayout"},
42
- SyncMethod<bool() noexcept>{22, L"enableIOSTextBaselineOffsetPerLine"},
43
- SyncMethod<bool() noexcept>{23, L"enableIOSViewClipToPaddingBox"},
44
- SyncMethod<bool() noexcept>{24, L"enableImagePrefetchingAndroid"},
45
- SyncMethod<bool() noexcept>{25, L"enableImmediateUpdateModeForContentOffsetChanges"},
46
- SyncMethod<bool() noexcept>{26, L"enableInteropViewManagerClassLookUpOptimizationIOS"},
47
- SyncMethod<bool() noexcept>{27, L"enableLayoutAnimationsOnAndroid"},
48
- SyncMethod<bool() noexcept>{28, L"enableLayoutAnimationsOnIOS"},
49
- SyncMethod<bool() noexcept>{29, L"enableMainQueueCoordinatorOnIOS"},
50
- SyncMethod<bool() noexcept>{30, L"enableModuleArgumentNSNullConversionIOS"},
51
- SyncMethod<bool() noexcept>{31, L"enableNativeCSSParsing"},
52
- SyncMethod<bool() noexcept>{32, L"enableNetworkEventReporting"},
53
- SyncMethod<bool() noexcept>{33, L"enableNewBackgroundAndBorderDrawables"},
54
- SyncMethod<bool() noexcept>{34, L"enablePreparedTextLayout"},
55
- SyncMethod<bool() noexcept>{35, L"enablePropsUpdateReconciliationAndroid"},
56
- SyncMethod<bool() noexcept>{36, L"enableResourceTimingAPI"},
57
- SyncMethod<bool() noexcept>{37, L"enableViewCulling"},
58
- SyncMethod<bool() noexcept>{38, L"enableViewRecycling"},
59
- SyncMethod<bool() noexcept>{39, L"enableViewRecyclingForScrollView"},
60
- SyncMethod<bool() noexcept>{40, L"enableViewRecyclingForText"},
61
- SyncMethod<bool() noexcept>{41, L"enableViewRecyclingForView"},
62
- SyncMethod<bool() noexcept>{42, L"enableVirtualViewDebugFeatures"},
63
- SyncMethod<bool() noexcept>{43, L"enableVirtualViewRenderState"},
64
- SyncMethod<bool() noexcept>{44, L"enableVirtualViewWindowFocusDetection"},
65
- SyncMethod<bool() noexcept>{45, L"enableWebPerformanceAPIsByDefault"},
66
- SyncMethod<bool() noexcept>{46, L"fixMappingOfEventPrioritiesBetweenFabricAndReact"},
67
- SyncMethod<bool() noexcept>{47, L"fuseboxEnabledRelease"},
68
- SyncMethod<bool() noexcept>{48, L"fuseboxNetworkInspectionEnabled"},
69
- SyncMethod<bool() noexcept>{49, L"hideOffscreenVirtualViewsOnIOS"},
70
- SyncMethod<bool() noexcept>{50, L"perfMonitorV2Enabled"},
71
- SyncMethod<double() noexcept>{51, L"preparedTextCacheSize"},
72
- SyncMethod<bool() noexcept>{52, L"preventShadowTreeCommitExhaustion"},
73
- SyncMethod<bool() noexcept>{53, L"releaseImageDataWhenConsumed"},
74
- SyncMethod<bool() noexcept>{54, L"shouldPressibilityUseW3CPointerEventsForHover"},
75
- SyncMethod<bool() noexcept>{55, L"skipActivityIdentityAssertionOnHostPause"},
76
- SyncMethod<bool() noexcept>{56, L"sweepActiveTouchOnChildNativeGesturesAndroid"},
77
- SyncMethod<bool() noexcept>{57, L"traceTurboModulePromiseRejectionsOnAndroid"},
78
- SyncMethod<bool() noexcept>{58, L"updateRuntimeShadowNodeReferencesOnCommit"},
79
- SyncMethod<bool() noexcept>{59, L"useAlwaysAvailableJSErrorHandling"},
80
- SyncMethod<bool() noexcept>{60, L"useFabricInterop"},
81
- SyncMethod<bool() noexcept>{61, L"useNativeEqualsInNativeReadableArrayAndroid"},
82
- SyncMethod<bool() noexcept>{62, L"useNativeTransformHelperAndroid"},
83
- SyncMethod<bool() noexcept>{63, L"useNativeViewConfigsInBridgelessMode"},
84
- SyncMethod<bool() noexcept>{64, L"useOptimizedEventBatchingOnAndroid"},
85
- SyncMethod<bool() noexcept>{65, L"useRawPropsJsiValue"},
86
- SyncMethod<bool() noexcept>{66, L"useShadowNodeStateOnClone"},
87
- SyncMethod<bool() noexcept>{67, L"useTurboModuleInterop"},
88
- SyncMethod<bool() noexcept>{68, L"useTurboModules"},
89
- SyncMethod<double() noexcept>{69, L"virtualViewHysteresisRatio"},
90
- SyncMethod<double() noexcept>{70, L"virtualViewPrerenderRatio"},
25
+ SyncMethod<bool() noexcept>{5, L"disableEarlyViewCommandExecution"},
26
+ SyncMethod<bool() noexcept>{6, L"disableFabricCommitInCXXAnimated"},
27
+ SyncMethod<bool() noexcept>{7, L"disableMountItemReorderingAndroid"},
28
+ SyncMethod<bool() noexcept>{8, L"disableOldAndroidAttachmentMetricsWorkarounds"},
29
+ SyncMethod<bool() noexcept>{9, L"disableTextLayoutManagerCacheAndroid"},
30
+ SyncMethod<bool() noexcept>{10, L"enableAccessibilityOrder"},
31
+ SyncMethod<bool() noexcept>{11, L"enableAccumulatedUpdatesInRawPropsAndroid"},
32
+ SyncMethod<bool() noexcept>{12, L"enableAndroidLinearText"},
33
+ SyncMethod<bool() noexcept>{13, L"enableAndroidTextMeasurementOptimizations"},
34
+ SyncMethod<bool() noexcept>{14, L"enableBridgelessArchitecture"},
35
+ SyncMethod<bool() noexcept>{15, L"enableCppPropsIteratorSetter"},
36
+ SyncMethod<bool() noexcept>{16, L"enableCustomFocusSearchOnClippedElementsAndroid"},
37
+ SyncMethod<bool() noexcept>{17, L"enableDestroyShadowTreeRevisionAsync"},
38
+ SyncMethod<bool() noexcept>{18, L"enableDoubleMeasurementFixAndroid"},
39
+ SyncMethod<bool() noexcept>{19, L"enableEagerMainQueueModulesOnIOS"},
40
+ SyncMethod<bool() noexcept>{20, L"enableEagerRootViewAttachment"},
41
+ SyncMethod<bool() noexcept>{21, L"enableFabricLogs"},
42
+ SyncMethod<bool() noexcept>{22, L"enableFabricRenderer"},
43
+ SyncMethod<bool() noexcept>{23, L"enableFontScaleChangesUpdatingLayout"},
44
+ SyncMethod<bool() noexcept>{24, L"enableIOSTextBaselineOffsetPerLine"},
45
+ SyncMethod<bool() noexcept>{25, L"enableIOSViewClipToPaddingBox"},
46
+ SyncMethod<bool() noexcept>{26, L"enableImagePrefetchingAndroid"},
47
+ SyncMethod<bool() noexcept>{27, L"enableImagePrefetchingOnUiThreadAndroid"},
48
+ SyncMethod<bool() noexcept>{28, L"enableImmediateUpdateModeForContentOffsetChanges"},
49
+ SyncMethod<bool() noexcept>{29, L"enableImperativeFocus"},
50
+ SyncMethod<bool() noexcept>{30, L"enableInteropViewManagerClassLookUpOptimizationIOS"},
51
+ SyncMethod<bool() noexcept>{31, L"enableIntersectionObserverByDefault"},
52
+ SyncMethod<bool() noexcept>{32, L"enableKeyEvents"},
53
+ SyncMethod<bool() noexcept>{33, L"enableLayoutAnimationsOnAndroid"},
54
+ SyncMethod<bool() noexcept>{34, L"enableLayoutAnimationsOnIOS"},
55
+ SyncMethod<bool() noexcept>{35, L"enableMainQueueCoordinatorOnIOS"},
56
+ SyncMethod<bool() noexcept>{36, L"enableModuleArgumentNSNullConversionIOS"},
57
+ SyncMethod<bool() noexcept>{37, L"enableNativeCSSParsing"},
58
+ SyncMethod<bool() noexcept>{38, L"enableNetworkEventReporting"},
59
+ SyncMethod<bool() noexcept>{39, L"enablePreparedTextLayout"},
60
+ SyncMethod<bool() noexcept>{40, L"enablePropsUpdateReconciliationAndroid"},
61
+ SyncMethod<bool() noexcept>{41, L"enableResourceTimingAPI"},
62
+ SyncMethod<bool() noexcept>{42, L"enableSwiftUIBasedFilters"},
63
+ SyncMethod<bool() noexcept>{43, L"enableViewCulling"},
64
+ SyncMethod<bool() noexcept>{44, L"enableViewRecycling"},
65
+ SyncMethod<bool() noexcept>{45, L"enableViewRecyclingForImage"},
66
+ SyncMethod<bool() noexcept>{46, L"enableViewRecyclingForScrollView"},
67
+ SyncMethod<bool() noexcept>{47, L"enableViewRecyclingForText"},
68
+ SyncMethod<bool() noexcept>{48, L"enableViewRecyclingForView"},
69
+ SyncMethod<bool() noexcept>{49, L"enableVirtualViewClippingWithoutScrollViewClipping"},
70
+ SyncMethod<bool() noexcept>{50, L"enableVirtualViewContainerStateExperimental"},
71
+ SyncMethod<bool() noexcept>{51, L"enableVirtualViewDebugFeatures"},
72
+ SyncMethod<bool() noexcept>{52, L"enableVirtualViewRenderState"},
73
+ SyncMethod<bool() noexcept>{53, L"enableVirtualViewWindowFocusDetection"},
74
+ SyncMethod<bool() noexcept>{54, L"enableWebPerformanceAPIsByDefault"},
75
+ SyncMethod<bool() noexcept>{55, L"fixMappingOfEventPrioritiesBetweenFabricAndReact"},
76
+ SyncMethod<bool() noexcept>{56, L"fuseboxAssertSingleHostState"},
77
+ SyncMethod<bool() noexcept>{57, L"fuseboxEnabledRelease"},
78
+ SyncMethod<bool() noexcept>{58, L"fuseboxNetworkInspectionEnabled"},
79
+ SyncMethod<bool() noexcept>{59, L"hideOffscreenVirtualViewsOnIOS"},
80
+ SyncMethod<bool() noexcept>{60, L"overrideBySynchronousMountPropsAtMountingAndroid"},
81
+ SyncMethod<bool() noexcept>{61, L"perfIssuesEnabled"},
82
+ SyncMethod<bool() noexcept>{62, L"perfMonitorV2Enabled"},
83
+ SyncMethod<double() noexcept>{63, L"preparedTextCacheSize"},
84
+ SyncMethod<bool() noexcept>{64, L"preventShadowTreeCommitExhaustion"},
85
+ SyncMethod<bool() noexcept>{65, L"shouldPressibilityUseW3CPointerEventsForHover"},
86
+ SyncMethod<bool() noexcept>{66, L"shouldTriggerResponderTransferOnScrollAndroid"},
87
+ SyncMethod<bool() noexcept>{67, L"skipActivityIdentityAssertionOnHostPause"},
88
+ SyncMethod<bool() noexcept>{68, L"sweepActiveTouchOnChildNativeGesturesAndroid"},
89
+ SyncMethod<bool() noexcept>{69, L"traceTurboModulePromiseRejectionsOnAndroid"},
90
+ SyncMethod<bool() noexcept>{70, L"updateRuntimeShadowNodeReferencesOnCommit"},
91
+ SyncMethod<bool() noexcept>{71, L"useAlwaysAvailableJSErrorHandling"},
92
+ SyncMethod<bool() noexcept>{72, L"useFabricInterop"},
93
+ SyncMethod<bool() noexcept>{73, L"useNativeEqualsInNativeReadableArrayAndroid"},
94
+ SyncMethod<bool() noexcept>{74, L"useNativeTransformHelperAndroid"},
95
+ SyncMethod<bool() noexcept>{75, L"useNativeViewConfigsInBridgelessMode"},
96
+ SyncMethod<bool() noexcept>{76, L"useOptimizedEventBatchingOnAndroid"},
97
+ SyncMethod<bool() noexcept>{77, L"useRawPropsJsiValue"},
98
+ SyncMethod<bool() noexcept>{78, L"useShadowNodeStateOnClone"},
99
+ SyncMethod<bool() noexcept>{79, L"useSharedAnimatedBackend"},
100
+ SyncMethod<bool() noexcept>{80, L"useTraitHiddenOnAndroid"},
101
+ SyncMethod<bool() noexcept>{81, L"useTurboModuleInterop"},
102
+ SyncMethod<bool() noexcept>{82, L"useTurboModules"},
103
+ SyncMethod<double() noexcept>{83, L"viewCullingOutsetRatio"},
104
+ SyncMethod<double() noexcept>{84, L"virtualViewHysteresisRatio"},
105
+ SyncMethod<double() noexcept>{85, L"virtualViewPrerenderRatio"},
91
106
  };
92
107
 
93
108
  template <class TModule>
@@ -121,331 +136,406 @@ struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleS
121
136
  " REACT_SYNC_METHOD(cxxNativeAnimatedRemoveJsSync) static bool cxxNativeAnimatedRemoveJsSync() noexcept { /* implementation */ }\n");
122
137
  REACT_SHOW_METHOD_SPEC_ERRORS(
123
138
  5,
139
+ "disableEarlyViewCommandExecution",
140
+ " REACT_SYNC_METHOD(disableEarlyViewCommandExecution) bool disableEarlyViewCommandExecution() noexcept { /* implementation */ }\n"
141
+ " REACT_SYNC_METHOD(disableEarlyViewCommandExecution) static bool disableEarlyViewCommandExecution() noexcept { /* implementation */ }\n");
142
+ REACT_SHOW_METHOD_SPEC_ERRORS(
143
+ 6,
124
144
  "disableFabricCommitInCXXAnimated",
125
145
  " REACT_SYNC_METHOD(disableFabricCommitInCXXAnimated) bool disableFabricCommitInCXXAnimated() noexcept { /* implementation */ }\n"
126
146
  " REACT_SYNC_METHOD(disableFabricCommitInCXXAnimated) static bool disableFabricCommitInCXXAnimated() noexcept { /* implementation */ }\n");
127
147
  REACT_SHOW_METHOD_SPEC_ERRORS(
128
- 6,
148
+ 7,
129
149
  "disableMountItemReorderingAndroid",
130
150
  " REACT_SYNC_METHOD(disableMountItemReorderingAndroid) bool disableMountItemReorderingAndroid() noexcept { /* implementation */ }\n"
131
151
  " REACT_SYNC_METHOD(disableMountItemReorderingAndroid) static bool disableMountItemReorderingAndroid() noexcept { /* implementation */ }\n");
132
152
  REACT_SHOW_METHOD_SPEC_ERRORS(
133
- 7,
153
+ 8,
134
154
  "disableOldAndroidAttachmentMetricsWorkarounds",
135
155
  " REACT_SYNC_METHOD(disableOldAndroidAttachmentMetricsWorkarounds) bool disableOldAndroidAttachmentMetricsWorkarounds() noexcept { /* implementation */ }\n"
136
156
  " REACT_SYNC_METHOD(disableOldAndroidAttachmentMetricsWorkarounds) static bool disableOldAndroidAttachmentMetricsWorkarounds() noexcept { /* implementation */ }\n");
137
157
  REACT_SHOW_METHOD_SPEC_ERRORS(
138
- 8,
158
+ 9,
139
159
  "disableTextLayoutManagerCacheAndroid",
140
160
  " REACT_SYNC_METHOD(disableTextLayoutManagerCacheAndroid) bool disableTextLayoutManagerCacheAndroid() noexcept { /* implementation */ }\n"
141
161
  " REACT_SYNC_METHOD(disableTextLayoutManagerCacheAndroid) static bool disableTextLayoutManagerCacheAndroid() noexcept { /* implementation */ }\n");
142
162
  REACT_SHOW_METHOD_SPEC_ERRORS(
143
- 9,
163
+ 10,
144
164
  "enableAccessibilityOrder",
145
165
  " REACT_SYNC_METHOD(enableAccessibilityOrder) bool enableAccessibilityOrder() noexcept { /* implementation */ }\n"
146
166
  " REACT_SYNC_METHOD(enableAccessibilityOrder) static bool enableAccessibilityOrder() noexcept { /* implementation */ }\n");
147
167
  REACT_SHOW_METHOD_SPEC_ERRORS(
148
- 10,
168
+ 11,
149
169
  "enableAccumulatedUpdatesInRawPropsAndroid",
150
170
  " REACT_SYNC_METHOD(enableAccumulatedUpdatesInRawPropsAndroid) bool enableAccumulatedUpdatesInRawPropsAndroid() noexcept { /* implementation */ }\n"
151
171
  " REACT_SYNC_METHOD(enableAccumulatedUpdatesInRawPropsAndroid) static bool enableAccumulatedUpdatesInRawPropsAndroid() noexcept { /* implementation */ }\n");
152
172
  REACT_SHOW_METHOD_SPEC_ERRORS(
153
- 11,
173
+ 12,
174
+ "enableAndroidLinearText",
175
+ " REACT_SYNC_METHOD(enableAndroidLinearText) bool enableAndroidLinearText() noexcept { /* implementation */ }\n"
176
+ " REACT_SYNC_METHOD(enableAndroidLinearText) static bool enableAndroidLinearText() noexcept { /* implementation */ }\n");
177
+ REACT_SHOW_METHOD_SPEC_ERRORS(
178
+ 13,
154
179
  "enableAndroidTextMeasurementOptimizations",
155
180
  " REACT_SYNC_METHOD(enableAndroidTextMeasurementOptimizations) bool enableAndroidTextMeasurementOptimizations() noexcept { /* implementation */ }\n"
156
181
  " REACT_SYNC_METHOD(enableAndroidTextMeasurementOptimizations) static bool enableAndroidTextMeasurementOptimizations() noexcept { /* implementation */ }\n");
157
182
  REACT_SHOW_METHOD_SPEC_ERRORS(
158
- 12,
183
+ 14,
159
184
  "enableBridgelessArchitecture",
160
185
  " REACT_SYNC_METHOD(enableBridgelessArchitecture) bool enableBridgelessArchitecture() noexcept { /* implementation */ }\n"
161
186
  " REACT_SYNC_METHOD(enableBridgelessArchitecture) static bool enableBridgelessArchitecture() noexcept { /* implementation */ }\n");
162
187
  REACT_SHOW_METHOD_SPEC_ERRORS(
163
- 13,
188
+ 15,
164
189
  "enableCppPropsIteratorSetter",
165
190
  " REACT_SYNC_METHOD(enableCppPropsIteratorSetter) bool enableCppPropsIteratorSetter() noexcept { /* implementation */ }\n"
166
191
  " REACT_SYNC_METHOD(enableCppPropsIteratorSetter) static bool enableCppPropsIteratorSetter() noexcept { /* implementation */ }\n");
167
192
  REACT_SHOW_METHOD_SPEC_ERRORS(
168
- 14,
193
+ 16,
169
194
  "enableCustomFocusSearchOnClippedElementsAndroid",
170
195
  " REACT_SYNC_METHOD(enableCustomFocusSearchOnClippedElementsAndroid) bool enableCustomFocusSearchOnClippedElementsAndroid() noexcept { /* implementation */ }\n"
171
196
  " REACT_SYNC_METHOD(enableCustomFocusSearchOnClippedElementsAndroid) static bool enableCustomFocusSearchOnClippedElementsAndroid() noexcept { /* implementation */ }\n");
172
197
  REACT_SHOW_METHOD_SPEC_ERRORS(
173
- 15,
198
+ 17,
174
199
  "enableDestroyShadowTreeRevisionAsync",
175
200
  " REACT_SYNC_METHOD(enableDestroyShadowTreeRevisionAsync) bool enableDestroyShadowTreeRevisionAsync() noexcept { /* implementation */ }\n"
176
201
  " REACT_SYNC_METHOD(enableDestroyShadowTreeRevisionAsync) static bool enableDestroyShadowTreeRevisionAsync() noexcept { /* implementation */ }\n");
177
202
  REACT_SHOW_METHOD_SPEC_ERRORS(
178
- 16,
203
+ 18,
179
204
  "enableDoubleMeasurementFixAndroid",
180
205
  " REACT_SYNC_METHOD(enableDoubleMeasurementFixAndroid) bool enableDoubleMeasurementFixAndroid() noexcept { /* implementation */ }\n"
181
206
  " REACT_SYNC_METHOD(enableDoubleMeasurementFixAndroid) static bool enableDoubleMeasurementFixAndroid() noexcept { /* implementation */ }\n");
182
207
  REACT_SHOW_METHOD_SPEC_ERRORS(
183
- 17,
208
+ 19,
184
209
  "enableEagerMainQueueModulesOnIOS",
185
210
  " REACT_SYNC_METHOD(enableEagerMainQueueModulesOnIOS) bool enableEagerMainQueueModulesOnIOS() noexcept { /* implementation */ }\n"
186
211
  " REACT_SYNC_METHOD(enableEagerMainQueueModulesOnIOS) static bool enableEagerMainQueueModulesOnIOS() noexcept { /* implementation */ }\n");
187
212
  REACT_SHOW_METHOD_SPEC_ERRORS(
188
- 18,
213
+ 20,
189
214
  "enableEagerRootViewAttachment",
190
215
  " REACT_SYNC_METHOD(enableEagerRootViewAttachment) bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n"
191
216
  " REACT_SYNC_METHOD(enableEagerRootViewAttachment) static bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n");
192
217
  REACT_SHOW_METHOD_SPEC_ERRORS(
193
- 19,
218
+ 21,
194
219
  "enableFabricLogs",
195
220
  " REACT_SYNC_METHOD(enableFabricLogs) bool enableFabricLogs() noexcept { /* implementation */ }\n"
196
221
  " REACT_SYNC_METHOD(enableFabricLogs) static bool enableFabricLogs() noexcept { /* implementation */ }\n");
197
222
  REACT_SHOW_METHOD_SPEC_ERRORS(
198
- 20,
223
+ 22,
199
224
  "enableFabricRenderer",
200
225
  " REACT_SYNC_METHOD(enableFabricRenderer) bool enableFabricRenderer() noexcept { /* implementation */ }\n"
201
226
  " REACT_SYNC_METHOD(enableFabricRenderer) static bool enableFabricRenderer() noexcept { /* implementation */ }\n");
202
227
  REACT_SHOW_METHOD_SPEC_ERRORS(
203
- 21,
228
+ 23,
204
229
  "enableFontScaleChangesUpdatingLayout",
205
230
  " REACT_SYNC_METHOD(enableFontScaleChangesUpdatingLayout) bool enableFontScaleChangesUpdatingLayout() noexcept { /* implementation */ }\n"
206
231
  " REACT_SYNC_METHOD(enableFontScaleChangesUpdatingLayout) static bool enableFontScaleChangesUpdatingLayout() noexcept { /* implementation */ }\n");
207
232
  REACT_SHOW_METHOD_SPEC_ERRORS(
208
- 22,
233
+ 24,
209
234
  "enableIOSTextBaselineOffsetPerLine",
210
235
  " REACT_SYNC_METHOD(enableIOSTextBaselineOffsetPerLine) bool enableIOSTextBaselineOffsetPerLine() noexcept { /* implementation */ }\n"
211
236
  " REACT_SYNC_METHOD(enableIOSTextBaselineOffsetPerLine) static bool enableIOSTextBaselineOffsetPerLine() noexcept { /* implementation */ }\n");
212
237
  REACT_SHOW_METHOD_SPEC_ERRORS(
213
- 23,
238
+ 25,
214
239
  "enableIOSViewClipToPaddingBox",
215
240
  " REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n"
216
241
  " REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) static bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n");
217
242
  REACT_SHOW_METHOD_SPEC_ERRORS(
218
- 24,
243
+ 26,
219
244
  "enableImagePrefetchingAndroid",
220
245
  " REACT_SYNC_METHOD(enableImagePrefetchingAndroid) bool enableImagePrefetchingAndroid() noexcept { /* implementation */ }\n"
221
246
  " REACT_SYNC_METHOD(enableImagePrefetchingAndroid) static bool enableImagePrefetchingAndroid() noexcept { /* implementation */ }\n");
222
247
  REACT_SHOW_METHOD_SPEC_ERRORS(
223
- 25,
248
+ 27,
249
+ "enableImagePrefetchingOnUiThreadAndroid",
250
+ " REACT_SYNC_METHOD(enableImagePrefetchingOnUiThreadAndroid) bool enableImagePrefetchingOnUiThreadAndroid() noexcept { /* implementation */ }\n"
251
+ " REACT_SYNC_METHOD(enableImagePrefetchingOnUiThreadAndroid) static bool enableImagePrefetchingOnUiThreadAndroid() noexcept { /* implementation */ }\n");
252
+ REACT_SHOW_METHOD_SPEC_ERRORS(
253
+ 28,
224
254
  "enableImmediateUpdateModeForContentOffsetChanges",
225
255
  " REACT_SYNC_METHOD(enableImmediateUpdateModeForContentOffsetChanges) bool enableImmediateUpdateModeForContentOffsetChanges() noexcept { /* implementation */ }\n"
226
256
  " REACT_SYNC_METHOD(enableImmediateUpdateModeForContentOffsetChanges) static bool enableImmediateUpdateModeForContentOffsetChanges() noexcept { /* implementation */ }\n");
227
257
  REACT_SHOW_METHOD_SPEC_ERRORS(
228
- 26,
258
+ 29,
259
+ "enableImperativeFocus",
260
+ " REACT_SYNC_METHOD(enableImperativeFocus) bool enableImperativeFocus() noexcept { /* implementation */ }\n"
261
+ " REACT_SYNC_METHOD(enableImperativeFocus) static bool enableImperativeFocus() noexcept { /* implementation */ }\n");
262
+ REACT_SHOW_METHOD_SPEC_ERRORS(
263
+ 30,
229
264
  "enableInteropViewManagerClassLookUpOptimizationIOS",
230
265
  " REACT_SYNC_METHOD(enableInteropViewManagerClassLookUpOptimizationIOS) bool enableInteropViewManagerClassLookUpOptimizationIOS() noexcept { /* implementation */ }\n"
231
266
  " REACT_SYNC_METHOD(enableInteropViewManagerClassLookUpOptimizationIOS) static bool enableInteropViewManagerClassLookUpOptimizationIOS() noexcept { /* implementation */ }\n");
232
267
  REACT_SHOW_METHOD_SPEC_ERRORS(
233
- 27,
268
+ 31,
269
+ "enableIntersectionObserverByDefault",
270
+ " REACT_SYNC_METHOD(enableIntersectionObserverByDefault) bool enableIntersectionObserverByDefault() noexcept { /* implementation */ }\n"
271
+ " REACT_SYNC_METHOD(enableIntersectionObserverByDefault) static bool enableIntersectionObserverByDefault() noexcept { /* implementation */ }\n");
272
+ REACT_SHOW_METHOD_SPEC_ERRORS(
273
+ 32,
274
+ "enableKeyEvents",
275
+ " REACT_SYNC_METHOD(enableKeyEvents) bool enableKeyEvents() noexcept { /* implementation */ }\n"
276
+ " REACT_SYNC_METHOD(enableKeyEvents) static bool enableKeyEvents() noexcept { /* implementation */ }\n");
277
+ REACT_SHOW_METHOD_SPEC_ERRORS(
278
+ 33,
234
279
  "enableLayoutAnimationsOnAndroid",
235
280
  " REACT_SYNC_METHOD(enableLayoutAnimationsOnAndroid) bool enableLayoutAnimationsOnAndroid() noexcept { /* implementation */ }\n"
236
281
  " REACT_SYNC_METHOD(enableLayoutAnimationsOnAndroid) static bool enableLayoutAnimationsOnAndroid() noexcept { /* implementation */ }\n");
237
282
  REACT_SHOW_METHOD_SPEC_ERRORS(
238
- 28,
283
+ 34,
239
284
  "enableLayoutAnimationsOnIOS",
240
285
  " REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n"
241
286
  " REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) static bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n");
242
287
  REACT_SHOW_METHOD_SPEC_ERRORS(
243
- 29,
288
+ 35,
244
289
  "enableMainQueueCoordinatorOnIOS",
245
290
  " REACT_SYNC_METHOD(enableMainQueueCoordinatorOnIOS) bool enableMainQueueCoordinatorOnIOS() noexcept { /* implementation */ }\n"
246
291
  " REACT_SYNC_METHOD(enableMainQueueCoordinatorOnIOS) static bool enableMainQueueCoordinatorOnIOS() noexcept { /* implementation */ }\n");
247
292
  REACT_SHOW_METHOD_SPEC_ERRORS(
248
- 30,
293
+ 36,
249
294
  "enableModuleArgumentNSNullConversionIOS",
250
295
  " REACT_SYNC_METHOD(enableModuleArgumentNSNullConversionIOS) bool enableModuleArgumentNSNullConversionIOS() noexcept { /* implementation */ }\n"
251
296
  " REACT_SYNC_METHOD(enableModuleArgumentNSNullConversionIOS) static bool enableModuleArgumentNSNullConversionIOS() noexcept { /* implementation */ }\n");
252
297
  REACT_SHOW_METHOD_SPEC_ERRORS(
253
- 31,
298
+ 37,
254
299
  "enableNativeCSSParsing",
255
300
  " REACT_SYNC_METHOD(enableNativeCSSParsing) bool enableNativeCSSParsing() noexcept { /* implementation */ }\n"
256
301
  " REACT_SYNC_METHOD(enableNativeCSSParsing) static bool enableNativeCSSParsing() noexcept { /* implementation */ }\n");
257
302
  REACT_SHOW_METHOD_SPEC_ERRORS(
258
- 32,
303
+ 38,
259
304
  "enableNetworkEventReporting",
260
305
  " REACT_SYNC_METHOD(enableNetworkEventReporting) bool enableNetworkEventReporting() noexcept { /* implementation */ }\n"
261
306
  " REACT_SYNC_METHOD(enableNetworkEventReporting) static bool enableNetworkEventReporting() noexcept { /* implementation */ }\n");
262
307
  REACT_SHOW_METHOD_SPEC_ERRORS(
263
- 33,
264
- "enableNewBackgroundAndBorderDrawables",
265
- " REACT_SYNC_METHOD(enableNewBackgroundAndBorderDrawables) bool enableNewBackgroundAndBorderDrawables() noexcept { /* implementation */ }\n"
266
- " REACT_SYNC_METHOD(enableNewBackgroundAndBorderDrawables) static bool enableNewBackgroundAndBorderDrawables() noexcept { /* implementation */ }\n");
267
- REACT_SHOW_METHOD_SPEC_ERRORS(
268
- 34,
308
+ 39,
269
309
  "enablePreparedTextLayout",
270
310
  " REACT_SYNC_METHOD(enablePreparedTextLayout) bool enablePreparedTextLayout() noexcept { /* implementation */ }\n"
271
311
  " REACT_SYNC_METHOD(enablePreparedTextLayout) static bool enablePreparedTextLayout() noexcept { /* implementation */ }\n");
272
312
  REACT_SHOW_METHOD_SPEC_ERRORS(
273
- 35,
313
+ 40,
274
314
  "enablePropsUpdateReconciliationAndroid",
275
315
  " REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n"
276
316
  " REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) static bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n");
277
317
  REACT_SHOW_METHOD_SPEC_ERRORS(
278
- 36,
318
+ 41,
279
319
  "enableResourceTimingAPI",
280
320
  " REACT_SYNC_METHOD(enableResourceTimingAPI) bool enableResourceTimingAPI() noexcept { /* implementation */ }\n"
281
321
  " REACT_SYNC_METHOD(enableResourceTimingAPI) static bool enableResourceTimingAPI() noexcept { /* implementation */ }\n");
282
322
  REACT_SHOW_METHOD_SPEC_ERRORS(
283
- 37,
323
+ 42,
324
+ "enableSwiftUIBasedFilters",
325
+ " REACT_SYNC_METHOD(enableSwiftUIBasedFilters) bool enableSwiftUIBasedFilters() noexcept { /* implementation */ }\n"
326
+ " REACT_SYNC_METHOD(enableSwiftUIBasedFilters) static bool enableSwiftUIBasedFilters() noexcept { /* implementation */ }\n");
327
+ REACT_SHOW_METHOD_SPEC_ERRORS(
328
+ 43,
284
329
  "enableViewCulling",
285
330
  " REACT_SYNC_METHOD(enableViewCulling) bool enableViewCulling() noexcept { /* implementation */ }\n"
286
331
  " REACT_SYNC_METHOD(enableViewCulling) static bool enableViewCulling() noexcept { /* implementation */ }\n");
287
332
  REACT_SHOW_METHOD_SPEC_ERRORS(
288
- 38,
333
+ 44,
289
334
  "enableViewRecycling",
290
335
  " REACT_SYNC_METHOD(enableViewRecycling) bool enableViewRecycling() noexcept { /* implementation */ }\n"
291
336
  " REACT_SYNC_METHOD(enableViewRecycling) static bool enableViewRecycling() noexcept { /* implementation */ }\n");
292
337
  REACT_SHOW_METHOD_SPEC_ERRORS(
293
- 39,
338
+ 45,
339
+ "enableViewRecyclingForImage",
340
+ " REACT_SYNC_METHOD(enableViewRecyclingForImage) bool enableViewRecyclingForImage() noexcept { /* implementation */ }\n"
341
+ " REACT_SYNC_METHOD(enableViewRecyclingForImage) static bool enableViewRecyclingForImage() noexcept { /* implementation */ }\n");
342
+ REACT_SHOW_METHOD_SPEC_ERRORS(
343
+ 46,
294
344
  "enableViewRecyclingForScrollView",
295
345
  " REACT_SYNC_METHOD(enableViewRecyclingForScrollView) bool enableViewRecyclingForScrollView() noexcept { /* implementation */ }\n"
296
346
  " REACT_SYNC_METHOD(enableViewRecyclingForScrollView) static bool enableViewRecyclingForScrollView() noexcept { /* implementation */ }\n");
297
347
  REACT_SHOW_METHOD_SPEC_ERRORS(
298
- 40,
348
+ 47,
299
349
  "enableViewRecyclingForText",
300
350
  " REACT_SYNC_METHOD(enableViewRecyclingForText) bool enableViewRecyclingForText() noexcept { /* implementation */ }\n"
301
351
  " REACT_SYNC_METHOD(enableViewRecyclingForText) static bool enableViewRecyclingForText() noexcept { /* implementation */ }\n");
302
352
  REACT_SHOW_METHOD_SPEC_ERRORS(
303
- 41,
353
+ 48,
304
354
  "enableViewRecyclingForView",
305
355
  " REACT_SYNC_METHOD(enableViewRecyclingForView) bool enableViewRecyclingForView() noexcept { /* implementation */ }\n"
306
356
  " REACT_SYNC_METHOD(enableViewRecyclingForView) static bool enableViewRecyclingForView() noexcept { /* implementation */ }\n");
307
357
  REACT_SHOW_METHOD_SPEC_ERRORS(
308
- 42,
358
+ 49,
359
+ "enableVirtualViewClippingWithoutScrollViewClipping",
360
+ " REACT_SYNC_METHOD(enableVirtualViewClippingWithoutScrollViewClipping) bool enableVirtualViewClippingWithoutScrollViewClipping() noexcept { /* implementation */ }\n"
361
+ " REACT_SYNC_METHOD(enableVirtualViewClippingWithoutScrollViewClipping) static bool enableVirtualViewClippingWithoutScrollViewClipping() noexcept { /* implementation */ }\n");
362
+ REACT_SHOW_METHOD_SPEC_ERRORS(
363
+ 50,
364
+ "enableVirtualViewContainerStateExperimental",
365
+ " REACT_SYNC_METHOD(enableVirtualViewContainerStateExperimental) bool enableVirtualViewContainerStateExperimental() noexcept { /* implementation */ }\n"
366
+ " REACT_SYNC_METHOD(enableVirtualViewContainerStateExperimental) static bool enableVirtualViewContainerStateExperimental() noexcept { /* implementation */ }\n");
367
+ REACT_SHOW_METHOD_SPEC_ERRORS(
368
+ 51,
309
369
  "enableVirtualViewDebugFeatures",
310
370
  " REACT_SYNC_METHOD(enableVirtualViewDebugFeatures) bool enableVirtualViewDebugFeatures() noexcept { /* implementation */ }\n"
311
371
  " REACT_SYNC_METHOD(enableVirtualViewDebugFeatures) static bool enableVirtualViewDebugFeatures() noexcept { /* implementation */ }\n");
312
372
  REACT_SHOW_METHOD_SPEC_ERRORS(
313
- 43,
373
+ 52,
314
374
  "enableVirtualViewRenderState",
315
375
  " REACT_SYNC_METHOD(enableVirtualViewRenderState) bool enableVirtualViewRenderState() noexcept { /* implementation */ }\n"
316
376
  " REACT_SYNC_METHOD(enableVirtualViewRenderState) static bool enableVirtualViewRenderState() noexcept { /* implementation */ }\n");
317
377
  REACT_SHOW_METHOD_SPEC_ERRORS(
318
- 44,
378
+ 53,
319
379
  "enableVirtualViewWindowFocusDetection",
320
380
  " REACT_SYNC_METHOD(enableVirtualViewWindowFocusDetection) bool enableVirtualViewWindowFocusDetection() noexcept { /* implementation */ }\n"
321
381
  " REACT_SYNC_METHOD(enableVirtualViewWindowFocusDetection) static bool enableVirtualViewWindowFocusDetection() noexcept { /* implementation */ }\n");
322
382
  REACT_SHOW_METHOD_SPEC_ERRORS(
323
- 45,
383
+ 54,
324
384
  "enableWebPerformanceAPIsByDefault",
325
385
  " REACT_SYNC_METHOD(enableWebPerformanceAPIsByDefault) bool enableWebPerformanceAPIsByDefault() noexcept { /* implementation */ }\n"
326
386
  " REACT_SYNC_METHOD(enableWebPerformanceAPIsByDefault) static bool enableWebPerformanceAPIsByDefault() noexcept { /* implementation */ }\n");
327
387
  REACT_SHOW_METHOD_SPEC_ERRORS(
328
- 46,
388
+ 55,
329
389
  "fixMappingOfEventPrioritiesBetweenFabricAndReact",
330
390
  " REACT_SYNC_METHOD(fixMappingOfEventPrioritiesBetweenFabricAndReact) bool fixMappingOfEventPrioritiesBetweenFabricAndReact() noexcept { /* implementation */ }\n"
331
391
  " REACT_SYNC_METHOD(fixMappingOfEventPrioritiesBetweenFabricAndReact) static bool fixMappingOfEventPrioritiesBetweenFabricAndReact() noexcept { /* implementation */ }\n");
332
392
  REACT_SHOW_METHOD_SPEC_ERRORS(
333
- 47,
393
+ 56,
394
+ "fuseboxAssertSingleHostState",
395
+ " REACT_SYNC_METHOD(fuseboxAssertSingleHostState) bool fuseboxAssertSingleHostState() noexcept { /* implementation */ }\n"
396
+ " REACT_SYNC_METHOD(fuseboxAssertSingleHostState) static bool fuseboxAssertSingleHostState() noexcept { /* implementation */ }\n");
397
+ REACT_SHOW_METHOD_SPEC_ERRORS(
398
+ 57,
334
399
  "fuseboxEnabledRelease",
335
400
  " REACT_SYNC_METHOD(fuseboxEnabledRelease) bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n"
336
401
  " REACT_SYNC_METHOD(fuseboxEnabledRelease) static bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n");
337
402
  REACT_SHOW_METHOD_SPEC_ERRORS(
338
- 48,
403
+ 58,
339
404
  "fuseboxNetworkInspectionEnabled",
340
405
  " REACT_SYNC_METHOD(fuseboxNetworkInspectionEnabled) bool fuseboxNetworkInspectionEnabled() noexcept { /* implementation */ }\n"
341
406
  " REACT_SYNC_METHOD(fuseboxNetworkInspectionEnabled) static bool fuseboxNetworkInspectionEnabled() noexcept { /* implementation */ }\n");
342
407
  REACT_SHOW_METHOD_SPEC_ERRORS(
343
- 49,
408
+ 59,
344
409
  "hideOffscreenVirtualViewsOnIOS",
345
410
  " REACT_SYNC_METHOD(hideOffscreenVirtualViewsOnIOS) bool hideOffscreenVirtualViewsOnIOS() noexcept { /* implementation */ }\n"
346
411
  " REACT_SYNC_METHOD(hideOffscreenVirtualViewsOnIOS) static bool hideOffscreenVirtualViewsOnIOS() noexcept { /* implementation */ }\n");
347
412
  REACT_SHOW_METHOD_SPEC_ERRORS(
348
- 50,
413
+ 60,
414
+ "overrideBySynchronousMountPropsAtMountingAndroid",
415
+ " REACT_SYNC_METHOD(overrideBySynchronousMountPropsAtMountingAndroid) bool overrideBySynchronousMountPropsAtMountingAndroid() noexcept { /* implementation */ }\n"
416
+ " REACT_SYNC_METHOD(overrideBySynchronousMountPropsAtMountingAndroid) static bool overrideBySynchronousMountPropsAtMountingAndroid() noexcept { /* implementation */ }\n");
417
+ REACT_SHOW_METHOD_SPEC_ERRORS(
418
+ 61,
419
+ "perfIssuesEnabled",
420
+ " REACT_SYNC_METHOD(perfIssuesEnabled) bool perfIssuesEnabled() noexcept { /* implementation */ }\n"
421
+ " REACT_SYNC_METHOD(perfIssuesEnabled) static bool perfIssuesEnabled() noexcept { /* implementation */ }\n");
422
+ REACT_SHOW_METHOD_SPEC_ERRORS(
423
+ 62,
349
424
  "perfMonitorV2Enabled",
350
425
  " REACT_SYNC_METHOD(perfMonitorV2Enabled) bool perfMonitorV2Enabled() noexcept { /* implementation */ }\n"
351
426
  " REACT_SYNC_METHOD(perfMonitorV2Enabled) static bool perfMonitorV2Enabled() noexcept { /* implementation */ }\n");
352
427
  REACT_SHOW_METHOD_SPEC_ERRORS(
353
- 51,
428
+ 63,
354
429
  "preparedTextCacheSize",
355
430
  " REACT_SYNC_METHOD(preparedTextCacheSize) double preparedTextCacheSize() noexcept { /* implementation */ }\n"
356
431
  " REACT_SYNC_METHOD(preparedTextCacheSize) static double preparedTextCacheSize() noexcept { /* implementation */ }\n");
357
432
  REACT_SHOW_METHOD_SPEC_ERRORS(
358
- 52,
433
+ 64,
359
434
  "preventShadowTreeCommitExhaustion",
360
435
  " REACT_SYNC_METHOD(preventShadowTreeCommitExhaustion) bool preventShadowTreeCommitExhaustion() noexcept { /* implementation */ }\n"
361
436
  " REACT_SYNC_METHOD(preventShadowTreeCommitExhaustion) static bool preventShadowTreeCommitExhaustion() noexcept { /* implementation */ }\n");
362
437
  REACT_SHOW_METHOD_SPEC_ERRORS(
363
- 53,
364
- "releaseImageDataWhenConsumed",
365
- " REACT_SYNC_METHOD(releaseImageDataWhenConsumed) bool releaseImageDataWhenConsumed() noexcept { /* implementation */ }\n"
366
- " REACT_SYNC_METHOD(releaseImageDataWhenConsumed) static bool releaseImageDataWhenConsumed() noexcept { /* implementation */ }\n");
367
- REACT_SHOW_METHOD_SPEC_ERRORS(
368
- 54,
438
+ 65,
369
439
  "shouldPressibilityUseW3CPointerEventsForHover",
370
440
  " REACT_SYNC_METHOD(shouldPressibilityUseW3CPointerEventsForHover) bool shouldPressibilityUseW3CPointerEventsForHover() noexcept { /* implementation */ }\n"
371
441
  " REACT_SYNC_METHOD(shouldPressibilityUseW3CPointerEventsForHover) static bool shouldPressibilityUseW3CPointerEventsForHover() noexcept { /* implementation */ }\n");
372
442
  REACT_SHOW_METHOD_SPEC_ERRORS(
373
- 55,
443
+ 66,
444
+ "shouldTriggerResponderTransferOnScrollAndroid",
445
+ " REACT_SYNC_METHOD(shouldTriggerResponderTransferOnScrollAndroid) bool shouldTriggerResponderTransferOnScrollAndroid() noexcept { /* implementation */ }\n"
446
+ " REACT_SYNC_METHOD(shouldTriggerResponderTransferOnScrollAndroid) static bool shouldTriggerResponderTransferOnScrollAndroid() noexcept { /* implementation */ }\n");
447
+ REACT_SHOW_METHOD_SPEC_ERRORS(
448
+ 67,
374
449
  "skipActivityIdentityAssertionOnHostPause",
375
450
  " REACT_SYNC_METHOD(skipActivityIdentityAssertionOnHostPause) bool skipActivityIdentityAssertionOnHostPause() noexcept { /* implementation */ }\n"
376
451
  " REACT_SYNC_METHOD(skipActivityIdentityAssertionOnHostPause) static bool skipActivityIdentityAssertionOnHostPause() noexcept { /* implementation */ }\n");
377
452
  REACT_SHOW_METHOD_SPEC_ERRORS(
378
- 56,
453
+ 68,
379
454
  "sweepActiveTouchOnChildNativeGesturesAndroid",
380
455
  " REACT_SYNC_METHOD(sweepActiveTouchOnChildNativeGesturesAndroid) bool sweepActiveTouchOnChildNativeGesturesAndroid() noexcept { /* implementation */ }\n"
381
456
  " REACT_SYNC_METHOD(sweepActiveTouchOnChildNativeGesturesAndroid) static bool sweepActiveTouchOnChildNativeGesturesAndroid() noexcept { /* implementation */ }\n");
382
457
  REACT_SHOW_METHOD_SPEC_ERRORS(
383
- 57,
458
+ 69,
384
459
  "traceTurboModulePromiseRejectionsOnAndroid",
385
460
  " REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n"
386
461
  " REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) static bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n");
387
462
  REACT_SHOW_METHOD_SPEC_ERRORS(
388
- 58,
463
+ 70,
389
464
  "updateRuntimeShadowNodeReferencesOnCommit",
390
465
  " REACT_SYNC_METHOD(updateRuntimeShadowNodeReferencesOnCommit) bool updateRuntimeShadowNodeReferencesOnCommit() noexcept { /* implementation */ }\n"
391
466
  " REACT_SYNC_METHOD(updateRuntimeShadowNodeReferencesOnCommit) static bool updateRuntimeShadowNodeReferencesOnCommit() noexcept { /* implementation */ }\n");
392
467
  REACT_SHOW_METHOD_SPEC_ERRORS(
393
- 59,
468
+ 71,
394
469
  "useAlwaysAvailableJSErrorHandling",
395
470
  " REACT_SYNC_METHOD(useAlwaysAvailableJSErrorHandling) bool useAlwaysAvailableJSErrorHandling() noexcept { /* implementation */ }\n"
396
471
  " REACT_SYNC_METHOD(useAlwaysAvailableJSErrorHandling) static bool useAlwaysAvailableJSErrorHandling() noexcept { /* implementation */ }\n");
397
472
  REACT_SHOW_METHOD_SPEC_ERRORS(
398
- 60,
473
+ 72,
399
474
  "useFabricInterop",
400
475
  " REACT_SYNC_METHOD(useFabricInterop) bool useFabricInterop() noexcept { /* implementation */ }\n"
401
476
  " REACT_SYNC_METHOD(useFabricInterop) static bool useFabricInterop() noexcept { /* implementation */ }\n");
402
477
  REACT_SHOW_METHOD_SPEC_ERRORS(
403
- 61,
478
+ 73,
404
479
  "useNativeEqualsInNativeReadableArrayAndroid",
405
480
  " REACT_SYNC_METHOD(useNativeEqualsInNativeReadableArrayAndroid) bool useNativeEqualsInNativeReadableArrayAndroid() noexcept { /* implementation */ }\n"
406
481
  " REACT_SYNC_METHOD(useNativeEqualsInNativeReadableArrayAndroid) static bool useNativeEqualsInNativeReadableArrayAndroid() noexcept { /* implementation */ }\n");
407
482
  REACT_SHOW_METHOD_SPEC_ERRORS(
408
- 62,
483
+ 74,
409
484
  "useNativeTransformHelperAndroid",
410
485
  " REACT_SYNC_METHOD(useNativeTransformHelperAndroid) bool useNativeTransformHelperAndroid() noexcept { /* implementation */ }\n"
411
486
  " REACT_SYNC_METHOD(useNativeTransformHelperAndroid) static bool useNativeTransformHelperAndroid() noexcept { /* implementation */ }\n");
412
487
  REACT_SHOW_METHOD_SPEC_ERRORS(
413
- 63,
488
+ 75,
414
489
  "useNativeViewConfigsInBridgelessMode",
415
490
  " REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n"
416
491
  " REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) static bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n");
417
492
  REACT_SHOW_METHOD_SPEC_ERRORS(
418
- 64,
493
+ 76,
419
494
  "useOptimizedEventBatchingOnAndroid",
420
495
  " REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n"
421
496
  " REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) static bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n");
422
497
  REACT_SHOW_METHOD_SPEC_ERRORS(
423
- 65,
498
+ 77,
424
499
  "useRawPropsJsiValue",
425
500
  " REACT_SYNC_METHOD(useRawPropsJsiValue) bool useRawPropsJsiValue() noexcept { /* implementation */ }\n"
426
501
  " REACT_SYNC_METHOD(useRawPropsJsiValue) static bool useRawPropsJsiValue() noexcept { /* implementation */ }\n");
427
502
  REACT_SHOW_METHOD_SPEC_ERRORS(
428
- 66,
503
+ 78,
429
504
  "useShadowNodeStateOnClone",
430
505
  " REACT_SYNC_METHOD(useShadowNodeStateOnClone) bool useShadowNodeStateOnClone() noexcept { /* implementation */ }\n"
431
506
  " REACT_SYNC_METHOD(useShadowNodeStateOnClone) static bool useShadowNodeStateOnClone() noexcept { /* implementation */ }\n");
432
507
  REACT_SHOW_METHOD_SPEC_ERRORS(
433
- 67,
508
+ 79,
509
+ "useSharedAnimatedBackend",
510
+ " REACT_SYNC_METHOD(useSharedAnimatedBackend) bool useSharedAnimatedBackend() noexcept { /* implementation */ }\n"
511
+ " REACT_SYNC_METHOD(useSharedAnimatedBackend) static bool useSharedAnimatedBackend() noexcept { /* implementation */ }\n");
512
+ REACT_SHOW_METHOD_SPEC_ERRORS(
513
+ 80,
514
+ "useTraitHiddenOnAndroid",
515
+ " REACT_SYNC_METHOD(useTraitHiddenOnAndroid) bool useTraitHiddenOnAndroid() noexcept { /* implementation */ }\n"
516
+ " REACT_SYNC_METHOD(useTraitHiddenOnAndroid) static bool useTraitHiddenOnAndroid() noexcept { /* implementation */ }\n");
517
+ REACT_SHOW_METHOD_SPEC_ERRORS(
518
+ 81,
434
519
  "useTurboModuleInterop",
435
520
  " REACT_SYNC_METHOD(useTurboModuleInterop) bool useTurboModuleInterop() noexcept { /* implementation */ }\n"
436
521
  " REACT_SYNC_METHOD(useTurboModuleInterop) static bool useTurboModuleInterop() noexcept { /* implementation */ }\n");
437
522
  REACT_SHOW_METHOD_SPEC_ERRORS(
438
- 68,
523
+ 82,
439
524
  "useTurboModules",
440
525
  " REACT_SYNC_METHOD(useTurboModules) bool useTurboModules() noexcept { /* implementation */ }\n"
441
526
  " REACT_SYNC_METHOD(useTurboModules) static bool useTurboModules() noexcept { /* implementation */ }\n");
442
527
  REACT_SHOW_METHOD_SPEC_ERRORS(
443
- 69,
528
+ 83,
529
+ "viewCullingOutsetRatio",
530
+ " REACT_SYNC_METHOD(viewCullingOutsetRatio) double viewCullingOutsetRatio() noexcept { /* implementation */ }\n"
531
+ " REACT_SYNC_METHOD(viewCullingOutsetRatio) static double viewCullingOutsetRatio() noexcept { /* implementation */ }\n");
532
+ REACT_SHOW_METHOD_SPEC_ERRORS(
533
+ 84,
444
534
  "virtualViewHysteresisRatio",
445
535
  " REACT_SYNC_METHOD(virtualViewHysteresisRatio) double virtualViewHysteresisRatio() noexcept { /* implementation */ }\n"
446
536
  " REACT_SYNC_METHOD(virtualViewHysteresisRatio) static double virtualViewHysteresisRatio() noexcept { /* implementation */ }\n");
447
537
  REACT_SHOW_METHOD_SPEC_ERRORS(
448
- 70,
538
+ 85,
449
539
  "virtualViewPrerenderRatio",
450
540
  " REACT_SYNC_METHOD(virtualViewPrerenderRatio) double virtualViewPrerenderRatio() noexcept { /* implementation */ }\n"
451
541
  " REACT_SYNC_METHOD(virtualViewPrerenderRatio) static double virtualViewPrerenderRatio() noexcept { /* implementation */ }\n");