react-native-tvos 0.77.1-0 → 0.78.0-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/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 +63 -4
- package/Libraries/Animated/nodes/AnimatedValueXY.js +3 -1
- package/Libraries/Animated/useAnimatedProps.js +14 -56
- package/Libraries/AppDelegate/RCTAppDelegate.h +6 -48
- package/Libraries/AppDelegate/RCTAppDelegate.mm +5 -230
- package/Libraries/AppDelegate/RCTDefaultReactNativeFactoryDelegate.h +21 -0
- package/Libraries/AppDelegate/RCTDefaultReactNativeFactoryDelegate.mm +123 -0
- package/Libraries/AppDelegate/RCTReactNativeFactory.h +98 -0
- package/Libraries/AppDelegate/RCTReactNativeFactory.mm +266 -0
- package/Libraries/AppDelegate/RCTRootViewFactory.mm +1 -1
- package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +0 -1
- 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.d.ts +1 -1
- 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/View/ViewPropTypes.d.ts +4 -5
- package/Libraries/Components/View/ViewPropTypes.js +0 -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/RCTImageView.mm +3 -3
- 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/NativeAnimation/RCTNativeAnimatedNodesManager.mm +1 -1
- package/Libraries/NativeComponent/BaseViewConfig.android.js +0 -2
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +0 -2
- package/Libraries/Network/RCTNetworking.android.js +24 -16
- package/Libraries/Network/RCTNetworking.ios.js +1 -46
- package/Libraries/Network/RCTNetworking.js.flow +1 -46
- package/Libraries/Network/RCTNetworkingEventDefinitions.flow.js +57 -0
- package/Libraries/ReactNative/UIManagerProperties.js +3 -1
- package/Libraries/Renderer/implementations/ReactFabric-dev.js +15829 -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 +16103 -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/NSTextStorage+FontScaling.m +9 -0
- package/Libraries/Text/Text.d.ts +6 -1
- package/Libraries/Text/TextInput/Multiline/RCTUITextView.h +2 -0
- package/Libraries/Text/TextInput/Multiline/RCTUITextView.mm +26 -0
- package/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h +2 -0
- package/Libraries/Text/TextInput/RCTBaseTextInputView.mm +25 -0
- package/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm +2 -0
- package/Libraries/Text/TextInput/Singleline/RCTUITextField.h +1 -0
- package/Libraries/Text/TextInput/Singleline/RCTUITextField.mm +26 -0
- package/Libraries/Text/TextProps.js +2 -2
- package/Libraries/Utilities/BackHandler.android.js +5 -4
- package/Libraries/Utilities/BackHandler.ios.js +3 -4
- package/README-core.md +2 -2
- package/React/Base/RCTVersion.m +2 -2
- package/React/CoreModules/RCTDevSettings.h +0 -1
- package/React/CoreModules/RCTDeviceInfo.mm +4 -0
- package/React/CxxLogUtils/RCTDefaultCxxLogFunction.mm +3 -5
- package/React/DevSupport/RCTInspectorDevServerHelper.mm +1 -6
- package/React/DevSupport/RCTPausedInDebuggerOverlayController.mm +3 -5
- package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -24
- package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec.h +0 -28
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI-generated.cpp +90 -57
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI.h +241 -104
- package/React/Fabric/Mounting/ComponentViews/InputAccessory/RCTInputAccessoryContentView.mm +0 -5
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm +39 -10
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +3 -3
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +22 -3
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +5 -0
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.mm +1 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +7 -2
- package/React/Fabric/Mounting/RCTComponentViewFactory.mm +3 -0
- package/React/Fabric/Mounting/RCTMountingManager.mm +6 -9
- package/React/Fabric/RCTScheduler.mm +1 -1
- package/React/I18n/strings/da.lproj/fbt_language_pack.bin +0 -0
- package/React/Modules/RCTUIManager.mm +1 -2
- package/React/React-RCTFBReactNativeSpec.podspec +1 -0
- package/React/React-RCTFabric.podspec +3 -2
- package/React/Tests/Text/RCTParagraphComponentViewTests.mm +12 -12
- package/React/Views/RCTComponentData.mm +1 -5
- package/React/Views/RCTLayout.m +3 -0
- package/React/Views/RCTShadowView.h +3 -3
- package/React/Views/RCTShadowView.m +52 -20
- package/React/Views/RCTView.m +6 -2
- package/React/Views/RCTViewManager.m +0 -7
- package/React/Views/ScrollView/RCTScrollView.m +46 -19
- package/React-Core.podspec +1 -1
- package/ReactAndroid/api/ReactAndroid.api +120 -227
- package/ReactAndroid/build.gradle.kts +8 -13
- package/ReactAndroid/cmake-utils/default-app-setup/OnLoad.cpp +2 -0
- package/ReactAndroid/external-artifacts/build.gradle.kts +5 -5
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/hermes/instrumentation/{HermesMemoryDumper.java → HermesMemoryDumper.kt} +5 -5
- package/ReactAndroid/src/main/java/com/facebook/hermes/instrumentation/{HermesSamplingProfiler.java → HermesSamplingProfiler.kt} +8 -10
- package/ReactAndroid/src/main/java/com/facebook/react/DebugCorePackage.java +12 -59
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +12 -1
- package/ReactAndroid/src/main/java/com/facebook/react/{ReactPackageLogger.java → ReactPackageLogger.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/animated/EventAnimationDriver.kt +8 -8
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactContext.java +1 -3
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactSoftExceptionLogger.kt +6 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/SoftAssertions.kt +5 -3
- package/ReactAndroid/src/main/java/com/facebook/react/common/network/OkHttpCallUtil.kt +4 -8
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactHost.kt +11 -5
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactHostDelegate.kt +0 -7
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactNativeHost.kt +1 -3
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevSupportManagerFactory.kt +6 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java +11 -23
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerBase.java +3 -30
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/HMRClient.java +4 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/InspectorFlags.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/StackTraceHelper.java +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +21 -26
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerBinding.kt +1 -14
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerProviderImpl.java +2 -11
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventEmitterWrapper.kt +88 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/FabricEventEmitter.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java +24 -0
- package/ReactAndroid/src/main/java/com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +21 -21
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +36 -36
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +8 -8
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +10 -10
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +40 -40
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +8 -8
- package/ReactAndroid/src/main/java/com/facebook/react/internal/interop/InteropEventEmitter.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskConfig.kt +55 -0
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskContext.kt +185 -0
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/{HeadlessJsTaskEventListener.java → HeadlessJsTaskEventListener.kt} +5 -6
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskRetryPolicy.kt +20 -0
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/LinearCountingRetryPolicy.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/NoRetryPolicy.kt +7 -8
- package/ReactAndroid/src/main/java/com/facebook/react/modules/appearance/AppearanceModule.kt +8 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/FrescoModule.kt +11 -17
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactOkHttpNetworkFetcher.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/CookieJarContainer.kt +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ForwardingCookieHandler.kt +107 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkingModule.java +18 -19
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ReactCookieJarContainer.kt +48 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/websocket/WebSocketModule.kt +397 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostDelegate.kt +0 -10
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.java +8 -8
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/hermes/HermesInstance.kt +4 -10
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BackgroundStyleApplicator.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +13 -12
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerDelegate.kt +15 -12
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ComponentNameResolver.java → ComponentNameResolver.kt} +4 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/GuardedFrameCallback.kt +5 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LayoutShadowNode.java +0 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactOverflowView.kt +21 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactPointerEventsView.kt +18 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{RootView.java → RootView.kt} +11 -12
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/RootViewManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{UIBlock.java → UIBlock.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIViewOperationQueue.java +2 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManager.java +25 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerDelegate.kt +1 -1
- package/{Libraries/AppDelegate/RCTAppDelegate+Protected.h → ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerWithGeneratedInterface.kt} +3 -8
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewProps.kt +12 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BackgroundDrawable.kt +46 -80
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BorderDrawable.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CSSBackgroundDrawable.java +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CompositeBackgroundDrawable.kt +8 -9
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/{BatchEventDispatchedListener.java → BatchEventDispatchedListener.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventCategoryDef.kt +46 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcher.kt +40 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherImpl.java +2 -6
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherListener.kt +19 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherProvider.kt +23 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FabricEventDispatcher.kt +241 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/PointerEventHelper.kt +193 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/RCTEventEmitter.kt +44 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/RCTModernEventEmitter.kt +37 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/ReactEventEmitter.kt +130 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchEvent.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchEventCoalescingKeyHelper.kt +77 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchesHelper.kt +196 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderRadiusStyle.kt +16 -17
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostManager.kt +5 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt +34 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ProgressBarContainerView.kt +11 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/{FpsListener.java → FpsListener.kt} +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollView.java +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollViewManager.java +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewAccessibilityDelegate.kt +136 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchManager.kt +152 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchShadowNode.kt +52 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactBaseTextShadowNode.java +1 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextLayoutManager.java +8 -13
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager.kt +50 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ShadowStyleSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java +1 -9
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactDrawableHelper.kt +111 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.java +90 -20
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNative.java +22 -1
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNode.java +43 -1
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNodeJNIBase.java +86 -2
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaProps.java +44 -2
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaUnit.java +7 -1
- package/ReactAndroid/src/main/jni/CMakeLists.txt +5 -6
- package/ReactAndroid/src/main/jni/first-party/yogajni/CMakeLists.txt +6 -1
- package/ReactAndroid/src/main/jni/first-party/yogajni/jni/YGJNIVanilla.cpp +96 -11
- package/ReactAndroid/src/main/jni/react/devsupport/JInspectorFlags.cpp +9 -0
- package/ReactAndroid/src/main/jni/react/devsupport/JInspectorFlags.h +1 -0
- package/ReactAndroid/src/main/jni/react/fabric/CMakeLists.txt +0 -3
- package/ReactAndroid/src/main/jni/react/fabric/CoreComponentsRegistry.cpp +3 -0
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp +41 -25
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.h +0 -2
- package/ReactAndroid/src/main/jni/react/fabric/FabricUIManagerBinding.cpp +63 -91
- package/ReactAndroid/src/main/jni/react/fabric/FabricUIManagerBinding.h +1 -7
- package/ReactAndroid/src/main/jni/react/fabric/MountItem.cpp +9 -9
- package/ReactAndroid/src/main/jni/react/fabric/MountItem.h +6 -10
- package/ReactAndroid/src/main/jni/react/fabric/OnLoad.cpp +0 -2
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.cpp +4 -0
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.h +1 -0
- package/ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt +0 -1
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +49 -49
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +11 -11
- package/ReactAndroid/src/main/jni/react/hermes/reactexecutor/OnLoad.cpp +1 -4
- package/ReactAndroid/src/main/jni/react/jni/CMakeLists.txt +0 -1
- package/ReactAndroid/src/main/jni/react/jni/CatalystInstanceImpl.cpp +0 -1
- package/ReactAndroid/src/main/jni/react/jni/JSLogging.cpp +4 -9
- package/ReactAndroid/src/main/jni/react/jni/JSLogging.h +0 -4
- package/ReactAndroid/src/main/jni/react/jni/JniJSModulesUnbundle.cpp +3 -4
- package/ReactAndroid/src/main/jni/react/jni/ProxyExecutor.cpp +3 -4
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeArray.cpp +6 -0
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeArray.h +1 -0
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeMap.cpp +6 -0
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeMap.h +1 -0
- package/ReactAndroid/src/main/jni/react/jscexecutor/OnLoad.cpp +3 -7
- package/ReactAndroid/src/main/jni/react/mapbuffer/CMakeLists.txt +0 -2
- package/ReactAndroid/src/main/jni/react/reactnativeblob/CMakeLists.txt +0 -1
- package/ReactAndroid/src/main/jni/react/reactperflogger/CMakeLists.txt +0 -1
- package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/JHermesInstance.cpp +2 -8
- package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/JHermesInstance.h +2 -8
- package/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt +0 -1
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactExceptionManager.cpp +18 -17
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactExceptionManager.h +1 -1
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactInstance.cpp +1 -1
- package/ReactAndroid/src/main/jni/react/turbomodule/CMakeLists.txt +0 -2
- package/ReactAndroid/src/main/jni/react/uimanager/CMakeLists.txt +0 -1
- package/ReactAndroid/src/main/res/views/view/values/ids.xml +5 -0
- package/ReactCommon/React-Fabric.podspec +8 -0
- package/ReactCommon/React-FabricComponents.podspec +2 -2
- package/ReactCommon/React-FabricImage.podspec +4 -1
- package/ReactCommon/cxxreact/CxxNativeModule.cpp +3 -3
- package/ReactCommon/cxxreact/Instance.cpp +6 -6
- package/ReactCommon/cxxreact/JSBigString.cpp +1 -1
- package/ReactCommon/cxxreact/JSExecutor.cpp +4 -2
- package/ReactCommon/cxxreact/ModuleRegistry.cpp +6 -6
- package/ReactCommon/cxxreact/NativeToJsBridge.cpp +3 -3
- package/ReactCommon/cxxreact/ReactNativeVersion.h +2 -2
- package/ReactCommon/cxxreact/SystraceSection.h +8 -141
- package/ReactCommon/cxxreact/TraceSection.h +181 -0
- package/ReactCommon/cxxreact/tests/jsbigstring.cpp +19 -0
- package/ReactCommon/hermes/executor/HermesExecutorFactory.cpp +2 -2
- package/ReactCommon/jsc/JSCRuntime.cpp +0 -2
- package/ReactCommon/jsc/React-jsc.podspec +1 -1
- package/ReactCommon/jserrorhandler/JsErrorHandler.cpp +27 -19
- package/ReactCommon/jserrorhandler/JsErrorHandler.h +5 -3
- package/ReactCommon/jserrorhandler/StackTraceParser.cpp +16 -16
- package/ReactCommon/jserrorhandler/StackTraceParser.h +1 -1
- package/ReactCommon/jserrorhandler/tests/StackTraceParserTest.cpp +252 -246
- package/ReactCommon/jsi/jsi/CMakeLists.txt +0 -3
- package/ReactCommon/jsi/jsi/JSIDynamic.cpp +1 -1
- package/ReactCommon/jsi/jsi/JSIDynamic.h +1 -1
- package/ReactCommon/jsi/jsi/decorator.h +61 -0
- package/ReactCommon/jsi/jsi/jsi-inl.h +4 -0
- package/ReactCommon/jsi/jsi/jsi.cpp +37 -0
- package/ReactCommon/jsi/jsi/jsi.h +81 -0
- package/ReactCommon/jsi/jsi/test/testlib.cpp +88 -0
- package/ReactCommon/jsiexecutor/jsireact/JSIExecutor.cpp +9 -9
- package/ReactCommon/jsinspector-modern/CMakeLists.txt +1 -1
- package/ReactCommon/jsinspector-modern/HostAgent.cpp +3 -7
- package/ReactCommon/jsinspector-modern/HostTarget.cpp +22 -1
- package/ReactCommon/jsinspector-modern/HostTarget.h +1 -1
- package/ReactCommon/jsinspector-modern/InspectorFlags.cpp +19 -4
- package/ReactCommon/jsinspector-modern/InspectorFlags.h +14 -0
- package/ReactCommon/jsinspector-modern/React-jsinspector.podspec +21 -10
- package/ReactCommon/jsinspector-modern/TracingAgent.cpp +12 -11
- package/ReactCommon/jsinspector-modern/tests/JsiIntegrationTest.cpp +2 -16
- package/ReactCommon/jsinspector-modern/tests/ReactInstanceIntegrationTest.cpp +14 -14
- package/ReactCommon/jsinspector-modern/tests/ReactInstanceIntegrationTest.h +7 -13
- package/ReactCommon/jsinspector-modern/tests/engines/JsiIntegrationTestGenericEngineAdapter.cpp +1 -1
- package/ReactCommon/jsinspector-modern/tests/engines/JsiIntegrationTestHermesEngineAdapter.cpp +1 -3
- package/ReactCommon/jsinspector-modern/tests/utils/InspectorFlagOverridesGuard.cpp +3 -3
- package/ReactCommon/jsinspector-modern/tests/utils/InspectorFlagOverridesGuard.h +1 -1
- package/ReactCommon/jsinspector-modern/tracing/CMakeLists.txt +26 -0
- package/ReactCommon/jsinspector-modern/tracing/CdpTracing.h +21 -0
- package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.cpp +187 -0
- package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.h +126 -0
- package/ReactCommon/jsinspector-modern/tracing/React-jsinspectortracing.podspec +56 -0
- package/ReactCommon/react/featureflags/CMakeLists.txt +3 -0
- package/ReactCommon/react/featureflags/React-featureflags.podspec +7 -0
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +15 -15
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +18 -18
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +88 -88
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +9 -9
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +17 -17
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDynamicProvider.h +454 -0
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +5 -5
- package/ReactCommon/react/featureflags/tests/ReactNativeFeatureFlagsDynamicProviderTest.cpp +78 -0
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleBinding.cpp +2 -3
- package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.cpp +3 -3
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.h +1 -5
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +13 -23
- package/ReactCommon/react/nativemodule/cputime/CPUTime.h +55 -0
- package/ReactCommon/react/nativemodule/cputime/NativeCPUTime.cpp +35 -0
- package/ReactCommon/react/nativemodule/cputime/NativeCPUTime.h +28 -0
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +18 -18
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +8 -8
- package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +1 -0
- package/ReactCommon/react/nativemodule/intersectionobserver/NativeIntersectionObserver.cpp +5 -8
- package/ReactCommon/react/nativemodule/mutationobserver/NativeMutationObserver.cpp +3 -3
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.cpp +22 -43
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.h +0 -15
- package/ReactCommon/react/performance/timeline/CMakeLists.txt +1 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.cpp +22 -2
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.h +9 -4
- package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -0
- package/ReactCommon/react/renderer/animations/CMakeLists.txt +0 -1
- package/ReactCommon/react/renderer/animations/LayoutAnimationDriver.cpp +1 -1
- package/ReactCommon/react/renderer/animations/LayoutAnimationKeyFrameManager.cpp +25 -19
- package/ReactCommon/react/renderer/animations/primitives.h +1 -1
- package/ReactCommon/react/renderer/animations/utils.h +3 -4
- package/ReactCommon/react/renderer/attributedstring/ParagraphAttributes.cpp +31 -9
- package/ReactCommon/react/renderer/attributedstring/TextAttributes.cpp +81 -31
- package/ReactCommon/react/renderer/componentregistry/CMakeLists.txt +0 -1
- package/ReactCommon/react/renderer/components/image/ImageComponentDescriptor.cpp +4 -1
- package/ReactCommon/react/renderer/components/image/ImageComponentDescriptor.h +2 -0
- package/ReactCommon/react/renderer/components/image/ImageEventEmitter.cpp +2 -2
- package/ReactCommon/react/renderer/components/image/ImageProps.cpp +5 -5
- package/ReactCommon/react/renderer/components/image/ImageProps.h +1 -1
- package/ReactCommon/react/renderer/components/image/ImageShadowNode.cpp +38 -10
- package/ReactCommon/react/renderer/components/image/ImageShadowNode.h +1 -1
- package/ReactCommon/react/renderer/components/image/ImageState.cpp +2 -3
- package/ReactCommon/react/renderer/components/image/ImageState.h +9 -6
- package/ReactCommon/react/renderer/components/progressbar/android/react/renderer/components/progressbar/AndroidProgressBarComponentDescriptor.h +0 -4
- package/ReactCommon/react/renderer/components/progressbar/android/react/renderer/components/progressbar/AndroidProgressBarShadowNode.h +7 -0
- package/ReactCommon/react/renderer/components/root/RootShadowNode.cpp +2 -2
- package/ReactCommon/react/renderer/components/scrollview/CMakeLists.txt +2 -2
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.cpp +33 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.h +17 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewEventEmitter.cpp +3 -2
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewEventEmitter.h +2 -1
- package/ReactCommon/react/renderer/components/switch/androidswitch/react/renderer/components/androidswitch/AndroidSwitchComponentDescriptor.h +0 -4
- package/ReactCommon/react/renderer/components/switch/androidswitch/react/renderer/components/androidswitch/AndroidSwitchShadowNode.h +7 -0
- package/ReactCommon/react/renderer/{uimanager/bindingUtils.h → components/text/ParagraphComponentDescriptor.cpp} +2 -8
- package/ReactCommon/react/renderer/components/text/ParagraphComponentDescriptor.h +10 -7
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputProps.cpp +23 -0
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputProps.h +8 -1
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputShadowNode.h +243 -0
- package/ReactCommon/react/renderer/components/textinput/TextInputState.cpp +71 -0
- package/ReactCommon/react/renderer/components/textinput/{platform/ios/react/renderer/components/iostextinput/TextInputState.h → TextInputState.h} +27 -7
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputComponentDescriptor.h +6 -13
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputProps.h +0 -2
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.cpp +145 -144
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.h +27 -29
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputComponentDescriptor.h +4 -5
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputProps.cpp +0 -26
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputProps.h +0 -6
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputShadowNode.cpp +0 -147
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputShadowNode.h +5 -57
- package/ReactCommon/react/renderer/components/view/BaseViewProps.cpp +60 -70
- package/ReactCommon/react/renderer/components/view/BaseViewProps.h +3 -3
- package/ReactCommon/react/renderer/components/view/LayoutConformanceComponentDescriptor.h +18 -0
- package/ReactCommon/react/renderer/components/view/LayoutConformanceProps.h +36 -0
- package/ReactCommon/react/renderer/components/view/LayoutConformanceShadowNode.h +28 -0
- package/ReactCommon/react/renderer/components/view/ViewPropsInterpolation.h +4 -0
- package/ReactCommon/react/renderer/components/view/ViewShadowNode.cpp +0 -1
- package/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.cpp +21 -22
- package/ReactCommon/react/renderer/components/view/YogaStylableProps.cpp +3 -2
- package/ReactCommon/react/renderer/components/view/YogaStylableProps.h +3 -1
- package/ReactCommon/react/renderer/components/view/conversions.h +117 -43
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.cpp +3 -2
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.h +3 -1
- package/ReactCommon/react/renderer/components/view/primitives.h +1 -1
- package/ReactCommon/react/renderer/components/view/tests/LayoutTest.cpp +12 -12
- package/ReactCommon/react/renderer/core/CMakeLists.txt +0 -1
- package/ReactCommon/react/renderer/core/ComponentDescriptor.cpp +4 -2
- package/ReactCommon/react/renderer/core/ComponentDescriptor.h +4 -2
- package/ReactCommon/react/renderer/core/ConcreteComponentDescriptor.h +17 -2
- package/ReactCommon/react/renderer/core/DynamicPropsUtilities.cpp +26 -0
- package/ReactCommon/react/renderer/core/DynamicPropsUtilities.h +4 -0
- package/ReactCommon/react/renderer/core/EventEmitter.cpp +3 -3
- package/ReactCommon/react/renderer/core/Props.cpp +16 -5
- package/ReactCommon/react/renderer/core/Props.h +11 -4
- package/ReactCommon/react/renderer/core/RawProps.cpp +30 -5
- package/ReactCommon/react/renderer/core/RawProps.h +10 -1
- package/ReactCommon/react/renderer/core/RawPropsParser.cpp +7 -2
- package/ReactCommon/react/renderer/core/RawPropsParser.h +7 -1
- package/ReactCommon/react/renderer/core/RawPropsPrimitives.h +1 -0
- package/ReactCommon/react/renderer/core/RawValue.h +315 -22
- package/ReactCommon/react/renderer/core/tests/DynamicPropsUtilitiesTest.cpp +95 -4
- package/ReactCommon/react/renderer/debug/debugStringConvertibleUtils.h +19 -4
- package/ReactCommon/react/renderer/graphics/CMakeLists.txt +7 -1
- package/ReactCommon/react/renderer/graphics/React-graphics.podspec +7 -5
- package/ReactCommon/react/renderer/graphics/Transform.cpp +11 -2
- package/ReactCommon/react/renderer/graphics/Transform.h +2 -1
- package/ReactCommon/react/renderer/imagemanager/CMakeLists.txt +4 -2
- package/ReactCommon/react/renderer/imagemanager/ImageManager.h +7 -0
- package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/ImageFetcher.cpp +43 -0
- package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/ImageFetcher.h +36 -0
- package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/ImageManager.cpp +43 -0
- package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/ImageRequestParams.h +94 -0
- package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/conversions.h +101 -0
- package/ReactCommon/react/renderer/imagemanager/platform/cxx/react/renderer/imagemanager/ImageManager.cpp +9 -1
- package/ReactCommon/react/renderer/imagemanager/platform/cxx/react/renderer/imagemanager/ImageRequestParams.h +30 -0
- package/ReactCommon/react/renderer/imagemanager/platform/ios/react/renderer/imagemanager/ImageManager.mm +9 -0
- package/ReactCommon/react/renderer/imagemanager/platform/ios/react/renderer/imagemanager/ImageRequestParams.h +30 -0
- package/ReactCommon/react/renderer/imagemanager/platform/ios/react/renderer/imagemanager/RCTImageManager.mm +2 -2
- package/ReactCommon/react/renderer/mounting/Differentiator.cpp +187 -152
- package/ReactCommon/react/renderer/mounting/MountingCoordinator.cpp +4 -5
- package/ReactCommon/react/renderer/mounting/ShadowTree.cpp +10 -16
- package/ReactCommon/react/renderer/mounting/ShadowViewMutation.cpp +12 -12
- package/ReactCommon/react/renderer/mounting/ShadowViewMutation.h +44 -14
- package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.cpp +8 -4
- package/ReactCommon/react/renderer/mounting/stubs/stubs.cpp +1 -1
- package/ReactCommon/react/renderer/mounting/tests/MountingTest.cpp +116 -193
- package/ReactCommon/react/renderer/mounting/tests/ShadowTreeLifeCycleTest.cpp +0 -3
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserver.cpp +7 -4
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserver.h +2 -1
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserverManager.cpp +7 -8
- package/ReactCommon/react/renderer/observers/mutation/MutationObserverManager.cpp +6 -6
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler.cpp +3 -1
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler.h +2 -0
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Legacy.cpp +11 -11
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.cpp +14 -15
- package/ReactCommon/react/renderer/runtimescheduler/SchedulerPriorityUtils.h +4 -3
- package/ReactCommon/react/renderer/scheduler/CMakeLists.txt +0 -1
- package/ReactCommon/react/renderer/scheduler/Scheduler.cpp +6 -37
- package/ReactCommon/react/renderer/scheduler/Scheduler.h +0 -3
- package/ReactCommon/react/renderer/scheduler/SurfaceHandler.cpp +15 -11
- package/ReactCommon/react/renderer/scheduler/SurfaceHandler.h +1 -0
- package/ReactCommon/react/renderer/scheduler/SurfaceManager.cpp +56 -2
- package/ReactCommon/react/renderer/scheduler/SurfaceManager.h +23 -3
- package/ReactCommon/react/renderer/textlayoutmanager/CMakeLists.txt +1 -2
- package/ReactCommon/react/renderer/textlayoutmanager/TextLayoutManager.cpp +26 -0
- package/ReactCommon/react/renderer/textlayoutmanager/{platform/android/react/renderer/textlayoutmanager/TextLayoutManager.h → TextLayoutManager.h} +18 -17
- package/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer/textlayoutmanager/TextLayoutManager.cpp +77 -89
- package/ReactCommon/react/renderer/textlayoutmanager/platform/cxx/TextLayoutManager.cpp +6 -10
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTAttributedTextUtils.mm +6 -2
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTFontUtils.mm +23 -1
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +11 -32
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/TextLayoutManager.mm +9 -23
- package/ReactCommon/react/renderer/uimanager/AppRegistryBinding.cpp +88 -0
- package/ReactCommon/react/renderer/uimanager/AppRegistryBinding.h +50 -0
- package/ReactCommon/react/renderer/uimanager/CMakeLists.txt +0 -1
- package/ReactCommon/react/renderer/uimanager/SurfaceRegistryBinding.h +3 -40
- package/ReactCommon/react/renderer/uimanager/UIManager.cpp +23 -18
- package/ReactCommon/react/renderer/uimanager/UIManager.h +2 -0
- package/ReactCommon/react/renderer/uimanager/UIManagerBinding.cpp +2 -31
- package/ReactCommon/react/renderer/uimanager/UIManagerBinding.h +0 -4
- package/ReactCommon/react/renderer/uimanager/tests/PointerEventsProcessorTest.cpp +10 -10
- package/ReactCommon/react/runtime/CMakeLists.txt +0 -1
- package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +1 -2
- package/ReactCommon/react/runtime/ReactInstance.cpp +43 -57
- package/ReactCommon/react/runtime/TimerManager.cpp +4 -4
- package/ReactCommon/react/runtime/hermes/HermesInstance.cpp +5 -1
- package/ReactCommon/react/runtime/hermes/HermesInstance.h +0 -2
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.h +2 -6
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm +6 -15
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm +3 -1
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +15 -15
- package/ReactCommon/react/runtime/tests/cxx/ReactInstanceTest.cpp +5 -4
- package/ReactCommon/react/test_utils/shadowTreeGeneration.h +0 -3
- package/ReactCommon/reactperflogger/fusebox/FuseboxTracer.cpp +33 -17
- package/ReactCommon/reactperflogger/fusebox/FuseboxTracer.h +8 -2
- package/ReactCommon/reactperflogger/reactperflogger/{ReactPerfLogger.cpp → ReactPerfettoLogger.cpp} +25 -24
- package/ReactCommon/reactperflogger/reactperflogger/{ReactPerfLogger.h → ReactPerfettoLogger.h} +9 -9
- package/ReactCommon/yoga/yoga/YGEnums.cpp +6 -0
- package/ReactCommon/yoga/yoga/YGEnums.h +4 -1
- package/ReactCommon/yoga/yoga/YGNodeStyle.cpp +124 -24
- package/ReactCommon/yoga/yoga/YGNodeStyle.h +22 -1
- package/ReactCommon/yoga/yoga/YGValue.h +3 -0
- package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.cpp +6 -6
- package/ReactCommon/yoga/yoga/algorithm/FlexLine.cpp +2 -2
- package/ReactCommon/yoga/yoga/algorithm/FlexLine.h +1 -1
- package/ReactCommon/yoga/yoga/algorithm/PixelGrid.cpp +9 -6
- package/ReactCommon/yoga/yoga/enums/Unit.h +4 -1
- package/ReactCommon/yoga/yoga/node/Node.cpp +8 -8
- package/ReactCommon/yoga/yoga/node/Node.h +5 -5
- package/ReactCommon/yoga/yoga/style/Style.h +14 -12
- package/ReactCommon/yoga/yoga/style/StyleLength.h +14 -7
- package/ReactCommon/yoga/yoga/style/StyleSizeLength.h +139 -0
- package/ReactCommon/yoga/yoga/style/StyleValueHandle.h +8 -0
- package/ReactCommon/yoga/yoga/style/StyleValuePool.h +60 -3
- package/gradle/libs.versions.toml +6 -2
- package/index.js +5 -0
- package/package.json +12 -13
- package/react-native.config.js +6 -0
- package/scripts/cocoapods/codegen_utils.rb +4 -4
- package/scripts/cocoapods/new_architecture.rb +3 -3
- package/scripts/cocoapods/utils.rb +4 -3
- package/scripts/codegen/generate-artifacts-executor.js +8 -4
- package/scripts/generate-codegen-artifacts.js +6 -1
- package/scripts/react-native-xcode.sh +1 -1
- package/scripts/react_native_pods.rb +3 -3
- package/scripts/xcode/ccache-clang++.sh +1 -1
- package/scripts/xcode/ccache-clang.sh +1 -1
- package/sdks/.hermesversion +1 -1
- package/sdks/hermes-engine/utils/build-hermes-xcode.sh +1 -1
- package/sdks/hermesc/linux64-bin/hermesc +0 -0
- package/sdks/hermesc/osx-bin/hermes +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/src/private/animated/NativeAnimatedValidation.js +1 -1
- package/src/private/featureflags/README.md +5 -0
- package/src/private/featureflags/ReactNativeFeatureFlags.js +33 -27
- 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/types/public/ReactNativeTVTypes.d.ts +49 -51
- 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/React/Inspector/RCTInspectorPackagerConnection.m +0 -325
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/GuardedResultAsyncTask.java +0 -50
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/InspectorPackagerConnection.java +0 -314
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/JSCHeapCapture.java +0 -76
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/EmptyReactNativeConfig.kt +0 -36
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/GuardedFrameCallback.kt +0 -33
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/ReactNativeConfig.kt +0 -54
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventEmitterWrapper.java +0 -83
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskConfig.java +0 -121
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskContext.java +0 -214
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskRetryPolicy.java +0 -22
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/XmlFormat.kt +0 -143
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/CookieJarContainer.java +0 -17
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ForwardingCookieHandler.java +0 -124
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ReactCookieJarContainer.java +0 -58
- package/ReactAndroid/src/main/java/com/facebook/react/modules/websocket/WebSocketModule.java +0 -422
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/FabricViewStateManager.java +0 -98
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactOverflowView.java +0 -25
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactPointerEventsView.java +0 -20
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventCategoryDef.java +0 -45
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcher.java +0 -37
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherListener.java +0 -19
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherProvider.java +0 -24
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FabricEventDispatcher.java +0 -257
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/PointerEventHelper.java +0 -210
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/RCTEventEmitter.java +0 -43
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/RCTModernEventEmitter.java +0 -39
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/ReactEventEmitter.java +0 -165
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchEventCoalescingKeyHelper.java +0 -85
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchesHelper.java +0 -204
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewAccessibilityDelegate.java +0 -161
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchManager.java +0 -232
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager.java +0 -70
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/LegacyLineHeightSpan.kt +0 -69
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactDrawableHelper.java +0 -114
- package/ReactAndroid/src/main/jni/first-party/fb/CMakeLists.txt +0 -31
- package/ReactAndroid/src/main/jni/first-party/fb/assert.cpp +0 -39
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/ALog.h +0 -82
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/Build.h +0 -31
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/Countable.h +0 -45
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/Doxyfile +0 -18
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/Environment.h +0 -93
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/ProgramLocation.h +0 -58
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/RefPtr.h +0 -266
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/StaticInitialized.h +0 -37
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/ThreadLocal.h +0 -112
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/assert.h +0 -43
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/log.h +0 -350
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/noncopyable.h +0 -20
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/nonmovable.h +0 -20
- package/ReactAndroid/src/main/jni/first-party/fb/include/fb/visibility.h +0 -10
- package/ReactAndroid/src/main/jni/first-party/fb/log.cpp +0 -102
- package/ReactAndroid/src/main/jni/react/fabric/JEmptyReactNativeConfig.cpp +0 -47
- package/ReactAndroid/src/main/jni/react/fabric/JEmptyReactNativeConfig.h +0 -38
- package/ReactAndroid/src/main/jni/react/fabric/ReactNativeConfigHolder.cpp +0 -41
- package/ReactAndroid/src/main/jni/react/fabric/ReactNativeConfigHolder.h +0 -35
- package/ReactAndroid/src/main/jni/react/perftests/OnLoad.cpp +0 -243
- package/ReactAndroid/src/main/jni/third-party/jsc/CMakeLists.txt +0 -15
- package/ReactCommon/React-nativeconfig.podspec +0 -36
- package/ReactCommon/cxxreact/tests/main.cpp +0 -15
- package/ReactCommon/react/config/CMakeLists.txt +0 -20
- package/ReactCommon/react/config/ReactNativeConfig.cpp +0 -28
- package/ReactCommon/react/config/ReactNativeConfig.h +0 -42
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputState.cpp +0 -95
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputState.h +0 -80
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputState.cpp +0 -10
- package/ReactCommon/react/renderer/textlayoutmanager/platform/cxx/TextLayoutManager.h +0 -78
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/TextLayoutManager.h +0 -69
- package/ReactCommon/react/renderer/uimanager/SurfaceRegistryBinding.cpp +0 -123
- package/ReactCommon/react/renderer/uimanager/bindingUtils.cpp +0 -79
- 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
- /package/ReactCommon/react/renderer/components/scrollview/{AndroidHorizontalScrollContentViewComponentDescriptor.h → platform/android/react/renderer/components/scrollview/AndroidHorizontalScrollContentViewComponentDescriptor.h} +0 -0
- /package/ReactCommon/react/renderer/components/scrollview/{AndroidHorizontalScrollContentViewShadowNode.cpp → platform/android/react/renderer/components/scrollview/AndroidHorizontalScrollContentViewShadowNode.cpp} +0 -0
- /package/ReactCommon/react/renderer/components/scrollview/{AndroidHorizontalScrollContentViewShadowNode.h → platform/android/react/renderer/components/scrollview/AndroidHorizontalScrollContentViewShadowNode.h} +0 -0
|
@@ -781,16 +781,6 @@ public abstract class com/facebook/react/bridge/GuardedAsyncTask : android/os/As
|
|
|
781
781
|
protected abstract fun doInBackgroundGuarded ([Ljava/lang/Object;)V
|
|
782
782
|
}
|
|
783
783
|
|
|
784
|
-
public abstract class com/facebook/react/bridge/GuardedResultAsyncTask : android/os/AsyncTask {
|
|
785
|
-
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
786
|
-
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
787
|
-
protected synthetic fun doInBackground ([Ljava/lang/Object;)Ljava/lang/Object;
|
|
788
|
-
protected final fun doInBackground ([Ljava/lang/Void;)Ljava/lang/Object;
|
|
789
|
-
protected abstract fun doInBackgroundGuarded ()Ljava/lang/Object;
|
|
790
|
-
protected final fun onPostExecute (Ljava/lang/Object;)V
|
|
791
|
-
protected abstract fun onPostExecuteGuarded (Ljava/lang/Object;)V
|
|
792
|
-
}
|
|
793
|
-
|
|
794
784
|
public abstract class com/facebook/react/bridge/GuardedRunnable : java/lang/Runnable {
|
|
795
785
|
public fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
796
786
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
@@ -1434,6 +1424,13 @@ public final class com/facebook/react/bridge/ReactSoftExceptionLogger {
|
|
|
1434
1424
|
public static final fun removeListener (Lcom/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener;)V
|
|
1435
1425
|
}
|
|
1436
1426
|
|
|
1427
|
+
public final class com/facebook/react/bridge/ReactSoftExceptionLogger$Categories {
|
|
1428
|
+
public static final field INSTANCE Lcom/facebook/react/bridge/ReactSoftExceptionLogger$Categories;
|
|
1429
|
+
public static final field RVG_IS_VIEW_CLIPPED Ljava/lang/String;
|
|
1430
|
+
public static final field RVG_ON_VIEW_REMOVED Ljava/lang/String;
|
|
1431
|
+
public static final field SOFT_ASSERTIONS Ljava/lang/String;
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1437
1434
|
public abstract interface class com/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener {
|
|
1438
1435
|
public abstract fun logSoftException (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1439
1436
|
}
|
|
@@ -2041,9 +2038,9 @@ public final class com/facebook/react/defaults/DefaultReactHost {
|
|
|
2041
2038
|
public static final field INSTANCE Lcom/facebook/react/defaults/DefaultReactHost;
|
|
2042
2039
|
public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;)Lcom/facebook/react/ReactHost;
|
|
2043
2040
|
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;)Lcom/facebook/react/ReactHost;
|
|
2044
|
-
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/ReactHost;
|
|
2041
|
+
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;)Lcom/facebook/react/ReactHost;
|
|
2045
2042
|
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2046
|
-
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2043
|
+
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2047
2044
|
}
|
|
2048
2045
|
|
|
2049
2046
|
public abstract class com/facebook/react/defaults/DefaultReactNativeHost : com/facebook/react/ReactNativeHost {
|
|
@@ -2130,7 +2127,7 @@ public class com/facebook/react/devsupport/DevServerHelper {
|
|
|
2130
2127
|
|
|
2131
2128
|
public abstract interface class com/facebook/react/devsupport/DevServerHelper$PackagerCommandListener {
|
|
2132
2129
|
public abstract fun customCommandHandlers ()Ljava/util/Map;
|
|
2133
|
-
public
|
|
2130
|
+
public fun onCaptureHeapCommand (Lcom/facebook/react/packagerconnection/Responder;)V
|
|
2134
2131
|
public abstract fun onPackagerConnected ()V
|
|
2135
2132
|
public abstract fun onPackagerDevMenuCommand ()V
|
|
2136
2133
|
public abstract fun onPackagerDisconnected ()V
|
|
@@ -2218,37 +2215,13 @@ public abstract interface class com/facebook/react/devsupport/HMRClient : com/fa
|
|
|
2218
2215
|
public abstract fun disable ()V
|
|
2219
2216
|
public abstract fun enable ()V
|
|
2220
2217
|
public abstract fun registerBundle (Ljava/lang/String;)V
|
|
2221
|
-
public abstract fun setup (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;
|
|
2218
|
+
public abstract fun setup (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IZLjava/lang/String;)V
|
|
2222
2219
|
}
|
|
2223
2220
|
|
|
2224
2221
|
public final class com/facebook/react/devsupport/InspectorFlags {
|
|
2225
2222
|
public static final field INSTANCE Lcom/facebook/react/devsupport/InspectorFlags;
|
|
2226
2223
|
public static final fun getFuseboxEnabled ()Z
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
public class com/facebook/react/devsupport/InspectorPackagerConnection : com/facebook/react/devsupport/IInspectorPackagerConnection {
|
|
2230
|
-
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
|
|
2231
|
-
public fun closeQuietly ()V
|
|
2232
|
-
public fun connect ()V
|
|
2233
|
-
public fun sendEventToAllConnections (Ljava/lang/String;)V
|
|
2234
|
-
}
|
|
2235
|
-
|
|
2236
|
-
public class com/facebook/react/devsupport/JSCHeapCapture : com/facebook/fbreact/specs/NativeJSCHeapCaptureSpec {
|
|
2237
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
2238
|
-
public fun captureComplete (Ljava/lang/String;Ljava/lang/String;)V
|
|
2239
|
-
public fun captureHeap (Ljava/lang/String;Lcom/facebook/react/devsupport/JSCHeapCapture$CaptureCallback;)V
|
|
2240
|
-
}
|
|
2241
|
-
|
|
2242
|
-
public abstract interface class com/facebook/react/devsupport/JSCHeapCapture$CaptureCallback {
|
|
2243
|
-
public abstract fun onFailure (Lcom/facebook/react/devsupport/JSCHeapCapture$CaptureException;)V
|
|
2244
|
-
public abstract fun onSuccess (Ljava/io/File;)V
|
|
2245
|
-
}
|
|
2246
|
-
|
|
2247
|
-
public class com/facebook/react/devsupport/JSCHeapCapture$CaptureException : java/lang/Exception {
|
|
2248
|
-
}
|
|
2249
|
-
|
|
2250
|
-
public abstract interface class com/facebook/react/devsupport/JSCHeapCapture$HeapCapture : com/facebook/react/bridge/JavaScriptModule {
|
|
2251
|
-
public abstract fun captureHeap (Ljava/lang/String;)V
|
|
2224
|
+
public static final fun getIsProfilingBuild ()Z
|
|
2252
2225
|
}
|
|
2253
2226
|
|
|
2254
2227
|
public class com/facebook/react/devsupport/JSDebuggerWebSocketClient : okhttp3/WebSocketListener {
|
|
@@ -2385,7 +2358,7 @@ public class com/facebook/react/devsupport/StackTraceHelper {
|
|
|
2385
2358
|
public static fun convertJsStackTrace (Lcom/facebook/react/bridge/ReadableArray;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2386
2359
|
public static fun convertJsStackTrace (Ljava/lang/String;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2387
2360
|
public static fun convertJsStackTrace (Lorg/json/JSONArray;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2388
|
-
public static fun
|
|
2361
|
+
public static fun convertProcessedError (Lcom/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
2389
2362
|
public static fun formatFrameSource (Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2390
2363
|
public static fun formatStackTrace (Ljava/lang/String;[Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2391
2364
|
}
|
|
@@ -2595,14 +2568,6 @@ public class com/facebook/react/fabric/DevToolsReactPerfLogger$FabricCommitPoint
|
|
|
2595
2568
|
public fun toString ()Ljava/lang/String;
|
|
2596
2569
|
}
|
|
2597
2570
|
|
|
2598
|
-
public final class com/facebook/react/fabric/EmptyReactNativeConfig : com/facebook/react/fabric/ReactNativeConfig {
|
|
2599
|
-
public fun <init> ()V
|
|
2600
|
-
public fun getBool (Ljava/lang/String;)Z
|
|
2601
|
-
public fun getDouble (Ljava/lang/String;)D
|
|
2602
|
-
public fun getInt64 (Ljava/lang/String;)J
|
|
2603
|
-
public fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
2604
|
-
}
|
|
2605
|
-
|
|
2606
2571
|
public final class com/facebook/react/fabric/FabricSoLoader {
|
|
2607
2572
|
public static final field INSTANCE Lcom/facebook/react/fabric/FabricSoLoader;
|
|
2608
2573
|
public static final fun staticInit ()V
|
|
@@ -2624,7 +2589,6 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2624
2589
|
public fun dispatchCommand (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
2625
2590
|
public fun getColor (I[Ljava/lang/String;)I
|
|
2626
2591
|
public fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
2627
|
-
public fun getInspectorDataForInstance (ILandroid/view/View;)Lcom/facebook/react/bridge/ReadableMap;
|
|
2628
2592
|
public fun getPerformanceCounters ()Ljava/util/Map;
|
|
2629
2593
|
public fun getThemeData (I[F)Z
|
|
2630
2594
|
public fun initialize ()V
|
|
@@ -2659,29 +2623,10 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2659
2623
|
}
|
|
2660
2624
|
|
|
2661
2625
|
public class com/facebook/react/fabric/FabricUIManagerProviderImpl : com/facebook/react/bridge/UIManagerProvider {
|
|
2662
|
-
public fun <init> (Lcom/facebook/react/fabric/ComponentFactory;Lcom/facebook/react/
|
|
2626
|
+
public fun <init> (Lcom/facebook/react/fabric/ComponentFactory;Lcom/facebook/react/uimanager/ViewManagerRegistry;)V
|
|
2663
2627
|
public fun createUIManager (Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/UIManager;
|
|
2664
2628
|
}
|
|
2665
2629
|
|
|
2666
|
-
public abstract class com/facebook/react/fabric/GuardedFrameCallback : android/view/Choreographer$FrameCallback {
|
|
2667
|
-
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
2668
|
-
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2669
|
-
public fun doFrame (J)V
|
|
2670
|
-
protected abstract fun doFrameGuarded (J)V
|
|
2671
|
-
}
|
|
2672
|
-
|
|
2673
|
-
public abstract interface class com/facebook/react/fabric/ReactNativeConfig {
|
|
2674
|
-
public static final field Companion Lcom/facebook/react/fabric/ReactNativeConfig$Companion;
|
|
2675
|
-
public static final field DEFAULT_CONFIG Lcom/facebook/react/fabric/ReactNativeConfig;
|
|
2676
|
-
public abstract fun getBool (Ljava/lang/String;)Z
|
|
2677
|
-
public abstract fun getDouble (Ljava/lang/String;)D
|
|
2678
|
-
public abstract fun getInt64 (Ljava/lang/String;)J
|
|
2679
|
-
public abstract fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
2680
|
-
}
|
|
2681
|
-
|
|
2682
|
-
public final class com/facebook/react/fabric/ReactNativeConfig$Companion {
|
|
2683
|
-
}
|
|
2684
|
-
|
|
2685
2630
|
public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/jni/HybridClassBase, com/facebook/react/uimanager/StateWrapper {
|
|
2686
2631
|
public fun destroyState ()V
|
|
2687
2632
|
public fun getStateData ()Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
@@ -2710,11 +2655,11 @@ public final class com/facebook/react/fabric/events/EventBeatManager : com/faceb
|
|
|
2710
2655
|
public fun onBatchEventDispatched ()V
|
|
2711
2656
|
}
|
|
2712
2657
|
|
|
2713
|
-
public class com/facebook/react/fabric/events/EventEmitterWrapper : com/facebook/jni/HybridClassBase {
|
|
2714
|
-
public fun destroy ()V
|
|
2715
|
-
public fun dispatch (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;I)V
|
|
2716
|
-
public fun dispatchEventSynchronously (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2717
|
-
public fun dispatchUnique (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2658
|
+
public final class com/facebook/react/fabric/events/EventEmitterWrapper : com/facebook/jni/HybridClassBase {
|
|
2659
|
+
public final fun destroy ()V
|
|
2660
|
+
public final fun dispatch (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;I)V
|
|
2661
|
+
public final fun dispatchEventSynchronously (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2662
|
+
public final fun dispatchUnique (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2718
2663
|
}
|
|
2719
2664
|
|
|
2720
2665
|
public final class com/facebook/react/fabric/events/FabricEventEmitter : com/facebook/react/uimanager/events/RCTModernEventEmitter {
|
|
@@ -2857,7 +2802,7 @@ public abstract interface class com/facebook/react/interfaces/TaskInterface {
|
|
|
2857
2802
|
public abstract fun waitForCompletion (JLjava/util/concurrent/TimeUnit;)Z
|
|
2858
2803
|
}
|
|
2859
2804
|
|
|
2860
|
-
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$
|
|
2805
|
+
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError {
|
|
2861
2806
|
public abstract fun getComponentStack ()Ljava/lang/String;
|
|
2862
2807
|
public abstract fun getExtraData ()Lcom/facebook/react/bridge/ReadableMap;
|
|
2863
2808
|
public abstract fun getId ()I
|
|
@@ -2868,7 +2813,7 @@ public abstract interface class com/facebook/react/interfaces/exceptionmanager/R
|
|
|
2868
2813
|
public abstract fun isFatal ()Z
|
|
2869
2814
|
}
|
|
2870
2815
|
|
|
2871
|
-
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$
|
|
2816
|
+
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError$StackFrame {
|
|
2872
2817
|
public abstract fun getColumn ()Ljava/lang/Integer;
|
|
2873
2818
|
public abstract fun getFile ()Ljava/lang/String;
|
|
2874
2819
|
public abstract fun getLineNumber ()Ljava/lang/Integer;
|
|
@@ -2910,23 +2855,35 @@ public final class com/facebook/react/jscexecutor/JSCExecutorFactory : com/faceb
|
|
|
2910
2855
|
public fun toString ()Ljava/lang/String;
|
|
2911
2856
|
}
|
|
2912
2857
|
|
|
2913
|
-
public class com/facebook/react/jstasks/HeadlessJsTaskConfig {
|
|
2858
|
+
public final class com/facebook/react/jstasks/HeadlessJsTaskConfig {
|
|
2914
2859
|
public fun <init> (Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;)V
|
|
2915
2860
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2916
2861
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;J)V
|
|
2917
2862
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;JZ)V
|
|
2918
2863
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;JZLcom/facebook/react/jstasks/HeadlessJsTaskRetryPolicy;)V
|
|
2864
|
+
public synthetic fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;JZLcom/facebook/react/jstasks/HeadlessJsTaskRetryPolicy;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
2865
|
+
public final fun getData ()Lcom/facebook/react/bridge/WritableMap;
|
|
2866
|
+
public final fun getRetryPolicy ()Lcom/facebook/react/jstasks/HeadlessJsTaskRetryPolicy;
|
|
2867
|
+
public final fun getTaskKey ()Ljava/lang/String;
|
|
2868
|
+
public final fun getTimeout ()J
|
|
2869
|
+
public final fun isAllowedInForeground ()Z
|
|
2919
2870
|
}
|
|
2920
2871
|
|
|
2921
|
-
public class com/facebook/react/jstasks/HeadlessJsTaskContext {
|
|
2922
|
-
public
|
|
2923
|
-
public fun
|
|
2924
|
-
public
|
|
2925
|
-
public fun
|
|
2926
|
-
public fun
|
|
2927
|
-
public fun
|
|
2928
|
-
public fun
|
|
2929
|
-
public fun
|
|
2872
|
+
public final class com/facebook/react/jstasks/HeadlessJsTaskContext {
|
|
2873
|
+
public static final field Companion Lcom/facebook/react/jstasks/HeadlessJsTaskContext$Companion;
|
|
2874
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/ReactContext;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
2875
|
+
public final fun addTaskEventListener (Lcom/facebook/react/jstasks/HeadlessJsTaskEventListener;)V
|
|
2876
|
+
public final fun finishTask (I)V
|
|
2877
|
+
public static final fun getInstance (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/react/jstasks/HeadlessJsTaskContext;
|
|
2878
|
+
public final fun hasActiveTasks ()Z
|
|
2879
|
+
public final fun isTaskRunning (I)Z
|
|
2880
|
+
public final fun removeTaskEventListener (Lcom/facebook/react/jstasks/HeadlessJsTaskEventListener;)V
|
|
2881
|
+
public final fun retryTask (I)Z
|
|
2882
|
+
public final fun startTask (Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;)I
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
public final class com/facebook/react/jstasks/HeadlessJsTaskContext$Companion {
|
|
2886
|
+
public final fun getInstance (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/react/jstasks/HeadlessJsTaskContext;
|
|
2930
2887
|
}
|
|
2931
2888
|
|
|
2932
2889
|
public abstract interface class com/facebook/react/jstasks/HeadlessJsTaskEventListener {
|
|
@@ -3355,12 +3312,6 @@ public final class com/facebook/react/modules/fresco/SystraceRequestListener : c
|
|
|
3355
3312
|
public fun requiresExtraMap (Ljava/lang/String;)Z
|
|
3356
3313
|
}
|
|
3357
3314
|
|
|
3358
|
-
public final class com/facebook/react/modules/fresco/XmlFormat {
|
|
3359
|
-
public static final field INSTANCE Lcom/facebook/react/modules/fresco/XmlFormat;
|
|
3360
|
-
public final fun addDecodingCapability (Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;Landroid/content/Context;)Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;
|
|
3361
|
-
public final fun getDrawableFactory ()Lcom/facebook/imagepipeline/drawable/DrawableFactory;
|
|
3362
|
-
}
|
|
3363
|
-
|
|
3364
3315
|
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : com/facebook/fbreact/specs/NativeI18nManagerSpec {
|
|
3365
3316
|
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nManagerModule$Companion;
|
|
3366
3317
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3432,11 +3383,12 @@ public abstract interface class com/facebook/react/modules/network/CustomClientB
|
|
|
3432
3383
|
public abstract fun apply (Lokhttp3/OkHttpClient$Builder;)V
|
|
3433
3384
|
}
|
|
3434
3385
|
|
|
3435
|
-
public class com/facebook/react/modules/network/ForwardingCookieHandler : java/net/CookieHandler {
|
|
3386
|
+
public final class com/facebook/react/modules/network/ForwardingCookieHandler : java/net/CookieHandler {
|
|
3387
|
+
public fun <init> ()V
|
|
3436
3388
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
3437
|
-
public fun addCookies (Ljava/lang/String;Ljava/util/List;)V
|
|
3438
|
-
public fun clearCookies (Lcom/facebook/react/bridge/Callback;)V
|
|
3439
|
-
public fun destroy ()V
|
|
3389
|
+
public final fun addCookies (Ljava/lang/String;Ljava/util/List;)V
|
|
3390
|
+
public final fun clearCookies (Lcom/facebook/react/bridge/Callback;)V
|
|
3391
|
+
public final fun destroy ()V
|
|
3440
3392
|
public fun get (Ljava/net/URI;Ljava/util/Map;)Ljava/util/Map;
|
|
3441
3393
|
public fun put (Ljava/net/URI;Ljava/util/Map;)V
|
|
3442
3394
|
}
|
|
@@ -3518,14 +3470,6 @@ public class com/facebook/react/modules/network/ProgressResponseBody : okhttp3/R
|
|
|
3518
3470
|
public fun totalBytesRead ()J
|
|
3519
3471
|
}
|
|
3520
3472
|
|
|
3521
|
-
public class com/facebook/react/modules/network/ReactCookieJarContainer : com/facebook/react/modules/network/CookieJarContainer {
|
|
3522
|
-
public fun <init> ()V
|
|
3523
|
-
public fun loadForRequest (Lokhttp3/HttpUrl;)Ljava/util/List;
|
|
3524
|
-
public fun removeCookieJar ()V
|
|
3525
|
-
public fun saveFromResponse (Lokhttp3/HttpUrl;Ljava/util/List;)V
|
|
3526
|
-
public fun setCookieJar (Lokhttp3/CookieJar;)V
|
|
3527
|
-
}
|
|
3528
|
-
|
|
3529
3473
|
public class com/facebook/react/modules/network/ResponseUtil {
|
|
3530
3474
|
public fun <init> ()V
|
|
3531
3475
|
public static fun onDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILcom/facebook/react/bridge/WritableMap;)V
|
|
@@ -3538,6 +3482,14 @@ public class com/facebook/react/modules/network/ResponseUtil {
|
|
|
3538
3482
|
public static fun onResponseReceived (Lcom/facebook/react/bridge/ReactApplicationContext;IILcom/facebook/react/bridge/WritableMap;Ljava/lang/String;)V
|
|
3539
3483
|
}
|
|
3540
3484
|
|
|
3485
|
+
public final class com/facebook/react/modules/network/ReactCookieJarContainer : com/facebook/react/modules/network/CookieJarContainer {
|
|
3486
|
+
public fun <init> ()V
|
|
3487
|
+
public fun loadForRequest (Lokhttp3/HttpUrl;)Ljava/util/List;
|
|
3488
|
+
public fun removeCookieJar ()V
|
|
3489
|
+
public fun saveFromResponse (Lokhttp3/HttpUrl;Ljava/util/List;)V
|
|
3490
|
+
public fun setCookieJar (Lokhttp3/CookieJar;)V
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3541
3493
|
public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl/SSLSocketFactory {
|
|
3542
3494
|
public fun <init> ()V
|
|
3543
3495
|
public fun createSocket (Ljava/lang/String;I)Ljava/net/Socket;
|
|
@@ -3636,6 +3588,8 @@ public final class com/facebook/react/modules/toast/ToastModule$Companion {
|
|
|
3636
3588
|
}
|
|
3637
3589
|
|
|
3638
3590
|
public final class com/facebook/react/modules/websocket/WebSocketModule : com/facebook/fbreact/specs/NativeWebSocketModuleSpec {
|
|
3591
|
+
public static final field Companion Lcom/facebook/react/modules/websocket/WebSocketModule$Companion;
|
|
3592
|
+
public static final field NAME Ljava/lang/String;
|
|
3639
3593
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3640
3594
|
public fun addListener (Ljava/lang/String;)V
|
|
3641
3595
|
public fun close (DLjava/lang/String;D)V
|
|
@@ -3645,9 +3599,13 @@ public final class com/facebook/react/modules/websocket/WebSocketModule : com/fa
|
|
|
3645
3599
|
public fun removeListeners (D)V
|
|
3646
3600
|
public fun send (Ljava/lang/String;D)V
|
|
3647
3601
|
public fun sendBinary (Ljava/lang/String;D)V
|
|
3648
|
-
public fun sendBinary (Lokio/ByteString;I)V
|
|
3649
|
-
public fun setContentHandler (ILcom/facebook/react/modules/websocket/WebSocketModule$ContentHandler;)V
|
|
3650
|
-
public static fun setCustomClientBuilder (Lcom/facebook/react/modules/network/CustomClientBuilder;)V
|
|
3602
|
+
public final fun sendBinary (Lokio/ByteString;I)V
|
|
3603
|
+
public final fun setContentHandler (ILcom/facebook/react/modules/websocket/WebSocketModule$ContentHandler;)V
|
|
3604
|
+
public static final fun setCustomClientBuilder (Lcom/facebook/react/modules/network/CustomClientBuilder;)V
|
|
3605
|
+
}
|
|
3606
|
+
|
|
3607
|
+
public final class com/facebook/react/modules/websocket/WebSocketModule$Companion {
|
|
3608
|
+
public final fun setCustomClientBuilder (Lcom/facebook/react/modules/network/CustomClientBuilder;)V
|
|
3651
3609
|
}
|
|
3652
3610
|
|
|
3653
3611
|
public abstract interface class com/facebook/react/modules/websocket/WebSocketModule$ContentHandler {
|
|
@@ -3848,7 +3806,7 @@ public abstract class com/facebook/react/runtime/cxxreactpackage/CxxReactPackage
|
|
|
3848
3806
|
public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebook/react/runtime/JSRuntimeFactory {
|
|
3849
3807
|
public static final field Companion Lcom/facebook/react/runtime/hermes/HermesInstance$Companion;
|
|
3850
3808
|
public fun <init> ()V
|
|
3851
|
-
public fun <init> (
|
|
3809
|
+
public fun <init> (Z)V
|
|
3852
3810
|
}
|
|
3853
3811
|
|
|
3854
3812
|
public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
|
|
@@ -4095,10 +4053,6 @@ public abstract class com/facebook/react/uimanager/BaseViewManagerDelegate : com
|
|
|
4095
4053
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4096
4054
|
}
|
|
4097
4055
|
|
|
4098
|
-
public abstract interface class com/facebook/react/uimanager/ComponentNameResolver {
|
|
4099
|
-
public abstract fun getComponentNames ()[Ljava/lang/String;
|
|
4100
|
-
}
|
|
4101
|
-
|
|
4102
4056
|
public final class com/facebook/react/uimanager/DisplayMetricsHolder {
|
|
4103
4057
|
public static final field INSTANCE Lcom/facebook/react/uimanager/DisplayMetricsHolder;
|
|
4104
4058
|
public static final fun getDisplayMetricsWritableMap (D)Lcom/facebook/react/bridge/WritableMap;
|
|
@@ -4110,22 +4064,6 @@ public final class com/facebook/react/uimanager/DisplayMetricsHolder {
|
|
|
4110
4064
|
public static final fun setWindowDisplayMetrics (Landroid/util/DisplayMetrics;)V
|
|
4111
4065
|
}
|
|
4112
4066
|
|
|
4113
|
-
public class com/facebook/react/uimanager/FabricViewStateManager {
|
|
4114
|
-
public fun <init> ()V
|
|
4115
|
-
public fun getStateData ()Lcom/facebook/react/bridge/ReadableMap;
|
|
4116
|
-
public fun hasStateWrapper ()Z
|
|
4117
|
-
public fun setState (Lcom/facebook/react/uimanager/FabricViewStateManager$StateUpdateCallback;)V
|
|
4118
|
-
public fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
4119
|
-
}
|
|
4120
|
-
|
|
4121
|
-
public abstract interface class com/facebook/react/uimanager/FabricViewStateManager$HasFabricViewStateManager {
|
|
4122
|
-
public abstract fun getFabricViewStateManager ()Lcom/facebook/react/uimanager/FabricViewStateManager;
|
|
4123
|
-
}
|
|
4124
|
-
|
|
4125
|
-
public abstract interface class com/facebook/react/uimanager/FabricViewStateManager$StateUpdateCallback {
|
|
4126
|
-
public abstract fun getStateUpdate ()Lcom/facebook/react/bridge/WritableMap;
|
|
4127
|
-
}
|
|
4128
|
-
|
|
4129
4067
|
public final class com/facebook/react/uimanager/FloatUtil {
|
|
4130
4068
|
public static final field INSTANCE Lcom/facebook/react/uimanager/FloatUtil;
|
|
4131
4069
|
public static final fun floatsEqual (FF)Z
|
|
@@ -4133,6 +4071,7 @@ public final class com/facebook/react/uimanager/FloatUtil {
|
|
|
4133
4071
|
}
|
|
4134
4072
|
|
|
4135
4073
|
public abstract class com/facebook/react/uimanager/GuardedFrameCallback : android/view/Choreographer$FrameCallback {
|
|
4074
|
+
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
4136
4075
|
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
4137
4076
|
public fun doFrame (J)V
|
|
4138
4077
|
protected abstract fun doFrameGuarded (J)V
|
|
@@ -4194,7 +4133,6 @@ public class com/facebook/react/uimanager/LayoutShadowNode : com/facebook/react/
|
|
|
4194
4133
|
public fun setInsetBlock (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4195
4134
|
public fun setInsetInline (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4196
4135
|
public fun setJustifyContent (Ljava/lang/String;)V
|
|
4197
|
-
public fun setLayoutConformance (Ljava/lang/String;)V
|
|
4198
4136
|
public fun setMarginBlock (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4199
4137
|
public fun setMarginInline (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4200
4138
|
public fun setMargins (ILcom/facebook/react/bridge/Dynamic;)V
|
|
@@ -4914,17 +4852,6 @@ public abstract interface class com/facebook/react/uimanager/RootView {
|
|
|
4914
4852
|
public abstract fun onChildStartedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
4915
4853
|
}
|
|
4916
4854
|
|
|
4917
|
-
public final class com/facebook/react/uimanager/RootViewManager : com/facebook/react/uimanager/ViewGroupManager {
|
|
4918
|
-
public static final field Companion Lcom/facebook/react/uimanager/RootViewManager$Companion;
|
|
4919
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
4920
|
-
public fun <init> ()V
|
|
4921
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
4922
|
-
public fun getName ()Ljava/lang/String;
|
|
4923
|
-
}
|
|
4924
|
-
|
|
4925
|
-
public final class com/facebook/react/uimanager/RootViewManager$Companion {
|
|
4926
|
-
}
|
|
4927
|
-
|
|
4928
4855
|
public final class com/facebook/react/uimanager/RootViewUtil {
|
|
4929
4856
|
public static final field INSTANCE Lcom/facebook/react/uimanager/RootViewUtil;
|
|
4930
4857
|
public static final fun getRootView (Landroid/view/View;)Lcom/facebook/react/uimanager/RootView;
|
|
@@ -5354,6 +5281,9 @@ public abstract interface class com/facebook/react/uimanager/ViewManagerResolver
|
|
|
5354
5281
|
public abstract fun getViewManagerNames ()Ljava/util/Collection;
|
|
5355
5282
|
}
|
|
5356
5283
|
|
|
5284
|
+
public abstract interface class com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
5285
|
+
}
|
|
5286
|
+
|
|
5357
5287
|
public final class com/facebook/react/uimanager/ViewProps {
|
|
5358
5288
|
public static final field ACCESSIBILITY_ACTIONS Ljava/lang/String;
|
|
5359
5289
|
public static final field ACCESSIBILITY_COLLECTION Ljava/lang/String;
|
|
@@ -5436,7 +5366,6 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5436
5366
|
public static final field IMPORTANT_FOR_ACCESSIBILITY Ljava/lang/String;
|
|
5437
5367
|
public static final field INCLUDE_FONT_PADDING Ljava/lang/String;
|
|
5438
5368
|
public static final field INSTANCE Lcom/facebook/react/uimanager/ViewProps;
|
|
5439
|
-
public static final field IS_ATTACHMENT Ljava/lang/String;
|
|
5440
5369
|
public static final field JUSTIFY_CONTENT Ljava/lang/String;
|
|
5441
5370
|
public static final field LAYOUT_DIRECTION Ljava/lang/String;
|
|
5442
5371
|
public static final field LEFT Ljava/lang/String;
|
|
@@ -5463,7 +5392,6 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5463
5392
|
public static final field NONE Ljava/lang/String;
|
|
5464
5393
|
public static final field NUMBER_OF_LINES Ljava/lang/String;
|
|
5465
5394
|
public static final field ON Ljava/lang/String;
|
|
5466
|
-
public static final field ON_LAYOUT Ljava/lang/String;
|
|
5467
5395
|
public static final field OPACITY Ljava/lang/String;
|
|
5468
5396
|
public static final field OUTLINE_COLOR Ljava/lang/String;
|
|
5469
5397
|
public static final field OUTLINE_OFFSET Ljava/lang/String;
|
|
@@ -5482,7 +5410,6 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5482
5410
|
public static final field PADDING_VERTICAL Ljava/lang/String;
|
|
5483
5411
|
public static final field POINTER_EVENTS Ljava/lang/String;
|
|
5484
5412
|
public static final field POSITION Ljava/lang/String;
|
|
5485
|
-
public static final field POSITION_SPACING_TYPES [I
|
|
5486
5413
|
public static final field RENDER_TO_HARDWARE_TEXTURE Ljava/lang/String;
|
|
5487
5414
|
public static final field RESIZE_METHOD Ljava/lang/String;
|
|
5488
5415
|
public static final field RESIZE_MODE Ljava/lang/String;
|
|
@@ -5614,6 +5541,15 @@ public abstract interface class com/facebook/react/uimanager/events/Event$EventA
|
|
|
5614
5541
|
}
|
|
5615
5542
|
|
|
5616
5543
|
public abstract interface annotation class com/facebook/react/uimanager/events/EventCategoryDef : java/lang/annotation/Annotation {
|
|
5544
|
+
public static final field CONTINUOUS I
|
|
5545
|
+
public static final field CONTINUOUS_END I
|
|
5546
|
+
public static final field CONTINUOUS_START I
|
|
5547
|
+
public static final field Companion Lcom/facebook/react/uimanager/events/EventCategoryDef$Companion;
|
|
5548
|
+
public static final field DISCRETE I
|
|
5549
|
+
public static final field UNSPECIFIED I
|
|
5550
|
+
}
|
|
5551
|
+
|
|
5552
|
+
public final class com/facebook/react/uimanager/events/EventCategoryDef$Companion {
|
|
5617
5553
|
public static final field CONTINUOUS I
|
|
5618
5554
|
public static final field CONTINUOUS_END I
|
|
5619
5555
|
public static final field CONTINUOUS_START I
|
|
@@ -5708,8 +5644,9 @@ public class com/facebook/react/uimanager/events/PointerEvent$PointerEventState
|
|
|
5708
5644
|
public fun supportsHover (I)Z
|
|
5709
5645
|
}
|
|
5710
5646
|
|
|
5711
|
-
public class com/facebook/react/uimanager/events/PointerEventHelper {
|
|
5647
|
+
public final class com/facebook/react/uimanager/events/PointerEventHelper {
|
|
5712
5648
|
public static final field CLICK Ljava/lang/String;
|
|
5649
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/events/PointerEventHelper;
|
|
5713
5650
|
public static final field POINTER_CANCEL Ljava/lang/String;
|
|
5714
5651
|
public static final field POINTER_DOWN Ljava/lang/String;
|
|
5715
5652
|
public static final field POINTER_ENTER Ljava/lang/String;
|
|
@@ -5722,16 +5659,15 @@ public class com/facebook/react/uimanager/events/PointerEventHelper {
|
|
|
5722
5659
|
public static final field POINTER_TYPE_TOUCH Ljava/lang/String;
|
|
5723
5660
|
public static final field POINTER_TYPE_UNKNOWN Ljava/lang/String;
|
|
5724
5661
|
public static final field POINTER_UP Ljava/lang/String;
|
|
5725
|
-
public fun
|
|
5726
|
-
public static fun
|
|
5727
|
-
public static fun
|
|
5728
|
-
public static fun
|
|
5729
|
-
public static fun
|
|
5730
|
-
public static fun
|
|
5731
|
-
public
|
|
5732
|
-
public static fun
|
|
5733
|
-
public
|
|
5734
|
-
public static fun supportsHover (Landroid/view/MotionEvent;)Z
|
|
5662
|
+
public static final fun getButtonChange (Ljava/lang/String;II)I
|
|
5663
|
+
public static final fun getButtons (Ljava/lang/String;Ljava/lang/String;I)I
|
|
5664
|
+
public static final fun getEventCategory (Ljava/lang/String;)I
|
|
5665
|
+
public static final fun getPressure (ILjava/lang/String;)D
|
|
5666
|
+
public static final fun getW3CPointerType (I)Ljava/lang/String;
|
|
5667
|
+
public static final fun isBubblingEvent (Ljava/lang/String;)Z
|
|
5668
|
+
public final fun isExitEvent (Ljava/lang/String;)Z
|
|
5669
|
+
public static final fun isListening (Landroid/view/View;Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;)Z
|
|
5670
|
+
public final fun supportsHover (Landroid/view/MotionEvent;)Z
|
|
5735
5671
|
}
|
|
5736
5672
|
|
|
5737
5673
|
public final class com/facebook/react/uimanager/events/PointerEventHelper$EVENT : java/lang/Enum {
|
|
@@ -5753,6 +5689,7 @@ public final class com/facebook/react/uimanager/events/PointerEventHelper$EVENT
|
|
|
5753
5689
|
public static final field OVER_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5754
5690
|
public static final field UP Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5755
5691
|
public static final field UP_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5692
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
5756
5693
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5757
5694
|
public static fun values ()[Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5758
5695
|
}
|
|
@@ -5779,6 +5716,7 @@ public final class com/facebook/react/uimanager/events/TouchEvent : com/facebook
|
|
|
5779
5716
|
public fun dispatch (Lcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5780
5717
|
public fun dispatchModern (Lcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
5781
5718
|
public fun getCoalescingKey ()S
|
|
5719
|
+
public fun getEventCategory ()I
|
|
5782
5720
|
public fun getEventName ()Ljava/lang/String;
|
|
5783
5721
|
public final fun getMotionEvent ()Landroid/view/MotionEvent;
|
|
5784
5722
|
public final fun getTouchEventType ()Lcom/facebook/react/uimanager/events/TouchEventType;
|
|
@@ -5794,13 +5732,13 @@ public final class com/facebook/react/uimanager/events/TouchEvent$Companion {
|
|
|
5794
5732
|
public final fun obtain (ILcom/facebook/react/uimanager/events/TouchEventType;Landroid/view/MotionEvent;JFFLcom/facebook/react/uimanager/events/TouchEventCoalescingKeyHelper;)Lcom/facebook/react/uimanager/events/TouchEvent;
|
|
5795
5733
|
}
|
|
5796
5734
|
|
|
5797
|
-
public class com/facebook/react/uimanager/events/TouchEventCoalescingKeyHelper {
|
|
5735
|
+
public final class com/facebook/react/uimanager/events/TouchEventCoalescingKeyHelper {
|
|
5798
5736
|
public fun <init> ()V
|
|
5799
|
-
public fun addCoalescingKey (J)V
|
|
5800
|
-
public fun getCoalescingKey (J)S
|
|
5801
|
-
public fun hasCoalescingKey (J)Z
|
|
5802
|
-
public fun incrementCoalescingKey (J)V
|
|
5803
|
-
public fun removeCoalescingKey (J)V
|
|
5737
|
+
public final fun addCoalescingKey (J)V
|
|
5738
|
+
public final fun getCoalescingKey (J)S
|
|
5739
|
+
public final fun hasCoalescingKey (J)Z
|
|
5740
|
+
public final fun incrementCoalescingKey (J)V
|
|
5741
|
+
public final fun removeCoalescingKey (J)V
|
|
5804
5742
|
}
|
|
5805
5743
|
|
|
5806
5744
|
public final class com/facebook/react/uimanager/events/TouchEventType : java/lang/Enum {
|
|
@@ -5820,9 +5758,11 @@ public final class com/facebook/react/uimanager/events/TouchEventType$Companion
|
|
|
5820
5758
|
public final fun getJSEventName (Lcom/facebook/react/uimanager/events/TouchEventType;)Ljava/lang/String;
|
|
5821
5759
|
}
|
|
5822
5760
|
|
|
5823
|
-
public class com/facebook/react/uimanager/events/TouchesHelper {
|
|
5761
|
+
public final class com/facebook/react/uimanager/events/TouchesHelper {
|
|
5762
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/events/TouchesHelper;
|
|
5824
5763
|
public static final field TARGET_KEY Ljava/lang/String;
|
|
5825
|
-
public fun
|
|
5764
|
+
public static final fun sendTouchEvent (Lcom/facebook/react/uimanager/events/RCTModernEventEmitter;Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
5765
|
+
public static final fun sendTouchesLegacy (Lcom/facebook/react/uimanager/events/RCTEventEmitter;Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
5826
5766
|
}
|
|
5827
5767
|
|
|
5828
5768
|
public final class com/facebook/react/uimanager/layoutanimation/InterpolatorType : java/lang/Enum {
|
|
@@ -6140,7 +6080,7 @@ public class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerDelegat
|
|
|
6140
6080
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6141
6081
|
}
|
|
6142
6082
|
|
|
6143
|
-
public abstract interface class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerInterface {
|
|
6083
|
+
public abstract interface class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6144
6084
|
public abstract fun setAnimating (Landroid/view/View;Z)V
|
|
6145
6085
|
public abstract fun setColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
6146
6086
|
public abstract fun setHidesWhenStopped (Landroid/view/View;Z)V
|
|
@@ -6153,7 +6093,7 @@ public class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerDelegate
|
|
|
6153
6093
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6154
6094
|
}
|
|
6155
6095
|
|
|
6156
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerInterface {
|
|
6096
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6157
6097
|
public abstract fun closeDrawer (Landroid/view/View;)V
|
|
6158
6098
|
public abstract fun openDrawer (Landroid/view/View;)V
|
|
6159
6099
|
public abstract fun setDrawerBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
@@ -6169,7 +6109,7 @@ public class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewM
|
|
|
6169
6109
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6170
6110
|
}
|
|
6171
6111
|
|
|
6172
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewManagerInterface {
|
|
6112
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6173
6113
|
public abstract fun setRemoveClippedSubviews (Landroid/view/View;Z)V
|
|
6174
6114
|
}
|
|
6175
6115
|
|
|
@@ -6178,7 +6118,7 @@ public class com/facebook/react/viewmanagers/AndroidProgressBarManagerDelegate :
|
|
|
6178
6118
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6179
6119
|
}
|
|
6180
6120
|
|
|
6181
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface {
|
|
6121
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6182
6122
|
public abstract fun setAnimating (Landroid/view/View;Z)V
|
|
6183
6123
|
public abstract fun setColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
6184
6124
|
public abstract fun setIndeterminate (Landroid/view/View;Z)V
|
|
@@ -6194,7 +6134,7 @@ public class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerDel
|
|
|
6194
6134
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6195
6135
|
}
|
|
6196
6136
|
|
|
6197
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerInterface {
|
|
6137
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6198
6138
|
public abstract fun setColors (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6199
6139
|
public abstract fun setEnabled (Landroid/view/View;Z)V
|
|
6200
6140
|
public abstract fun setNativeRefreshing (Landroid/view/View;Z)V
|
|
@@ -6210,7 +6150,7 @@ public class com/facebook/react/viewmanagers/AndroidSwitchManagerDelegate : com/
|
|
|
6210
6150
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6211
6151
|
}
|
|
6212
6152
|
|
|
6213
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidSwitchManagerInterface {
|
|
6153
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidSwitchManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6214
6154
|
public abstract fun setDisabled (Landroid/view/View;Z)V
|
|
6215
6155
|
public abstract fun setEnabled (Landroid/view/View;Z)V
|
|
6216
6156
|
public abstract fun setNativeValue (Landroid/view/View;Z)V
|
|
@@ -6229,7 +6169,7 @@ public class com/facebook/react/viewmanagers/DebuggingOverlayManagerDelegate : c
|
|
|
6229
6169
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6230
6170
|
}
|
|
6231
6171
|
|
|
6232
|
-
public abstract interface class com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface {
|
|
6172
|
+
public abstract interface class com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6233
6173
|
public abstract fun clearElementsHighlights (Landroid/view/View;)V
|
|
6234
6174
|
public abstract fun highlightElements (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6235
6175
|
public abstract fun highlightTraceUpdates (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
@@ -6240,7 +6180,7 @@ public class com/facebook/react/viewmanagers/ModalHostViewManagerDelegate : com/
|
|
|
6240
6180
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6241
6181
|
}
|
|
6242
6182
|
|
|
6243
|
-
public abstract interface class com/facebook/react/viewmanagers/ModalHostViewManagerInterface {
|
|
6183
|
+
public abstract interface class com/facebook/react/viewmanagers/ModalHostViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6244
6184
|
public abstract fun setAnimated (Landroid/view/View;Z)V
|
|
6245
6185
|
public abstract fun setAnimationType (Landroid/view/View;Ljava/lang/String;)V
|
|
6246
6186
|
public abstract fun setHardwareAccelerated (Landroid/view/View;Z)V
|
|
@@ -6258,7 +6198,7 @@ public class com/facebook/react/viewmanagers/SafeAreaViewManagerDelegate : com/f
|
|
|
6258
6198
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6259
6199
|
}
|
|
6260
6200
|
|
|
6261
|
-
public abstract interface class com/facebook/react/viewmanagers/SafeAreaViewManagerInterface {
|
|
6201
|
+
public abstract interface class com/facebook/react/viewmanagers/SafeAreaViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6262
6202
|
}
|
|
6263
6203
|
|
|
6264
6204
|
public class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
@@ -6266,7 +6206,7 @@ public class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerDeleg
|
|
|
6266
6206
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6267
6207
|
}
|
|
6268
6208
|
|
|
6269
|
-
public abstract interface class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerInterface {
|
|
6209
|
+
public abstract interface class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6270
6210
|
public abstract fun setName (Landroid/view/View;Ljava/lang/String;)V
|
|
6271
6211
|
}
|
|
6272
6212
|
|
|
@@ -6637,6 +6577,8 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6637
6577
|
public fun setStatusBarTranslucent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6638
6578
|
public synthetic fun setSupportedOrientations (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6639
6579
|
public fun setSupportedOrientations (Lcom/facebook/react/views/modal/ReactModalHostView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6580
|
+
public synthetic fun setTestId (Landroid/view/View;Ljava/lang/String;)V
|
|
6581
|
+
public fun setTestId (Lcom/facebook/react/views/modal/ReactModalHostView;Ljava/lang/String;)V
|
|
6640
6582
|
public synthetic fun setTransparent (Landroid/view/View;Z)V
|
|
6641
6583
|
public fun setTransparent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6642
6584
|
public synthetic fun setVisible (Landroid/view/View;Z)V
|
|
@@ -6672,6 +6614,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6672
6614
|
public fun removeView (Landroid/view/View;)V
|
|
6673
6615
|
public fun removeViewAt (I)V
|
|
6674
6616
|
public final fun setAnimationType (Ljava/lang/String;)V
|
|
6617
|
+
public final fun setDialogRootViewGroupTestId (Ljava/lang/String;)V
|
|
6675
6618
|
public final fun setEventDispatcher (Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6676
6619
|
public final fun setHardwareAccelerated (Z)V
|
|
6677
6620
|
public fun setId (I)V
|
|
@@ -6689,6 +6632,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView$DialogRootV
|
|
|
6689
6632
|
public fun onChildEndedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
6690
6633
|
public fun onChildStartedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
6691
6634
|
public fun onHoverEvent (Landroid/view/MotionEvent;)Z
|
|
6635
|
+
public fun onInitializeAccessibilityNodeInfo (Landroid/view/accessibility/AccessibilityNodeInfo;)V
|
|
6692
6636
|
public fun onInterceptHoverEvent (Landroid/view/MotionEvent;)Z
|
|
6693
6637
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6694
6638
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
@@ -6758,6 +6702,7 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
6758
6702
|
public fun onChildViewRemoved (Landroid/view/View;Landroid/view/View;)V
|
|
6759
6703
|
protected fun onDetachedFromWindow ()V
|
|
6760
6704
|
public fun onDraw (Landroid/graphics/Canvas;)V
|
|
6705
|
+
public fun onInitializeAccessibilityNodeInfo (Landroid/view/accessibility/AccessibilityNodeInfo;)V
|
|
6761
6706
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6762
6707
|
protected fun onLayout (ZIIII)V
|
|
6763
6708
|
public fun onLayoutChange (Landroid/view/View;IIIIIIII)V
|
|
@@ -7139,45 +7084,6 @@ public final class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout
|
|
|
7139
7084
|
public fun setRefreshing (Z)V
|
|
7140
7085
|
}
|
|
7141
7086
|
|
|
7142
|
-
public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/AndroidSwitchManagerInterface {
|
|
7143
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
7144
|
-
public fun <init> ()V
|
|
7145
|
-
protected synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
7146
|
-
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/switchview/ReactSwitch;)V
|
|
7147
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/LayoutShadowNode;
|
|
7148
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7149
|
-
protected synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7150
|
-
protected fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/switchview/ReactSwitch;
|
|
7151
|
-
protected fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
7152
|
-
public fun getName ()Ljava/lang/String;
|
|
7153
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7154
|
-
public fun measure (Landroid/content/Context;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/ReadableMap;FLcom/facebook/yoga/YogaMeasureMode;FLcom/facebook/yoga/YogaMeasureMode;[F)J
|
|
7155
|
-
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7156
|
-
public fun receiveCommand (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7157
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7158
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/switchview/ReactSwitch;I)V
|
|
7159
|
-
public synthetic fun setDisabled (Landroid/view/View;Z)V
|
|
7160
|
-
public fun setDisabled (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7161
|
-
public synthetic fun setEnabled (Landroid/view/View;Z)V
|
|
7162
|
-
public fun setEnabled (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7163
|
-
public synthetic fun setNativeValue (Landroid/view/View;Z)V
|
|
7164
|
-
public fun setNativeValue (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7165
|
-
public synthetic fun setOn (Landroid/view/View;Z)V
|
|
7166
|
-
public fun setOn (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7167
|
-
public synthetic fun setThumbColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7168
|
-
public fun setThumbColor (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7169
|
-
public synthetic fun setThumbTintColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7170
|
-
public fun setThumbTintColor (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7171
|
-
public synthetic fun setTrackColorForFalse (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7172
|
-
public fun setTrackColorForFalse (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7173
|
-
public synthetic fun setTrackColorForTrue (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7174
|
-
public fun setTrackColorForTrue (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7175
|
-
public synthetic fun setTrackTintColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7176
|
-
public fun setTrackTintColor (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7177
|
-
public synthetic fun setValue (Landroid/view/View;Z)V
|
|
7178
|
-
public fun setValue (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7179
|
-
}
|
|
7180
|
-
|
|
7181
7087
|
public final class com/facebook/react/views/text/DefaultStyleValuesUtil {
|
|
7182
7088
|
public static final field INSTANCE Lcom/facebook/react/views/text/DefaultStyleValuesUtil;
|
|
7183
7089
|
public static final fun getDefaultTextColor (Landroid/content/Context;)Landroid/content/res/ColorStateList;
|
|
@@ -7594,18 +7500,6 @@ public final class com/facebook/react/views/text/TextTransformKt {
|
|
|
7594
7500
|
public static final fun applyTextTransform (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7595
7501
|
}
|
|
7596
7502
|
|
|
7597
|
-
public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
7598
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
7599
|
-
public fun <init> ()V
|
|
7600
|
-
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Ljava/lang/Object;)V
|
|
7601
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7602
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageShadowNode;
|
|
7603
|
-
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7604
|
-
public fun getName ()Ljava/lang/String;
|
|
7605
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7606
|
-
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7607
|
-
}
|
|
7608
|
-
|
|
7609
7503
|
public abstract interface class com/facebook/react/views/textinput/ContentSizeWatcher {
|
|
7610
7504
|
public abstract fun onLayout ()V
|
|
7611
7505
|
}
|
|
@@ -7826,9 +7720,9 @@ public abstract class com/facebook/react/views/view/ReactClippingViewManager : c
|
|
|
7826
7720
|
public fun setRemoveClippedSubviews (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
7827
7721
|
}
|
|
7828
7722
|
|
|
7829
|
-
public class com/facebook/react/views/view/ReactDrawableHelper {
|
|
7830
|
-
public
|
|
7831
|
-
public static fun createDrawableFromJSDescription (Landroid/content/Context;Lcom/facebook/react/bridge/ReadableMap;)Landroid/graphics/drawable/Drawable;
|
|
7723
|
+
public final class com/facebook/react/views/view/ReactDrawableHelper {
|
|
7724
|
+
public static final field INSTANCE Lcom/facebook/react/views/view/ReactDrawableHelper;
|
|
7725
|
+
public static final fun createDrawableFromJSDescription (Landroid/content/Context;Lcom/facebook/react/bridge/ReadableMap;)Landroid/graphics/drawable/Drawable;
|
|
7832
7726
|
}
|
|
7833
7727
|
|
|
7834
7728
|
public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGroup, com/facebook/react/touch/ReactHitSlopView, com/facebook/react/touch/ReactInterceptingViewGroup, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/uimanager/ReactPointerEventsView, com/facebook/react/uimanager/ReactZIndexedViewGroup {
|
|
@@ -7939,4 +7833,3 @@ public final class com/facebook/react/views/view/WindowUtilKt {
|
|
|
7939
7833
|
public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
|
|
7940
7834
|
public static final fun setSystemBarsTranslucency (Landroid/view/Window;Z)V
|
|
7941
7835
|
}
|
|
7942
|
-
|