react-native-windows 0.76.7 → 0.76.9

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 (136) hide show
  1. package/Libraries/Components/Button.windows.js +9 -0
  2. package/Libraries/Components/Pressable/Pressable.windows.js +9 -0
  3. package/Libraries/Components/TextInput/TextInput.windows.js +11 -1
  4. package/Libraries/Components/Touchable/TouchableBounce.windows.js +229 -0
  5. package/Libraries/Components/Touchable/TouchableNativeFeedback.windows.js +373 -0
  6. package/Libraries/Components/Touchable/TouchableOpacity.windows.js +7 -0
  7. package/Libraries/Components/Touchable/TouchableWithoutFeedback.windows.js +8 -0
  8. package/Libraries/Components/View/View.windows.js +11 -1
  9. package/Libraries/Components/View/ViewAccessibility.d.ts +15 -0
  10. package/Libraries/Components/View/ViewAccessibility.windows.js +3 -0
  11. package/Libraries/Components/View/ViewPropTypes.windows.js +3 -0
  12. package/Libraries/Core/ReactNativeVersion.js +1 -1
  13. package/Libraries/Image/Image.windows.js +7 -0
  14. package/Libraries/Modal/Modal.windows.js +4 -1
  15. package/Libraries/Text/Text.windows.js +14 -1
  16. package/Libraries/Text/TextProps.windows.js +3 -0
  17. package/Microsoft.ReactNative/CompositionComponentView.idl +13 -1
  18. package/Microsoft.ReactNative/Fabric/AbiPortalShadowNode.cpp +97 -0
  19. package/Microsoft.ReactNative/Fabric/AbiPortalShadowNode.h +53 -0
  20. package/Microsoft.ReactNative/Fabric/AbiViewComponentDescriptor.h +160 -17
  21. package/Microsoft.ReactNative/Fabric/AbiViewProps.cpp +8 -10
  22. package/Microsoft.ReactNative/Fabric/ComponentView.cpp +4 -2
  23. package/Microsoft.ReactNative/Fabric/Composition/ComponentViewRegistry.cpp +0 -5
  24. package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.cpp +428 -39
  25. package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.h +39 -1
  26. package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.cpp +55 -33
  27. package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.h +5 -3
  28. package/Microsoft.ReactNative/Fabric/Composition/CompositionRootAutomationProvider.cpp +43 -5
  29. package/Microsoft.ReactNative/Fabric/Composition/CompositionRootAutomationProvider.h +2 -1
  30. package/Microsoft.ReactNative/Fabric/Composition/CompositionTextProvider.cpp +115 -0
  31. package/Microsoft.ReactNative/Fabric/Composition/CompositionTextProvider.h +41 -0
  32. package/Microsoft.ReactNative/Fabric/Composition/CompositionTextRangeProvider.cpp +298 -0
  33. package/Microsoft.ReactNative/Fabric/Composition/CompositionTextRangeProvider.h +59 -0
  34. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +106 -56
  35. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +2 -0
  36. package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.cpp +163 -10
  37. package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.h +17 -1
  38. package/Microsoft.ReactNative/Fabric/Composition/FocusManager.cpp +4 -2
  39. package/Microsoft.ReactNative/Fabric/Composition/FocusManager.h +9 -1
  40. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +348 -316
  41. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.h +3 -61
  42. package/Microsoft.ReactNative/Fabric/Composition/PortalComponentView.cpp +78 -0
  43. package/Microsoft.ReactNative/Fabric/Composition/PortalComponentView.h +52 -0
  44. package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.cpp +22 -0
  45. package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.h +7 -5
  46. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +99 -37
  47. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.h +12 -6
  48. package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +81 -22
  49. package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +21 -2
  50. package/Microsoft.ReactNative/Fabric/Composition/Theme.cpp +6 -1
  51. package/Microsoft.ReactNative/Fabric/Composition/TooltipService.cpp +41 -37
  52. package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.cpp +76 -33
  53. package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.h +8 -2
  54. package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.cpp +1 -6
  55. package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.h +0 -3
  56. package/Microsoft.ReactNative/Fabric/WindowsComponentDescriptorRegistry.cpp +0 -2
  57. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/HostPlatformColor.h +5 -8
  58. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/PlatformColorParser.h +1 -2
  59. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/PlatformColorUtils.cpp +1 -1
  60. package/Microsoft.ReactNative/IReactCompositionViewComponentBuilder.idl +15 -1
  61. package/Microsoft.ReactNative/IReactContext.cpp +2 -2
  62. package/Microsoft.ReactNative/IReactContext.h +1 -1
  63. package/Microsoft.ReactNative/IReactContext.idl +2 -2
  64. package/Microsoft.ReactNative/IReactPackageBuilder.idl +3 -3
  65. package/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +97 -87
  66. package/Microsoft.ReactNative/Modules/AccessibilityInfoModule.cpp +4 -0
  67. package/Microsoft.ReactNative/Modules/AlertModule.cpp +9 -4
  68. package/Microsoft.ReactNative/Modules/Animated/NativeAnimatedNodeManager.cpp +1 -1
  69. package/Microsoft.ReactNative/Modules/Animated/PropsAnimatedNode.cpp +32 -35
  70. package/Microsoft.ReactNative/Modules/Animated/PropsAnimatedNode.h +7 -4
  71. package/Microsoft.ReactNative/Modules/AppStateModule.cpp +1 -1
  72. package/Microsoft.ReactNative/Modules/AppThemeModuleUwp.cpp +2 -2
  73. package/Microsoft.ReactNative/Modules/AppearanceModule.cpp +2 -2
  74. package/Microsoft.ReactNative/Modules/ClipboardModule.cpp +1 -1
  75. package/Microsoft.ReactNative/Modules/ClipboardModule.h +1 -1
  76. package/Microsoft.ReactNative/Modules/DeviceInfoModule.cpp +3 -3
  77. package/Microsoft.ReactNative/Modules/I18nManagerModule.cpp +1 -1
  78. package/Microsoft.ReactNative/Modules/LogBoxModule.cpp +7 -5
  79. package/Microsoft.ReactNative/Modules/LogBoxModule.h +2 -1
  80. package/Microsoft.ReactNative/Modules/Timing.cpp +2 -2
  81. package/Microsoft.ReactNative/ReactHost/IReactInstance.h +5 -0
  82. package/Microsoft.ReactNative/ReactHost/React.h +0 -3
  83. package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.cpp +36 -12
  84. package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.h +1 -1
  85. package/Microsoft.ReactNative/ReactNativeHost.cpp +9 -4
  86. package/Microsoft.ReactNative/ReactNativeIsland.idl +5 -1
  87. package/Microsoft.ReactNative/ReactPackageBuilder.cpp +3 -3
  88. package/Microsoft.ReactNative/ReactPackageBuilder.h +4 -4
  89. package/Microsoft.ReactNative/Utils/Helpers.cpp +0 -2
  90. package/Microsoft.ReactNative/Views/DevMenu.cpp +6 -6
  91. package/Microsoft.ReactNative/Views/DevMenu.h +1 -1
  92. package/Microsoft.ReactNative/XamlUIService.cpp +13 -7
  93. package/Microsoft.ReactNative/XamlUIService.h +4 -1
  94. package/Microsoft.ReactNative/XamlUIService.idl +2 -0
  95. package/Microsoft.ReactNative.Cxx/JSI/JsiAbiApi.h +6 -2
  96. package/Microsoft.ReactNative.Cxx/NativeModules.h +29 -0
  97. package/Microsoft.ReactNative.Cxx/ReactContext.h +1 -1
  98. package/Microsoft.ReactNative.Cxx/XamlUtils.h +12 -0
  99. package/PropertySheets/Generated/PackageVersion.g.props +3 -3
  100. package/PropertySheets/React.Cpp.props +3 -0
  101. package/PropertySheets/WebView2.props +1 -1
  102. package/PropertySheets/WinUI.props +5 -4
  103. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/AccessibilityPrimitives.h +253 -0
  104. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/accessibilityPropsConversions.h +799 -0
  105. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/ReactInstance.cpp +39 -35
  106. package/Shared/InspectorPackagerConnection.cpp +2 -5
  107. package/Shared/InspectorPackagerConnection.h +2 -2
  108. package/Shared/Networking/WinRTWebSocketResource.cpp +369 -7
  109. package/Shared/Networking/WinRTWebSocketResource.h +118 -0
  110. package/Shared/Shared.vcxitems +12 -5
  111. package/Shared/Shared.vcxitems.filters +11 -4
  112. package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +91 -97
  113. package/codegen/react/components/rnwcore/ActivityIndicatorView.g.h +212 -0
  114. package/codegen/react/components/rnwcore/AndroidDrawerLayout.g.h +295 -0
  115. package/codegen/react/components/rnwcore/AndroidHorizontalScrollContentView.g.h +200 -0
  116. package/codegen/react/components/rnwcore/AndroidProgressBar.g.h +224 -0
  117. package/codegen/react/components/rnwcore/AndroidSwipeRefreshLayout.g.h +250 -0
  118. package/codegen/react/components/rnwcore/AndroidSwitch.g.h +267 -0
  119. package/codegen/react/components/rnwcore/DebuggingOverlay.g.h +234 -0
  120. package/codegen/react/components/rnwcore/InputAccessory.g.h +200 -0
  121. package/codegen/react/components/rnwcore/ModalHostView.g.h +279 -0
  122. package/codegen/react/components/rnwcore/PullToRefreshView.g.h +246 -0
  123. package/codegen/react/components/rnwcore/SafeAreaView.g.h +197 -0
  124. package/codegen/react/components/rnwcore/Switch.g.h +263 -0
  125. package/codegen/react/components/rnwcore/UnimplementedNativeView.g.h +200 -0
  126. package/codegen/rnwcoreJSI-generated.cpp +0 -6
  127. package/codegen/rnwcoreJSI.h +0 -9
  128. package/jest/setup.js +5 -1
  129. package/just-task.js +1 -1
  130. package/package.json +11 -11
  131. package/src/private/featureflags/ReactNativeFeatureFlags.js +1 -6
  132. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +1 -2
  133. package/Microsoft.ReactNative/Fabric/AbiViewComponentDescriptor.cpp +0 -191
  134. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentDescriptor.h +0 -39
  135. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewShadowNode.cpp +0 -18
  136. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewShadowNode.h +0 -39
@@ -16,6 +16,124 @@
16
16
 
17
17
  namespace Microsoft::React::Networking {
18
18
 
19
+ class WinRTWebSocketResource2 : public IWebSocketResource,
20
+ public std::enable_shared_from_this<WinRTWebSocketResource2> {
21
+ winrt::Windows::Networking::Sockets::IMessageWebSocket m_socket;
22
+
23
+ ///
24
+ // Connection attempt performed, either succeeding or failing
25
+ ///
26
+ winrt::handle m_connectPerformed;
27
+
28
+ ReadyState m_readyState;
29
+ Mso::DispatchQueue m_callingQueue;
30
+ Mso::DispatchQueue m_backgroundQueue;
31
+ std::queue<std::pair<std::string, bool>> m_outgoingMessages;
32
+ CloseCode m_closeCode{CloseCode::Normal};
33
+ std::string m_closeReason;
34
+
35
+ std::function<void()> m_connectHandler;
36
+ std::function<void(std::size_t, const std::string &, bool)> m_readHandler;
37
+ std::function<void(CloseCode, const std::string &)> m_closeHandler;
38
+ std::function<void(Error &&)> m_errorHandler;
39
+
40
+ winrt::Windows::Storage::Streams::IDataWriter m_writer;
41
+
42
+ void Fail(std::string &&message, ErrorType type) noexcept;
43
+ void Fail(winrt::hresult &&e, ErrorType type) noexcept;
44
+ void Fail(winrt::hresult_error const &e, ErrorType type) noexcept;
45
+
46
+ void OnMessageReceived(
47
+ winrt::Windows::Networking::Sockets::IMessageWebSocket const &,
48
+ winrt::Windows::Networking::Sockets::IMessageWebSocketMessageReceivedEventArgs const &args);
49
+
50
+ void OnClosed(
51
+ winrt::Windows::Networking::Sockets::IWebSocket const &,
52
+ winrt::Windows::Networking::Sockets::IWebSocketClosedEventArgs const &args);
53
+
54
+ winrt::fire_and_forget PerformConnect(winrt::Windows::Foundation::Uri &&uri) noexcept;
55
+ winrt::fire_and_forget PerformWrite(std::string &&message, bool isBinary) noexcept;
56
+ winrt::fire_and_forget PerformClose() noexcept;
57
+ winrt::Windows::Foundation::IAsyncAction SendPendingMessages() noexcept;
58
+
59
+ WinRTWebSocketResource2(
60
+ winrt::Windows::Networking::Sockets::IMessageWebSocket &&socket,
61
+ std::vector<winrt::Windows::Security::Cryptography::Certificates::ChainValidationResult> &&certExceptions);
62
+
63
+ public:
64
+ WinRTWebSocketResource2(
65
+ winrt::Windows::Networking::Sockets::IMessageWebSocket &&socket,
66
+ winrt::Windows::Storage::Streams::IDataWriter &&writer,
67
+ std::vector<winrt::Windows::Security::Cryptography::Certificates::ChainValidationResult> &&certExceptions,
68
+ Mso::DispatchQueue callingQueue);
69
+
70
+ WinRTWebSocketResource2(
71
+ std::vector<winrt::Windows::Security::Cryptography::Certificates::ChainValidationResult> &&certExceptions);
72
+
73
+ ~WinRTWebSocketResource2() noexcept override;
74
+
75
+ #pragma region IWebSocketResource
76
+
77
+ /// <summary>
78
+ /// <see cref="IWebSocketResource::Connect" />
79
+ /// </summary>
80
+ void Connect(std::string &&url, const Protocols &protocols, const Options &options) noexcept override;
81
+
82
+ /// <summary>
83
+ /// <see cref="IWebSocketResource::Ping" />
84
+ /// </summary>
85
+ void Ping() noexcept override;
86
+
87
+ /// <summary>
88
+ /// <see cref="IWebSocketResource::Send" />
89
+ /// </summary>
90
+ void Send(std::string &&message) noexcept override;
91
+
92
+ /// <summary>
93
+ /// <see cref="IWebSocketResource::SendBinary" />
94
+ /// </summary>
95
+ void SendBinary(std::string &&base64String) noexcept override;
96
+
97
+ /// <summary>
98
+ /// <see cref="IWebSocketResource::Close" />
99
+ /// </summary>
100
+ void Close(CloseCode code, const std::string &reason) noexcept override;
101
+
102
+ ReadyState GetReadyState() const noexcept override;
103
+
104
+ /// <summary>
105
+ /// <see cref="IWebSocketResource::SetOnConnect" />
106
+ /// </summary>
107
+ void SetOnConnect(std::function<void()> &&handler) noexcept override;
108
+
109
+ /// <summary>
110
+ /// <see cref="IWebSocketResource::SetOnPing" />
111
+ /// </summary>
112
+ void SetOnPing(std::function<void()> &&handler) noexcept override;
113
+
114
+ /// <summary>
115
+ /// <see cref="IWebSocketResource::SetOnSend" />
116
+ /// </summary>
117
+ void SetOnSend(std::function<void(std::size_t)> &&handler) noexcept override;
118
+
119
+ /// <summary>
120
+ /// <see cref="IWebSocketResource::SetOnMessage" />
121
+ /// </summary>
122
+ void SetOnMessage(std::function<void(std::size_t, const std::string &, bool isBinary)> &&handler) noexcept override;
123
+
124
+ /// <summary>
125
+ /// <see cref="IWebSocketResource::SetOnClose" />
126
+ /// </summary>
127
+ void SetOnClose(std::function<void(CloseCode, const std::string &)> &&handler) noexcept override;
128
+
129
+ /// <summary>
130
+ /// <see cref="IWebSocketResource::SetOnError" />
131
+ /// </summary>
132
+ void SetOnError(std::function<void(Error &&)> &&handler) noexcept override;
133
+
134
+ #pragma endregion IWebSocketResource
135
+ };
136
+
19
137
  class WinRTWebSocketResource : public IWebSocketResource, public std::enable_shared_from_this<WinRTWebSocketResource> {
20
138
  winrt::Windows::Networking::Sockets::IMessageWebSocket m_socket;
21
139
  // TODO: Use or remove.
@@ -64,6 +64,12 @@
64
64
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionDynamicAutomationProvider.cpp">
65
65
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
66
66
  </ClCompile>
67
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionTextProvider.cpp">
68
+ <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
69
+ </ClCompile>
70
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionTextRangeProvider.cpp">
71
+ <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
72
+ </ClCompile>
67
73
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\ReactNativeIsland.cpp">
68
74
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
69
75
  <DependentUpon>$(ReactNativeWindowsDir)Microsoft.ReactNative\ReactNativeIsland.idl</DependentUpon>
@@ -108,10 +114,10 @@
108
114
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\Modal\WindowsModalHostViewComponentView.cpp">
109
115
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
110
116
  </ClCompile>
111
- <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\Modal\WindowsModalHostViewShadowNode.cpp">
117
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\ParagraphComponentView.cpp">
112
118
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
113
119
  </ClCompile>
114
- <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\ParagraphComponentView.cpp">
120
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\PortalComponentView.cpp">
115
121
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
116
122
  </ClCompile>
117
123
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\RootComponentView.cpp">
@@ -162,9 +168,6 @@
162
168
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiComponentDescriptor.cpp">
163
169
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
164
170
  </ClCompile>
165
- <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiViewComponentDescriptor.cpp">
166
- <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
167
- </ClCompile>
168
171
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiEventEmitter.cpp">
169
172
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
170
173
  </ClCompile>
@@ -174,6 +177,9 @@
174
177
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiShadowNode.cpp">
175
178
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
176
179
  </ClCompile>
180
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiPortalShadowNode.cpp">
181
+ <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
182
+ </ClCompile>
177
183
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiViewShadowNode.cpp">
178
184
  <ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
179
185
  </ClCompile>
@@ -314,6 +320,7 @@
314
320
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\Modal\WindowsModalHostViewComponentView.h" />
315
321
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\Modal\WindowsModalHostViewSate.h" />
316
322
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\ParagraphComponentView.h" />
323
+ <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\PortalComponentView.h" />
317
324
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\RootComponentView.h" />
318
325
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\ScrollViewComponentView.h" />
319
326
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\SwitchComponentView.h" />
@@ -179,9 +179,6 @@
179
179
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\Modal\WindowsModalHostViewComponentView.cpp">
180
180
  <Filter>Source Files\Fabric\Composition</Filter>
181
181
  </ClCompile>
182
- <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\Modal\WindowsModalHostViewShadowNode.cpp">
183
- <Filter>Source Files\Fabric\Composition</Filter>
184
- </ClCompile>
185
182
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\ParagraphComponentView.cpp">
186
183
  <Filter>Source Files\Fabric\Composition</Filter>
187
184
  </ClCompile>
@@ -218,6 +215,12 @@
218
215
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionDynamicAutomationProvider.cpp">
219
216
  <Filter>Source Files\Fabric\Composition</Filter>
220
217
  </ClCompile>
218
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionTextProvider.cpp">
219
+ <Filter>Source Files\Fabric\Composition</Filter>
220
+ </ClCompile>
221
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionTextRangeProvider.cpp">
222
+ <Filter>Source Files\Fabric\Composition</Filter>
223
+ </ClCompile>
221
224
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\ReactNativeIsland.cpp">
222
225
  <Filter>Source Files\Fabric\Composition</Filter>
223
226
  </ClCompile>
@@ -239,9 +242,9 @@
239
242
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\platform\react\renderer\textlayoutmanager\TextLayoutManager.cpp">
240
243
  <Filter>Source Files\Fabric\platform\react\renderer\textlayoutmanager</Filter>
241
244
  </ClCompile>
245
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\PortalComponentView.cpp" />
242
246
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\RootComponentView.cpp" />
243
247
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\UnimplementedNativeViewComponentView.cpp" />
244
- <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiViewComponentDescriptor.cpp" />
245
248
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiViewProps.cpp" />
246
249
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\WindowsComponentDescriptorRegistry.cpp" />
247
250
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\UiaHelpers.cpp" />
@@ -296,6 +299,7 @@
296
299
  <ClCompile Include="$(ReactNativeDir)\ReactCommon\react\renderer\components\scrollview\ScrollEvent.cpp" />
297
300
  <ClCompile Include="$(ReactNativeDir)\ReactCommon\react\utils\CoreFeatures.cpp" />
298
301
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\platform\react\renderer\graphics\PlatformColorUtils.cpp" />
302
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiPortalShadowNode.cpp" />
299
303
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiViewShadowNode.cpp" />
300
304
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiState.cpp" />
301
305
  <ClCompile Include="$(ReactNativeWindowsDir)Microsoft.ReactNative\Utils\ThemeUtils.cpp" />
@@ -335,6 +339,8 @@
335
339
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiEventEmitter.cpp" />
336
340
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\TooltipService.cpp" />
337
341
  <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\BorderPrimitive.cpp" />
342
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionTextProvider.cpp" />
343
+ <ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\CompositionTextRangeProvider.cpp" />
338
344
  </ItemGroup>
339
345
  <ItemGroup>
340
346
  <Filter Include="Source Files">
@@ -784,6 +790,7 @@
784
790
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\platform\react\renderer\textlayoutmanager\TextLayoutManager.h">
785
791
  <Filter>Header Files\Fabric\platform\react\renderer\textlayoutmanager</Filter>
786
792
  </ClInclude>
793
+ <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\PortalComponentView.h" />
787
794
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\RootComponentView.h" />
788
795
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiViewProps.h" />
789
796
  <ClInclude Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiViewComponentDescriptor.h" />
@@ -18,53 +18,52 @@ namespace Microsoft::ReactNativeSpecs {
18
18
  struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleSpec {
19
19
  static constexpr auto methods = std::tuple{
20
20
  SyncMethod<bool() noexcept>{0, L"commonTestFlag"},
21
- SyncMethod<bool() noexcept>{1, L"allowRecursiveCommitsWithSynchronousMountOnAndroid"},
22
- SyncMethod<bool() noexcept>{2, L"batchRenderingUpdatesInEventLoop"},
23
- SyncMethod<bool() noexcept>{3, L"completeReactInstanceCreationOnBgThreadOnAndroid"},
24
- SyncMethod<bool() noexcept>{4, L"destroyFabricSurfacesInReactInstanceManager"},
25
- SyncMethod<bool() noexcept>{5, L"enableAlignItemsBaselineOnFabricIOS"},
26
- SyncMethod<bool() noexcept>{6, L"enableAndroidMixBlendModeProp"},
27
- SyncMethod<bool() noexcept>{7, L"enableBackgroundStyleApplicator"},
28
- SyncMethod<bool() noexcept>{8, L"enableCleanTextInputYogaNode"},
29
- SyncMethod<bool() noexcept>{9, L"enableEagerRootViewAttachment"},
30
- SyncMethod<bool() noexcept>{10, L"enableEventEmitterRetentionDuringGesturesOnAndroid"},
31
- SyncMethod<bool() noexcept>{11, L"enableFabricLogs"},
32
- SyncMethod<bool() noexcept>{12, L"enableFabricRendererExclusively"},
33
- SyncMethod<bool() noexcept>{13, L"enableGranularShadowTreeStateReconciliation"},
34
- SyncMethod<bool() noexcept>{14, L"enableIOSViewClipToPaddingBox"},
35
- SyncMethod<bool() noexcept>{15, L"enableLayoutAnimationsOnIOS"},
36
- SyncMethod<bool() noexcept>{16, L"enableLongTaskAPI"},
37
- SyncMethod<bool() noexcept>{17, L"enableMicrotasks"},
38
- SyncMethod<bool() noexcept>{18, L"enablePropsUpdateReconciliationAndroid"},
39
- SyncMethod<bool() noexcept>{19, L"enableReportEventPaintTime"},
40
- SyncMethod<bool() noexcept>{20, L"enableSynchronousStateUpdates"},
41
- SyncMethod<bool() noexcept>{21, L"enableUIConsistency"},
42
- SyncMethod<bool() noexcept>{22, L"enableViewRecycling"},
43
- SyncMethod<bool() noexcept>{23, L"excludeYogaFromRawProps"},
44
- SyncMethod<bool() noexcept>{24, L"fetchImagesInViewPreallocation"},
45
- SyncMethod<bool() noexcept>{25, L"fixIncorrectScrollViewStateUpdateOnAndroid"},
46
- SyncMethod<bool() noexcept>{26, L"fixMappingOfEventPrioritiesBetweenFabricAndReact"},
47
- SyncMethod<bool() noexcept>{27, L"fixMissedFabricStateUpdatesOnAndroid"},
48
- SyncMethod<bool() noexcept>{28, L"fixMountingCoordinatorReportedPendingTransactionsOnAndroid"},
49
- SyncMethod<bool() noexcept>{29, L"forceBatchingMountItemsOnAndroid"},
50
- SyncMethod<bool() noexcept>{30, L"fuseboxEnabledDebug"},
51
- SyncMethod<bool() noexcept>{31, L"fuseboxEnabledRelease"},
52
- SyncMethod<bool() noexcept>{32, L"initEagerTurboModulesOnNativeModulesQueueAndroid"},
53
- SyncMethod<bool() noexcept>{33, L"lazyAnimationCallbacks"},
54
- SyncMethod<bool() noexcept>{34, L"loadVectorDrawablesOnImages"},
55
- SyncMethod<bool() noexcept>{35, L"setAndroidLayoutDirection"},
56
- SyncMethod<bool() noexcept>{36, L"traceTurboModulePromiseRejectionsOnAndroid"},
57
- SyncMethod<bool() noexcept>{37, L"useFabricInterop"},
58
- SyncMethod<bool() noexcept>{38, L"useImmediateExecutorInAndroidBridgeless"},
59
- SyncMethod<bool() noexcept>{39, L"useModernRuntimeScheduler"},
60
- SyncMethod<bool() noexcept>{40, L"useNativeViewConfigsInBridgelessMode"},
61
- SyncMethod<bool() noexcept>{41, L"useNewReactImageViewBackgroundDrawing"},
62
- SyncMethod<bool() noexcept>{42, L"useOptimisedViewPreallocationOnAndroid"},
63
- SyncMethod<bool() noexcept>{43, L"useOptimizedEventBatchingOnAndroid"},
64
- SyncMethod<bool() noexcept>{44, L"useRuntimeShadowNodeReferenceUpdate"},
65
- SyncMethod<bool() noexcept>{45, L"useRuntimeShadowNodeReferenceUpdateOnLayout"},
66
- SyncMethod<bool() noexcept>{46, L"useStateAlignmentMechanism"},
67
- SyncMethod<bool() noexcept>{47, L"useTurboModuleInterop"},
21
+ SyncMethod<bool() noexcept>{1, L"batchRenderingUpdatesInEventLoop"},
22
+ SyncMethod<bool() noexcept>{2, L"completeReactInstanceCreationOnBgThreadOnAndroid"},
23
+ SyncMethod<bool() noexcept>{3, L"destroyFabricSurfacesInReactInstanceManager"},
24
+ SyncMethod<bool() noexcept>{4, L"enableAlignItemsBaselineOnFabricIOS"},
25
+ SyncMethod<bool() noexcept>{5, L"enableAndroidMixBlendModeProp"},
26
+ SyncMethod<bool() noexcept>{6, L"enableBackgroundStyleApplicator"},
27
+ SyncMethod<bool() noexcept>{7, L"enableCleanTextInputYogaNode"},
28
+ SyncMethod<bool() noexcept>{8, L"enableEagerRootViewAttachment"},
29
+ SyncMethod<bool() noexcept>{9, L"enableEventEmitterRetentionDuringGesturesOnAndroid"},
30
+ SyncMethod<bool() noexcept>{10, L"enableFabricLogs"},
31
+ SyncMethod<bool() noexcept>{11, L"enableFabricRendererExclusively"},
32
+ SyncMethod<bool() noexcept>{12, L"enableGranularShadowTreeStateReconciliation"},
33
+ SyncMethod<bool() noexcept>{13, L"enableIOSViewClipToPaddingBox"},
34
+ SyncMethod<bool() noexcept>{14, L"enableLayoutAnimationsOnIOS"},
35
+ SyncMethod<bool() noexcept>{15, L"enableLongTaskAPI"},
36
+ SyncMethod<bool() noexcept>{16, L"enableMicrotasks"},
37
+ SyncMethod<bool() noexcept>{17, L"enablePropsUpdateReconciliationAndroid"},
38
+ SyncMethod<bool() noexcept>{18, L"enableReportEventPaintTime"},
39
+ SyncMethod<bool() noexcept>{19, L"enableSynchronousStateUpdates"},
40
+ SyncMethod<bool() noexcept>{20, L"enableUIConsistency"},
41
+ SyncMethod<bool() noexcept>{21, L"enableViewRecycling"},
42
+ SyncMethod<bool() noexcept>{22, L"excludeYogaFromRawProps"},
43
+ SyncMethod<bool() noexcept>{23, L"fetchImagesInViewPreallocation"},
44
+ SyncMethod<bool() noexcept>{24, L"fixIncorrectScrollViewStateUpdateOnAndroid"},
45
+ SyncMethod<bool() noexcept>{25, L"fixMappingOfEventPrioritiesBetweenFabricAndReact"},
46
+ SyncMethod<bool() noexcept>{26, L"fixMissedFabricStateUpdatesOnAndroid"},
47
+ SyncMethod<bool() noexcept>{27, L"fixMountingCoordinatorReportedPendingTransactionsOnAndroid"},
48
+ SyncMethod<bool() noexcept>{28, L"forceBatchingMountItemsOnAndroid"},
49
+ SyncMethod<bool() noexcept>{29, L"fuseboxEnabledDebug"},
50
+ SyncMethod<bool() noexcept>{30, L"fuseboxEnabledRelease"},
51
+ SyncMethod<bool() noexcept>{31, L"initEagerTurboModulesOnNativeModulesQueueAndroid"},
52
+ SyncMethod<bool() noexcept>{32, L"lazyAnimationCallbacks"},
53
+ SyncMethod<bool() noexcept>{33, L"loadVectorDrawablesOnImages"},
54
+ SyncMethod<bool() noexcept>{34, L"setAndroidLayoutDirection"},
55
+ SyncMethod<bool() noexcept>{35, L"traceTurboModulePromiseRejectionsOnAndroid"},
56
+ SyncMethod<bool() noexcept>{36, L"useFabricInterop"},
57
+ SyncMethod<bool() noexcept>{37, L"useImmediateExecutorInAndroidBridgeless"},
58
+ SyncMethod<bool() noexcept>{38, L"useModernRuntimeScheduler"},
59
+ SyncMethod<bool() noexcept>{39, L"useNativeViewConfigsInBridgelessMode"},
60
+ SyncMethod<bool() noexcept>{40, L"useNewReactImageViewBackgroundDrawing"},
61
+ SyncMethod<bool() noexcept>{41, L"useOptimisedViewPreallocationOnAndroid"},
62
+ SyncMethod<bool() noexcept>{42, L"useOptimizedEventBatchingOnAndroid"},
63
+ SyncMethod<bool() noexcept>{43, L"useRuntimeShadowNodeReferenceUpdate"},
64
+ SyncMethod<bool() noexcept>{44, L"useRuntimeShadowNodeReferenceUpdateOnLayout"},
65
+ SyncMethod<bool() noexcept>{45, L"useStateAlignmentMechanism"},
66
+ SyncMethod<bool() noexcept>{46, L"useTurboModuleInterop"},
68
67
  };
69
68
 
70
69
  template <class TModule>
@@ -78,236 +77,231 @@ struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleS
78
77
  " REACT_SYNC_METHOD(commonTestFlag) static bool commonTestFlag() noexcept { /* implementation */ }\n");
79
78
  REACT_SHOW_METHOD_SPEC_ERRORS(
80
79
  1,
81
- "allowRecursiveCommitsWithSynchronousMountOnAndroid",
82
- " REACT_SYNC_METHOD(allowRecursiveCommitsWithSynchronousMountOnAndroid) bool allowRecursiveCommitsWithSynchronousMountOnAndroid() noexcept { /* implementation */ }\n"
83
- " REACT_SYNC_METHOD(allowRecursiveCommitsWithSynchronousMountOnAndroid) static bool allowRecursiveCommitsWithSynchronousMountOnAndroid() noexcept { /* implementation */ }\n");
84
- REACT_SHOW_METHOD_SPEC_ERRORS(
85
- 2,
86
80
  "batchRenderingUpdatesInEventLoop",
87
81
  " REACT_SYNC_METHOD(batchRenderingUpdatesInEventLoop) bool batchRenderingUpdatesInEventLoop() noexcept { /* implementation */ }\n"
88
82
  " REACT_SYNC_METHOD(batchRenderingUpdatesInEventLoop) static bool batchRenderingUpdatesInEventLoop() noexcept { /* implementation */ }\n");
89
83
  REACT_SHOW_METHOD_SPEC_ERRORS(
90
- 3,
84
+ 2,
91
85
  "completeReactInstanceCreationOnBgThreadOnAndroid",
92
86
  " REACT_SYNC_METHOD(completeReactInstanceCreationOnBgThreadOnAndroid) bool completeReactInstanceCreationOnBgThreadOnAndroid() noexcept { /* implementation */ }\n"
93
87
  " REACT_SYNC_METHOD(completeReactInstanceCreationOnBgThreadOnAndroid) static bool completeReactInstanceCreationOnBgThreadOnAndroid() noexcept { /* implementation */ }\n");
94
88
  REACT_SHOW_METHOD_SPEC_ERRORS(
95
- 4,
89
+ 3,
96
90
  "destroyFabricSurfacesInReactInstanceManager",
97
91
  " REACT_SYNC_METHOD(destroyFabricSurfacesInReactInstanceManager) bool destroyFabricSurfacesInReactInstanceManager() noexcept { /* implementation */ }\n"
98
92
  " REACT_SYNC_METHOD(destroyFabricSurfacesInReactInstanceManager) static bool destroyFabricSurfacesInReactInstanceManager() noexcept { /* implementation */ }\n");
99
93
  REACT_SHOW_METHOD_SPEC_ERRORS(
100
- 5,
94
+ 4,
101
95
  "enableAlignItemsBaselineOnFabricIOS",
102
96
  " REACT_SYNC_METHOD(enableAlignItemsBaselineOnFabricIOS) bool enableAlignItemsBaselineOnFabricIOS() noexcept { /* implementation */ }\n"
103
97
  " REACT_SYNC_METHOD(enableAlignItemsBaselineOnFabricIOS) static bool enableAlignItemsBaselineOnFabricIOS() noexcept { /* implementation */ }\n");
104
98
  REACT_SHOW_METHOD_SPEC_ERRORS(
105
- 6,
99
+ 5,
106
100
  "enableAndroidMixBlendModeProp",
107
101
  " REACT_SYNC_METHOD(enableAndroidMixBlendModeProp) bool enableAndroidMixBlendModeProp() noexcept { /* implementation */ }\n"
108
102
  " REACT_SYNC_METHOD(enableAndroidMixBlendModeProp) static bool enableAndroidMixBlendModeProp() noexcept { /* implementation */ }\n");
109
103
  REACT_SHOW_METHOD_SPEC_ERRORS(
110
- 7,
104
+ 6,
111
105
  "enableBackgroundStyleApplicator",
112
106
  " REACT_SYNC_METHOD(enableBackgroundStyleApplicator) bool enableBackgroundStyleApplicator() noexcept { /* implementation */ }\n"
113
107
  " REACT_SYNC_METHOD(enableBackgroundStyleApplicator) static bool enableBackgroundStyleApplicator() noexcept { /* implementation */ }\n");
114
108
  REACT_SHOW_METHOD_SPEC_ERRORS(
115
- 8,
109
+ 7,
116
110
  "enableCleanTextInputYogaNode",
117
111
  " REACT_SYNC_METHOD(enableCleanTextInputYogaNode) bool enableCleanTextInputYogaNode() noexcept { /* implementation */ }\n"
118
112
  " REACT_SYNC_METHOD(enableCleanTextInputYogaNode) static bool enableCleanTextInputYogaNode() noexcept { /* implementation */ }\n");
119
113
  REACT_SHOW_METHOD_SPEC_ERRORS(
120
- 9,
114
+ 8,
121
115
  "enableEagerRootViewAttachment",
122
116
  " REACT_SYNC_METHOD(enableEagerRootViewAttachment) bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n"
123
117
  " REACT_SYNC_METHOD(enableEagerRootViewAttachment) static bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n");
124
118
  REACT_SHOW_METHOD_SPEC_ERRORS(
125
- 10,
119
+ 9,
126
120
  "enableEventEmitterRetentionDuringGesturesOnAndroid",
127
121
  " REACT_SYNC_METHOD(enableEventEmitterRetentionDuringGesturesOnAndroid) bool enableEventEmitterRetentionDuringGesturesOnAndroid() noexcept { /* implementation */ }\n"
128
122
  " REACT_SYNC_METHOD(enableEventEmitterRetentionDuringGesturesOnAndroid) static bool enableEventEmitterRetentionDuringGesturesOnAndroid() noexcept { /* implementation */ }\n");
129
123
  REACT_SHOW_METHOD_SPEC_ERRORS(
130
- 11,
124
+ 10,
131
125
  "enableFabricLogs",
132
126
  " REACT_SYNC_METHOD(enableFabricLogs) bool enableFabricLogs() noexcept { /* implementation */ }\n"
133
127
  " REACT_SYNC_METHOD(enableFabricLogs) static bool enableFabricLogs() noexcept { /* implementation */ }\n");
134
128
  REACT_SHOW_METHOD_SPEC_ERRORS(
135
- 12,
129
+ 11,
136
130
  "enableFabricRendererExclusively",
137
131
  " REACT_SYNC_METHOD(enableFabricRendererExclusively) bool enableFabricRendererExclusively() noexcept { /* implementation */ }\n"
138
132
  " REACT_SYNC_METHOD(enableFabricRendererExclusively) static bool enableFabricRendererExclusively() noexcept { /* implementation */ }\n");
139
133
  REACT_SHOW_METHOD_SPEC_ERRORS(
140
- 13,
134
+ 12,
141
135
  "enableGranularShadowTreeStateReconciliation",
142
136
  " REACT_SYNC_METHOD(enableGranularShadowTreeStateReconciliation) bool enableGranularShadowTreeStateReconciliation() noexcept { /* implementation */ }\n"
143
137
  " REACT_SYNC_METHOD(enableGranularShadowTreeStateReconciliation) static bool enableGranularShadowTreeStateReconciliation() noexcept { /* implementation */ }\n");
144
138
  REACT_SHOW_METHOD_SPEC_ERRORS(
145
- 14,
139
+ 13,
146
140
  "enableIOSViewClipToPaddingBox",
147
141
  " REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n"
148
142
  " REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) static bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n");
149
143
  REACT_SHOW_METHOD_SPEC_ERRORS(
150
- 15,
144
+ 14,
151
145
  "enableLayoutAnimationsOnIOS",
152
146
  " REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n"
153
147
  " REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) static bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n");
154
148
  REACT_SHOW_METHOD_SPEC_ERRORS(
155
- 16,
149
+ 15,
156
150
  "enableLongTaskAPI",
157
151
  " REACT_SYNC_METHOD(enableLongTaskAPI) bool enableLongTaskAPI() noexcept { /* implementation */ }\n"
158
152
  " REACT_SYNC_METHOD(enableLongTaskAPI) static bool enableLongTaskAPI() noexcept { /* implementation */ }\n");
159
153
  REACT_SHOW_METHOD_SPEC_ERRORS(
160
- 17,
154
+ 16,
161
155
  "enableMicrotasks",
162
156
  " REACT_SYNC_METHOD(enableMicrotasks) bool enableMicrotasks() noexcept { /* implementation */ }\n"
163
157
  " REACT_SYNC_METHOD(enableMicrotasks) static bool enableMicrotasks() noexcept { /* implementation */ }\n");
164
158
  REACT_SHOW_METHOD_SPEC_ERRORS(
165
- 18,
159
+ 17,
166
160
  "enablePropsUpdateReconciliationAndroid",
167
161
  " REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n"
168
162
  " REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) static bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n");
169
163
  REACT_SHOW_METHOD_SPEC_ERRORS(
170
- 19,
164
+ 18,
171
165
  "enableReportEventPaintTime",
172
166
  " REACT_SYNC_METHOD(enableReportEventPaintTime) bool enableReportEventPaintTime() noexcept { /* implementation */ }\n"
173
167
  " REACT_SYNC_METHOD(enableReportEventPaintTime) static bool enableReportEventPaintTime() noexcept { /* implementation */ }\n");
174
168
  REACT_SHOW_METHOD_SPEC_ERRORS(
175
- 20,
169
+ 19,
176
170
  "enableSynchronousStateUpdates",
177
171
  " REACT_SYNC_METHOD(enableSynchronousStateUpdates) bool enableSynchronousStateUpdates() noexcept { /* implementation */ }\n"
178
172
  " REACT_SYNC_METHOD(enableSynchronousStateUpdates) static bool enableSynchronousStateUpdates() noexcept { /* implementation */ }\n");
179
173
  REACT_SHOW_METHOD_SPEC_ERRORS(
180
- 21,
174
+ 20,
181
175
  "enableUIConsistency",
182
176
  " REACT_SYNC_METHOD(enableUIConsistency) bool enableUIConsistency() noexcept { /* implementation */ }\n"
183
177
  " REACT_SYNC_METHOD(enableUIConsistency) static bool enableUIConsistency() noexcept { /* implementation */ }\n");
184
178
  REACT_SHOW_METHOD_SPEC_ERRORS(
185
- 22,
179
+ 21,
186
180
  "enableViewRecycling",
187
181
  " REACT_SYNC_METHOD(enableViewRecycling) bool enableViewRecycling() noexcept { /* implementation */ }\n"
188
182
  " REACT_SYNC_METHOD(enableViewRecycling) static bool enableViewRecycling() noexcept { /* implementation */ }\n");
189
183
  REACT_SHOW_METHOD_SPEC_ERRORS(
190
- 23,
184
+ 22,
191
185
  "excludeYogaFromRawProps",
192
186
  " REACT_SYNC_METHOD(excludeYogaFromRawProps) bool excludeYogaFromRawProps() noexcept { /* implementation */ }\n"
193
187
  " REACT_SYNC_METHOD(excludeYogaFromRawProps) static bool excludeYogaFromRawProps() noexcept { /* implementation */ }\n");
194
188
  REACT_SHOW_METHOD_SPEC_ERRORS(
195
- 24,
189
+ 23,
196
190
  "fetchImagesInViewPreallocation",
197
191
  " REACT_SYNC_METHOD(fetchImagesInViewPreallocation) bool fetchImagesInViewPreallocation() noexcept { /* implementation */ }\n"
198
192
  " REACT_SYNC_METHOD(fetchImagesInViewPreallocation) static bool fetchImagesInViewPreallocation() noexcept { /* implementation */ }\n");
199
193
  REACT_SHOW_METHOD_SPEC_ERRORS(
200
- 25,
194
+ 24,
201
195
  "fixIncorrectScrollViewStateUpdateOnAndroid",
202
196
  " REACT_SYNC_METHOD(fixIncorrectScrollViewStateUpdateOnAndroid) bool fixIncorrectScrollViewStateUpdateOnAndroid() noexcept { /* implementation */ }\n"
203
197
  " REACT_SYNC_METHOD(fixIncorrectScrollViewStateUpdateOnAndroid) static bool fixIncorrectScrollViewStateUpdateOnAndroid() noexcept { /* implementation */ }\n");
204
198
  REACT_SHOW_METHOD_SPEC_ERRORS(
205
- 26,
199
+ 25,
206
200
  "fixMappingOfEventPrioritiesBetweenFabricAndReact",
207
201
  " REACT_SYNC_METHOD(fixMappingOfEventPrioritiesBetweenFabricAndReact) bool fixMappingOfEventPrioritiesBetweenFabricAndReact() noexcept { /* implementation */ }\n"
208
202
  " REACT_SYNC_METHOD(fixMappingOfEventPrioritiesBetweenFabricAndReact) static bool fixMappingOfEventPrioritiesBetweenFabricAndReact() noexcept { /* implementation */ }\n");
209
203
  REACT_SHOW_METHOD_SPEC_ERRORS(
210
- 27,
204
+ 26,
211
205
  "fixMissedFabricStateUpdatesOnAndroid",
212
206
  " REACT_SYNC_METHOD(fixMissedFabricStateUpdatesOnAndroid) bool fixMissedFabricStateUpdatesOnAndroid() noexcept { /* implementation */ }\n"
213
207
  " REACT_SYNC_METHOD(fixMissedFabricStateUpdatesOnAndroid) static bool fixMissedFabricStateUpdatesOnAndroid() noexcept { /* implementation */ }\n");
214
208
  REACT_SHOW_METHOD_SPEC_ERRORS(
215
- 28,
209
+ 27,
216
210
  "fixMountingCoordinatorReportedPendingTransactionsOnAndroid",
217
211
  " REACT_SYNC_METHOD(fixMountingCoordinatorReportedPendingTransactionsOnAndroid) bool fixMountingCoordinatorReportedPendingTransactionsOnAndroid() noexcept { /* implementation */ }\n"
218
212
  " REACT_SYNC_METHOD(fixMountingCoordinatorReportedPendingTransactionsOnAndroid) static bool fixMountingCoordinatorReportedPendingTransactionsOnAndroid() noexcept { /* implementation */ }\n");
219
213
  REACT_SHOW_METHOD_SPEC_ERRORS(
220
- 29,
214
+ 28,
221
215
  "forceBatchingMountItemsOnAndroid",
222
216
  " REACT_SYNC_METHOD(forceBatchingMountItemsOnAndroid) bool forceBatchingMountItemsOnAndroid() noexcept { /* implementation */ }\n"
223
217
  " REACT_SYNC_METHOD(forceBatchingMountItemsOnAndroid) static bool forceBatchingMountItemsOnAndroid() noexcept { /* implementation */ }\n");
224
218
  REACT_SHOW_METHOD_SPEC_ERRORS(
225
- 30,
219
+ 29,
226
220
  "fuseboxEnabledDebug",
227
221
  " REACT_SYNC_METHOD(fuseboxEnabledDebug) bool fuseboxEnabledDebug() noexcept { /* implementation */ }\n"
228
222
  " REACT_SYNC_METHOD(fuseboxEnabledDebug) static bool fuseboxEnabledDebug() noexcept { /* implementation */ }\n");
229
223
  REACT_SHOW_METHOD_SPEC_ERRORS(
230
- 31,
224
+ 30,
231
225
  "fuseboxEnabledRelease",
232
226
  " REACT_SYNC_METHOD(fuseboxEnabledRelease) bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n"
233
227
  " REACT_SYNC_METHOD(fuseboxEnabledRelease) static bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n");
234
228
  REACT_SHOW_METHOD_SPEC_ERRORS(
235
- 32,
229
+ 31,
236
230
  "initEagerTurboModulesOnNativeModulesQueueAndroid",
237
231
  " REACT_SYNC_METHOD(initEagerTurboModulesOnNativeModulesQueueAndroid) bool initEagerTurboModulesOnNativeModulesQueueAndroid() noexcept { /* implementation */ }\n"
238
232
  " REACT_SYNC_METHOD(initEagerTurboModulesOnNativeModulesQueueAndroid) static bool initEagerTurboModulesOnNativeModulesQueueAndroid() noexcept { /* implementation */ }\n");
239
233
  REACT_SHOW_METHOD_SPEC_ERRORS(
240
- 33,
234
+ 32,
241
235
  "lazyAnimationCallbacks",
242
236
  " REACT_SYNC_METHOD(lazyAnimationCallbacks) bool lazyAnimationCallbacks() noexcept { /* implementation */ }\n"
243
237
  " REACT_SYNC_METHOD(lazyAnimationCallbacks) static bool lazyAnimationCallbacks() noexcept { /* implementation */ }\n");
244
238
  REACT_SHOW_METHOD_SPEC_ERRORS(
245
- 34,
239
+ 33,
246
240
  "loadVectorDrawablesOnImages",
247
241
  " REACT_SYNC_METHOD(loadVectorDrawablesOnImages) bool loadVectorDrawablesOnImages() noexcept { /* implementation */ }\n"
248
242
  " REACT_SYNC_METHOD(loadVectorDrawablesOnImages) static bool loadVectorDrawablesOnImages() noexcept { /* implementation */ }\n");
249
243
  REACT_SHOW_METHOD_SPEC_ERRORS(
250
- 35,
244
+ 34,
251
245
  "setAndroidLayoutDirection",
252
246
  " REACT_SYNC_METHOD(setAndroidLayoutDirection) bool setAndroidLayoutDirection() noexcept { /* implementation */ }\n"
253
247
  " REACT_SYNC_METHOD(setAndroidLayoutDirection) static bool setAndroidLayoutDirection() noexcept { /* implementation */ }\n");
254
248
  REACT_SHOW_METHOD_SPEC_ERRORS(
255
- 36,
249
+ 35,
256
250
  "traceTurboModulePromiseRejectionsOnAndroid",
257
251
  " REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n"
258
252
  " REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) static bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n");
259
253
  REACT_SHOW_METHOD_SPEC_ERRORS(
260
- 37,
254
+ 36,
261
255
  "useFabricInterop",
262
256
  " REACT_SYNC_METHOD(useFabricInterop) bool useFabricInterop() noexcept { /* implementation */ }\n"
263
257
  " REACT_SYNC_METHOD(useFabricInterop) static bool useFabricInterop() noexcept { /* implementation */ }\n");
264
258
  REACT_SHOW_METHOD_SPEC_ERRORS(
265
- 38,
259
+ 37,
266
260
  "useImmediateExecutorInAndroidBridgeless",
267
261
  " REACT_SYNC_METHOD(useImmediateExecutorInAndroidBridgeless) bool useImmediateExecutorInAndroidBridgeless() noexcept { /* implementation */ }\n"
268
262
  " REACT_SYNC_METHOD(useImmediateExecutorInAndroidBridgeless) static bool useImmediateExecutorInAndroidBridgeless() noexcept { /* implementation */ }\n");
269
263
  REACT_SHOW_METHOD_SPEC_ERRORS(
270
- 39,
264
+ 38,
271
265
  "useModernRuntimeScheduler",
272
266
  " REACT_SYNC_METHOD(useModernRuntimeScheduler) bool useModernRuntimeScheduler() noexcept { /* implementation */ }\n"
273
267
  " REACT_SYNC_METHOD(useModernRuntimeScheduler) static bool useModernRuntimeScheduler() noexcept { /* implementation */ }\n");
274
268
  REACT_SHOW_METHOD_SPEC_ERRORS(
275
- 40,
269
+ 39,
276
270
  "useNativeViewConfigsInBridgelessMode",
277
271
  " REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n"
278
272
  " REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) static bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n");
279
273
  REACT_SHOW_METHOD_SPEC_ERRORS(
280
- 41,
274
+ 40,
281
275
  "useNewReactImageViewBackgroundDrawing",
282
276
  " REACT_SYNC_METHOD(useNewReactImageViewBackgroundDrawing) bool useNewReactImageViewBackgroundDrawing() noexcept { /* implementation */ }\n"
283
277
  " REACT_SYNC_METHOD(useNewReactImageViewBackgroundDrawing) static bool useNewReactImageViewBackgroundDrawing() noexcept { /* implementation */ }\n");
284
278
  REACT_SHOW_METHOD_SPEC_ERRORS(
285
- 42,
279
+ 41,
286
280
  "useOptimisedViewPreallocationOnAndroid",
287
281
  " REACT_SYNC_METHOD(useOptimisedViewPreallocationOnAndroid) bool useOptimisedViewPreallocationOnAndroid() noexcept { /* implementation */ }\n"
288
282
  " REACT_SYNC_METHOD(useOptimisedViewPreallocationOnAndroid) static bool useOptimisedViewPreallocationOnAndroid() noexcept { /* implementation */ }\n");
289
283
  REACT_SHOW_METHOD_SPEC_ERRORS(
290
- 43,
284
+ 42,
291
285
  "useOptimizedEventBatchingOnAndroid",
292
286
  " REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n"
293
287
  " REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) static bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n");
294
288
  REACT_SHOW_METHOD_SPEC_ERRORS(
295
- 44,
289
+ 43,
296
290
  "useRuntimeShadowNodeReferenceUpdate",
297
291
  " REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdate) bool useRuntimeShadowNodeReferenceUpdate() noexcept { /* implementation */ }\n"
298
292
  " REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdate) static bool useRuntimeShadowNodeReferenceUpdate() noexcept { /* implementation */ }\n");
299
293
  REACT_SHOW_METHOD_SPEC_ERRORS(
300
- 45,
294
+ 44,
301
295
  "useRuntimeShadowNodeReferenceUpdateOnLayout",
302
296
  " REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdateOnLayout) bool useRuntimeShadowNodeReferenceUpdateOnLayout() noexcept { /* implementation */ }\n"
303
297
  " REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdateOnLayout) static bool useRuntimeShadowNodeReferenceUpdateOnLayout() noexcept { /* implementation */ }\n");
304
298
  REACT_SHOW_METHOD_SPEC_ERRORS(
305
- 46,
299
+ 45,
306
300
  "useStateAlignmentMechanism",
307
301
  " REACT_SYNC_METHOD(useStateAlignmentMechanism) bool useStateAlignmentMechanism() noexcept { /* implementation */ }\n"
308
302
  " REACT_SYNC_METHOD(useStateAlignmentMechanism) static bool useStateAlignmentMechanism() noexcept { /* implementation */ }\n");
309
303
  REACT_SHOW_METHOD_SPEC_ERRORS(
310
- 47,
304
+ 46,
311
305
  "useTurboModuleInterop",
312
306
  " REACT_SYNC_METHOD(useTurboModuleInterop) bool useTurboModuleInterop() noexcept { /* implementation */ }\n"
313
307
  " REACT_SYNC_METHOD(useTurboModuleInterop) static bool useTurboModuleInterop() noexcept { /* implementation */ }\n");