react-native-tvos 0.77.0-0rc5 → 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/TV/TVFocusGuideView.js +0 -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 +8 -7
- package/Libraries/Components/View/ViewPropTypes.js +0 -9
- package/Libraries/Core/ReactNativeVersion.js +2 -2
- package/Libraries/Core/setUpBatchedBridge.js +1 -16
- package/Libraries/Core/setUpDeveloperTools.js +2 -3
- package/Libraries/EventEmitter/RCTEventEmitter.js +2 -6
- package/Libraries/Image/AssetSourceResolver.js +11 -0
- package/Libraries/Image/RCTImageLoader.mm +9 -1
- 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/Pressability/Pressability.js +2 -2
- 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 +26 -1
- 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/Libraries/Utilities/HMRClient.js +0 -28
- package/Libraries/Utilities/HMRClientProdShim.js +0 -1
- package/README-core.md +2 -2
- package/React/Base/RCTConvert.mm +3 -1
- 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 +107 -34
- 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 +12 -4
- 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/RCTTVView.m +5 -2
- package/React/Views/RCTView.m +6 -2
- package/React/Views/RCTViewManager.m +0 -7
- package/React/Views/ScrollView/RCTScrollView.m +109 -45
- package/React-Core.podspec +1 -1
- package/ReactAndroid/api/ReactAndroid.api +123 -227
- package/ReactAndroid/build.gradle.kts +8 -13
- package/ReactAndroid/cmake-utils/ReactNative-application.cmake +13 -3
- package/ReactAndroid/cmake-utils/default-app-setup/OnLoad.cpp +2 -0
- package/ReactAndroid/external-artifacts/build.gradle.kts +5 -5
- package/ReactAndroid/gradle.properties +3 -3
- 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/ReactActivity.java +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivityDelegate.java +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +37 -0
- 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/BaseJavaModule.java +1 -1
- 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 +39 -8
- 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/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 +56 -3
- 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/TextAttributeProps.java +16 -2
- 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 +91 -20
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +14 -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/RCTInteropTurboModule.mm +13 -4
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.h +1 -0
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +19 -11
- 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 +85 -29
- package/ReactCommon/react/renderer/attributedstring/TextAttributes.h +2 -0
- package/ReactCommon/react/renderer/attributedstring/conversions.h +5 -0
- 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/components/text/BaseTextProps.cpp +12 -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/TextMeasureCache.h +2 -3
- 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 +11 -5
- 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 +17 -15
- 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/hermes-utils.rb +2 -2
- 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 +32 -26
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +5 -5
- package/src/private/renderer/errorhandling/ErrorHandlers.js +12 -55
- package/src/private/specs/modules/{NativeJSCSamplingProfiler.js → NativeCPUTime.js} +7 -2
- package/src/private/specs/modules/NativeFantom.js +37 -0
- package/src/private/utilities/ensureInstance.js +21 -0
- package/src/private/webapis/dom/nodes/ReactNativeElement.js +49 -6
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +17 -9
- package/src/private/webapis/intersectionobserver/IntersectionObserver.js +11 -11
- package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +1 -1
- package/src/private/webapis/intersectionobserver/IntersectionObserverManager.js +1 -1
- package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +1 -0
- package/src/private/webapis/performance/Performance.js +0 -12
- package/src/private/webapis/performance/specs/NativePerformance.js +0 -11
- package/types/index.d.ts +1 -0
- package/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
|
@@ -608,6 +608,7 @@ public abstract class com/facebook/react/bridge/BaseJavaModule : com/facebook/re
|
|
|
608
608
|
protected final fun getReactApplicationContextIfActiveOrWarn ()Lcom/facebook/react/bridge/ReactApplicationContext;
|
|
609
609
|
public fun initialize ()V
|
|
610
610
|
public fun invalidate ()V
|
|
611
|
+
protected fun setEventEmitterCallback (Lcom/facebook/react/bridge/CxxCallbackImpl;)V
|
|
611
612
|
}
|
|
612
613
|
|
|
613
614
|
public abstract interface class com/facebook/react/bridge/BridgeReactContext$RCTDeviceEventEmitter : com/facebook/react/bridge/JavaScriptModule {
|
|
@@ -780,16 +781,6 @@ public abstract class com/facebook/react/bridge/GuardedAsyncTask : android/os/As
|
|
|
780
781
|
protected abstract fun doInBackgroundGuarded ([Ljava/lang/Object;)V
|
|
781
782
|
}
|
|
782
783
|
|
|
783
|
-
public abstract class com/facebook/react/bridge/GuardedResultAsyncTask : android/os/AsyncTask {
|
|
784
|
-
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
785
|
-
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
786
|
-
protected synthetic fun doInBackground ([Ljava/lang/Object;)Ljava/lang/Object;
|
|
787
|
-
protected final fun doInBackground ([Ljava/lang/Void;)Ljava/lang/Object;
|
|
788
|
-
protected abstract fun doInBackgroundGuarded ()Ljava/lang/Object;
|
|
789
|
-
protected final fun onPostExecute (Ljava/lang/Object;)V
|
|
790
|
-
protected abstract fun onPostExecuteGuarded (Ljava/lang/Object;)V
|
|
791
|
-
}
|
|
792
|
-
|
|
793
784
|
public abstract class com/facebook/react/bridge/GuardedRunnable : java/lang/Runnable {
|
|
794
785
|
public fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
795
786
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
@@ -1433,6 +1424,13 @@ public final class com/facebook/react/bridge/ReactSoftExceptionLogger {
|
|
|
1433
1424
|
public static final fun removeListener (Lcom/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener;)V
|
|
1434
1425
|
}
|
|
1435
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
|
+
|
|
1436
1434
|
public abstract interface class com/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener {
|
|
1437
1435
|
public abstract fun logSoftException (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1438
1436
|
}
|
|
@@ -2040,9 +2038,9 @@ public final class com/facebook/react/defaults/DefaultReactHost {
|
|
|
2040
2038
|
public static final field INSTANCE Lcom/facebook/react/defaults/DefaultReactHost;
|
|
2041
2039
|
public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;)Lcom/facebook/react/ReactHost;
|
|
2042
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;
|
|
2043
|
-
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;
|
|
2044
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;
|
|
2045
|
-
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;
|
|
2046
2044
|
}
|
|
2047
2045
|
|
|
2048
2046
|
public abstract class com/facebook/react/defaults/DefaultReactNativeHost : com/facebook/react/ReactNativeHost {
|
|
@@ -2129,7 +2127,7 @@ public class com/facebook/react/devsupport/DevServerHelper {
|
|
|
2129
2127
|
|
|
2130
2128
|
public abstract interface class com/facebook/react/devsupport/DevServerHelper$PackagerCommandListener {
|
|
2131
2129
|
public abstract fun customCommandHandlers ()Ljava/util/Map;
|
|
2132
|
-
public
|
|
2130
|
+
public fun onCaptureHeapCommand (Lcom/facebook/react/packagerconnection/Responder;)V
|
|
2133
2131
|
public abstract fun onPackagerConnected ()V
|
|
2134
2132
|
public abstract fun onPackagerDevMenuCommand ()V
|
|
2135
2133
|
public abstract fun onPackagerDisconnected ()V
|
|
@@ -2217,37 +2215,13 @@ public abstract interface class com/facebook/react/devsupport/HMRClient : com/fa
|
|
|
2217
2215
|
public abstract fun disable ()V
|
|
2218
2216
|
public abstract fun enable ()V
|
|
2219
2217
|
public abstract fun registerBundle (Ljava/lang/String;)V
|
|
2220
|
-
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
|
|
2221
2219
|
}
|
|
2222
2220
|
|
|
2223
2221
|
public final class com/facebook/react/devsupport/InspectorFlags {
|
|
2224
2222
|
public static final field INSTANCE Lcom/facebook/react/devsupport/InspectorFlags;
|
|
2225
2223
|
public static final fun getFuseboxEnabled ()Z
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
public class com/facebook/react/devsupport/InspectorPackagerConnection : com/facebook/react/devsupport/IInspectorPackagerConnection {
|
|
2229
|
-
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
|
|
2230
|
-
public fun closeQuietly ()V
|
|
2231
|
-
public fun connect ()V
|
|
2232
|
-
public fun sendEventToAllConnections (Ljava/lang/String;)V
|
|
2233
|
-
}
|
|
2234
|
-
|
|
2235
|
-
public class com/facebook/react/devsupport/JSCHeapCapture : com/facebook/fbreact/specs/NativeJSCHeapCaptureSpec {
|
|
2236
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
2237
|
-
public fun captureComplete (Ljava/lang/String;Ljava/lang/String;)V
|
|
2238
|
-
public fun captureHeap (Ljava/lang/String;Lcom/facebook/react/devsupport/JSCHeapCapture$CaptureCallback;)V
|
|
2239
|
-
}
|
|
2240
|
-
|
|
2241
|
-
public abstract interface class com/facebook/react/devsupport/JSCHeapCapture$CaptureCallback {
|
|
2242
|
-
public abstract fun onFailure (Lcom/facebook/react/devsupport/JSCHeapCapture$CaptureException;)V
|
|
2243
|
-
public abstract fun onSuccess (Ljava/io/File;)V
|
|
2244
|
-
}
|
|
2245
|
-
|
|
2246
|
-
public class com/facebook/react/devsupport/JSCHeapCapture$CaptureException : java/lang/Exception {
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
|
-
public abstract interface class com/facebook/react/devsupport/JSCHeapCapture$HeapCapture : com/facebook/react/bridge/JavaScriptModule {
|
|
2250
|
-
public abstract fun captureHeap (Ljava/lang/String;)V
|
|
2224
|
+
public static final fun getIsProfilingBuild ()Z
|
|
2251
2225
|
}
|
|
2252
2226
|
|
|
2253
2227
|
public class com/facebook/react/devsupport/JSDebuggerWebSocketClient : okhttp3/WebSocketListener {
|
|
@@ -2384,7 +2358,7 @@ public class com/facebook/react/devsupport/StackTraceHelper {
|
|
|
2384
2358
|
public static fun convertJsStackTrace (Lcom/facebook/react/bridge/ReadableArray;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2385
2359
|
public static fun convertJsStackTrace (Ljava/lang/String;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2386
2360
|
public static fun convertJsStackTrace (Lorg/json/JSONArray;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2387
|
-
public static fun
|
|
2361
|
+
public static fun convertProcessedError (Lcom/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
2388
2362
|
public static fun formatFrameSource (Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2389
2363
|
public static fun formatStackTrace (Ljava/lang/String;[Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2390
2364
|
}
|
|
@@ -2594,14 +2568,6 @@ public class com/facebook/react/fabric/DevToolsReactPerfLogger$FabricCommitPoint
|
|
|
2594
2568
|
public fun toString ()Ljava/lang/String;
|
|
2595
2569
|
}
|
|
2596
2570
|
|
|
2597
|
-
public final class com/facebook/react/fabric/EmptyReactNativeConfig : com/facebook/react/fabric/ReactNativeConfig {
|
|
2598
|
-
public fun <init> ()V
|
|
2599
|
-
public fun getBool (Ljava/lang/String;)Z
|
|
2600
|
-
public fun getDouble (Ljava/lang/String;)D
|
|
2601
|
-
public fun getInt64 (Ljava/lang/String;)J
|
|
2602
|
-
public fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
2603
|
-
}
|
|
2604
|
-
|
|
2605
2571
|
public final class com/facebook/react/fabric/FabricSoLoader {
|
|
2606
2572
|
public static final field INSTANCE Lcom/facebook/react/fabric/FabricSoLoader;
|
|
2607
2573
|
public static final fun staticInit ()V
|
|
@@ -2623,7 +2589,6 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2623
2589
|
public fun dispatchCommand (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
2624
2590
|
public fun getColor (I[Ljava/lang/String;)I
|
|
2625
2591
|
public fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
2626
|
-
public fun getInspectorDataForInstance (ILandroid/view/View;)Lcom/facebook/react/bridge/ReadableMap;
|
|
2627
2592
|
public fun getPerformanceCounters ()Ljava/util/Map;
|
|
2628
2593
|
public fun getThemeData (I[F)Z
|
|
2629
2594
|
public fun initialize ()V
|
|
@@ -2658,29 +2623,10 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2658
2623
|
}
|
|
2659
2624
|
|
|
2660
2625
|
public class com/facebook/react/fabric/FabricUIManagerProviderImpl : com/facebook/react/bridge/UIManagerProvider {
|
|
2661
|
-
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
|
|
2662
2627
|
public fun createUIManager (Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/UIManager;
|
|
2663
2628
|
}
|
|
2664
2629
|
|
|
2665
|
-
public abstract class com/facebook/react/fabric/GuardedFrameCallback : android/view/Choreographer$FrameCallback {
|
|
2666
|
-
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
2667
|
-
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2668
|
-
public fun doFrame (J)V
|
|
2669
|
-
protected abstract fun doFrameGuarded (J)V
|
|
2670
|
-
}
|
|
2671
|
-
|
|
2672
|
-
public abstract interface class com/facebook/react/fabric/ReactNativeConfig {
|
|
2673
|
-
public static final field Companion Lcom/facebook/react/fabric/ReactNativeConfig$Companion;
|
|
2674
|
-
public static final field DEFAULT_CONFIG Lcom/facebook/react/fabric/ReactNativeConfig;
|
|
2675
|
-
public abstract fun getBool (Ljava/lang/String;)Z
|
|
2676
|
-
public abstract fun getDouble (Ljava/lang/String;)D
|
|
2677
|
-
public abstract fun getInt64 (Ljava/lang/String;)J
|
|
2678
|
-
public abstract fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
2679
|
-
}
|
|
2680
|
-
|
|
2681
|
-
public final class com/facebook/react/fabric/ReactNativeConfig$Companion {
|
|
2682
|
-
}
|
|
2683
|
-
|
|
2684
2630
|
public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/jni/HybridClassBase, com/facebook/react/uimanager/StateWrapper {
|
|
2685
2631
|
public fun destroyState ()V
|
|
2686
2632
|
public fun getStateData ()Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
@@ -2709,11 +2655,11 @@ public final class com/facebook/react/fabric/events/EventBeatManager : com/faceb
|
|
|
2709
2655
|
public fun onBatchEventDispatched ()V
|
|
2710
2656
|
}
|
|
2711
2657
|
|
|
2712
|
-
public class com/facebook/react/fabric/events/EventEmitterWrapper : com/facebook/jni/HybridClassBase {
|
|
2713
|
-
public fun destroy ()V
|
|
2714
|
-
public fun dispatch (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;I)V
|
|
2715
|
-
public fun dispatchEventSynchronously (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2716
|
-
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
|
|
2717
2663
|
}
|
|
2718
2664
|
|
|
2719
2665
|
public final class com/facebook/react/fabric/events/FabricEventEmitter : com/facebook/react/uimanager/events/RCTModernEventEmitter {
|
|
@@ -2856,7 +2802,7 @@ public abstract interface class com/facebook/react/interfaces/TaskInterface {
|
|
|
2856
2802
|
public abstract fun waitForCompletion (JLjava/util/concurrent/TimeUnit;)Z
|
|
2857
2803
|
}
|
|
2858
2804
|
|
|
2859
|
-
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$
|
|
2805
|
+
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError {
|
|
2860
2806
|
public abstract fun getComponentStack ()Ljava/lang/String;
|
|
2861
2807
|
public abstract fun getExtraData ()Lcom/facebook/react/bridge/ReadableMap;
|
|
2862
2808
|
public abstract fun getId ()I
|
|
@@ -2867,7 +2813,7 @@ public abstract interface class com/facebook/react/interfaces/exceptionmanager/R
|
|
|
2867
2813
|
public abstract fun isFatal ()Z
|
|
2868
2814
|
}
|
|
2869
2815
|
|
|
2870
|
-
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$
|
|
2816
|
+
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError$StackFrame {
|
|
2871
2817
|
public abstract fun getColumn ()Ljava/lang/Integer;
|
|
2872
2818
|
public abstract fun getFile ()Ljava/lang/String;
|
|
2873
2819
|
public abstract fun getLineNumber ()Ljava/lang/Integer;
|
|
@@ -2909,23 +2855,35 @@ public final class com/facebook/react/jscexecutor/JSCExecutorFactory : com/faceb
|
|
|
2909
2855
|
public fun toString ()Ljava/lang/String;
|
|
2910
2856
|
}
|
|
2911
2857
|
|
|
2912
|
-
public class com/facebook/react/jstasks/HeadlessJsTaskConfig {
|
|
2858
|
+
public final class com/facebook/react/jstasks/HeadlessJsTaskConfig {
|
|
2913
2859
|
public fun <init> (Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;)V
|
|
2914
2860
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2915
2861
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;J)V
|
|
2916
2862
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;JZ)V
|
|
2917
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
|
|
2918
2870
|
}
|
|
2919
2871
|
|
|
2920
|
-
public class com/facebook/react/jstasks/HeadlessJsTaskContext {
|
|
2921
|
-
public
|
|
2922
|
-
public fun
|
|
2923
|
-
public
|
|
2924
|
-
public fun
|
|
2925
|
-
public fun
|
|
2926
|
-
public fun
|
|
2927
|
-
public fun
|
|
2928
|
-
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;
|
|
2929
2887
|
}
|
|
2930
2888
|
|
|
2931
2889
|
public abstract interface class com/facebook/react/jstasks/HeadlessJsTaskEventListener {
|
|
@@ -3354,12 +3312,6 @@ public final class com/facebook/react/modules/fresco/SystraceRequestListener : c
|
|
|
3354
3312
|
public fun requiresExtraMap (Ljava/lang/String;)Z
|
|
3355
3313
|
}
|
|
3356
3314
|
|
|
3357
|
-
public final class com/facebook/react/modules/fresco/XmlFormat {
|
|
3358
|
-
public static final field INSTANCE Lcom/facebook/react/modules/fresco/XmlFormat;
|
|
3359
|
-
public final fun addDecodingCapability (Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;Landroid/content/Context;)Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;
|
|
3360
|
-
public final fun getDrawableFactory ()Lcom/facebook/imagepipeline/drawable/DrawableFactory;
|
|
3361
|
-
}
|
|
3362
|
-
|
|
3363
3315
|
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : com/facebook/fbreact/specs/NativeI18nManagerSpec {
|
|
3364
3316
|
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nManagerModule$Companion;
|
|
3365
3317
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3431,11 +3383,12 @@ public abstract interface class com/facebook/react/modules/network/CustomClientB
|
|
|
3431
3383
|
public abstract fun apply (Lokhttp3/OkHttpClient$Builder;)V
|
|
3432
3384
|
}
|
|
3433
3385
|
|
|
3434
|
-
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
|
|
3435
3388
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
3436
|
-
public fun addCookies (Ljava/lang/String;Ljava/util/List;)V
|
|
3437
|
-
public fun clearCookies (Lcom/facebook/react/bridge/Callback;)V
|
|
3438
|
-
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
|
|
3439
3392
|
public fun get (Ljava/net/URI;Ljava/util/Map;)Ljava/util/Map;
|
|
3440
3393
|
public fun put (Ljava/net/URI;Ljava/util/Map;)V
|
|
3441
3394
|
}
|
|
@@ -3517,14 +3470,6 @@ public class com/facebook/react/modules/network/ProgressResponseBody : okhttp3/R
|
|
|
3517
3470
|
public fun totalBytesRead ()J
|
|
3518
3471
|
}
|
|
3519
3472
|
|
|
3520
|
-
public class com/facebook/react/modules/network/ReactCookieJarContainer : com/facebook/react/modules/network/CookieJarContainer {
|
|
3521
|
-
public fun <init> ()V
|
|
3522
|
-
public fun loadForRequest (Lokhttp3/HttpUrl;)Ljava/util/List;
|
|
3523
|
-
public fun removeCookieJar ()V
|
|
3524
|
-
public fun saveFromResponse (Lokhttp3/HttpUrl;Ljava/util/List;)V
|
|
3525
|
-
public fun setCookieJar (Lokhttp3/CookieJar;)V
|
|
3526
|
-
}
|
|
3527
|
-
|
|
3528
3473
|
public class com/facebook/react/modules/network/ResponseUtil {
|
|
3529
3474
|
public fun <init> ()V
|
|
3530
3475
|
public static fun onDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILcom/facebook/react/bridge/WritableMap;)V
|
|
@@ -3537,6 +3482,14 @@ public class com/facebook/react/modules/network/ResponseUtil {
|
|
|
3537
3482
|
public static fun onResponseReceived (Lcom/facebook/react/bridge/ReactApplicationContext;IILcom/facebook/react/bridge/WritableMap;Ljava/lang/String;)V
|
|
3538
3483
|
}
|
|
3539
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
|
+
|
|
3540
3493
|
public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl/SSLSocketFactory {
|
|
3541
3494
|
public fun <init> ()V
|
|
3542
3495
|
public fun createSocket (Ljava/lang/String;I)Ljava/net/Socket;
|
|
@@ -3635,6 +3588,8 @@ public final class com/facebook/react/modules/toast/ToastModule$Companion {
|
|
|
3635
3588
|
}
|
|
3636
3589
|
|
|
3637
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;
|
|
3638
3593
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3639
3594
|
public fun addListener (Ljava/lang/String;)V
|
|
3640
3595
|
public fun close (DLjava/lang/String;D)V
|
|
@@ -3644,9 +3599,13 @@ public final class com/facebook/react/modules/websocket/WebSocketModule : com/fa
|
|
|
3644
3599
|
public fun removeListeners (D)V
|
|
3645
3600
|
public fun send (Ljava/lang/String;D)V
|
|
3646
3601
|
public fun sendBinary (Ljava/lang/String;D)V
|
|
3647
|
-
public fun sendBinary (Lokio/ByteString;I)V
|
|
3648
|
-
public fun setContentHandler (ILcom/facebook/react/modules/websocket/WebSocketModule$ContentHandler;)V
|
|
3649
|
-
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
|
|
3650
3609
|
}
|
|
3651
3610
|
|
|
3652
3611
|
public abstract interface class com/facebook/react/modules/websocket/WebSocketModule$ContentHandler {
|
|
@@ -3847,7 +3806,7 @@ public abstract class com/facebook/react/runtime/cxxreactpackage/CxxReactPackage
|
|
|
3847
3806
|
public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebook/react/runtime/JSRuntimeFactory {
|
|
3848
3807
|
public static final field Companion Lcom/facebook/react/runtime/hermes/HermesInstance$Companion;
|
|
3849
3808
|
public fun <init> ()V
|
|
3850
|
-
public fun <init> (
|
|
3809
|
+
public fun <init> (Z)V
|
|
3851
3810
|
}
|
|
3852
3811
|
|
|
3853
3812
|
public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
|
|
@@ -4094,10 +4053,6 @@ public abstract class com/facebook/react/uimanager/BaseViewManagerDelegate : com
|
|
|
4094
4053
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4095
4054
|
}
|
|
4096
4055
|
|
|
4097
|
-
public abstract interface class com/facebook/react/uimanager/ComponentNameResolver {
|
|
4098
|
-
public abstract fun getComponentNames ()[Ljava/lang/String;
|
|
4099
|
-
}
|
|
4100
|
-
|
|
4101
4056
|
public final class com/facebook/react/uimanager/DisplayMetricsHolder {
|
|
4102
4057
|
public static final field INSTANCE Lcom/facebook/react/uimanager/DisplayMetricsHolder;
|
|
4103
4058
|
public static final fun getDisplayMetricsWritableMap (D)Lcom/facebook/react/bridge/WritableMap;
|
|
@@ -4109,22 +4064,6 @@ public final class com/facebook/react/uimanager/DisplayMetricsHolder {
|
|
|
4109
4064
|
public static final fun setWindowDisplayMetrics (Landroid/util/DisplayMetrics;)V
|
|
4110
4065
|
}
|
|
4111
4066
|
|
|
4112
|
-
public class com/facebook/react/uimanager/FabricViewStateManager {
|
|
4113
|
-
public fun <init> ()V
|
|
4114
|
-
public fun getStateData ()Lcom/facebook/react/bridge/ReadableMap;
|
|
4115
|
-
public fun hasStateWrapper ()Z
|
|
4116
|
-
public fun setState (Lcom/facebook/react/uimanager/FabricViewStateManager$StateUpdateCallback;)V
|
|
4117
|
-
public fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
4118
|
-
}
|
|
4119
|
-
|
|
4120
|
-
public abstract interface class com/facebook/react/uimanager/FabricViewStateManager$HasFabricViewStateManager {
|
|
4121
|
-
public abstract fun getFabricViewStateManager ()Lcom/facebook/react/uimanager/FabricViewStateManager;
|
|
4122
|
-
}
|
|
4123
|
-
|
|
4124
|
-
public abstract interface class com/facebook/react/uimanager/FabricViewStateManager$StateUpdateCallback {
|
|
4125
|
-
public abstract fun getStateUpdate ()Lcom/facebook/react/bridge/WritableMap;
|
|
4126
|
-
}
|
|
4127
|
-
|
|
4128
4067
|
public final class com/facebook/react/uimanager/FloatUtil {
|
|
4129
4068
|
public static final field INSTANCE Lcom/facebook/react/uimanager/FloatUtil;
|
|
4130
4069
|
public static final fun floatsEqual (FF)Z
|
|
@@ -4132,6 +4071,7 @@ public final class com/facebook/react/uimanager/FloatUtil {
|
|
|
4132
4071
|
}
|
|
4133
4072
|
|
|
4134
4073
|
public abstract class com/facebook/react/uimanager/GuardedFrameCallback : android/view/Choreographer$FrameCallback {
|
|
4074
|
+
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
4135
4075
|
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
4136
4076
|
public fun doFrame (J)V
|
|
4137
4077
|
protected abstract fun doFrameGuarded (J)V
|
|
@@ -4193,7 +4133,6 @@ public class com/facebook/react/uimanager/LayoutShadowNode : com/facebook/react/
|
|
|
4193
4133
|
public fun setInsetBlock (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4194
4134
|
public fun setInsetInline (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4195
4135
|
public fun setJustifyContent (Ljava/lang/String;)V
|
|
4196
|
-
public fun setLayoutConformance (Ljava/lang/String;)V
|
|
4197
4136
|
public fun setMarginBlock (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4198
4137
|
public fun setMarginInline (ILcom/facebook/react/bridge/Dynamic;)V
|
|
4199
4138
|
public fun setMargins (ILcom/facebook/react/bridge/Dynamic;)V
|
|
@@ -4913,17 +4852,6 @@ public abstract interface class com/facebook/react/uimanager/RootView {
|
|
|
4913
4852
|
public abstract fun onChildStartedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
4914
4853
|
}
|
|
4915
4854
|
|
|
4916
|
-
public final class com/facebook/react/uimanager/RootViewManager : com/facebook/react/uimanager/ViewGroupManager {
|
|
4917
|
-
public static final field Companion Lcom/facebook/react/uimanager/RootViewManager$Companion;
|
|
4918
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
4919
|
-
public fun <init> ()V
|
|
4920
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
4921
|
-
public fun getName ()Ljava/lang/String;
|
|
4922
|
-
}
|
|
4923
|
-
|
|
4924
|
-
public final class com/facebook/react/uimanager/RootViewManager$Companion {
|
|
4925
|
-
}
|
|
4926
|
-
|
|
4927
4855
|
public final class com/facebook/react/uimanager/RootViewUtil {
|
|
4928
4856
|
public static final field INSTANCE Lcom/facebook/react/uimanager/RootViewUtil;
|
|
4929
4857
|
public static final fun getRootView (Landroid/view/View;)Lcom/facebook/react/uimanager/RootView;
|
|
@@ -5353,6 +5281,9 @@ public abstract interface class com/facebook/react/uimanager/ViewManagerResolver
|
|
|
5353
5281
|
public abstract fun getViewManagerNames ()Ljava/util/Collection;
|
|
5354
5282
|
}
|
|
5355
5283
|
|
|
5284
|
+
public abstract interface class com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
5285
|
+
}
|
|
5286
|
+
|
|
5356
5287
|
public final class com/facebook/react/uimanager/ViewProps {
|
|
5357
5288
|
public static final field ACCESSIBILITY_ACTIONS Ljava/lang/String;
|
|
5358
5289
|
public static final field ACCESSIBILITY_COLLECTION Ljava/lang/String;
|
|
@@ -5435,7 +5366,6 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5435
5366
|
public static final field IMPORTANT_FOR_ACCESSIBILITY Ljava/lang/String;
|
|
5436
5367
|
public static final field INCLUDE_FONT_PADDING Ljava/lang/String;
|
|
5437
5368
|
public static final field INSTANCE Lcom/facebook/react/uimanager/ViewProps;
|
|
5438
|
-
public static final field IS_ATTACHMENT Ljava/lang/String;
|
|
5439
5369
|
public static final field JUSTIFY_CONTENT Ljava/lang/String;
|
|
5440
5370
|
public static final field LAYOUT_DIRECTION Ljava/lang/String;
|
|
5441
5371
|
public static final field LEFT Ljava/lang/String;
|
|
@@ -5462,7 +5392,6 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5462
5392
|
public static final field NONE Ljava/lang/String;
|
|
5463
5393
|
public static final field NUMBER_OF_LINES Ljava/lang/String;
|
|
5464
5394
|
public static final field ON Ljava/lang/String;
|
|
5465
|
-
public static final field ON_LAYOUT Ljava/lang/String;
|
|
5466
5395
|
public static final field OPACITY Ljava/lang/String;
|
|
5467
5396
|
public static final field OUTLINE_COLOR Ljava/lang/String;
|
|
5468
5397
|
public static final field OUTLINE_OFFSET Ljava/lang/String;
|
|
@@ -5481,7 +5410,6 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5481
5410
|
public static final field PADDING_VERTICAL Ljava/lang/String;
|
|
5482
5411
|
public static final field POINTER_EVENTS Ljava/lang/String;
|
|
5483
5412
|
public static final field POSITION Ljava/lang/String;
|
|
5484
|
-
public static final field POSITION_SPACING_TYPES [I
|
|
5485
5413
|
public static final field RENDER_TO_HARDWARE_TEXTURE Ljava/lang/String;
|
|
5486
5414
|
public static final field RESIZE_METHOD Ljava/lang/String;
|
|
5487
5415
|
public static final field RESIZE_MODE Ljava/lang/String;
|
|
@@ -5613,6 +5541,15 @@ public abstract interface class com/facebook/react/uimanager/events/Event$EventA
|
|
|
5613
5541
|
}
|
|
5614
5542
|
|
|
5615
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 {
|
|
5616
5553
|
public static final field CONTINUOUS I
|
|
5617
5554
|
public static final field CONTINUOUS_END I
|
|
5618
5555
|
public static final field CONTINUOUS_START I
|
|
@@ -5707,8 +5644,9 @@ public class com/facebook/react/uimanager/events/PointerEvent$PointerEventState
|
|
|
5707
5644
|
public fun supportsHover (I)Z
|
|
5708
5645
|
}
|
|
5709
5646
|
|
|
5710
|
-
public class com/facebook/react/uimanager/events/PointerEventHelper {
|
|
5647
|
+
public final class com/facebook/react/uimanager/events/PointerEventHelper {
|
|
5711
5648
|
public static final field CLICK Ljava/lang/String;
|
|
5649
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/events/PointerEventHelper;
|
|
5712
5650
|
public static final field POINTER_CANCEL Ljava/lang/String;
|
|
5713
5651
|
public static final field POINTER_DOWN Ljava/lang/String;
|
|
5714
5652
|
public static final field POINTER_ENTER Ljava/lang/String;
|
|
@@ -5721,16 +5659,15 @@ public class com/facebook/react/uimanager/events/PointerEventHelper {
|
|
|
5721
5659
|
public static final field POINTER_TYPE_TOUCH Ljava/lang/String;
|
|
5722
5660
|
public static final field POINTER_TYPE_UNKNOWN Ljava/lang/String;
|
|
5723
5661
|
public static final field POINTER_UP Ljava/lang/String;
|
|
5724
|
-
public fun
|
|
5725
|
-
public static fun
|
|
5726
|
-
public static fun
|
|
5727
|
-
public static fun
|
|
5728
|
-
public static fun
|
|
5729
|
-
public static fun
|
|
5730
|
-
public
|
|
5731
|
-
public static fun
|
|
5732
|
-
public
|
|
5733
|
-
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
|
|
5734
5671
|
}
|
|
5735
5672
|
|
|
5736
5673
|
public final class com/facebook/react/uimanager/events/PointerEventHelper$EVENT : java/lang/Enum {
|
|
@@ -5752,6 +5689,7 @@ public final class com/facebook/react/uimanager/events/PointerEventHelper$EVENT
|
|
|
5752
5689
|
public static final field OVER_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5753
5690
|
public static final field UP Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5754
5691
|
public static final field UP_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5692
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
5755
5693
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5756
5694
|
public static fun values ()[Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5757
5695
|
}
|
|
@@ -5778,6 +5716,7 @@ public final class com/facebook/react/uimanager/events/TouchEvent : com/facebook
|
|
|
5778
5716
|
public fun dispatch (Lcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5779
5717
|
public fun dispatchModern (Lcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
5780
5718
|
public fun getCoalescingKey ()S
|
|
5719
|
+
public fun getEventCategory ()I
|
|
5781
5720
|
public fun getEventName ()Ljava/lang/String;
|
|
5782
5721
|
public final fun getMotionEvent ()Landroid/view/MotionEvent;
|
|
5783
5722
|
public final fun getTouchEventType ()Lcom/facebook/react/uimanager/events/TouchEventType;
|
|
@@ -5793,13 +5732,13 @@ public final class com/facebook/react/uimanager/events/TouchEvent$Companion {
|
|
|
5793
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;
|
|
5794
5733
|
}
|
|
5795
5734
|
|
|
5796
|
-
public class com/facebook/react/uimanager/events/TouchEventCoalescingKeyHelper {
|
|
5735
|
+
public final class com/facebook/react/uimanager/events/TouchEventCoalescingKeyHelper {
|
|
5797
5736
|
public fun <init> ()V
|
|
5798
|
-
public fun addCoalescingKey (J)V
|
|
5799
|
-
public fun getCoalescingKey (J)S
|
|
5800
|
-
public fun hasCoalescingKey (J)Z
|
|
5801
|
-
public fun incrementCoalescingKey (J)V
|
|
5802
|
-
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
|
|
5803
5742
|
}
|
|
5804
5743
|
|
|
5805
5744
|
public final class com/facebook/react/uimanager/events/TouchEventType : java/lang/Enum {
|
|
@@ -5819,9 +5758,11 @@ public final class com/facebook/react/uimanager/events/TouchEventType$Companion
|
|
|
5819
5758
|
public final fun getJSEventName (Lcom/facebook/react/uimanager/events/TouchEventType;)Ljava/lang/String;
|
|
5820
5759
|
}
|
|
5821
5760
|
|
|
5822
|
-
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;
|
|
5823
5763
|
public static final field TARGET_KEY Ljava/lang/String;
|
|
5824
|
-
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
|
|
5825
5766
|
}
|
|
5826
5767
|
|
|
5827
5768
|
public final class com/facebook/react/uimanager/layoutanimation/InterpolatorType : java/lang/Enum {
|
|
@@ -6139,7 +6080,7 @@ public class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerDelegat
|
|
|
6139
6080
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6140
6081
|
}
|
|
6141
6082
|
|
|
6142
|
-
public abstract interface class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerInterface {
|
|
6083
|
+
public abstract interface class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6143
6084
|
public abstract fun setAnimating (Landroid/view/View;Z)V
|
|
6144
6085
|
public abstract fun setColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
6145
6086
|
public abstract fun setHidesWhenStopped (Landroid/view/View;Z)V
|
|
@@ -6152,7 +6093,7 @@ public class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerDelegate
|
|
|
6152
6093
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6153
6094
|
}
|
|
6154
6095
|
|
|
6155
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerInterface {
|
|
6096
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6156
6097
|
public abstract fun closeDrawer (Landroid/view/View;)V
|
|
6157
6098
|
public abstract fun openDrawer (Landroid/view/View;)V
|
|
6158
6099
|
public abstract fun setDrawerBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
@@ -6168,7 +6109,7 @@ public class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewM
|
|
|
6168
6109
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6169
6110
|
}
|
|
6170
6111
|
|
|
6171
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewManagerInterface {
|
|
6112
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6172
6113
|
public abstract fun setRemoveClippedSubviews (Landroid/view/View;Z)V
|
|
6173
6114
|
}
|
|
6174
6115
|
|
|
@@ -6177,7 +6118,7 @@ public class com/facebook/react/viewmanagers/AndroidProgressBarManagerDelegate :
|
|
|
6177
6118
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6178
6119
|
}
|
|
6179
6120
|
|
|
6180
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface {
|
|
6121
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6181
6122
|
public abstract fun setAnimating (Landroid/view/View;Z)V
|
|
6182
6123
|
public abstract fun setColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
6183
6124
|
public abstract fun setIndeterminate (Landroid/view/View;Z)V
|
|
@@ -6193,7 +6134,7 @@ public class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerDel
|
|
|
6193
6134
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6194
6135
|
}
|
|
6195
6136
|
|
|
6196
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerInterface {
|
|
6137
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6197
6138
|
public abstract fun setColors (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6198
6139
|
public abstract fun setEnabled (Landroid/view/View;Z)V
|
|
6199
6140
|
public abstract fun setNativeRefreshing (Landroid/view/View;Z)V
|
|
@@ -6209,7 +6150,7 @@ public class com/facebook/react/viewmanagers/AndroidSwitchManagerDelegate : com/
|
|
|
6209
6150
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6210
6151
|
}
|
|
6211
6152
|
|
|
6212
|
-
public abstract interface class com/facebook/react/viewmanagers/AndroidSwitchManagerInterface {
|
|
6153
|
+
public abstract interface class com/facebook/react/viewmanagers/AndroidSwitchManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6213
6154
|
public abstract fun setDisabled (Landroid/view/View;Z)V
|
|
6214
6155
|
public abstract fun setEnabled (Landroid/view/View;Z)V
|
|
6215
6156
|
public abstract fun setNativeValue (Landroid/view/View;Z)V
|
|
@@ -6228,7 +6169,7 @@ public class com/facebook/react/viewmanagers/DebuggingOverlayManagerDelegate : c
|
|
|
6228
6169
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6229
6170
|
}
|
|
6230
6171
|
|
|
6231
|
-
public abstract interface class com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface {
|
|
6172
|
+
public abstract interface class com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6232
6173
|
public abstract fun clearElementsHighlights (Landroid/view/View;)V
|
|
6233
6174
|
public abstract fun highlightElements (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6234
6175
|
public abstract fun highlightTraceUpdates (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
@@ -6239,7 +6180,7 @@ public class com/facebook/react/viewmanagers/ModalHostViewManagerDelegate : com/
|
|
|
6239
6180
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6240
6181
|
}
|
|
6241
6182
|
|
|
6242
|
-
public abstract interface class com/facebook/react/viewmanagers/ModalHostViewManagerInterface {
|
|
6183
|
+
public abstract interface class com/facebook/react/viewmanagers/ModalHostViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6243
6184
|
public abstract fun setAnimated (Landroid/view/View;Z)V
|
|
6244
6185
|
public abstract fun setAnimationType (Landroid/view/View;Ljava/lang/String;)V
|
|
6245
6186
|
public abstract fun setHardwareAccelerated (Landroid/view/View;Z)V
|
|
@@ -6257,7 +6198,7 @@ public class com/facebook/react/viewmanagers/SafeAreaViewManagerDelegate : com/f
|
|
|
6257
6198
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6258
6199
|
}
|
|
6259
6200
|
|
|
6260
|
-
public abstract interface class com/facebook/react/viewmanagers/SafeAreaViewManagerInterface {
|
|
6201
|
+
public abstract interface class com/facebook/react/viewmanagers/SafeAreaViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6261
6202
|
}
|
|
6262
6203
|
|
|
6263
6204
|
public class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
@@ -6265,7 +6206,7 @@ public class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerDeleg
|
|
|
6265
6206
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6266
6207
|
}
|
|
6267
6208
|
|
|
6268
|
-
public abstract interface class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerInterface {
|
|
6209
|
+
public abstract interface class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerInterface : com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
|
|
6269
6210
|
public abstract fun setName (Landroid/view/View;Ljava/lang/String;)V
|
|
6270
6211
|
}
|
|
6271
6212
|
|
|
@@ -6636,6 +6577,8 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6636
6577
|
public fun setStatusBarTranslucent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6637
6578
|
public synthetic fun setSupportedOrientations (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6638
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
|
|
6639
6582
|
public synthetic fun setTransparent (Landroid/view/View;Z)V
|
|
6640
6583
|
public fun setTransparent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6641
6584
|
public synthetic fun setVisible (Landroid/view/View;Z)V
|
|
@@ -6671,6 +6614,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6671
6614
|
public fun removeView (Landroid/view/View;)V
|
|
6672
6615
|
public fun removeViewAt (I)V
|
|
6673
6616
|
public final fun setAnimationType (Ljava/lang/String;)V
|
|
6617
|
+
public final fun setDialogRootViewGroupTestId (Ljava/lang/String;)V
|
|
6674
6618
|
public final fun setEventDispatcher (Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6675
6619
|
public final fun setHardwareAccelerated (Z)V
|
|
6676
6620
|
public fun setId (I)V
|
|
@@ -6688,6 +6632,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView$DialogRootV
|
|
|
6688
6632
|
public fun onChildEndedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
6689
6633
|
public fun onChildStartedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
6690
6634
|
public fun onHoverEvent (Landroid/view/MotionEvent;)Z
|
|
6635
|
+
public fun onInitializeAccessibilityNodeInfo (Landroid/view/accessibility/AccessibilityNodeInfo;)V
|
|
6691
6636
|
public fun onInterceptHoverEvent (Landroid/view/MotionEvent;)Z
|
|
6692
6637
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6693
6638
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
@@ -6757,6 +6702,7 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
6757
6702
|
public fun onChildViewRemoved (Landroid/view/View;Landroid/view/View;)V
|
|
6758
6703
|
protected fun onDetachedFromWindow ()V
|
|
6759
6704
|
public fun onDraw (Landroid/graphics/Canvas;)V
|
|
6705
|
+
public fun onInitializeAccessibilityNodeInfo (Landroid/view/accessibility/AccessibilityNodeInfo;)V
|
|
6760
6706
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6761
6707
|
protected fun onLayout (ZIIII)V
|
|
6762
6708
|
public fun onLayoutChange (Landroid/view/View;IIIIIIII)V
|
|
@@ -7138,45 +7084,6 @@ public final class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout
|
|
|
7138
7084
|
public fun setRefreshing (Z)V
|
|
7139
7085
|
}
|
|
7140
7086
|
|
|
7141
|
-
public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/AndroidSwitchManagerInterface {
|
|
7142
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
7143
|
-
public fun <init> ()V
|
|
7144
|
-
protected synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
7145
|
-
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/switchview/ReactSwitch;)V
|
|
7146
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/LayoutShadowNode;
|
|
7147
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7148
|
-
protected synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7149
|
-
protected fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/switchview/ReactSwitch;
|
|
7150
|
-
protected fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
7151
|
-
public fun getName ()Ljava/lang/String;
|
|
7152
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7153
|
-
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
|
|
7154
|
-
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7155
|
-
public fun receiveCommand (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7156
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7157
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/switchview/ReactSwitch;I)V
|
|
7158
|
-
public synthetic fun setDisabled (Landroid/view/View;Z)V
|
|
7159
|
-
public fun setDisabled (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7160
|
-
public synthetic fun setEnabled (Landroid/view/View;Z)V
|
|
7161
|
-
public fun setEnabled (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7162
|
-
public synthetic fun setNativeValue (Landroid/view/View;Z)V
|
|
7163
|
-
public fun setNativeValue (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7164
|
-
public synthetic fun setOn (Landroid/view/View;Z)V
|
|
7165
|
-
public fun setOn (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7166
|
-
public synthetic fun setThumbColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7167
|
-
public fun setThumbColor (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7168
|
-
public synthetic fun setThumbTintColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7169
|
-
public fun setThumbTintColor (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7170
|
-
public synthetic fun setTrackColorForFalse (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7171
|
-
public fun setTrackColorForFalse (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7172
|
-
public synthetic fun setTrackColorForTrue (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7173
|
-
public fun setTrackColorForTrue (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7174
|
-
public synthetic fun setTrackTintColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7175
|
-
public fun setTrackTintColor (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/Integer;)V
|
|
7176
|
-
public synthetic fun setValue (Landroid/view/View;Z)V
|
|
7177
|
-
public fun setValue (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7178
|
-
}
|
|
7179
|
-
|
|
7180
7087
|
public final class com/facebook/react/views/text/DefaultStyleValuesUtil {
|
|
7181
7088
|
public static final field INSTANCE Lcom/facebook/react/views/text/DefaultStyleValuesUtil;
|
|
7182
7089
|
public static final fun getDefaultTextColor (Landroid/content/Context;)Landroid/content/res/ColorStateList;
|
|
@@ -7443,6 +7350,7 @@ public class com/facebook/react/views/text/TextAttributeProps {
|
|
|
7443
7350
|
public static final field TA_KEY_LETTER_SPACING S
|
|
7444
7351
|
public static final field TA_KEY_LINE_BREAK_STRATEGY S
|
|
7445
7352
|
public static final field TA_KEY_LINE_HEIGHT S
|
|
7353
|
+
public static final field TA_KEY_MAX_FONT_SIZE_MULTIPLIER S
|
|
7446
7354
|
public static final field TA_KEY_OPACITY S
|
|
7447
7355
|
public static final field TA_KEY_ROLE S
|
|
7448
7356
|
public static final field TA_KEY_TEXT_DECORATION_COLOR S
|
|
@@ -7475,6 +7383,7 @@ public class com/facebook/react/views/text/TextAttributeProps {
|
|
|
7475
7383
|
protected field mLetterSpacingInput F
|
|
7476
7384
|
protected field mLineHeight F
|
|
7477
7385
|
protected field mLineHeightInput F
|
|
7386
|
+
protected field mMaxFontSizeMultiplier F
|
|
7478
7387
|
protected field mNumberOfLines I
|
|
7479
7388
|
protected field mOpacity F
|
|
7480
7389
|
protected field mRole Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
@@ -7591,18 +7500,6 @@ public final class com/facebook/react/views/text/TextTransformKt {
|
|
|
7591
7500
|
public static final fun applyTextTransform (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7592
7501
|
}
|
|
7593
7502
|
|
|
7594
|
-
public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
7595
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
7596
|
-
public fun <init> ()V
|
|
7597
|
-
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Ljava/lang/Object;)V
|
|
7598
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7599
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageShadowNode;
|
|
7600
|
-
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7601
|
-
public fun getName ()Ljava/lang/String;
|
|
7602
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7603
|
-
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7604
|
-
}
|
|
7605
|
-
|
|
7606
7503
|
public abstract interface class com/facebook/react/views/textinput/ContentSizeWatcher {
|
|
7607
7504
|
public abstract fun onLayout ()V
|
|
7608
7505
|
}
|
|
@@ -7823,9 +7720,9 @@ public abstract class com/facebook/react/views/view/ReactClippingViewManager : c
|
|
|
7823
7720
|
public fun setRemoveClippedSubviews (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
7824
7721
|
}
|
|
7825
7722
|
|
|
7826
|
-
public class com/facebook/react/views/view/ReactDrawableHelper {
|
|
7827
|
-
public
|
|
7828
|
-
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;
|
|
7829
7726
|
}
|
|
7830
7727
|
|
|
7831
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 {
|
|
@@ -7936,4 +7833,3 @@ public final class com/facebook/react/views/view/WindowUtilKt {
|
|
|
7936
7833
|
public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
|
|
7937
7834
|
public static final fun setSystemBarsTranslucency (Landroid/view/Window;Z)V
|
|
7938
7835
|
}
|
|
7939
|
-
|