react-native-windows 0.77.0-preview.4 → 0.78.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.
- package/.flowconfig +1 -1
- package/Chakra/ChakraTracing.cpp +1 -1
- package/Libraries/Animated/animations/Animation.js +22 -1
- package/Libraries/Animated/animations/DecayAnimation.js +1 -0
- package/Libraries/Animated/animations/SpringAnimation.js +1 -0
- package/Libraries/Animated/animations/TimingAnimation.js +1 -0
- package/Libraries/Animated/nodes/AnimatedAddition.js +9 -2
- package/Libraries/Animated/nodes/AnimatedColor.js +4 -1
- package/Libraries/Animated/nodes/AnimatedDiffClamp.js +10 -2
- package/Libraries/Animated/nodes/AnimatedDivision.js +9 -2
- package/Libraries/Animated/nodes/AnimatedInterpolation.js +5 -1
- package/Libraries/Animated/nodes/AnimatedModulo.js +5 -2
- package/Libraries/Animated/nodes/AnimatedMultiplication.js +9 -2
- package/Libraries/Animated/nodes/AnimatedNode.js +25 -46
- package/Libraries/Animated/nodes/AnimatedObject.js +9 -2
- package/Libraries/Animated/nodes/AnimatedProps.js +5 -1
- package/Libraries/Animated/nodes/AnimatedStyle.js +5 -1
- package/Libraries/Animated/nodes/AnimatedSubtraction.js +9 -2
- package/Libraries/Animated/nodes/AnimatedTracking.js +5 -1
- package/Libraries/Animated/nodes/AnimatedTransform.js +5 -1
- package/Libraries/Animated/nodes/AnimatedValue.js +49 -4
- package/Libraries/Animated/nodes/AnimatedValueXY.js +3 -1
- package/Libraries/Animated/useAnimatedProps.js +0 -43
- package/Libraries/Components/Button.windows.js +3 -0
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts +1 -1
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +3 -1
- package/Libraries/Components/LayoutConformance/LayoutConformance.d.ts +21 -0
- package/Libraries/Components/LayoutConformance/LayoutConformance.js +59 -0
- package/Libraries/Components/LayoutConformance/LayoutConformanceNativeComponent.js +29 -0
- package/Libraries/Components/Pressable/Pressable.windows.js +3 -0
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +1 -0
- package/Libraries/Components/TextInput/TextInput.d.ts +5 -0
- package/Libraries/Components/TextInput/TextInput.flow.js +6 -0
- package/Libraries/Components/TextInput/TextInput.js +6 -0
- package/Libraries/Components/TextInput/TextInput.windows.js +9 -0
- package/Libraries/Components/Touchable/TouchableBounce.windows.js +2 -0
- package/Libraries/Components/Touchable/TouchableNativeFeedback.windows.js +2 -0
- package/Libraries/Components/Touchable/TouchableOpacity.windows.js +2 -0
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.windows.js +2 -0
- package/Libraries/Components/View/View.windows.js +3 -0
- package/Libraries/Components/View/ViewAccessibility.d.ts +7 -2
- package/Libraries/Components/View/ViewAccessibility.windows.js +1 -0
- package/Libraries/Components/View/ViewPropTypes.d.ts +0 -7
- package/Libraries/Components/View/ViewPropTypes.js +0 -9
- package/Libraries/Components/View/ViewPropTypes.windows.js +1 -9
- package/Libraries/Core/ReactNativeVersion.js +2 -2
- package/Libraries/Core/setUpBatchedBridge.js +1 -16
- package/Libraries/EventEmitter/RCTEventEmitter.js +2 -6
- package/Libraries/Image/AssetSourceResolver.js +11 -0
- package/Libraries/Image/AssetSourceResolver.windows.js +11 -0
- package/Libraries/Image/Image.windows.js +2 -0
- package/Libraries/Inspector/BorderBox.js +26 -14
- package/Libraries/Inspector/BoxInspector.js +60 -42
- package/Libraries/Inspector/ElementBox.js +55 -48
- package/Libraries/Inspector/StyleInspector.js +36 -30
- package/Libraries/LayoutAnimation/LayoutAnimation.js +2 -2
- package/Libraries/Lists/FlatList.d.ts +1 -1
- package/Libraries/Modal/Modal.js +2 -0
- package/Libraries/Modal/Modal.windows.js +2 -0
- package/Libraries/NativeComponent/BaseViewConfig.android.js +0 -2
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +0 -2
- package/Libraries/NativeComponent/BaseViewConfig.windows.js +0 -2
- package/Libraries/Network/RCTNetworking.android.js +24 -16
- package/Libraries/Network/RCTNetworking.ios.js +1 -46
- package/Libraries/Network/RCTNetworking.windows.js +1 -46
- package/Libraries/Network/RCTNetworkingEventDefinitions.flow.js +57 -0
- package/Libraries/ReactNative/UIManagerProperties.js +3 -1
- package/Libraries/Renderer/implementations/ReactFabric-dev.js +15828 -26461
- package/Libraries/Renderer/implementations/ReactFabric-prod.js +3907 -2560
- package/Libraries/Renderer/implementations/ReactFabric-profiling.js +4399 -2878
- package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +16102 -26908
- package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +4034 -2695
- package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +4535 -3045
- package/Libraries/Renderer/shims/ReactNativeTypes.js +5 -6
- package/Libraries/StyleSheet/processTransform.js +6 -0
- package/Libraries/Text/Text.d.ts +6 -1
- package/Libraries/Text/Text.windows.js +4 -0
- package/Libraries/Text/TextProps.js +2 -2
- package/Libraries/Text/TextProps.windows.js +3 -2
- package/Libraries/Utilities/BackHandler.android.js +5 -4
- package/Libraries/Utilities/BackHandler.ios.js +4 -5
- package/Libraries/Utilities/BackHandler.windows.js +5 -4
- package/Microsoft.ReactNative/CompositionComponentView.idl +13 -1
- package/Microsoft.ReactNative/Fabric/ComponentView.cpp +0 -1
- package/Microsoft.ReactNative/Fabric/Composition/ComponentViewRegistry.cpp +0 -5
- package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.cpp +92 -17
- package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.h +9 -0
- package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.cpp +13 -33
- package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.h +1 -3
- package/Microsoft.ReactNative/Fabric/Composition/CompositionRootAutomationProvider.cpp +43 -5
- package/Microsoft.ReactNative/Fabric/Composition/CompositionRootAutomationProvider.h +2 -1
- package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +12 -10
- package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.cpp +11 -9
- package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.h +1 -1
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +191 -329
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.h +3 -61
- package/Microsoft.ReactNative/Fabric/Composition/PortalComponentView.cpp +66 -0
- package/Microsoft.ReactNative/Fabric/Composition/PortalComponentView.h +52 -0
- package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.cpp +21 -0
- package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.h +7 -4
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +79 -19
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.h +12 -6
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +71 -17
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +16 -0
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentDescriptor.h +5 -10
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +4 -4
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.cpp +138 -110
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.h +27 -27
- package/Microsoft.ReactNative/Fabric/Composition/Theme.cpp +1 -1
- package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.cpp +38 -33
- package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.h +0 -2
- package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.cpp +5 -16
- package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.h +0 -3
- package/Microsoft.ReactNative/Fabric/ImageManager.cpp +9 -0
- package/Microsoft.ReactNative/Fabric/WindowsComponentDescriptorRegistry.cpp +0 -2
- package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/PlatformColorUtils.cpp +1 -1
- package/Microsoft.ReactNative/IReactCompositionViewComponentBuilder.idl +5 -0
- package/Microsoft.ReactNative/IReactContext.cpp +2 -2
- package/Microsoft.ReactNative/IReactContext.h +1 -1
- package/Microsoft.ReactNative/IReactContext.idl +2 -2
- package/Microsoft.ReactNative/IReactPackageBuilder.idl +3 -3
- package/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +97 -87
- package/Microsoft.ReactNative/Modules/AccessibilityInfoModule.cpp +4 -0
- package/Microsoft.ReactNative/Modules/AlertModule.cpp +9 -4
- package/Microsoft.ReactNative/Modules/Animated/NativeAnimatedNodeManager.cpp +1 -1
- package/Microsoft.ReactNative/Modules/Animated/PropsAnimatedNode.cpp +32 -35
- package/Microsoft.ReactNative/Modules/Animated/PropsAnimatedNode.h +7 -4
- package/Microsoft.ReactNative/Modules/AppStateModule.cpp +1 -1
- package/Microsoft.ReactNative/Modules/AppThemeModuleUwp.cpp +2 -2
- package/Microsoft.ReactNative/Modules/AppearanceModule.cpp +2 -2
- package/Microsoft.ReactNative/Modules/DeviceInfoModule.cpp +3 -3
- package/Microsoft.ReactNative/Modules/I18nManagerModule.cpp +1 -1
- package/Microsoft.ReactNative/Modules/LogBoxModule.cpp +7 -5
- package/Microsoft.ReactNative/Modules/LogBoxModule.h +2 -1
- package/Microsoft.ReactNative/Modules/NativeUIManager.cpp +10 -10
- package/Microsoft.ReactNative/Modules/PaperUIManagerModule.cpp +24 -24
- package/Microsoft.ReactNative/Modules/Timing.cpp +2 -2
- package/Microsoft.ReactNative/ReactHost/IReactInstance.h +5 -0
- package/Microsoft.ReactNative/ReactHost/React.h +0 -3
- package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.cpp +39 -16
- package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.h +4 -2
- package/Microsoft.ReactNative/ReactNativeHost.cpp +9 -4
- package/Microsoft.ReactNative/ReactNativeIsland.idl +5 -1
- package/Microsoft.ReactNative/ReactPackageBuilder.cpp +3 -3
- package/Microsoft.ReactNative/ReactPackageBuilder.h +4 -4
- package/Microsoft.ReactNative/Utils/Helpers.cpp +0 -2
- package/Microsoft.ReactNative/Views/DevMenu.cpp +6 -6
- package/Microsoft.ReactNative/Views/DevMenu.h +1 -1
- package/Microsoft.ReactNative/Views/ViewManagerBase.cpp +2 -2
- package/Microsoft.ReactNative/Views/ViewPanel.cpp +1 -1
- package/Microsoft.ReactNative/Views/ViewViewManager.cpp +2 -2
- package/Microsoft.ReactNative/XamlUIService.cpp +13 -7
- package/Microsoft.ReactNative/XamlUIService.h +4 -1
- package/Microsoft.ReactNative/XamlUIService.idl +2 -0
- package/Microsoft.ReactNative.Cxx/JSI/JsiAbiApi.h +6 -2
- package/Microsoft.ReactNative.Cxx/ReactContext.h +1 -1
- package/Microsoft.ReactNative.Cxx/XamlUtils.h +12 -0
- package/PropertySheets/Generated/PackageVersion.g.props +3 -3
- package/PropertySheets/React.Cpp.props +3 -0
- package/PropertySheets/WebView2.props +1 -1
- package/PropertySheets/WinUI.props +5 -4
- package/ReactCommon/ReactCommon.vcxproj +5 -1
- package/ReactCommon/ReactCommon.vcxproj.filters +1 -1
- package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/JSExecutor.cpp +3 -3
- package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/NativeToJsBridge.cpp +3 -3
- package/ReactCommon/TEMP_UntilReactCommonUpdate/jsi/jsi/test/testlib.cpp +91 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/componentregistry/ComponentDescriptorRegistry.cpp +1 -12
- package/{Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.h → ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/textinput/TextInputState.h} +37 -35
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/AccessibilityPrimitives.h +1 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/accessibilityPropsConversions.h +4 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/imagemanager/ImageRequestParams.h +30 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/runtimescheduler/SchedulerPriorityUtils.h +4 -3
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/uimanager/primitives.h +179 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/ReactInstance.cpp +43 -57
- package/Shared/HermesRuntimeHolder.cpp +2 -2
- package/Shared/Shared.vcxitems +8 -14
- package/Shared/Shared.vcxitems.filters +4 -16
- package/Shared/Threading/BatchingQueueThread.cpp +3 -3
- package/codegen/NativeCPUTimeSpec.g.h +41 -0
- package/codegen/NativeFantomSpec.g.h +78 -0
- package/codegen/NativePerformanceSpec.g.h +31 -43
- package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +84 -84
- package/codegen/react/components/rnwcore/ActivityIndicatorView.g.h +212 -0
- package/codegen/react/components/rnwcore/AndroidDrawerLayout.g.h +295 -0
- package/codegen/react/components/rnwcore/AndroidHorizontalScrollContentView.g.h +200 -0
- package/codegen/react/components/rnwcore/AndroidProgressBar.g.h +224 -0
- package/codegen/react/components/rnwcore/AndroidSwipeRefreshLayout.g.h +250 -0
- package/codegen/react/components/rnwcore/AndroidSwitch.g.h +267 -0
- package/codegen/react/components/rnwcore/DebuggingOverlay.g.h +234 -0
- package/codegen/react/components/rnwcore/InputAccessory.g.h +200 -0
- package/codegen/react/components/rnwcore/ModalHostView.g.h +283 -0
- package/codegen/react/components/rnwcore/PullToRefreshView.g.h +246 -0
- package/codegen/react/components/rnwcore/SafeAreaView.g.h +197 -0
- package/codegen/react/components/rnwcore/Switch.g.h +263 -0
- package/codegen/react/components/rnwcore/UnimplementedNativeView.g.h +200 -0
- package/codegen/rnwcoreJSI-generated.cpp +90 -57
- package/codegen/rnwcoreJSI.h +241 -104
- package/index.js +5 -0
- package/index.windows.js +5 -0
- package/just-task.js +1 -1
- package/package.json +23 -24
- package/src/private/animated/NativeAnimatedValidation.js +1 -1
- package/src/private/featureflags/ReactNativeFeatureFlags.js +32 -26
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +5 -5
- package/src/private/renderer/errorhandling/ErrorHandlers.js +12 -55
- package/src/private/specs/modules/{NativeJSCSamplingProfiler.js → NativeCPUTime.js} +7 -2
- package/src/private/specs/modules/NativeFantom.js +37 -0
- package/src/private/utilities/ensureInstance.js +21 -0
- package/src/private/webapis/dom/nodes/ReactNativeElement.js +49 -6
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +17 -9
- package/src/private/webapis/intersectionobserver/IntersectionObserver.js +11 -11
- package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +1 -1
- package/src/private/webapis/intersectionobserver/IntersectionObserverManager.js +1 -1
- package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +1 -0
- package/src/private/webapis/performance/Performance.js +0 -12
- package/src/private/webapis/performance/specs/NativePerformance.js +0 -11
- package/types/index.d.ts +1 -0
- package/Libraries/HeapCapture/HeapCapture.js +0 -29
- package/Libraries/HeapCapture/NativeJSCHeapCapture.js +0 -13
- package/Libraries/Performance/NativeJSCSamplingProfiler.js +0 -13
- package/Libraries/Performance/SamplingProfiler.js +0 -39
- package/Libraries/ReactNative/__mocks__/FabricUIManager.js +0 -334
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentDescriptor.h +0 -39
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewShadowNode.cpp +0 -18
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewShadowNode.h +0 -39
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.cpp +0 -34
- package/Microsoft.ReactNative/Fabric/ReactNativeConfigProperties.cpp +0 -53
- package/Microsoft.ReactNative/Fabric/ReactNativeConfigProperties.h +0 -26
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/core/LayoutableShadowNode.cpp +0 -363
- package/codegen/NativeJSCSamplingProfilerSpec.g.h +0 -35
- package/src/private/webapis/dom/nodes/specs/__mocks__/NativeDOMMock.js +0 -413
- package/src/private/webapis/intersectionobserver/specs/__mocks__/NativeIntersectionObserver.js +0 -181
- package/src/private/webapis/mutationobserver/specs/__mocks__/NativeMutationObserver.js +0 -327
|
@@ -80,24 +80,22 @@ inline winrt::Microsoft::ReactNative::FieldMap GetStructInfo(PerformanceSpec_Rea
|
|
|
80
80
|
struct PerformanceSpec : winrt::Microsoft::ReactNative::TurboModuleSpec {
|
|
81
81
|
static constexpr auto methods = std::tuple{
|
|
82
82
|
SyncMethod<double() noexcept>{0, L"now"},
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
SyncMethod<std::vector<PerformanceSpec_RawPerformanceEntry>() noexcept>{7, L"
|
|
90
|
-
SyncMethod
|
|
91
|
-
SyncMethod
|
|
92
|
-
SyncMethod<::React::
|
|
93
|
-
SyncMethod
|
|
94
|
-
SyncMethod
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
SyncMethod<std::vector<PerformanceSpec_RawPerformanceEntry>(, bool) noexcept>{17, L"takeRecords"},
|
|
100
|
-
SyncMethod<std::vector<double>() noexcept>{18, L"getSupportedPerformanceEntryTypes"},
|
|
83
|
+
SyncMethod<double(std::string, double) noexcept>{1, L"markWithResult"},
|
|
84
|
+
SyncMethod<std::vector<double>(std::string, double, double, double, std::string, std::string) noexcept>{2, L"measureWithResult"},
|
|
85
|
+
Method<void(std::string) noexcept>{3, L"clearMarks"},
|
|
86
|
+
Method<void(std::string) noexcept>{4, L"clearMeasures"},
|
|
87
|
+
SyncMethod<std::vector<PerformanceSpec_RawPerformanceEntry>() noexcept>{5, L"getEntries"},
|
|
88
|
+
SyncMethod<std::vector<PerformanceSpec_RawPerformanceEntry>(std::string, std::optional<double>) noexcept>{6, L"getEntriesByName"},
|
|
89
|
+
SyncMethod<std::vector<PerformanceSpec_RawPerformanceEntry>(double) noexcept>{7, L"getEntriesByType"},
|
|
90
|
+
SyncMethod<::React::JSValueArray() noexcept>{8, L"getEventCounts"},
|
|
91
|
+
SyncMethod<::React::JSValue() noexcept>{9, L"getSimpleMemoryInfo"},
|
|
92
|
+
SyncMethod<::React::JSValue() noexcept>{10, L"getReactNativeStartupTiming"},
|
|
93
|
+
SyncMethod<(Callback<>) noexcept>{11, L"createObserver"},
|
|
94
|
+
SyncMethod<double() noexcept>{12, L"getDroppedEntriesCount"},
|
|
95
|
+
Method<void(, PerformanceSpec_PerformanceObserverInit) noexcept>{13, L"observe"},
|
|
96
|
+
Method<void() noexcept>{14, L"disconnect"},
|
|
97
|
+
SyncMethod<std::vector<PerformanceSpec_RawPerformanceEntry>(, bool) noexcept>{15, L"takeRecords"},
|
|
98
|
+
SyncMethod<std::vector<double>() noexcept>{16, L"getSupportedPerformanceEntryTypes"},
|
|
101
99
|
};
|
|
102
100
|
|
|
103
101
|
template <class TModule>
|
|
@@ -111,91 +109,81 @@ struct PerformanceSpec : winrt::Microsoft::ReactNative::TurboModuleSpec {
|
|
|
111
109
|
" REACT_SYNC_METHOD(now) static double now() noexcept { /* implementation */ }\n");
|
|
112
110
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
113
111
|
1,
|
|
114
|
-
"mark",
|
|
115
|
-
" REACT_METHOD(mark) void mark(std::string name, double startTime) noexcept { /* implementation */ }\n"
|
|
116
|
-
" REACT_METHOD(mark) static void mark(std::string name, double startTime) noexcept { /* implementation */ }\n");
|
|
117
|
-
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
118
|
-
2,
|
|
119
|
-
"measure",
|
|
120
|
-
" REACT_METHOD(measure) void measure(std::string name, double startTime, double endTime, double duration, std::string startMark, std::string endMark) noexcept { /* implementation */ }\n"
|
|
121
|
-
" REACT_METHOD(measure) static void measure(std::string name, double startTime, double endTime, double duration, std::string startMark, std::string endMark) noexcept { /* implementation */ }\n");
|
|
122
|
-
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
123
|
-
3,
|
|
124
112
|
"markWithResult",
|
|
125
113
|
" REACT_SYNC_METHOD(markWithResult) double markWithResult(std::string name, double startTime) noexcept { /* implementation */ }\n"
|
|
126
114
|
" REACT_SYNC_METHOD(markWithResult) static double markWithResult(std::string name, double startTime) noexcept { /* implementation */ }\n");
|
|
127
115
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
128
|
-
|
|
116
|
+
2,
|
|
129
117
|
"measureWithResult",
|
|
130
118
|
" REACT_SYNC_METHOD(measureWithResult) std::vector<double> measureWithResult(std::string name, double startTime, double endTime, double duration, std::string startMark, std::string endMark) noexcept { /* implementation */ }\n"
|
|
131
119
|
" REACT_SYNC_METHOD(measureWithResult) static std::vector<double> measureWithResult(std::string name, double startTime, double endTime, double duration, std::string startMark, std::string endMark) noexcept { /* implementation */ }\n");
|
|
132
120
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
133
|
-
|
|
121
|
+
3,
|
|
134
122
|
"clearMarks",
|
|
135
123
|
" REACT_METHOD(clearMarks) void clearMarks(std::string entryName) noexcept { /* implementation */ }\n"
|
|
136
124
|
" REACT_METHOD(clearMarks) static void clearMarks(std::string entryName) noexcept { /* implementation */ }\n");
|
|
137
125
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
138
|
-
|
|
126
|
+
4,
|
|
139
127
|
"clearMeasures",
|
|
140
128
|
" REACT_METHOD(clearMeasures) void clearMeasures(std::string entryName) noexcept { /* implementation */ }\n"
|
|
141
129
|
" REACT_METHOD(clearMeasures) static void clearMeasures(std::string entryName) noexcept { /* implementation */ }\n");
|
|
142
130
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
143
|
-
|
|
131
|
+
5,
|
|
144
132
|
"getEntries",
|
|
145
133
|
" REACT_SYNC_METHOD(getEntries) std::vector<PerformanceSpec_RawPerformanceEntry> getEntries() noexcept { /* implementation */ }\n"
|
|
146
134
|
" REACT_SYNC_METHOD(getEntries) static std::vector<PerformanceSpec_RawPerformanceEntry> getEntries() noexcept { /* implementation */ }\n");
|
|
147
135
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
148
|
-
|
|
136
|
+
6,
|
|
149
137
|
"getEntriesByName",
|
|
150
138
|
" REACT_SYNC_METHOD(getEntriesByName) std::vector<PerformanceSpec_RawPerformanceEntry> getEntriesByName(std::string entryName, std::optional<double> entryType) noexcept { /* implementation */ }\n"
|
|
151
139
|
" REACT_SYNC_METHOD(getEntriesByName) static std::vector<PerformanceSpec_RawPerformanceEntry> getEntriesByName(std::string entryName, std::optional<double> entryType) noexcept { /* implementation */ }\n");
|
|
152
140
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
153
|
-
|
|
141
|
+
7,
|
|
154
142
|
"getEntriesByType",
|
|
155
143
|
" REACT_SYNC_METHOD(getEntriesByType) std::vector<PerformanceSpec_RawPerformanceEntry> getEntriesByType(double entryType) noexcept { /* implementation */ }\n"
|
|
156
144
|
" REACT_SYNC_METHOD(getEntriesByType) static std::vector<PerformanceSpec_RawPerformanceEntry> getEntriesByType(double entryType) noexcept { /* implementation */ }\n");
|
|
157
145
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
158
|
-
|
|
146
|
+
8,
|
|
159
147
|
"getEventCounts",
|
|
160
148
|
" REACT_SYNC_METHOD(getEventCounts) ::React::JSValueArray getEventCounts() noexcept { /* implementation */ }\n"
|
|
161
149
|
" REACT_SYNC_METHOD(getEventCounts) static ::React::JSValueArray getEventCounts() noexcept { /* implementation */ }\n");
|
|
162
150
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
163
|
-
|
|
151
|
+
9,
|
|
164
152
|
"getSimpleMemoryInfo",
|
|
165
153
|
" REACT_SYNC_METHOD(getSimpleMemoryInfo) ::React::JSValue getSimpleMemoryInfo() noexcept { /* implementation */ }\n"
|
|
166
154
|
" REACT_SYNC_METHOD(getSimpleMemoryInfo) static ::React::JSValue getSimpleMemoryInfo() noexcept { /* implementation */ }\n");
|
|
167
155
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
168
|
-
|
|
156
|
+
10,
|
|
169
157
|
"getReactNativeStartupTiming",
|
|
170
158
|
" REACT_SYNC_METHOD(getReactNativeStartupTiming) ::React::JSValue getReactNativeStartupTiming() noexcept { /* implementation */ }\n"
|
|
171
159
|
" REACT_SYNC_METHOD(getReactNativeStartupTiming) static ::React::JSValue getReactNativeStartupTiming() noexcept { /* implementation */ }\n");
|
|
172
160
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
173
|
-
|
|
161
|
+
11,
|
|
174
162
|
"createObserver",
|
|
175
163
|
" REACT_SYNC_METHOD(createObserver) createObserver(std::function<void()> const & callback) noexcept { /* implementation */ }\n"
|
|
176
164
|
" REACT_SYNC_METHOD(createObserver) static createObserver(std::function<void()> const & callback) noexcept { /* implementation */ }\n");
|
|
177
165
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
178
|
-
|
|
166
|
+
12,
|
|
179
167
|
"getDroppedEntriesCount",
|
|
180
168
|
" REACT_SYNC_METHOD(getDroppedEntriesCount) double getDroppedEntriesCount( observer) noexcept { /* implementation */ }\n"
|
|
181
169
|
" REACT_SYNC_METHOD(getDroppedEntriesCount) static double getDroppedEntriesCount( observer) noexcept { /* implementation */ }\n");
|
|
182
170
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
183
|
-
|
|
171
|
+
13,
|
|
184
172
|
"observe",
|
|
185
173
|
" REACT_METHOD(observe) void observe( observer, PerformanceSpec_PerformanceObserverInit && options) noexcept { /* implementation */ }\n"
|
|
186
174
|
" REACT_METHOD(observe) static void observe( observer, PerformanceSpec_PerformanceObserverInit && options) noexcept { /* implementation */ }\n");
|
|
187
175
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
188
|
-
|
|
176
|
+
14,
|
|
189
177
|
"disconnect",
|
|
190
178
|
" REACT_METHOD(disconnect) void disconnect( observer) noexcept { /* implementation */ }\n"
|
|
191
179
|
" REACT_METHOD(disconnect) static void disconnect( observer) noexcept { /* implementation */ }\n");
|
|
192
180
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
193
|
-
|
|
181
|
+
15,
|
|
194
182
|
"takeRecords",
|
|
195
183
|
" REACT_SYNC_METHOD(takeRecords) std::vector<PerformanceSpec_RawPerformanceEntry> takeRecords( observer, bool sort) noexcept { /* implementation */ }\n"
|
|
196
184
|
" REACT_SYNC_METHOD(takeRecords) static std::vector<PerformanceSpec_RawPerformanceEntry> takeRecords( observer, bool sort) noexcept { /* implementation */ }\n");
|
|
197
185
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
198
|
-
|
|
186
|
+
16,
|
|
199
187
|
"getSupportedPerformanceEntryTypes",
|
|
200
188
|
" REACT_SYNC_METHOD(getSupportedPerformanceEntryTypes) std::vector<double> getSupportedPerformanceEntryTypes() noexcept { /* implementation */ }\n"
|
|
201
189
|
" REACT_SYNC_METHOD(getSupportedPerformanceEntryTypes) static std::vector<double> getSupportedPerformanceEntryTypes() noexcept { /* implementation */ }\n");
|
|
@@ -22,44 +22,44 @@ struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleS
|
|
|
22
22
|
SyncMethod<bool() noexcept>{2, L"completeReactInstanceCreationOnBgThreadOnAndroid"},
|
|
23
23
|
SyncMethod<bool() noexcept>{3, L"disableEventLoopOnBridgeless"},
|
|
24
24
|
SyncMethod<bool() noexcept>{4, L"disableMountItemReorderingAndroid"},
|
|
25
|
-
SyncMethod<bool() noexcept>{5, L"
|
|
26
|
-
SyncMethod<bool() noexcept>{6, L"
|
|
27
|
-
SyncMethod<bool() noexcept>{7, L"
|
|
28
|
-
SyncMethod<bool() noexcept>{8, L"
|
|
29
|
-
SyncMethod<bool() noexcept>{9, L"
|
|
30
|
-
SyncMethod<bool() noexcept>{10, L"
|
|
31
|
-
SyncMethod<bool() noexcept>{11, L"
|
|
32
|
-
SyncMethod<bool() noexcept>{12, L"
|
|
33
|
-
SyncMethod<bool() noexcept>{13, L"
|
|
34
|
-
SyncMethod<bool() noexcept>{14, L"
|
|
35
|
-
SyncMethod<bool() noexcept>{15, L"
|
|
36
|
-
SyncMethod<bool() noexcept>{16, L"
|
|
37
|
-
SyncMethod<bool() noexcept>{17, L"
|
|
38
|
-
SyncMethod<bool() noexcept>{18, L"
|
|
39
|
-
SyncMethod<bool() noexcept>{19, L"
|
|
40
|
-
SyncMethod<bool() noexcept>{20, L"
|
|
41
|
-
SyncMethod<bool() noexcept>{21, L"
|
|
42
|
-
SyncMethod<bool() noexcept>{22, L"
|
|
43
|
-
SyncMethod<bool() noexcept>{23, L"
|
|
44
|
-
SyncMethod<bool() noexcept>{24, L"
|
|
45
|
-
SyncMethod<bool() noexcept>{25, L"
|
|
46
|
-
SyncMethod<bool() noexcept>{26, L"
|
|
47
|
-
SyncMethod<bool() noexcept>{27, L"
|
|
48
|
-
SyncMethod<bool() noexcept>{28, L"
|
|
25
|
+
SyncMethod<bool() noexcept>{5, L"enableAccumulatedUpdatesInRawPropsAndroid"},
|
|
26
|
+
SyncMethod<bool() noexcept>{6, L"enableBridgelessArchitecture"},
|
|
27
|
+
SyncMethod<bool() noexcept>{7, L"enableCppPropsIteratorSetter"},
|
|
28
|
+
SyncMethod<bool() noexcept>{8, L"enableDeletionOfUnmountedViews"},
|
|
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"enableFabricRenderer"},
|
|
33
|
+
SyncMethod<bool() noexcept>{13, L"enableFixForViewCommandRace"},
|
|
34
|
+
SyncMethod<bool() noexcept>{14, L"enableGranularShadowTreeStateReconciliation"},
|
|
35
|
+
SyncMethod<bool() noexcept>{15, L"enableIOSViewClipToPaddingBox"},
|
|
36
|
+
SyncMethod<bool() noexcept>{16, L"enableImagePrefetchingAndroid"},
|
|
37
|
+
SyncMethod<bool() noexcept>{17, L"enableLayoutAnimationsOnAndroid"},
|
|
38
|
+
SyncMethod<bool() noexcept>{18, L"enableLayoutAnimationsOnIOS"},
|
|
39
|
+
SyncMethod<bool() noexcept>{19, L"enableLongTaskAPI"},
|
|
40
|
+
SyncMethod<bool() noexcept>{20, L"enableNewBackgroundAndBorderDrawables"},
|
|
41
|
+
SyncMethod<bool() noexcept>{21, L"enablePreciseSchedulingForPremountItemsOnAndroid"},
|
|
42
|
+
SyncMethod<bool() noexcept>{22, L"enablePropsUpdateReconciliationAndroid"},
|
|
43
|
+
SyncMethod<bool() noexcept>{23, L"enableReportEventPaintTime"},
|
|
44
|
+
SyncMethod<bool() noexcept>{24, L"enableSynchronousStateUpdates"},
|
|
45
|
+
SyncMethod<bool() noexcept>{25, L"enableUIConsistency"},
|
|
46
|
+
SyncMethod<bool() noexcept>{26, L"enableViewRecycling"},
|
|
47
|
+
SyncMethod<bool() noexcept>{27, L"excludeYogaFromRawProps"},
|
|
48
|
+
SyncMethod<bool() noexcept>{28, L"fixDifferentiatorEmittingUpdatesWithWrongParentTag"},
|
|
49
49
|
SyncMethod<bool() noexcept>{29, L"fixMappingOfEventPrioritiesBetweenFabricAndReact"},
|
|
50
50
|
SyncMethod<bool() noexcept>{30, L"fixMountingCoordinatorReportedPendingTransactionsOnAndroid"},
|
|
51
|
-
SyncMethod<bool() noexcept>{31, L"
|
|
52
|
-
SyncMethod<bool() noexcept>{32, L"
|
|
53
|
-
SyncMethod<bool() noexcept>{33, L"
|
|
54
|
-
SyncMethod<bool() noexcept>{34, L"
|
|
55
|
-
SyncMethod<bool() noexcept>{35, L"
|
|
56
|
-
SyncMethod<bool() noexcept>{36, L"
|
|
57
|
-
SyncMethod<bool() noexcept>{37, L"
|
|
58
|
-
SyncMethod<bool() noexcept>{38, L"
|
|
59
|
-
SyncMethod<bool() noexcept>{39, L"
|
|
60
|
-
SyncMethod<bool() noexcept>{40, L"
|
|
61
|
-
SyncMethod<bool() noexcept>{41, L"
|
|
62
|
-
SyncMethod<bool() noexcept>{42, L"
|
|
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"traceTurboModulePromiseRejectionsOnAndroid"},
|
|
56
|
+
SyncMethod<bool() noexcept>{36, L"useAlwaysAvailableJSErrorHandling"},
|
|
57
|
+
SyncMethod<bool() noexcept>{37, L"useFabricInterop"},
|
|
58
|
+
SyncMethod<bool() noexcept>{38, L"useImmediateExecutorInAndroidBridgeless"},
|
|
59
|
+
SyncMethod<bool() noexcept>{39, L"useNativeViewConfigsInBridgelessMode"},
|
|
60
|
+
SyncMethod<bool() noexcept>{40, L"useOptimisedViewPreallocationOnAndroid"},
|
|
61
|
+
SyncMethod<bool() noexcept>{41, L"useOptimizedEventBatchingOnAndroid"},
|
|
62
|
+
SyncMethod<bool() noexcept>{42, L"useRawPropsJsiValue"},
|
|
63
63
|
SyncMethod<bool() noexcept>{43, L"useRuntimeShadowNodeReferenceUpdate"},
|
|
64
64
|
SyncMethod<bool() noexcept>{44, L"useTurboModuleInterop"},
|
|
65
65
|
SyncMethod<bool() noexcept>{45, L"useTurboModules"},
|
|
@@ -96,124 +96,124 @@ struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleS
|
|
|
96
96
|
" REACT_SYNC_METHOD(disableMountItemReorderingAndroid) static bool disableMountItemReorderingAndroid() noexcept { /* implementation */ }\n");
|
|
97
97
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
98
98
|
5,
|
|
99
|
-
"
|
|
100
|
-
" REACT_SYNC_METHOD(
|
|
101
|
-
" REACT_SYNC_METHOD(
|
|
99
|
+
"enableAccumulatedUpdatesInRawPropsAndroid",
|
|
100
|
+
" REACT_SYNC_METHOD(enableAccumulatedUpdatesInRawPropsAndroid) bool enableAccumulatedUpdatesInRawPropsAndroid() noexcept { /* implementation */ }\n"
|
|
101
|
+
" REACT_SYNC_METHOD(enableAccumulatedUpdatesInRawPropsAndroid) static bool enableAccumulatedUpdatesInRawPropsAndroid() noexcept { /* implementation */ }\n");
|
|
102
102
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
103
103
|
6,
|
|
104
|
-
"enableAndroidLineHeightCentering",
|
|
105
|
-
" REACT_SYNC_METHOD(enableAndroidLineHeightCentering) bool enableAndroidLineHeightCentering() noexcept { /* implementation */ }\n"
|
|
106
|
-
" REACT_SYNC_METHOD(enableAndroidLineHeightCentering) static bool enableAndroidLineHeightCentering() noexcept { /* implementation */ }\n");
|
|
107
|
-
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
108
|
-
7,
|
|
109
104
|
"enableBridgelessArchitecture",
|
|
110
105
|
" REACT_SYNC_METHOD(enableBridgelessArchitecture) bool enableBridgelessArchitecture() noexcept { /* implementation */ }\n"
|
|
111
106
|
" REACT_SYNC_METHOD(enableBridgelessArchitecture) static bool enableBridgelessArchitecture() noexcept { /* implementation */ }\n");
|
|
112
107
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
113
|
-
|
|
108
|
+
7,
|
|
114
109
|
"enableCppPropsIteratorSetter",
|
|
115
110
|
" REACT_SYNC_METHOD(enableCppPropsIteratorSetter) bool enableCppPropsIteratorSetter() noexcept { /* implementation */ }\n"
|
|
116
111
|
" REACT_SYNC_METHOD(enableCppPropsIteratorSetter) static bool enableCppPropsIteratorSetter() noexcept { /* implementation */ }\n");
|
|
117
112
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
118
|
-
|
|
113
|
+
8,
|
|
119
114
|
"enableDeletionOfUnmountedViews",
|
|
120
115
|
" REACT_SYNC_METHOD(enableDeletionOfUnmountedViews) bool enableDeletionOfUnmountedViews() noexcept { /* implementation */ }\n"
|
|
121
116
|
" REACT_SYNC_METHOD(enableDeletionOfUnmountedViews) static bool enableDeletionOfUnmountedViews() noexcept { /* implementation */ }\n");
|
|
122
117
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
123
|
-
|
|
118
|
+
9,
|
|
124
119
|
"enableEagerRootViewAttachment",
|
|
125
120
|
" REACT_SYNC_METHOD(enableEagerRootViewAttachment) bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n"
|
|
126
121
|
" REACT_SYNC_METHOD(enableEagerRootViewAttachment) static bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n");
|
|
127
122
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
128
|
-
|
|
123
|
+
10,
|
|
129
124
|
"enableEventEmitterRetentionDuringGesturesOnAndroid",
|
|
130
125
|
" REACT_SYNC_METHOD(enableEventEmitterRetentionDuringGesturesOnAndroid) bool enableEventEmitterRetentionDuringGesturesOnAndroid() noexcept { /* implementation */ }\n"
|
|
131
126
|
" REACT_SYNC_METHOD(enableEventEmitterRetentionDuringGesturesOnAndroid) static bool enableEventEmitterRetentionDuringGesturesOnAndroid() noexcept { /* implementation */ }\n");
|
|
132
127
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
133
|
-
|
|
128
|
+
11,
|
|
134
129
|
"enableFabricLogs",
|
|
135
130
|
" REACT_SYNC_METHOD(enableFabricLogs) bool enableFabricLogs() noexcept { /* implementation */ }\n"
|
|
136
131
|
" REACT_SYNC_METHOD(enableFabricLogs) static bool enableFabricLogs() noexcept { /* implementation */ }\n");
|
|
137
132
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
138
|
-
|
|
133
|
+
12,
|
|
139
134
|
"enableFabricRenderer",
|
|
140
135
|
" REACT_SYNC_METHOD(enableFabricRenderer) bool enableFabricRenderer() noexcept { /* implementation */ }\n"
|
|
141
136
|
" REACT_SYNC_METHOD(enableFabricRenderer) static bool enableFabricRenderer() noexcept { /* implementation */ }\n");
|
|
142
137
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
143
|
-
|
|
144
|
-
"enableFabricRendererExclusively",
|
|
145
|
-
" REACT_SYNC_METHOD(enableFabricRendererExclusively) bool enableFabricRendererExclusively() noexcept { /* implementation */ }\n"
|
|
146
|
-
" REACT_SYNC_METHOD(enableFabricRendererExclusively) static bool enableFabricRendererExclusively() noexcept { /* implementation */ }\n");
|
|
147
|
-
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
148
|
-
15,
|
|
138
|
+
13,
|
|
149
139
|
"enableFixForViewCommandRace",
|
|
150
140
|
" REACT_SYNC_METHOD(enableFixForViewCommandRace) bool enableFixForViewCommandRace() noexcept { /* implementation */ }\n"
|
|
151
141
|
" REACT_SYNC_METHOD(enableFixForViewCommandRace) static bool enableFixForViewCommandRace() noexcept { /* implementation */ }\n");
|
|
152
142
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
153
|
-
|
|
143
|
+
14,
|
|
154
144
|
"enableGranularShadowTreeStateReconciliation",
|
|
155
145
|
" REACT_SYNC_METHOD(enableGranularShadowTreeStateReconciliation) bool enableGranularShadowTreeStateReconciliation() noexcept { /* implementation */ }\n"
|
|
156
146
|
" REACT_SYNC_METHOD(enableGranularShadowTreeStateReconciliation) static bool enableGranularShadowTreeStateReconciliation() noexcept { /* implementation */ }\n");
|
|
157
147
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
158
|
-
|
|
148
|
+
15,
|
|
159
149
|
"enableIOSViewClipToPaddingBox",
|
|
160
150
|
" REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n"
|
|
161
151
|
" REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) static bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n");
|
|
162
152
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
163
|
-
|
|
153
|
+
16,
|
|
154
|
+
"enableImagePrefetchingAndroid",
|
|
155
|
+
" REACT_SYNC_METHOD(enableImagePrefetchingAndroid) bool enableImagePrefetchingAndroid() noexcept { /* implementation */ }\n"
|
|
156
|
+
" REACT_SYNC_METHOD(enableImagePrefetchingAndroid) static bool enableImagePrefetchingAndroid() noexcept { /* implementation */ }\n");
|
|
157
|
+
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
158
|
+
17,
|
|
164
159
|
"enableLayoutAnimationsOnAndroid",
|
|
165
160
|
" REACT_SYNC_METHOD(enableLayoutAnimationsOnAndroid) bool enableLayoutAnimationsOnAndroid() noexcept { /* implementation */ }\n"
|
|
166
161
|
" REACT_SYNC_METHOD(enableLayoutAnimationsOnAndroid) static bool enableLayoutAnimationsOnAndroid() noexcept { /* implementation */ }\n");
|
|
167
162
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
168
|
-
|
|
163
|
+
18,
|
|
169
164
|
"enableLayoutAnimationsOnIOS",
|
|
170
165
|
" REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n"
|
|
171
166
|
" REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) static bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n");
|
|
172
167
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
173
|
-
|
|
168
|
+
19,
|
|
174
169
|
"enableLongTaskAPI",
|
|
175
170
|
" REACT_SYNC_METHOD(enableLongTaskAPI) bool enableLongTaskAPI() noexcept { /* implementation */ }\n"
|
|
176
171
|
" REACT_SYNC_METHOD(enableLongTaskAPI) static bool enableLongTaskAPI() noexcept { /* implementation */ }\n");
|
|
177
172
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
178
|
-
|
|
173
|
+
20,
|
|
179
174
|
"enableNewBackgroundAndBorderDrawables",
|
|
180
175
|
" REACT_SYNC_METHOD(enableNewBackgroundAndBorderDrawables) bool enableNewBackgroundAndBorderDrawables() noexcept { /* implementation */ }\n"
|
|
181
176
|
" REACT_SYNC_METHOD(enableNewBackgroundAndBorderDrawables) static bool enableNewBackgroundAndBorderDrawables() noexcept { /* implementation */ }\n");
|
|
182
177
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
183
|
-
|
|
178
|
+
21,
|
|
184
179
|
"enablePreciseSchedulingForPremountItemsOnAndroid",
|
|
185
180
|
" REACT_SYNC_METHOD(enablePreciseSchedulingForPremountItemsOnAndroid) bool enablePreciseSchedulingForPremountItemsOnAndroid() noexcept { /* implementation */ }\n"
|
|
186
181
|
" REACT_SYNC_METHOD(enablePreciseSchedulingForPremountItemsOnAndroid) static bool enablePreciseSchedulingForPremountItemsOnAndroid() noexcept { /* implementation */ }\n");
|
|
187
182
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
188
|
-
|
|
183
|
+
22,
|
|
189
184
|
"enablePropsUpdateReconciliationAndroid",
|
|
190
185
|
" REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n"
|
|
191
186
|
" REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) static bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n");
|
|
192
187
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
193
|
-
|
|
188
|
+
23,
|
|
194
189
|
"enableReportEventPaintTime",
|
|
195
190
|
" REACT_SYNC_METHOD(enableReportEventPaintTime) bool enableReportEventPaintTime() noexcept { /* implementation */ }\n"
|
|
196
191
|
" REACT_SYNC_METHOD(enableReportEventPaintTime) static bool enableReportEventPaintTime() noexcept { /* implementation */ }\n");
|
|
197
192
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
198
|
-
|
|
193
|
+
24,
|
|
199
194
|
"enableSynchronousStateUpdates",
|
|
200
195
|
" REACT_SYNC_METHOD(enableSynchronousStateUpdates) bool enableSynchronousStateUpdates() noexcept { /* implementation */ }\n"
|
|
201
196
|
" REACT_SYNC_METHOD(enableSynchronousStateUpdates) static bool enableSynchronousStateUpdates() noexcept { /* implementation */ }\n");
|
|
202
197
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
203
|
-
|
|
198
|
+
25,
|
|
204
199
|
"enableUIConsistency",
|
|
205
200
|
" REACT_SYNC_METHOD(enableUIConsistency) bool enableUIConsistency() noexcept { /* implementation */ }\n"
|
|
206
201
|
" REACT_SYNC_METHOD(enableUIConsistency) static bool enableUIConsistency() noexcept { /* implementation */ }\n");
|
|
207
202
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
208
|
-
|
|
203
|
+
26,
|
|
209
204
|
"enableViewRecycling",
|
|
210
205
|
" REACT_SYNC_METHOD(enableViewRecycling) bool enableViewRecycling() noexcept { /* implementation */ }\n"
|
|
211
206
|
" REACT_SYNC_METHOD(enableViewRecycling) static bool enableViewRecycling() noexcept { /* implementation */ }\n");
|
|
212
207
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
213
|
-
|
|
208
|
+
27,
|
|
214
209
|
"excludeYogaFromRawProps",
|
|
215
210
|
" REACT_SYNC_METHOD(excludeYogaFromRawProps) bool excludeYogaFromRawProps() noexcept { /* implementation */ }\n"
|
|
216
211
|
" REACT_SYNC_METHOD(excludeYogaFromRawProps) static bool excludeYogaFromRawProps() noexcept { /* implementation */ }\n");
|
|
212
|
+
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
213
|
+
28,
|
|
214
|
+
"fixDifferentiatorEmittingUpdatesWithWrongParentTag",
|
|
215
|
+
" REACT_SYNC_METHOD(fixDifferentiatorEmittingUpdatesWithWrongParentTag) bool fixDifferentiatorEmittingUpdatesWithWrongParentTag() noexcept { /* implementation */ }\n"
|
|
216
|
+
" REACT_SYNC_METHOD(fixDifferentiatorEmittingUpdatesWithWrongParentTag) static bool fixDifferentiatorEmittingUpdatesWithWrongParentTag() noexcept { /* implementation */ }\n");
|
|
217
217
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
218
218
|
29,
|
|
219
219
|
"fixMappingOfEventPrioritiesBetweenFabricAndReact",
|
|
@@ -226,64 +226,64 @@ struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleS
|
|
|
226
226
|
" REACT_SYNC_METHOD(fixMountingCoordinatorReportedPendingTransactionsOnAndroid) static bool fixMountingCoordinatorReportedPendingTransactionsOnAndroid() noexcept { /* implementation */ }\n");
|
|
227
227
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
228
228
|
31,
|
|
229
|
-
"fuseboxEnabledDebug",
|
|
230
|
-
" REACT_SYNC_METHOD(fuseboxEnabledDebug) bool fuseboxEnabledDebug() noexcept { /* implementation */ }\n"
|
|
231
|
-
" REACT_SYNC_METHOD(fuseboxEnabledDebug) static bool fuseboxEnabledDebug() noexcept { /* implementation */ }\n");
|
|
232
|
-
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
233
|
-
32,
|
|
234
229
|
"fuseboxEnabledRelease",
|
|
235
230
|
" REACT_SYNC_METHOD(fuseboxEnabledRelease) bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n"
|
|
236
231
|
" REACT_SYNC_METHOD(fuseboxEnabledRelease) static bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n");
|
|
237
232
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
238
|
-
|
|
233
|
+
32,
|
|
239
234
|
"initEagerTurboModulesOnNativeModulesQueueAndroid",
|
|
240
235
|
" REACT_SYNC_METHOD(initEagerTurboModulesOnNativeModulesQueueAndroid) bool initEagerTurboModulesOnNativeModulesQueueAndroid() noexcept { /* implementation */ }\n"
|
|
241
236
|
" REACT_SYNC_METHOD(initEagerTurboModulesOnNativeModulesQueueAndroid) static bool initEagerTurboModulesOnNativeModulesQueueAndroid() noexcept { /* implementation */ }\n");
|
|
242
237
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
243
|
-
|
|
238
|
+
33,
|
|
244
239
|
"lazyAnimationCallbacks",
|
|
245
240
|
" REACT_SYNC_METHOD(lazyAnimationCallbacks) bool lazyAnimationCallbacks() noexcept { /* implementation */ }\n"
|
|
246
241
|
" REACT_SYNC_METHOD(lazyAnimationCallbacks) static bool lazyAnimationCallbacks() noexcept { /* implementation */ }\n");
|
|
247
242
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
248
|
-
|
|
243
|
+
34,
|
|
249
244
|
"loadVectorDrawablesOnImages",
|
|
250
245
|
" REACT_SYNC_METHOD(loadVectorDrawablesOnImages) bool loadVectorDrawablesOnImages() noexcept { /* implementation */ }\n"
|
|
251
246
|
" REACT_SYNC_METHOD(loadVectorDrawablesOnImages) static bool loadVectorDrawablesOnImages() noexcept { /* implementation */ }\n");
|
|
252
247
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
253
|
-
|
|
248
|
+
35,
|
|
254
249
|
"traceTurboModulePromiseRejectionsOnAndroid",
|
|
255
250
|
" REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n"
|
|
256
251
|
" REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) static bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n");
|
|
257
252
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
258
|
-
|
|
253
|
+
36,
|
|
259
254
|
"useAlwaysAvailableJSErrorHandling",
|
|
260
255
|
" REACT_SYNC_METHOD(useAlwaysAvailableJSErrorHandling) bool useAlwaysAvailableJSErrorHandling() noexcept { /* implementation */ }\n"
|
|
261
256
|
" REACT_SYNC_METHOD(useAlwaysAvailableJSErrorHandling) static bool useAlwaysAvailableJSErrorHandling() noexcept { /* implementation */ }\n");
|
|
262
257
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
263
|
-
|
|
258
|
+
37,
|
|
264
259
|
"useFabricInterop",
|
|
265
260
|
" REACT_SYNC_METHOD(useFabricInterop) bool useFabricInterop() noexcept { /* implementation */ }\n"
|
|
266
261
|
" REACT_SYNC_METHOD(useFabricInterop) static bool useFabricInterop() noexcept { /* implementation */ }\n");
|
|
267
262
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
268
|
-
|
|
263
|
+
38,
|
|
269
264
|
"useImmediateExecutorInAndroidBridgeless",
|
|
270
265
|
" REACT_SYNC_METHOD(useImmediateExecutorInAndroidBridgeless) bool useImmediateExecutorInAndroidBridgeless() noexcept { /* implementation */ }\n"
|
|
271
266
|
" REACT_SYNC_METHOD(useImmediateExecutorInAndroidBridgeless) static bool useImmediateExecutorInAndroidBridgeless() noexcept { /* implementation */ }\n");
|
|
272
267
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
273
|
-
|
|
268
|
+
39,
|
|
274
269
|
"useNativeViewConfigsInBridgelessMode",
|
|
275
270
|
" REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n"
|
|
276
271
|
" REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) static bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n");
|
|
277
272
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
278
|
-
|
|
273
|
+
40,
|
|
279
274
|
"useOptimisedViewPreallocationOnAndroid",
|
|
280
275
|
" REACT_SYNC_METHOD(useOptimisedViewPreallocationOnAndroid) bool useOptimisedViewPreallocationOnAndroid() noexcept { /* implementation */ }\n"
|
|
281
276
|
" REACT_SYNC_METHOD(useOptimisedViewPreallocationOnAndroid) static bool useOptimisedViewPreallocationOnAndroid() noexcept { /* implementation */ }\n");
|
|
282
277
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
283
|
-
|
|
278
|
+
41,
|
|
284
279
|
"useOptimizedEventBatchingOnAndroid",
|
|
285
280
|
" REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n"
|
|
286
281
|
" REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) static bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n");
|
|
282
|
+
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
283
|
+
42,
|
|
284
|
+
"useRawPropsJsiValue",
|
|
285
|
+
" REACT_SYNC_METHOD(useRawPropsJsiValue) bool useRawPropsJsiValue() noexcept { /* implementation */ }\n"
|
|
286
|
+
" REACT_SYNC_METHOD(useRawPropsJsiValue) static bool useRawPropsJsiValue() noexcept { /* implementation */ }\n");
|
|
287
287
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
288
288
|
43,
|
|
289
289
|
"useRuntimeShadowNodeReferenceUpdate",
|