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