react-native-tvos 0.75.2-0rc0 → 0.76.0-0rc0
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/Alert/Alert.js +3 -0
- package/Libraries/Animated/AnimatedEvent.js +1 -1
- package/Libraries/Animated/AnimatedImplementation.js +7 -7
- package/Libraries/Animated/NativeAnimatedAllowlist.js +111 -0
- package/Libraries/Animated/animations/Animation.js +11 -1
- package/Libraries/Animated/animations/DecayAnimation.js +1 -1
- package/Libraries/Animated/animations/SpringAnimation.js +1 -1
- package/Libraries/Animated/animations/TimingAnimation.js +2 -1
- package/Libraries/Animated/components/AnimatedScrollView.js +3 -2
- package/Libraries/Animated/createAnimatedComponent.js +10 -9
- package/Libraries/Animated/nodes/AnimatedColor.js +1 -1
- package/Libraries/Animated/nodes/AnimatedInterpolation.js +3 -2
- package/Libraries/Animated/nodes/AnimatedNode.js +42 -33
- package/Libraries/Animated/nodes/AnimatedObject.js +56 -50
- package/Libraries/Animated/nodes/AnimatedProps.js +77 -40
- package/Libraries/Animated/nodes/AnimatedStyle.js +103 -59
- package/Libraries/Animated/nodes/AnimatedTracking.js +1 -1
- package/Libraries/Animated/nodes/AnimatedTransform.js +102 -67
- package/Libraries/Animated/nodes/AnimatedValue.js +2 -1
- package/Libraries/Animated/nodes/AnimatedWithChildren.js +21 -22
- package/Libraries/Animated/useAnimatedProps.js +142 -7
- package/Libraries/AppDelegate/RCTAppDelegate.h +7 -5
- package/Libraries/AppDelegate/RCTAppDelegate.mm +2 -29
- package/Libraries/AppDelegate/RCTRootViewFactory.mm +2 -1
- package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +2 -3
- package/Libraries/BatchedBridge/NativeModules.js +2 -0
- package/Libraries/Blob/FileReader.js +1 -1
- package/Libraries/Blob/URL.js +2 -62
- package/Libraries/Blob/URLSearchParams.js +71 -0
- package/Libraries/Blob/URLSearchParams.js.flow +23 -0
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +1 -1
- package/Libraries/Components/Pressable/Pressable.js +5 -6
- package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +1 -1
- package/Libraries/Components/ScrollView/ScrollView.d.ts +1 -1
- package/Libraries/Components/ScrollView/ScrollView.js +132 -171
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +1 -1
- package/Libraries/Components/StatusBar/StatusBar.js +3 -1
- package/Libraries/Components/TV/TVEventHandler.js +11 -6
- package/Libraries/Components/TV/TVFocusEventHandler.js +2 -1
- package/Libraries/Components/TV/TVFocusGuideView.js +16 -15
- package/Libraries/Components/TV/TVTextScrollView.js +11 -10
- package/Libraries/Components/TV/TVViewPropTypes.js +1 -1
- package/Libraries/Components/TV/tagForComponentOrHandle.js +13 -13
- package/Libraries/Components/TV/useTVEventHandler.js +7 -3
- package/Libraries/Components/TabBarIOS/RCTTabBarNativeComponent.js +3 -2
- package/Libraries/Components/TabBarIOS/TabBarIOS.ios.js +6 -55
- package/Libraries/Components/TabBarIOS/{TabBarIOS.android.js → TabBarIOS.js} +8 -5
- package/Libraries/Components/TabBarIOS/TabBarIOSProps.js +52 -0
- package/Libraries/Components/TabBarIOS/{TabBarItemIOS.android.js → TabBarItemIOS.js} +3 -1
- package/Libraries/Components/TextInput/TextInput.d.ts +32 -2
- package/Libraries/Components/TextInput/TextInput.js +230 -94
- package/Libraries/Components/Touchable/TVTouchable.js +6 -5
- package/Libraries/Components/Touchable/Touchable.js +2 -3
- package/Libraries/Components/Touchable/TouchableBounce.js +2 -5
- package/Libraries/Components/Touchable/TouchableHighlight.js +3 -4
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +3 -4
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +22 -0
- package/Libraries/Components/View/ReactNativeViewAttributes.js +2 -0
- package/Libraries/Components/View/ViewAccessibility.d.ts +15 -0
- package/Libraries/Components/View/ViewNativeComponent.js +5 -1
- package/Libraries/Components/View/ViewPropTypes.js +14 -0
- package/Libraries/Core/ExceptionsManager.js +2 -0
- package/Libraries/Core/InitializeCore.js +3 -1
- package/Libraries/Core/ReactFiberErrorDialog.js +3 -0
- package/Libraries/Core/ReactNativeVersion.js +2 -2
- package/Libraries/Core/setUpErrorHandling.js +7 -1
- package/Libraries/Core/setUpGlobals.js +1 -0
- package/Libraries/Core/setUpReactRefresh.js +0 -4
- package/Libraries/Debugging/DebuggingOverlayRegistry.js +1 -1
- package/Libraries/Debugging/useSubscribeToDebuggingOverlayRegistry.js +3 -1
- package/Libraries/Image/AssetSourceResolver.js +28 -1
- package/Libraries/Image/Image.android.js +9 -14
- package/Libraries/Image/Image.ios.js +11 -22
- package/Libraries/Image/ImageBackground.js +1 -8
- package/Libraries/Image/ImageUtils.js +9 -9
- package/Libraries/Image/ImageViewNativeComponent.js +1 -0
- package/Libraries/Image/RCTImageLoader.mm +19 -10
- package/Libraries/Image/RCTImageView.mm +2 -2
- package/Libraries/Image/RCTResizeMode.h +28 -0
- package/Libraries/Image/React-RCTImage.podspec +1 -1
- package/Libraries/Inspector/Inspector.js +3 -2
- package/Libraries/Inspector/InspectorPanel.js +16 -10
- package/Libraries/Inspector/NetworkOverlay.js +1 -1
- package/Libraries/Interaction/TaskQueue.js +1 -0
- package/Libraries/LinkingIOS/React-RCTLinking.podspec +1 -0
- package/Libraries/Lists/FlatList.js +1 -1
- package/Libraries/Lists/SectionList.js +2 -2
- package/Libraries/Lists/SectionListModern.js +3 -3
- package/Libraries/LogBox/Data/LogBoxData.js +24 -3
- package/Libraries/LogBox/LogBoxNotificationContainer.js +3 -2
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +9 -8
- package/Libraries/Modal/Modal.js +0 -1
- package/Libraries/NativeAnimation/RCTNativeAnimatedModule.mm +3 -1
- package/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h +2 -0
- package/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.mm +27 -0
- package/Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.mm +17 -1
- package/Libraries/NativeAnimation/React-RCTAnimation.podspec +1 -0
- package/Libraries/NativeComponent/BaseViewConfig.android.js +9 -2
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +8 -2
- package/Libraries/NativeComponent/NativeComponentRegistry.js +22 -22
- package/Libraries/NativeComponent/StaticViewConfigValidator.js +0 -21
- package/Libraries/NativeComponent/TVViewConfig.js +4 -1
- package/Libraries/Network/RCTNetworkTask.h +1 -1
- package/Libraries/Network/RCTNetworkTask.mm +13 -9
- package/Libraries/Network/RCTNetworking.mm +6 -0
- package/Libraries/Network/XMLHttpRequest.js +4 -2
- package/Libraries/NewAppScreen/components/DebugInstructions.js +7 -7
- package/Libraries/NewAppScreen/components/HermesBadge.js +3 -6
- package/Libraries/Pressability/Pressability.js +6 -3
- package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +1 -1
- package/Libraries/ReactNative/AppContainer-dev.js +5 -8
- package/Libraries/ReactNative/AppContainer-prod.js +1 -5
- package/Libraries/ReactNative/AppContainer.js +0 -1
- package/Libraries/ReactNative/AppRegistry.js +0 -6
- package/Libraries/ReactNative/BridgelessUIManager.js +1 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +1 -1
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +5 -5
- package/Libraries/ReactNative/RendererImplementation.js +28 -6
- package/Libraries/ReactNative/getNativeComponentAttributes.js +8 -0
- package/Libraries/ReactNative/renderApplication.js +0 -2
- package/Libraries/Renderer/shims/ReactNativeTypes.js +12 -4
- package/Libraries/StyleSheet/StyleSheet.js +1 -1
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +74 -15
- package/Libraries/StyleSheet/StyleSheetTypes.js +60 -5
- package/Libraries/StyleSheet/processBackgroundImage.js +384 -0
- package/Libraries/StyleSheet/processBoxShadow.js +211 -0
- package/Libraries/StyleSheet/processFilter.js +231 -42
- package/Libraries/Text/BaseText/RCTBaseTextViewManager.mm +1 -0
- package/Libraries/Text/RCTTextAttributes.h +1 -0
- package/Libraries/Text/RCTTextAttributes.mm +8 -0
- package/Libraries/Text/Text/RCTTextShadowView.mm +46 -0
- package/Libraries/Text/Text.js +394 -196
- package/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.mm +3 -1
- package/Libraries/Text/TextInput/RCTBaseTextInputView.mm +20 -9
- package/Libraries/Text/TextNativeComponent.js +2 -1
- package/Libraries/TurboModule/TurboModuleRegistry.js +13 -50
- package/Libraries/Types/CodegenTypes.js +3 -1
- package/Libraries/Utilities/Appearance.js +108 -84
- package/Libraries/Utilities/BackHandler.ios.js +25 -23
- package/Libraries/Utilities/DevLoadingView.js +2 -4
- package/Libraries/Utilities/HMRClient.js +2 -1
- package/Libraries/Utilities/Platform.d.ts +1 -0
- package/Libraries/Utilities/Platform.flow.js +2 -0
- package/Libraries/Utilities/ReactNativeTestTools.js +1 -1
- package/Libraries/Utilities/createPerformanceLogger.js +0 -9
- package/Libraries/Utilities/stringifyViewConfig.js +22 -0
- package/Libraries/Utilities/useColorScheme.js +3 -3
- package/Libraries/Vibration/Vibration.js +1 -1
- package/Libraries/WebSocket/WebSocket.js +1 -1
- package/Libraries/promiseRejectionTrackingOptions.js +1 -1
- package/Libraries/vendor/emitter/EventEmitter.js +6 -5
- package/README-core.md +5 -5
- package/README.md +76 -41
- package/React/Base/RCTBridge.mm +20 -2
- package/React/Base/RCTBundleURLProvider.h +19 -0
- package/React/Base/RCTBundleURLProvider.mm +62 -8
- package/React/Base/RCTConvert.h +0 -3
- package/React/Base/RCTConvert.mm +0 -13
- package/React/Base/RCTKeyCommands.m +1 -2
- package/React/Base/RCTVersion.m +2 -2
- package/React/CoreModules/RCTAppearance.mm +5 -0
- package/React/CoreModules/RCTDevLoadingView.mm +5 -0
- package/React/CoreModules/RCTDevMenu.mm +1 -1
- package/React/CoreModules/RCTDeviceInfo.mm +13 -8
- package/React/CoreModules/RCTPerfMonitor.mm +7 -13
- package/React/CoreModules/RCTRedBox.mm +4 -0
- package/React/CoreModules/RCTStatusBarManager.mm +5 -1
- package/React/CoreModules/React-CoreModules.podspec +3 -1
- package/React/CxxBridge/NSDataBigString.mm +2 -25
- package/React/CxxBridge/RCTCxxBridge.mm +27 -5
- package/React/DevSupport/RCTInspectorDevServerHelper.mm +6 -0
- package/React/DevSupport/RCTInspectorNetworkHelper.h +29 -0
- package/React/DevSupport/RCTInspectorNetworkHelper.mm +115 -0
- package/React/DevSupport/RCTInspectorUtils.h +26 -0
- package/React/DevSupport/RCTInspectorUtils.mm +50 -0
- package/React/Fabric/Mounting/ComponentViews/Image/RCTImageComponentView.mm +4 -1
- package/React/Fabric/Mounting/ComponentViews/Modal/RCTFabricModalHostViewController.mm +2 -2
- package/React/Fabric/Mounting/ComponentViews/Modal/RCTModalHostViewComponentView.mm +23 -1
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.h +9 -0
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +137 -10
- package/React/Fabric/Mounting/ComponentViews/Text/RCTParagraphComponentView.mm +74 -35
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +61 -12
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.mm +8 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +356 -59
- package/React/Fabric/Mounting/RCTMountingManager.mm +0 -5
- package/React/Fabric/RCTScheduler.mm +2 -1
- package/React/Fabric/RCTSurfacePresenter.mm +0 -31
- package/React/Fabric/Utils/RCTBoxShadow.h +21 -0
- package/React/Fabric/Utils/RCTBoxShadow.mm +301 -0
- package/React/Modules/RCTRedBoxExtraDataViewController.m +105 -85
- package/React/Views/RCTBorderDrawing.h +9 -5
- package/React/Views/RCTBorderDrawing.m +23 -14
- package/React/Views/RCTModalHostView.m +2 -1
- package/React/Views/RCTModalHostViewController.m +1 -1
- package/React/Views/RCTModalHostViewManager.m +23 -3
- package/React/Views/RCTView.m +9 -5
- package/React/Views/RCTViewManager.h +3 -0
- package/React/Views/RCTViewManager.m +63 -8
- package/React/Views/RefreshControl/RCTRefreshControl.m +18 -0
- package/React-Core.podspec +4 -1
- package/ReactAndroid/api/ReactAndroid.api +593 -273
- package/ReactAndroid/build.gradle.kts +105 -282
- package/ReactAndroid/cmake-utils/ReactNative-application.cmake +10 -55
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/hermes-engine/build.gradle.kts +3 -2
- package/ReactAndroid/publish.gradle +1 -1
- package/ReactAndroid/src/main/AndroidManifest.xml +1 -1
- package/ReactAndroid/src/main/java/com/facebook/annotationprocessors/common/ProcessorBase.kt +23 -0
- package/ReactAndroid/src/main/java/com/facebook/react/CompositeReactPackage.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/CoreModulesPackage.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/DebugCorePackage.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.java +56 -12
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivity.java +6 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivityDelegate.java +7 -1
- package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +10 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactHost.kt +26 -3
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +117 -41
- package/ReactAndroid/src/main/java/com/facebook/react/ReactNativeHost.java +13 -6
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageTurboModuleManagerDelegate.java +2 -17
- package/ReactAndroid/src/main/java/com/facebook/react/ReactRootView.java +6 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AdditionAnimatedNode.kt +52 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNode.kt +74 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.kt +13 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/{AnimatedNodeWithUpdateableConfig.java → AnimatedNodeWithUpdateableConfig.kt} +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/animated/{AnimationDriver.java → AnimationDriver.kt} +13 -14
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ColorAnimatedNode.kt +111 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/DecayAnimation.kt +73 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/DiffClampAnimatedNode.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/DivisionAnimatedNode.kt +55 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/EventAnimationDriver.kt +100 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/FrameBasedAnimationDriver.kt +104 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/InterpolationAnimatedNode.kt +278 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ModulusAnimatedNode.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/animated/MultiplicationAnimatedNode.kt +50 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java +40 -1
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java +81 -52
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ObjectAnimatedNode.kt +120 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/PropsAnimatedNode.kt +120 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/SpringAnimation.kt +187 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/StyleAnimatedNode.kt +61 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/SubtractionAnimatedNode.kt +52 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/TrackingAnimatedNode.kt +36 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/TransformAnimatedNode.kt +87 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ValueAnimatedNode.kt +50 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ActivityEventListener.java +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BaseJavaModule.java +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ColorPropConverter.java +5 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromMap.java +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromObject.java +4 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicNative.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSBundleLoaderDelegate.kt +52 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{JavaJSExecutor.java → JavaJSExecutor.kt} +13 -18
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{JavaScriptExecutorFactory.java → JavaScriptExecutorFactory.kt} +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaScriptModule.kt +24 -0
- package/ReactAndroid/src/main/java/com/facebook/react/{animated/AnimatedNodeValueListener.java → bridge/PerformanceCounter.kt} +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{Promise.java → Promise.kt} +19 -29
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactContext.java +13 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactInstanceManagerInspectorTarget.java +10 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactMarkerConstants.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactNoCrashSoftException.java +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UIManager.kt +178 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/interop/InteropModuleRegistry.java +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThread.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadImpl.java +28 -47
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationImpl.java +5 -19
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationSpec.java +4 -6
- package/ReactAndroid/src/main/java/com/facebook/react/common/ClearableSynchronizedPool.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/DebugServerException.kt +107 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/JavascriptException.kt +2 -10
- package/ReactAndroid/src/main/java/com/facebook/react/common/MapBuilder.java +6 -1
- package/ReactAndroid/src/main/java/com/facebook/react/common/ShakeDetector.kt +124 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/assets/ReactFontManager.kt +197 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/build/{ReactBuildConfig.java → ReactBuildConfig.kt} +9 -6
- package/ReactAndroid/src/main/java/com/facebook/react/common/futures/SimpleSettableFuture.kt +111 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/network/OkHttpCallUtil.kt +38 -0
- package/ReactAndroid/src/main/java/com/facebook/react/config/ReactFeatureFlags.java +16 -62
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultComponentsRegistry.kt +5 -20
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultNewArchitectureEntryPoint.kt +7 -55
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactHost.kt +16 -16
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactHostDelegate.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactNativeHost.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgeDevSupportManager.java +0 -73
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.java +30 -13
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevLoadingViewImplementation.kt +120 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevInternalSettings.kt +3 -7
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java +10 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerBase.java +12 -5
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/LogBoxDialog.kt +29 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/LogBoxDialogSurfaceDelegate.kt +2 -3
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/LogBoxModule.kt +10 -12
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PausedInDebuggerOverlayDialogManager.java +19 -5
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PerftestDevSupportManager.kt +38 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxDialogSurfaceDelegate.java +31 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReleaseDevSupportManager.kt +168 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkHelper.java +94 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener.java +34 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/DevSupportManager.kt +4 -1
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/Binding.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/BindingImpl.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricComponents.kt +45 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +75 -37
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventBeatManager.kt +43 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/FabricEventEmitter.kt +64 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/LayoutMetricsConversions.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountItemDispatcher.java +23 -25
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java +110 -360
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/IntBufferBatchMountItem.java +16 -22
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/MountItemFactory.kt +1 -4
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/PreAllocateViewMountItem.java +1 -5
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEvent.kt +40 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEventMountItem.kt +40 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/SystraceSection.kt +23 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +157 -13
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +266 -26
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +54 -6
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +55 -7
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +294 -30
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +54 -6
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeNewArchitectureFeatureFlagsDefaults.kt +43 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleInteropUtils.java +2 -5
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleManager.java +19 -57
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleManagerDelegate.java +2 -15
- package/ReactAndroid/src/main/java/com/facebook/react/modules/appearance/AppearanceModule.kt +14 -14
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/FileReaderModule.java +6 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ChoreographerCompat.kt +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/{DefaultHardwareBackBtnHandler.java → DefaultHardwareBackBtnHandler.kt} +4 -6
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/DeviceEventManagerModule.kt +65 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ExceptionsManagerModule.kt +79 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/HeadlessJsTaskSupportModule.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JSTimers.kt +21 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/{JavaScriptTimerExecutor.java → JavaScriptTimerExecutor.kt} +7 -8
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.kt +363 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/PermissionAwareActivity.kt +30 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/{PermissionListener.java → PermissionListener.kt} +9 -9
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/RCTNativeAppEventEmitter.kt +17 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ReactChoreographer.kt +144 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/TimingModule.kt +83 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DidJSUpdateUiDuringFrameDetector.kt +36 -48
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/interfaces/DeveloperSettings.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/dialog/AlertFragment.java +58 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/FrescoModule.kt +163 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactNetworkImageRequest.kt +31 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactOkHttpNetworkFetcher.kt +56 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/SystraceRequestListener.kt +152 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/i18nmanager/I18nManagerModule.kt +2 -6
- package/ReactAndroid/src/main/java/com/facebook/react/modules/i18nmanager/I18nUtil.kt +4 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpCompat.java +35 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/RequestBodyUtil.java +1 -7
- package/ReactAndroid/src/main/java/com/facebook/react/modules/permissions/PermissionsModule.kt +189 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/statusbar/StatusBarModule.kt +4 -28
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoHelpers.java +48 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/PackagerConnectionSettings.kt +55 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessDevSupportManager.java +9 -14
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessReactContext.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/CoreReactPackage.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostDelegate.kt +0 -18
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.java +243 -210
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.java +47 -45
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactSurfaceView.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/hermes/HermesInstance.kt +11 -4
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Executors.kt +44 -0
- package/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.java +5 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BackgroundStyleApplicator.kt +263 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +64 -32
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerDelegate.kt +109 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerInterface.kt +85 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BlendModeHelper.kt +44 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/FilterHelper.kt +89 -17
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/IViewGroupManager.kt +35 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{IViewManagerWithChildren.java → IViewManagerWithChildren.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/JSTouchDispatcher.java +58 -11
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LayoutDirectionUtil.kt +29 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LayoutShadowNode.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LengthPercentage.kt +8 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeViewHierarchyManager.java +23 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeViewHierarchyOptimizer.java +4 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/PixelUtil.kt +21 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactShadowNodeImpl.java +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/TouchTargetHelper.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIImplementation.java +14 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModule.java +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModuleConstantsHelper.java +9 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIViewOperationQueue.java +33 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManager.java +20 -10
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerDelegate.kt +24 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewProps.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BoxShadowBorderRadius.kt +29 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CSSBackgroundDrawable.java +160 -87
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CompositeBackgroundDrawable.kt +85 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/InsetBoxShadowDrawable.kt +191 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutsetBoxShadowDrawable.kt +159 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/BlackHoleEventDispatcher.kt +57 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/ContentSizeChangeEvent.kt +37 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherImpl.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FabricEventDispatcher.java +55 -29
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/SimpleSpringInterpolator.kt +48 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BackgroundImageLayer.kt +28 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderInsets.kt +105 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderRadiusStyle.kt +27 -12
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderStyle.kt +26 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BoxShadow.kt +50 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/ComputedBorderRadius.kt +30 -6
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/CornerRadii.kt +19 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Gradient.kt +76 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/LogicalEdge.kt +79 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Overflow.kt +26 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager.kt +3 -13
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/ReactDrawerLayout.kt +125 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/ReactDrawerLayoutManager.kt +259 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/MultiPostprocessor.kt +61 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageDownloadListener.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageManager.kt +307 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageView.kt +725 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/ImageSource.kt +7 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/ResourceDrawableIdHelper.kt +35 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ModalHostHelper.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ModalHostShadowNode.kt +1 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostManager.kt +13 -30
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt +61 -90
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ProgressBarContainerView.kt +70 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ReactProgressBarViewManager.kt +165 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaView.kt +65 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaViewManager.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode.kt +12 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/OnScrollDispatchHelper.kt +50 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollView.java +80 -11
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollViewManager.java +64 -20
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java +79 -11
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewHelper.kt +22 -33
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.java +65 -19
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/VelocityHelper.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout.java +11 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitch.kt +110 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextManager.java +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextAnchorViewManager.java +73 -20
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +143 -77
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewManager.java +36 -32
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextAttributeProps.java +11 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextLayoutManager.java +79 -104
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactOpacitySpan.kt +33 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java +89 -9
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputManager.java +67 -38
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/CanvasUtil.kt +95 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewBackgroundDrawable.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewBackgroundManager.java +6 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.java +257 -96
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.java +86 -25
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/WindowUtil.kt +63 -0
- package/ReactAndroid/src/main/java/com/facebook/systrace/Systrace.kt +23 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNative.java +1 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNode.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNodeJNIBase.java +4 -0
- package/ReactAndroid/src/main/jni/CMakeLists.txt +182 -3
- package/ReactAndroid/src/main/jni/first-party/fbgloginit/CMakeLists.txt +1 -1
- package/ReactAndroid/src/main/jni/first-party/jni-lib-merge/CMakeLists.txt +24 -0
- package/ReactAndroid/src/main/jni/first-party/jni-lib-merge/SoMerging-utils.cmake +23 -0
- package/ReactAndroid/src/main/jni/first-party/jni-lib-merge/jni_lib_merge.c +157 -0
- package/ReactAndroid/src/main/jni/first-party/jni-lib-merge/jni_lib_merge.h +108 -0
- package/ReactAndroid/src/main/jni/first-party/yogajni/CMakeLists.txt +5 -1
- package/ReactAndroid/src/main/jni/first-party/yogajni/jni/YGJNIVanilla.cpp +12 -1
- package/ReactAndroid/src/main/jni/react/devsupport/CMakeLists.txt +5 -1
- package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnectionWebSocketDelegate.cpp +11 -2
- package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnectionWebSocketDelegate.h +1 -3
- package/ReactAndroid/src/main/jni/react/fabric/Binding.cpp +35 -19
- package/ReactAndroid/src/main/jni/react/fabric/Binding.h +3 -0
- package/ReactAndroid/src/main/jni/react/fabric/CMakeLists.txt +9 -1
- package/ReactAndroid/src/main/jni/react/fabric/CoreComponentsRegistry.cpp +6 -43
- package/ReactAndroid/src/main/jni/react/fabric/CoreComponentsRegistry.h +4 -27
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp +76 -40
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.h +25 -1
- package/ReactAndroid/src/main/jni/react/fabric/MountItem.cpp +0 -7
- package/ReactAndroid/src/main/jni/react/fabric/MountItem.h +1 -7
- package/ReactAndroid/src/main/jni/react/fabric/OnLoad.cpp +0 -2
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.cpp +49 -13
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.h +3 -2
- package/ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt +5 -1
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +369 -33
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +79 -7
- package/ReactAndroid/src/main/jni/react/hermes/instrumentation/CMakeLists.txt +7 -6
- package/ReactAndroid/src/main/jni/react/hermes/reactexecutor/CMakeLists.txt +5 -6
- package/ReactAndroid/src/main/jni/react/hermes/reactexecutor/OnLoad.cpp +0 -1
- package/ReactAndroid/src/main/jni/react/hermes/tooling/CMakeLists.txt +41 -0
- package/ReactAndroid/src/main/jni/react/jni/CMakeLists.txt +3 -1
- package/ReactAndroid/src/main/jni/react/jni/InspectorNetworkRequestListener.cpp +76 -0
- package/ReactAndroid/src/main/jni/react/jni/InspectorNetworkRequestListener.h +44 -0
- package/ReactAndroid/src/main/jni/react/jni/JDynamicNative.cpp +46 -0
- package/ReactAndroid/src/main/jni/react/jni/JDynamicNative.h +56 -0
- package/ReactAndroid/src/main/jni/react/jni/JReactMarker.cpp +1 -0
- package/ReactAndroid/src/main/jni/react/jni/JWeakRefUtils.h +23 -0
- package/ReactAndroid/src/main/jni/react/jni/MethodInvoker.cpp +3 -1
- package/ReactAndroid/src/main/jni/react/jni/OnLoad.cpp +4 -0
- package/ReactAndroid/src/main/jni/react/jni/ReactInstanceManagerInspectorTarget.cpp +71 -18
- package/ReactAndroid/src/main/jni/react/jni/ReactInstanceManagerInspectorTarget.h +17 -6
- package/ReactAndroid/src/main/jni/react/jscexecutor/CMakeLists.txt +6 -7
- package/ReactAndroid/src/main/jni/react/jsctooling/CMakeLists.txt +34 -0
- package/ReactAndroid/src/main/jni/react/mapbuffer/CMakeLists.txt +5 -1
- package/ReactAndroid/src/main/jni/react/newarchdefaults/CMakeLists.txt +10 -2
- package/ReactAndroid/src/main/jni/react/newarchdefaults/DefaultComponentsRegistry.cpp +16 -33
- package/ReactAndroid/src/main/jni/react/newarchdefaults/DefaultComponentsRegistry.h +2 -11
- package/ReactAndroid/src/main/jni/react/reactnativeblob/CMakeLists.txt +4 -1
- package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/CMakeLists.txt +8 -4
- package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/JHermesInstance.cpp +4 -3
- package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/JHermesInstance.h +8 -3
- package/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt +4 -1
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactHostInspectorTarget.cpp +64 -22
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactHostInspectorTarget.h +35 -6
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactInstance.cpp +1 -0
- package/ReactAndroid/src/main/jni/react/runtime/jsc/jni/CMakeLists.txt +7 -5
- package/ReactAndroid/src/main/jni/react/turbomodule/CMakeLists.txt +7 -2
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/TurboModuleManager.cpp +156 -166
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/TurboModuleManager.h +23 -17
- package/ReactAndroid/src/main/jni/react/uimanager/CMakeLists.txt +17 -5
- package/ReactAndroid/src/main/jni/third-party/folly/CMakeLists.txt +1 -1
- package/ReactAndroid/src/main/jni/third-party/glog/CMakeLists.txt +1 -1
- package/ReactAndroid/src/main/res/devsupport/drawable/paused_in_debugger_background.xml +1 -1
- package/ReactAndroid/src/main/res/devsupport/drawable/paused_in_debugger_dialog_background.xml +7 -0
- package/ReactAndroid/src/main/res/devsupport/drawable-hdpi/ic_resume.png +0 -0
- package/ReactAndroid/src/main/res/devsupport/drawable-mdpi/ic_resume.png +0 -0
- package/ReactAndroid/src/main/res/devsupport/drawable-xhdpi/ic_resume.png +0 -0
- package/ReactAndroid/src/main/res/devsupport/drawable-xxhdpi/ic_resume.png +0 -0
- package/ReactAndroid/src/main/res/devsupport/drawable-xxxhdpi/ic_resume.png +0 -0
- package/ReactAndroid/src/main/res/devsupport/layout/paused_in_debugger_view.xml +19 -18
- package/ReactAndroid/src/main/res/devsupport/values/strings.xml +2 -2
- package/ReactAndroid/src/main/res/devsupport/values/styles.xml +4 -0
- package/ReactAndroid/src/main/res/devsupport/xml/rn_dev_preferences.xml +0 -6
- package/ReactAndroid/src/main/res/views/alert/layout/alert_title_layout.xml +22 -0
- package/ReactAndroid/src/main/res/views/uimanager/values/ids.xml +3 -0
- package/ReactCommon/cxxreact/CMakeLists.txt +2 -1
- package/ReactCommon/cxxreact/CxxModule.h +0 -2
- package/ReactCommon/cxxreact/JSExecutor.cpp +2 -7
- package/ReactCommon/cxxreact/React-cxxreact.podspec +1 -0
- package/ReactCommon/cxxreact/ReactMarker.cpp +10 -2
- package/ReactCommon/cxxreact/ReactMarker.h +5 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +2 -2
- package/ReactCommon/cxxreact/SystraceSection.h +15 -10
- package/ReactCommon/cxxreact/tests/jsarg_helpers.cpp +1 -1
- package/ReactCommon/hermes/executor/CMakeLists.txt +3 -3
- package/ReactCommon/hermes/inspector-modern/CMakeLists.txt +2 -5
- package/ReactCommon/jsc/CMakeLists.txt +5 -3
- package/ReactCommon/jserrorhandler/CMakeLists.txt +1 -1
- package/ReactCommon/jserrorhandler/JsErrorHandler.cpp +40 -1
- package/ReactCommon/jserrorhandler/JsErrorHandler.h +12 -1
- package/ReactCommon/jserrorhandler/React-jserrorhandler.podspec +6 -0
- package/ReactCommon/jsi/jsi/decorator.h +57 -4
- package/ReactCommon/jsi/jsi/instrumentation.h +15 -3
- package/ReactCommon/jsi/jsi/jsi.cpp +6 -2
- package/ReactCommon/jsiexecutor/CMakeLists.txt +1 -1
- package/ReactCommon/jsiexecutor/jsireact/JSIExecutor.cpp +10 -4
- package/ReactCommon/jsiexecutor/jsireact/JSINativeModules.cpp +5 -1
- package/ReactCommon/jsinspector-modern/Base64.h +98 -0
- package/ReactCommon/jsinspector-modern/CMakeLists.txt +6 -1
- package/ReactCommon/jsinspector-modern/CdpJson.h +1 -1
- package/ReactCommon/jsinspector-modern/ExecutionContext.cpp +3 -4
- package/ReactCommon/jsinspector-modern/FallbackRuntimeAgentDelegate.h +5 -5
- package/ReactCommon/jsinspector-modern/HostAgent.cpp +45 -22
- package/ReactCommon/jsinspector-modern/HostAgent.h +7 -1
- package/ReactCommon/jsinspector-modern/HostTarget.cpp +36 -7
- package/ReactCommon/jsinspector-modern/HostTarget.h +25 -5
- package/ReactCommon/jsinspector-modern/InspectorFlags.cpp +14 -3
- package/ReactCommon/jsinspector-modern/InspectorFlags.h +1 -1
- package/ReactCommon/jsinspector-modern/InspectorInterfaces.cpp +5 -1
- package/ReactCommon/jsinspector-modern/InspectorInterfaces.h +18 -1
- package/ReactCommon/jsinspector-modern/InspectorPackagerConnection.h +4 -5
- package/ReactCommon/jsinspector-modern/NetworkIOAgent.cpp +440 -0
- package/ReactCommon/jsinspector-modern/NetworkIOAgent.h +266 -0
- package/ReactCommon/jsinspector-modern/React-jsinspector.podspec +1 -0
- package/ReactCommon/jsinspector-modern/RuntimeAgent.cpp +22 -0
- package/ReactCommon/jsinspector-modern/RuntimeTarget.cpp +46 -0
- package/ReactCommon/jsinspector-modern/RuntimeTarget.h +31 -0
- package/ReactCommon/jsinspector-modern/RuntimeTargetConsole.cpp +2 -2
- package/ReactCommon/jsinspector-modern/RuntimeTargetDebuggerSessionObserver.cpp +112 -0
- package/ReactCommon/jsinspector-modern/Utf8.h +56 -0
- package/ReactCommon/jsinspector-modern/WebSocketInterfaces.h +6 -0
- package/ReactCommon/jsinspector-modern/tests/ConsoleApiTest.cpp +54 -0
- package/ReactCommon/jsinspector-modern/tests/HostTargetTest.cpp +801 -0
- package/ReactCommon/jsinspector-modern/tests/InspectorMocks.h +6 -0
- package/ReactCommon/jsinspector-modern/tests/InspectorPackagerConnectionTest.cpp +29 -12
- package/ReactCommon/jsinspector-modern/tests/JsiIntegrationTest.cpp +38 -0
- package/ReactCommon/jsinspector-modern/tests/ReactInstanceIntegrationTest.cpp +2 -1
- package/ReactCommon/jsinspector-modern/tests/RuntimeTargetDebuggerSessionObserverTest.cpp +214 -0
- package/ReactCommon/jsinspector-modern/tests/Utf8.cpp +58 -0
- package/ReactCommon/logger/CMakeLists.txt +1 -1
- package/ReactCommon/react/bridging/Bool.h +1 -1
- package/ReactCommon/react/bridging/CMakeLists.txt +1 -1
- package/ReactCommon/react/config/CMakeLists.txt +1 -1
- package/ReactCommon/react/config/ReactNativeConfig.cpp +0 -3
- package/ReactCommon/react/debug/CMakeLists.txt +1 -1
- package/ReactCommon/react/featureflags/CMakeLists.txt +1 -1
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +107 -11
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +132 -12
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +479 -47
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +58 -10
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +106 -10
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +29 -5
- package/ReactCommon/react/nativemodule/core/CMakeLists.txt +2 -1
- package/ReactCommon/react/nativemodule/core/ReactCommon/CxxTurboModuleUtils.h +6 -38
- package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.cpp +68 -66
- package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.h +2 -2
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.h +21 -2
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +13 -0
- package/ReactCommon/react/nativemodule/defaults/CMakeLists.txt +1 -1
- package/ReactCommon/react/nativemodule/dom/CMakeLists.txt +5 -1
- package/ReactCommon/react/nativemodule/featureflags/CMakeLists.txt +1 -1
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +132 -12
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +54 -6
- package/ReactCommon/react/nativemodule/idlecallbacks/CMakeLists.txt +1 -1
- package/ReactCommon/react/nativemodule/microtasks/CMakeLists.txt +1 -1
- package/ReactCommon/react/nativemodule/mutationobserver/NativeMutationObserver.cpp +0 -11
- package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +2 -0
- package/ReactCommon/react/nativemodule/samples/platform/android/CMakeLists.txt +2 -2
- package/ReactCommon/react/nativemodule/samples/platform/android/NativeSampleTurboModuleSpec.java +16 -0
- package/ReactCommon/react/nativemodule/samples/platform/android/ReactCommon/SampleTurboModuleSpec.cpp +9 -0
- package/ReactCommon/react/nativemodule/samples/platform/android/SampleTurboModule.java +20 -1
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTNativeSampleTurboModuleSpec.h +11 -0
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTNativeSampleTurboModuleSpec.mm +34 -0
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboModule.h +1 -1
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboModule.mm +4 -0
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.cpp +28 -16
- package/ReactCommon/react/nativemodule/webperformance/NativePerformanceObserver.cpp +8 -1
- package/ReactCommon/react/performance/timeline/CMakeLists.txt +2 -1
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.cpp +12 -2
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.h +8 -4
- package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -0
- package/ReactCommon/react/renderer/animations/LayoutAnimationKeyFrameManager.cpp +0 -18
- package/ReactCommon/react/renderer/attributedstring/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/attributedstring/TextAttributes.cpp +4 -0
- package/ReactCommon/react/renderer/attributedstring/TextAttributes.h +2 -0
- package/ReactCommon/react/renderer/attributedstring/conversions.h +55 -2
- package/ReactCommon/react/renderer/attributedstring/primitives.h +9 -0
- package/ReactCommon/react/renderer/componentregistry/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/componentregistry/native/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/image/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/image/conversions.h +9 -0
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/RCTLegacyViewManagerInteropCoordinator.mm +2 -3
- package/ReactCommon/react/renderer/components/modal/ModalHostViewState.h +10 -1
- package/{ReactAndroid/src/main/java/com/facebook/react/bridge/PerformanceCounter.java → ReactCommon/react/renderer/components/modal/ModalHostViewUtils.h} +5 -6
- package/ReactCommon/react/renderer/components/modal/ModalHostViewUtils.mm +20 -0
- package/ReactCommon/react/renderer/components/progressbar/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/root/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/safeareaview/CMakeLists.txt +46 -0
- package/ReactCommon/react/renderer/components/safeareaview/SafeAreaViewState.cpp +10 -1
- package/ReactCommon/react/renderer/components/safeareaview/SafeAreaViewState.h +20 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.cpp +99 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.h +44 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewEventEmitter.cpp +16 -72
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewEventEmitter.h +12 -18
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewProps.cpp +9 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewProps.h +1 -0
- package/ReactCommon/react/renderer/components/text/BaseTextProps.cpp +8 -0
- package/ReactCommon/react/renderer/components/text/CMakeLists.txt +1 -2
- package/ReactCommon/react/renderer/components/text/ParagraphShadowNode.cpp +35 -17
- package/ReactCommon/react/renderer/components/text/ParagraphShadowNode.h +3 -0
- package/ReactCommon/react/renderer/components/textinput/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.cpp +27 -0
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.h +3 -0
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputEventEmitter.cpp +1 -1
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputShadowNode.cpp +29 -0
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputShadowNode.h +3 -0
- package/ReactCommon/react/renderer/components/view/AccessibilityProps.cpp +20 -0
- package/ReactCommon/react/renderer/components/view/AccessibilityProps.h +2 -0
- package/ReactCommon/react/renderer/components/view/BaseViewProps.cpp +117 -77
- package/ReactCommon/react/renderer/components/view/BaseViewProps.h +18 -1
- package/ReactCommon/react/renderer/components/view/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/view/ViewShadowNode.cpp +4 -1
- package/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.cpp +21 -0
- package/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.h +4 -0
- package/ReactCommon/react/renderer/components/view/conversions.h +307 -23
- package/ReactCommon/react/renderer/components/view/primitives.h +8 -1
- package/ReactCommon/react/renderer/consistency/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/core/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/core/ConcreteComponentDescriptor.h +21 -12
- package/ReactCommon/react/renderer/core/EventDispatcher.cpp +5 -3
- package/ReactCommon/react/renderer/core/EventDispatcher.h +1 -1
- package/ReactCommon/react/renderer/core/EventEmitter.cpp +1 -1
- package/ReactCommon/react/renderer/core/EventEmitter.h +2 -0
- package/ReactCommon/react/renderer/core/EventListener.cpp +6 -3
- package/ReactCommon/react/renderer/core/EventListener.h +1 -1
- package/ReactCommon/react/renderer/core/EventLogger.h +4 -1
- package/ReactCommon/react/renderer/core/EventPayloadType.h +1 -1
- package/ReactCommon/react/renderer/core/EventQueueProcessor.cpp +35 -11
- package/ReactCommon/react/renderer/core/EventTarget.cpp +8 -1
- package/ReactCommon/react/renderer/core/EventTarget.h +6 -1
- package/ReactCommon/react/renderer/core/LayoutableShadowNode.cpp +26 -6
- package/ReactCommon/react/renderer/core/LayoutableShadowNode.h +2 -3
- package/ReactCommon/react/renderer/core/Props.h +5 -0
- package/ReactCommon/react/renderer/core/PropsMacros.h +15 -11
- package/ReactCommon/react/renderer/core/RawProps.cpp +1 -6
- package/ReactCommon/react/renderer/core/RawProps.h +0 -8
- package/ReactCommon/react/renderer/core/RawPropsKeyMap.cpp +1 -1
- package/ReactCommon/react/renderer/core/RawPropsParser.cpp +19 -73
- package/ReactCommon/react/renderer/core/RawPropsParser.h +0 -9
- package/ReactCommon/react/renderer/core/RawValue.h +6 -7
- package/ReactCommon/react/renderer/core/ShadowNode.cpp +5 -4
- package/ReactCommon/react/renderer/core/ShadowNode.h +5 -5
- package/ReactCommon/react/renderer/core/ShadowNodeTraits.h +3 -0
- package/ReactCommon/react/renderer/core/tests/EventQueueProcessorTest.cpp +3 -1
- package/ReactCommon/react/renderer/core/tests/EventTargetTests.cpp +3 -1
- package/ReactCommon/react/renderer/core/tests/FindNodeAtPointTest.cpp +49 -0
- package/ReactCommon/react/renderer/core/tests/ShadowNodeTest.cpp +1 -1
- package/ReactCommon/react/renderer/debug/CMakeLists.txt +2 -2
- package/ReactCommon/react/renderer/dom/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/element/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/graphics/BackgroundImage.h +46 -0
- package/ReactCommon/react/renderer/graphics/BlendMode.h +72 -0
- package/ReactCommon/react/renderer/graphics/BoxShadow.h +25 -0
- package/ReactCommon/react/renderer/graphics/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/graphics/Color.cpp +27 -0
- package/ReactCommon/react/renderer/graphics/Color.h +6 -0
- package/ReactCommon/react/renderer/graphics/Filter.h +19 -5
- package/ReactCommon/react/renderer/graphics/Isolation.h +31 -0
- package/ReactCommon/react/renderer/graphics/React-graphics.podspec +1 -0
- package/ReactCommon/react/renderer/graphics/Transform.cpp +3 -2
- package/ReactCommon/react/renderer/graphics/Transform.h +11 -0
- package/ReactCommon/react/renderer/graphics/ValueUnit.h +3 -2
- package/ReactCommon/react/renderer/graphics/platform/android/react/renderer/graphics/HostPlatformColor.h +21 -0
- package/ReactCommon/react/renderer/graphics/platform/android/react/renderer/graphics/PlatformColorParser.h +48 -20
- package/ReactCommon/react/renderer/graphics/platform/cxx/react/renderer/graphics/HostPlatformColor.h +31 -8
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.h +31 -0
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.mm +9 -0
- package/ReactCommon/react/renderer/graphics/tests/ColorTest.cpp +38 -0
- package/ReactCommon/react/renderer/imagemanager/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/imagemanager/platform/ios/react/renderer/imagemanager/RCTImagePrimitivesConversions.h +7 -0
- package/ReactCommon/react/renderer/imagemanager/primitives.h +1 -0
- package/ReactCommon/react/renderer/mapbuffer/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/mounting/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/mounting/Differentiator.cpp +15 -52
- package/ReactCommon/react/renderer/mounting/MountingCoordinator.cpp +10 -3
- package/ReactCommon/react/renderer/mounting/MountingCoordinator.h +22 -1
- package/ReactCommon/react/renderer/mounting/ShadowViewMutation.cpp +4 -32
- package/ReactCommon/react/renderer/mounting/ShadowViewMutation.h +2 -28
- package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.cpp +0 -5
- package/ReactCommon/react/renderer/observers/events/CMakeLists.txt +4 -1
- package/ReactCommon/react/renderer/observers/events/EventPerformanceLogger.cpp +75 -18
- package/ReactCommon/react/renderer/observers/events/EventPerformanceLogger.h +19 -2
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserver.cpp +14 -10
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserver.h +6 -3
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserverManager.cpp +24 -8
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserverManager.h +6 -3
- package/ReactCommon/react/renderer/runtimescheduler/CMakeLists.txt +2 -0
- package/ReactCommon/react/renderer/runtimescheduler/React-runtimescheduler.podspec +2 -0
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler.cpp +30 -7
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler.h +25 -3
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeSchedulerEventTimingDelegate.h +25 -0
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Legacy.cpp +19 -6
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Legacy.h +12 -2
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.cpp +116 -53
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.h +36 -12
- package/ReactCommon/react/renderer/runtimescheduler/tests/RuntimeSchedulerTest.cpp +149 -2
- package/ReactCommon/react/renderer/scheduler/Scheduler.cpp +29 -22
- package/ReactCommon/react/renderer/scheduler/Scheduler.h +1 -7
- package/ReactCommon/react/renderer/scheduler/SchedulerToolbox.h +0 -10
- package/ReactCommon/react/renderer/telemetry/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/textlayoutmanager/CMakeLists.txt +1 -2
- package/ReactCommon/react/renderer/textlayoutmanager/TextMeasureCache.h +44 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer/textlayoutmanager/TextLayoutManager.cpp +70 -40
- package/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer/textlayoutmanager/TextLayoutManager.h +17 -7
- package/ReactCommon/react/renderer/textlayoutmanager/platform/cxx/TextLayoutManager.cpp +14 -7
- package/ReactCommon/react/renderer/textlayoutmanager/platform/cxx/TextLayoutManager.h +16 -7
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTAttributedTextUtils.h +2 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTAttributedTextUtils.mm +6 -2
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTFontUtils.mm +3 -2
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +83 -13
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextPrimitivesConversions.h +18 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/TextLayoutManager.h +17 -7
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/TextLayoutManager.mm +34 -10
- package/ReactCommon/react/renderer/uimanager/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/uimanager/UIManager.cpp +9 -11
- package/ReactCommon/react/renderer/uimanager/UIManager.h +0 -6
- package/ReactCommon/react/renderer/uimanager/UIManagerBinding.cpp +16 -72
- package/ReactCommon/react/renderer/uimanager/UIManagerMountHook.h +6 -0
- package/ReactCommon/react/renderer/uimanager/consistency/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/uimanager/primitives.h +8 -3
- package/ReactCommon/react/renderer/uimanager/tests/PointerEventsProcessorTest.cpp +1 -4
- package/ReactCommon/react/runtime/BufferedRuntimeExecutor.h +1 -1
- package/ReactCommon/react/runtime/CMakeLists.txt +2 -6
- package/ReactCommon/react/runtime/JSRuntimeFactory.h +8 -0
- package/ReactCommon/react/runtime/React-RuntimeCore.podspec +1 -0
- package/ReactCommon/react/runtime/ReactInstance.cpp +117 -50
- package/ReactCommon/react/runtime/TimerManager.cpp +156 -75
- package/ReactCommon/react/runtime/TimerManager.h +16 -4
- package/ReactCommon/react/runtime/hermes/CMakeLists.txt +3 -5
- package/ReactCommon/react/runtime/hermes/HermesInstance.cpp +24 -15
- package/ReactCommon/react/runtime/hermes/HermesInstance.h +3 -2
- package/ReactCommon/react/runtime/nativeviewconfig/CMakeLists.txt +1 -1
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.h +7 -5
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm +12 -8
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm +22 -52
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.h +1 -3
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +9 -8
- package/ReactCommon/react/runtime/tests/cxx/ReactInstanceTest.cpp +22 -16
- package/ReactCommon/react/test_utils/ios/Shims/ShimRCTInstance.mm +4 -5
- package/ReactCommon/react/timing/CMakeLists.txt +18 -0
- package/ReactCommon/react/timing/React-timing.podspec +44 -0
- package/ReactCommon/react/timing/primitives.h +31 -0
- package/ReactCommon/react/timing/tests/PrimitivesTest.cpp +47 -0
- package/ReactCommon/react/utils/CMakeLists.txt +1 -1
- package/ReactCommon/react/utils/CoreFeatures.cpp +0 -1
- package/ReactCommon/react/utils/CoreFeatures.h +0 -4
- package/ReactCommon/reactperflogger/CMakeLists.txt +7 -2
- package/ReactCommon/reactperflogger/React-perflogger.podspec +15 -2
- package/ReactCommon/reactperflogger/fusebox/FuseboxTracer.cpp +117 -0
- package/ReactCommon/reactperflogger/fusebox/FuseboxTracer.h +53 -0
- package/ReactCommon/reactperflogger/fusebox/tests/FuseboxTracerTest.cpp +90 -0
- package/ReactCommon/reactperflogger/reactperflogger/HermesPerfettoDataSource.cpp +19 -4
- package/ReactCommon/reactperflogger/reactperflogger/HermesPerfettoDataSource.h +9 -1
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfetto.cpp +42 -6
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfetto.h +6 -1
- package/ReactCommon/runtimeexecutor/CMakeLists.txt +1 -1
- package/ReactCommon/yoga/yoga/YGNodeStyle.cpp +5 -0
- package/ReactCommon/yoga/yoga/YGNodeStyle.h +3 -1
- package/ReactCommon/yoga/yoga/algorithm/AbsoluteLayout.cpp +48 -19
- package/ReactCommon/yoga/yoga/algorithm/AbsoluteLayout.h +2 -1
- package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.cpp +28 -2
- package/ReactCommon/yoga/yoga/config/Config.cpp +24 -5
- package/ReactCommon/yoga/yoga/config/Config.h +3 -0
- package/ReactCommon/yoga/yoga/node/LayoutResults.cpp +1 -0
- package/ReactCommon/yoga/yoga/node/LayoutResults.h +1 -0
- package/ReactCommon/yoga/yoga/node/Node.cpp +7 -1
- package/ReactCommon/yoga/yoga/style/Style.h +18 -0
- package/flow/jest.js +2 -2
- package/gradle/libs.versions.toml +4 -6
- package/index.js +6 -4
- package/jest/mockComponent.js +4 -1
- package/jest/mockModal.js +1 -3
- package/jest/mockScrollView.js +1 -1
- package/jest/renderer.js +2 -2
- package/jest/setup.js +16 -13
- package/package.json +14 -15
- package/react-native.config.js +26 -5
- package/scripts/bundle.js +7 -2
- package/scripts/cocoapods/autolinking.rb +2 -1
- package/scripts/cocoapods/helpers.rb +73 -6
- package/scripts/cocoapods/new_architecture.rb +1 -1
- package/scripts/cocoapods/utils.rb +18 -7
- package/scripts/codegen/generate-artifacts-executor.js +3 -2
- package/scripts/hermes/hermes-utils.js +0 -1
- package/scripts/ios-configure-glog.sh +2 -0
- package/scripts/react-native-xcode.sh +1 -2
- package/scripts/react_native_pods.rb +73 -2
- package/sdks/.hermesversion +1 -1
- package/sdks/hermes-engine/hermes-engine.podspec +9 -3
- package/sdks/hermes-engine/utils/build-apple-framework.sh +13 -4
- package/sdks/hermes-engine/utils/build-ios-framework.sh +2 -4
- 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/sdks/ossonly-soloader/src/main/java/com/facebook/soloader/DoNotOptimize.kt +10 -0
- package/sdks/ossonly-soloader/src/main/java/com/facebook/soloader/MergedSoMapping.kt +117 -0
- package/sdks/ossonly-soloader/src/main/java/com/facebook/soloader/SoLoader.kt +53 -0
- package/sdks/ossonly-soloader/src/main/java/com/facebook/soloader/nativeloader/NativeLoader.kt +28 -0
- package/sdks/ossonly-soloader/src/main/java/com/facebook/soloader/nativeloader/NativeLoaderDelegate.kt +23 -0
- package/sdks/ossonly-soloader/src/main/java/com/facebook/soloader/nativeloader/SystemDelegate.kt +10 -0
- package/src/private/animated/NativeAnimatedHelper.js +438 -0
- package/src/private/animated/NativeAnimatedValidation.js +64 -0
- package/src/private/components/HScrollViewNativeComponents.js +56 -0
- package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +27 -0
- package/src/private/components/VScrollViewNativeComponents.js +48 -0
- package/src/private/components/useSyncOnScroll.js +48 -0
- package/src/private/featureflags/ReactNativeFeatureFlags.js +166 -16
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +29 -5
- package/src/private/fusebox/FuseboxSessionObserver.js +42 -0
- package/{Libraries/Core → src/private/renderer/errorhandling}/ErrorHandlers.js +14 -4
- package/src/private/setup/setUpDOM.js +28 -0
- package/src/private/setup/setUpIntersectionObserver.js +27 -0
- package/src/private/setup/setUpMutationObserver.js +26 -0
- package/src/private/setup/setUpPerformanceObserver.js +64 -0
- package/src/private/specs/modules/NativeAppearance.js +3 -3
- package/src/private/specs/modules/NativeLinkingManager.js +1 -1
- package/src/private/specs/modules/NativeSampleTurboModule.js +14 -1
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +6 -4
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserver.js +5 -3
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverEntry.js +3 -3
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverManager.js +14 -17
- package/src/private/{specs/modules → webapis/intersectionobserver/specs}/NativeIntersectionObserver.js +2 -2
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver/specs}/__mocks__/NativeIntersectionObserver.js +4 -4
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserver.js +5 -3
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserverManager.js +24 -15
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationRecord.js +4 -6
- package/src/private/{specs/modules → webapis/mutationobserver/specs}/NativeMutationObserver.js +2 -2
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver/specs}/__mocks__/NativeMutationObserver.js +5 -5
- package/src/private/webapis/performance/{EventCounts.js → EventTiming.js} +65 -3
- package/src/private/webapis/performance/LongTasks.js +39 -0
- package/src/private/webapis/performance/Performance.js +22 -9
- package/src/private/webapis/performance/PerformanceEntry.js +36 -18
- package/src/private/webapis/performance/PerformanceObserver.js +29 -43
- package/src/private/webapis/performance/RawPerformanceEntry.js +24 -1
- package/src/private/webapis/performance/UserTiming.js +17 -12
- package/src/private/webapis/performance/specs/NativePerformanceObserver.js +1 -1
- package/third-party-podspecs/DoubleConversion.podspec +4 -1
- package/third-party-podspecs/RCT-Folly.podspec +3 -1
- package/third-party-podspecs/boost.podspec +4 -1
- package/third-party-podspecs/fmt.podspec +4 -1
- package/third-party-podspecs/glog.podspec +4 -1
- package/types/experimental.d.ts +1 -1
- package/types/public/ReactNativeTVTypes.d.ts +44 -3
- package/Libraries/Animated/NativeAnimatedHelper.js +0 -615
- package/Libraries/Core/setUpIntersectionObserver.js +0 -16
- package/Libraries/Core/setUpMutationObserver.js +0 -16
- package/Libraries/Core/setUpPerformanceObserver.js +0 -18
- package/Libraries/IntersectionObserver/NativeIntersectionObserver.js +0 -13
- package/Libraries/MutationObserver/NativeMutationObserver.js +0 -13
- package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +0 -135
- package/ReactAndroid/src/main/java/com/facebook/annotationprocessors/common/ProcessorBase.java +0 -24
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AdditionAnimatedNode.java +0 -56
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNode.java +0 -78
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ColorAnimatedNode.java +0 -131
- package/ReactAndroid/src/main/java/com/facebook/react/animated/DecayAnimation.java +0 -79
- package/ReactAndroid/src/main/java/com/facebook/react/animated/DiffClampAnimatedNode.java +0 -66
- package/ReactAndroid/src/main/java/com/facebook/react/animated/DivisionAnimatedNode.java +0 -64
- package/ReactAndroid/src/main/java/com/facebook/react/animated/EventAnimationDriver.java +0 -116
- package/ReactAndroid/src/main/java/com/facebook/react/animated/FrameBasedAnimationDriver.java +0 -109
- package/ReactAndroid/src/main/java/com/facebook/react/animated/InterpolationAnimatedNode.java +0 -311
- package/ReactAndroid/src/main/java/com/facebook/react/animated/MultiplicationAnimatedNode.java +0 -56
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ObjectAnimatedNode.java +0 -161
- package/ReactAndroid/src/main/java/com/facebook/react/animated/PropsAnimatedNode.java +0 -145
- package/ReactAndroid/src/main/java/com/facebook/react/animated/SpringAnimation.java +0 -207
- package/ReactAndroid/src/main/java/com/facebook/react/animated/StyleAnimatedNode.java +0 -70
- package/ReactAndroid/src/main/java/com/facebook/react/animated/SubtractionAnimatedNode.java +0 -60
- package/ReactAndroid/src/main/java/com/facebook/react/animated/TrackingAnimatedNode.java +0 -50
- package/ReactAndroid/src/main/java/com/facebook/react/animated/TransformAnimatedNode.java +0 -93
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ValueAnimatedNode.java +0 -66
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BackgroundExecutor.java +0 -64
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSBundleLoaderDelegate.java +0 -51
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaScriptModule.java +0 -25
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UIManager.java +0 -162
- package/ReactAndroid/src/main/java/com/facebook/react/common/ClearableSynchronizedPool.java +0 -53
- package/ReactAndroid/src/main/java/com/facebook/react/common/DebugServerException.java +0 -104
- package/ReactAndroid/src/main/java/com/facebook/react/common/HasJavascriptExceptionMetadata.java +0 -17
- package/ReactAndroid/src/main/java/com/facebook/react/common/LongArray.java +0 -75
- package/ReactAndroid/src/main/java/com/facebook/react/common/ShakeDetector.java +0 -144
- package/ReactAndroid/src/main/java/com/facebook/react/common/assets/ReactFontManager.java +0 -239
- package/ReactAndroid/src/main/java/com/facebook/react/common/futures/SimpleSettableFuture.java +0 -121
- package/ReactAndroid/src/main/java/com/facebook/react/common/network/OkHttpCallUtil.java +0 -36
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevLoadingViewImplementation.java +0 -156
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PerftestDevSupportManager.java +0 -50
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReleaseDevSupportManager.java +0 -214
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/CoreComponentsRegistry.kt +0 -30
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricComponents.java +0 -54
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventBeatManager.java +0 -48
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/FabricEventEmitter.java +0 -74
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEvent.java +0 -56
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEventMountItem.java +0 -57
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ChoreographerCompat.java +0 -18
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/DeviceEventManagerModule.java +0 -76
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ExceptionsManagerModule.java +0 -91
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/HeadlessJsTaskSupportModule.java +0 -61
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JSTimers.java +0 -21
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.java +0 -428
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/PermissionAwareActivity.java +0 -29
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/RCTNativeAppEventEmitter.java +0 -18
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ReactChoreographer.java +0 -172
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/TimingModule.java +0 -104
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/FrescoModule.java +0 -225
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactNetworkImageRequest.java +0 -33
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactOkHttpNetworkFetcher.java +0 -80
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/SystraceRequestListener.java +0 -160
- package/ReactAndroid/src/main/java/com/facebook/react/modules/permissions/PermissionsModule.java +0 -204
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/PackagerConnectionSettings.java +0 -65
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Executors.java +0 -53
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerDelegate.java +0 -141
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerInterface.java +0 -84
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/IViewGroupManager.java +0 -42
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewHierarchyDumper.java +0 -45
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerDelegate.java +0 -25
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BoxShadowDrawable.kt +0 -102
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/BlackHoleEventDispatcher.java +0 -62
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/ContentSizeChangeEvent.java +0 -52
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/SimpleSpringInterpolator.java +0 -50
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/ReactDrawerLayout.java +0 -123
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/ReactDrawerLayoutManager.java +0 -302
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/MultiPostprocessor.java +0 -76
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageManager.java +0 -289
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageView.java +0 -638
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ProgressBarContainerView.java +0 -99
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ReactProgressBarViewManager.java +0 -203
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/OnScrollDispatchHelper.java +0 -58
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/VelocityHelper.java +0 -64
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitch.java +0 -124
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/CanvasUtil.java +0 -87
- package/ReactAndroid/src/main/jni/react/devsupport/JOptional.cpp +0 -29
- package/ReactAndroid/src/main/jni/react/devsupport/JOptional.h +0 -27
- package/ReactAndroid/src/main/jni/react/fabric/JBackgroundExecutor.cpp +0 -28
- package/ReactAndroid/src/main/jni/react/fabric/JBackgroundExecutor.h +0 -23
- package/src/private/core/setUpDOM.js +0 -18
- package/src/private/webapis/performance/PerformanceEventTiming.js +0 -55
- /package/src/private/{core → styles}/composeStyles.js +0 -0
|
@@ -29,7 +29,7 @@ public class com/facebook/react/CoreModulesPackage$$ReactModuleInfoProvider : co
|
|
|
29
29
|
public fun getReactModuleInfos ()Ljava/util/Map;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
public class com/facebook/react/DebugCorePackage : com/facebook/react/
|
|
32
|
+
public class com/facebook/react/DebugCorePackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
33
33
|
public fun <init> ()V
|
|
34
34
|
public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
|
|
35
35
|
public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
|
|
@@ -46,6 +46,8 @@ public class com/facebook/react/DebugCorePackage$$ReactModuleInfoProvider : com/
|
|
|
46
46
|
public abstract class com/facebook/react/HeadlessJsTaskService : android/app/Service, com/facebook/react/jstasks/HeadlessJsTaskEventListener {
|
|
47
47
|
public fun <init> ()V
|
|
48
48
|
public static fun acquireWakeLockNow (Landroid/content/Context;)V
|
|
49
|
+
protected fun getReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
50
|
+
protected fun getReactHost ()Lcom/facebook/react/ReactHost;
|
|
49
51
|
protected fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
|
|
50
52
|
protected fun getTaskConfig (Landroid/content/Intent;)Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;
|
|
51
53
|
public fun onBind (Landroid/content/Intent;)Landroid/os/IBinder;
|
|
@@ -111,6 +113,7 @@ public abstract class com/facebook/react/ReactActivity : androidx/appcompat/app/
|
|
|
111
113
|
protected fun onPause ()V
|
|
112
114
|
public fun onRequestPermissionsResult (I[Ljava/lang/String;[I)V
|
|
113
115
|
protected fun onResume ()V
|
|
116
|
+
public fun onUserLeaveHint ()V
|
|
114
117
|
public fun onWindowFocusChanged (Z)V
|
|
115
118
|
public fun requestPermissions ([Ljava/lang/String;ILcom/facebook/react/modules/core/PermissionListener;)V
|
|
116
119
|
}
|
|
@@ -143,6 +146,7 @@ public class com/facebook/react/ReactActivityDelegate {
|
|
|
143
146
|
public fun onPause ()V
|
|
144
147
|
public fun onRequestPermissionsResult (I[Ljava/lang/String;[I)V
|
|
145
148
|
public fun onResume ()V
|
|
149
|
+
public fun onUserLeaveHint ()V
|
|
146
150
|
public fun onWindowFocusChanged (Z)V
|
|
147
151
|
public fun requestPermissions ([Ljava/lang/String;ILcom/facebook/react/modules/core/PermissionListener;)V
|
|
148
152
|
}
|
|
@@ -171,6 +175,7 @@ public class com/facebook/react/ReactDelegate {
|
|
|
171
175
|
public fun onKeyDown (ILandroid/view/KeyEvent;)Z
|
|
172
176
|
public fun onKeyLongPress (I)Z
|
|
173
177
|
public fun onNewIntent (Landroid/content/Intent;)Z
|
|
178
|
+
public fun onUserLeaveHint ()V
|
|
174
179
|
public fun onWindowFocusChanged (Z)V
|
|
175
180
|
public fun reload ()V
|
|
176
181
|
public fun shouldShowDevMenuOrReload (ILandroid/view/KeyEvent;)Z
|
|
@@ -208,19 +213,21 @@ public class com/facebook/react/ReactFragment$Builder {
|
|
|
208
213
|
|
|
209
214
|
public abstract interface class com/facebook/react/ReactHost {
|
|
210
215
|
public abstract fun addBeforeDestroyListener (Lkotlin/jvm/functions/Function0;)V
|
|
216
|
+
public abstract fun addReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
211
217
|
public abstract fun createSurface (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/interfaces/fabric/ReactSurface;
|
|
212
218
|
public abstract fun destroy (Ljava/lang/String;Ljava/lang/Exception;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
213
219
|
public abstract fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
214
220
|
public abstract fun getDevSupportManager ()Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
215
|
-
public abstract fun getJsEngineResolutionAlgorithm ()Lcom/facebook/react/JSEngineResolutionAlgorithm;
|
|
216
221
|
public abstract fun getLifecycleState ()Lcom/facebook/react/common/LifecycleState;
|
|
217
222
|
public abstract fun getMemoryPressureRouter ()Lcom/facebook/react/MemoryPressureRouter;
|
|
218
223
|
public abstract fun getReactQueueConfiguration ()Lcom/facebook/react/bridge/queue/ReactQueueConfiguration;
|
|
224
|
+
public abstract fun invalidate ()V
|
|
219
225
|
public abstract fun onActivityResult (Landroid/app/Activity;IILandroid/content/Intent;)V
|
|
220
226
|
public abstract fun onBackPressed ()Z
|
|
221
227
|
public abstract fun onConfigurationChanged (Landroid/content/Context;)V
|
|
222
228
|
public abstract fun onHostDestroy ()V
|
|
223
229
|
public abstract fun onHostDestroy (Landroid/app/Activity;)V
|
|
230
|
+
public abstract fun onHostLeaveHint (Landroid/app/Activity;)V
|
|
224
231
|
public abstract fun onHostPause ()V
|
|
225
232
|
public abstract fun onHostPause (Landroid/app/Activity;)V
|
|
226
233
|
public abstract fun onHostResume (Landroid/app/Activity;)V
|
|
@@ -229,7 +236,7 @@ public abstract interface class com/facebook/react/ReactHost {
|
|
|
229
236
|
public abstract fun onWindowFocusChange (Z)V
|
|
230
237
|
public abstract fun reload (Ljava/lang/String;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
231
238
|
public abstract fun removeBeforeDestroyListener (Lkotlin/jvm/functions/Function0;)V
|
|
232
|
-
public abstract fun
|
|
239
|
+
public abstract fun removeReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
233
240
|
public abstract fun start ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
234
241
|
}
|
|
235
242
|
|
|
@@ -254,6 +261,7 @@ public class com/facebook/react/ReactInstanceManager {
|
|
|
254
261
|
public fun getViewManagerNames ()Ljava/util/Collection;
|
|
255
262
|
public fun handleCxxError (Ljava/lang/Exception;)V
|
|
256
263
|
public fun hasStartedCreatingInitialContext ()Z
|
|
264
|
+
public fun invalidate ()V
|
|
257
265
|
public fun onActivityResult (Landroid/app/Activity;IILandroid/content/Intent;)V
|
|
258
266
|
public fun onBackPressed ()V
|
|
259
267
|
public fun onConfigurationChanged (Landroid/content/Context;Landroid/content/res/Configuration;)V
|
|
@@ -264,6 +272,7 @@ public class com/facebook/react/ReactInstanceManager {
|
|
|
264
272
|
public fun onHostResume (Landroid/app/Activity;)V
|
|
265
273
|
public fun onHostResume (Landroid/app/Activity;Lcom/facebook/react/modules/core/DefaultHardwareBackBtnHandler;)V
|
|
266
274
|
public fun onNewIntent (Landroid/content/Intent;)V
|
|
275
|
+
public fun onUserLeaveHint (Landroid/app/Activity;)V
|
|
267
276
|
public fun onWindowFocusChange (Z)V
|
|
268
277
|
public fun recreateReactContextInBackground ()V
|
|
269
278
|
public fun removeReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
@@ -352,11 +361,9 @@ public abstract class com/facebook/react/ReactPackageTurboModuleManagerDelegate
|
|
|
352
361
|
public fun getEagerInitModuleNames ()Ljava/util/List;
|
|
353
362
|
public fun getLegacyModule (Ljava/lang/String;)Lcom/facebook/react/bridge/NativeModule;
|
|
354
363
|
public fun getModule (Ljava/lang/String;)Lcom/facebook/react/turbomodule/core/interfaces/TurboModule;
|
|
355
|
-
public fun unstable_enableSyncVoidMethods ()Z
|
|
356
364
|
public fun unstable_isLegacyModuleRegistered (Ljava/lang/String;)Z
|
|
357
365
|
public fun unstable_isModuleRegistered (Ljava/lang/String;)Z
|
|
358
366
|
public fun unstable_shouldEnableLegacyModuleInterop ()Z
|
|
359
|
-
public fun unstable_shouldRouteTurboModulesThroughLegacyModuleInterop ()Z
|
|
360
367
|
}
|
|
361
368
|
|
|
362
369
|
public abstract class com/facebook/react/ReactPackageTurboModuleManagerDelegate$Builder {
|
|
@@ -432,6 +439,51 @@ public abstract interface class com/facebook/react/ViewManagerOnDemandReactPacka
|
|
|
432
439
|
public abstract fun getViewManagerNames (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/Collection;
|
|
433
440
|
}
|
|
434
441
|
|
|
442
|
+
public abstract class com/facebook/react/animated/AnimatedNode {
|
|
443
|
+
public static final field Companion Lcom/facebook/react/animated/AnimatedNode$Companion;
|
|
444
|
+
public static final field DEFAULT_ANIMATED_NODE_CHILD_COUNT I
|
|
445
|
+
public static final field INITIAL_BFS_COLOR I
|
|
446
|
+
public fun <init> ()V
|
|
447
|
+
public final fun addChild (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
448
|
+
public fun onAttachedToNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
449
|
+
public fun onDetachedFromNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
450
|
+
public abstract fun prettyPrint ()Ljava/lang/String;
|
|
451
|
+
public final fun prettyPrintWithChildren ()Ljava/lang/String;
|
|
452
|
+
public final fun removeChild (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
453
|
+
public fun update ()V
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
public final class com/facebook/react/animated/AnimatedNode$Companion {
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
public abstract interface class com/facebook/react/animated/AnimatedNodeValueListener {
|
|
460
|
+
public abstract fun onValueUpdate (D)V
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
public abstract interface class com/facebook/react/animated/AnimatedNodeWithUpdateableConfig {
|
|
464
|
+
public abstract fun onUpdateConfig (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
public final class com/facebook/react/animated/InterpolationAnimatedNode : com/facebook/react/animated/ValueAnimatedNode {
|
|
468
|
+
public static final field Companion Lcom/facebook/react/animated/InterpolationAnimatedNode$Companion;
|
|
469
|
+
public static final field EXTRAPOLATE_TYPE_CLAMP Ljava/lang/String;
|
|
470
|
+
public static final field EXTRAPOLATE_TYPE_EXTEND Ljava/lang/String;
|
|
471
|
+
public static final field EXTRAPOLATE_TYPE_IDENTITY Ljava/lang/String;
|
|
472
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
473
|
+
public fun getAnimatedObject ()Ljava/lang/Object;
|
|
474
|
+
public fun onAttachedToNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
475
|
+
public fun onDetachedFromNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
476
|
+
public fun prettyPrint ()Ljava/lang/String;
|
|
477
|
+
public fun update ()V
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
public final class com/facebook/react/animated/InterpolationAnimatedNode$Companion {
|
|
481
|
+
public final fun interpolate (DDDDDLjava/lang/String;Ljava/lang/String;)D
|
|
482
|
+
public final fun interpolate (D[D[DLjava/lang/String;Ljava/lang/String;)D
|
|
483
|
+
public final fun interpolateColor (D[D[I)I
|
|
484
|
+
public final fun interpolateString (Ljava/lang/String;D[D[[DLjava/lang/String;Ljava/lang/String;)Ljava/lang/String;
|
|
485
|
+
}
|
|
486
|
+
|
|
435
487
|
public class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbreact/specs/NativeAnimatedModuleSpec, com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/UIManagerListener {
|
|
436
488
|
public static final field ANIMATED_MODULE_DEBUG Z
|
|
437
489
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
@@ -468,6 +520,7 @@ public class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbr
|
|
|
468
520
|
public fun stopAnimation (D)V
|
|
469
521
|
public fun stopListeningToAnimatedNodeValue (D)V
|
|
470
522
|
public fun updateAnimatedNodeConfig (DLcom/facebook/react/bridge/ReadableMap;)V
|
|
523
|
+
public fun userDrivenScrollEnded (I)V
|
|
471
524
|
public fun willDispatchViewUpdates (Lcom/facebook/react/bridge/UIManager;)V
|
|
472
525
|
public fun willMountItems (Lcom/facebook/react/bridge/UIManager;)V
|
|
473
526
|
}
|
|
@@ -500,9 +553,23 @@ public class com/facebook/react/animated/NativeAnimatedNodesManager : com/facebo
|
|
|
500
553
|
public fun updateAnimatedNodeConfig (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
501
554
|
}
|
|
502
555
|
|
|
556
|
+
public class com/facebook/react/animated/ValueAnimatedNode : com/facebook/react/animated/AnimatedNode {
|
|
557
|
+
public fun <init> ()V
|
|
558
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
559
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/ReadableMap;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
560
|
+
public final fun extractOffset ()V
|
|
561
|
+
public final fun flattenOffset ()V
|
|
562
|
+
public fun getAnimatedObject ()Ljava/lang/Object;
|
|
563
|
+
public final fun getValue ()D
|
|
564
|
+
public final fun onValueUpdate ()V
|
|
565
|
+
public fun prettyPrint ()Ljava/lang/String;
|
|
566
|
+
public final fun setValueListener (Lcom/facebook/react/animated/AnimatedNodeValueListener;)V
|
|
567
|
+
}
|
|
568
|
+
|
|
503
569
|
public abstract interface class com/facebook/react/bridge/ActivityEventListener {
|
|
504
570
|
public abstract fun onActivityResult (Landroid/app/Activity;IILandroid/content/Intent;)V
|
|
505
571
|
public abstract fun onNewIntent (Landroid/content/Intent;)V
|
|
572
|
+
public fun onUserLeaveHint (Landroid/app/Activity;)V
|
|
506
573
|
}
|
|
507
574
|
|
|
508
575
|
public class com/facebook/react/bridge/Arguments {
|
|
@@ -525,9 +592,6 @@ public class com/facebook/react/bridge/AssertionException : java/lang/RuntimeExc
|
|
|
525
592
|
public fun <init> (Ljava/lang/String;)V
|
|
526
593
|
}
|
|
527
594
|
|
|
528
|
-
public class com/facebook/react/bridge/BackgroundExecutor {
|
|
529
|
-
}
|
|
530
|
-
|
|
531
595
|
public class com/facebook/react/bridge/BaseActivityEventListener : com/facebook/react/bridge/ActivityEventListener {
|
|
532
596
|
public fun <init> ()V
|
|
533
597
|
public fun onActivityResult (IILandroid/content/Intent;)V
|
|
@@ -539,6 +603,7 @@ public abstract class com/facebook/react/bridge/BaseJavaModule : com/facebook/re
|
|
|
539
603
|
public static final field METHOD_TYPE_ASYNC Ljava/lang/String;
|
|
540
604
|
public static final field METHOD_TYPE_PROMISE Ljava/lang/String;
|
|
541
605
|
public static final field METHOD_TYPE_SYNC Ljava/lang/String;
|
|
606
|
+
protected field mEventEmitterCallback Lcom/facebook/react/bridge/CxxCallbackImpl;
|
|
542
607
|
public fun <init> ()V
|
|
543
608
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
544
609
|
public fun canOverrideExistingModule ()Z
|
|
@@ -839,7 +904,7 @@ public abstract interface class com/facebook/react/bridge/JavaJSExecutor$Factory
|
|
|
839
904
|
public abstract fun create ()Lcom/facebook/react/bridge/JavaJSExecutor;
|
|
840
905
|
}
|
|
841
906
|
|
|
842
|
-
public class com/facebook/react/bridge/JavaJSExecutor$ProxyExecutorException : java/lang/Exception {
|
|
907
|
+
public final class com/facebook/react/bridge/JavaJSExecutor$ProxyExecutorException : java/lang/Exception {
|
|
843
908
|
public fun <init> (Ljava/lang/Throwable;)V
|
|
844
909
|
}
|
|
845
910
|
|
|
@@ -1029,6 +1094,11 @@ public abstract interface class com/facebook/react/bridge/OnBatchCompleteListene
|
|
|
1029
1094
|
public abstract fun onBatchComplete ()V
|
|
1030
1095
|
}
|
|
1031
1096
|
|
|
1097
|
+
public abstract interface class com/facebook/react/bridge/PerformanceCounter {
|
|
1098
|
+
public abstract fun getPerformanceCounters ()Ljava/util/Map;
|
|
1099
|
+
public abstract fun profileNextBatch ()V
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1032
1102
|
public abstract interface class com/facebook/react/bridge/Promise {
|
|
1033
1103
|
public abstract fun reject (Ljava/lang/String;)V
|
|
1034
1104
|
public abstract fun reject (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
@@ -1134,6 +1204,7 @@ public abstract class com/facebook/react/bridge/ReactContext : android/content/C
|
|
|
1134
1204
|
public fun onHostPause ()V
|
|
1135
1205
|
public fun onHostResume (Landroid/app/Activity;)V
|
|
1136
1206
|
public fun onNewIntent (Landroid/app/Activity;Landroid/content/Intent;)V
|
|
1207
|
+
public fun onUserLeaveHint (Landroid/app/Activity;)V
|
|
1137
1208
|
public fun onWindowFocusChange (Z)V
|
|
1138
1209
|
public abstract fun registerSegment (ILjava/lang/String;Lcom/facebook/react/bridge/Callback;)V
|
|
1139
1210
|
public fun removeActivityEventListener (Lcom/facebook/react/bridge/ActivityEventListener;)V
|
|
@@ -1181,6 +1252,8 @@ public class com/facebook/react/bridge/ReactInstanceManagerInspectorTarget : jav
|
|
|
1181
1252
|
}
|
|
1182
1253
|
|
|
1183
1254
|
public abstract interface class com/facebook/react/bridge/ReactInstanceManagerInspectorTarget$TargetDelegate {
|
|
1255
|
+
public abstract fun getMetadata ()Ljava/util/Map;
|
|
1256
|
+
public abstract fun loadNetworkResource (Ljava/lang/String;Lcom/facebook/react/devsupport/inspector/InspectorNetworkRequestListener;)V
|
|
1184
1257
|
public abstract fun onReload ()V
|
|
1185
1258
|
public abstract fun onSetPausedInDebuggerMessage (Ljava/lang/String;)V
|
|
1186
1259
|
}
|
|
@@ -1294,6 +1367,8 @@ public final class com/facebook/react/bridge/ReactMarkerConstants : java/lang/En
|
|
|
1294
1367
|
public static final field ON_HOST_PAUSE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1295
1368
|
public static final field ON_HOST_RESUME_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1296
1369
|
public static final field ON_HOST_RESUME_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1370
|
+
public static final field ON_USER_LEAVE_HINT_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1371
|
+
public static final field ON_USER_LEAVE_HINT_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1297
1372
|
public static final field PRE_REACT_CONTEXT_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1298
1373
|
public static final field PRE_RUN_JS_BUNDLE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1299
1374
|
public static final field PRE_SETUP_REACT_CONTEXT_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
@@ -1494,6 +1569,7 @@ public abstract interface class com/facebook/react/bridge/UIManager : com/facebo
|
|
|
1494
1569
|
public abstract fun getEventDispatcher ()Ljava/lang/Object;
|
|
1495
1570
|
public abstract fun initialize ()V
|
|
1496
1571
|
public abstract fun invalidate ()V
|
|
1572
|
+
public abstract fun markActiveTouchForTag (II)V
|
|
1497
1573
|
public abstract fun receiveEvent (IILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
1498
1574
|
public abstract fun receiveEvent (ILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
1499
1575
|
public abstract fun removeUIManagerEventListener (Lcom/facebook/react/bridge/UIManagerListener;)V
|
|
@@ -1502,6 +1578,7 @@ public abstract interface class com/facebook/react/bridge/UIManager : com/facebo
|
|
|
1502
1578
|
public abstract fun sendAccessibilityEvent (II)V
|
|
1503
1579
|
public abstract fun startSurface (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;II)I
|
|
1504
1580
|
public abstract fun stopSurface (I)V
|
|
1581
|
+
public abstract fun sweepActiveTouchForTag (II)V
|
|
1505
1582
|
public abstract fun synchronouslyUpdateViewOnUIThread (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
1506
1583
|
public abstract fun updateRootLayoutSpecs (IIIII)V
|
|
1507
1584
|
}
|
|
@@ -1662,6 +1739,7 @@ public class com/facebook/react/bridge/queue/ReactQueueConfigurationImpl : com/f
|
|
|
1662
1739
|
}
|
|
1663
1740
|
|
|
1664
1741
|
public class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec {
|
|
1742
|
+
public fun <init> (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)V
|
|
1665
1743
|
public static fun builder ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
|
|
1666
1744
|
public static fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
|
|
1667
1745
|
public fun getJSQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
@@ -1681,30 +1759,34 @@ public final class com/facebook/react/common/ClassFinder {
|
|
|
1681
1759
|
public static final fun findClass (Ljava/lang/String;)Ljava/lang/Class;
|
|
1682
1760
|
}
|
|
1683
1761
|
|
|
1684
|
-
public class com/facebook/react/common/ClearableSynchronizedPool : androidx/core/util/Pools$Pool {
|
|
1762
|
+
public final class com/facebook/react/common/ClearableSynchronizedPool : androidx/core/util/Pools$Pool {
|
|
1685
1763
|
public fun <init> (I)V
|
|
1686
1764
|
public fun acquire ()Ljava/lang/Object;
|
|
1687
|
-
public fun clear ()V
|
|
1765
|
+
public final fun clear ()V
|
|
1688
1766
|
public fun release (Ljava/lang/Object;)Z
|
|
1689
1767
|
}
|
|
1690
1768
|
|
|
1691
|
-
public class com/facebook/react/common/DebugServerException : java/lang/RuntimeException {
|
|
1769
|
+
public final class com/facebook/react/common/DebugServerException : java/lang/RuntimeException {
|
|
1770
|
+
public static final field Companion Lcom/facebook/react/common/DebugServerException$Companion;
|
|
1692
1771
|
public fun <init> (Ljava/lang/String;)V
|
|
1772
|
+
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;IILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
1693
1773
|
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1694
|
-
public fun getOriginalMessage ()Ljava/lang/String;
|
|
1695
|
-
public static fun makeGeneric (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)Lcom/facebook/react/common/DebugServerException;
|
|
1696
|
-
public static fun makeGeneric (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)Lcom/facebook/react/common/DebugServerException;
|
|
1697
|
-
public static fun parse (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/common/DebugServerException;
|
|
1774
|
+
public final fun getOriginalMessage ()Ljava/lang/String;
|
|
1775
|
+
public static final fun makeGeneric (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)Lcom/facebook/react/common/DebugServerException;
|
|
1776
|
+
public static final fun makeGeneric (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)Lcom/facebook/react/common/DebugServerException;
|
|
1777
|
+
public static final fun parse (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/common/DebugServerException;
|
|
1698
1778
|
}
|
|
1699
1779
|
|
|
1700
|
-
public
|
|
1701
|
-
public
|
|
1780
|
+
public final class com/facebook/react/common/DebugServerException$Companion {
|
|
1781
|
+
public final fun makeGeneric (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)Lcom/facebook/react/common/DebugServerException;
|
|
1782
|
+
public final fun makeGeneric (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)Lcom/facebook/react/common/DebugServerException;
|
|
1783
|
+
public final fun parse (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/common/DebugServerException;
|
|
1702
1784
|
}
|
|
1703
1785
|
|
|
1704
|
-
public class com/facebook/react/common/JavascriptException : java/lang/RuntimeException
|
|
1786
|
+
public class com/facebook/react/common/JavascriptException : java/lang/RuntimeException {
|
|
1705
1787
|
public fun <init> (Ljava/lang/String;)V
|
|
1706
|
-
public fun getExtraDataAsJson ()Ljava/lang/String;
|
|
1707
|
-
public final fun setExtraDataAsJson (Ljava/lang/String;)
|
|
1788
|
+
public final fun getExtraDataAsJson ()Ljava/lang/String;
|
|
1789
|
+
public final fun setExtraDataAsJson (Ljava/lang/String;)V
|
|
1708
1790
|
}
|
|
1709
1791
|
|
|
1710
1792
|
public final class com/facebook/react/common/LifecycleState : java/lang/Enum {
|
|
@@ -1716,16 +1798,6 @@ public final class com/facebook/react/common/LifecycleState : java/lang/Enum {
|
|
|
1716
1798
|
public static fun values ()[Lcom/facebook/react/common/LifecycleState;
|
|
1717
1799
|
}
|
|
1718
1800
|
|
|
1719
|
-
public class com/facebook/react/common/LongArray {
|
|
1720
|
-
public fun add (J)V
|
|
1721
|
-
public static fun createWithInitialCapacity (I)Lcom/facebook/react/common/LongArray;
|
|
1722
|
-
public fun dropTail (I)V
|
|
1723
|
-
public fun get (I)J
|
|
1724
|
-
public fun isEmpty ()Z
|
|
1725
|
-
public fun set (IJ)V
|
|
1726
|
-
public fun size ()I
|
|
1727
|
-
}
|
|
1728
|
-
|
|
1729
1801
|
public class com/facebook/react/common/MapBuilder {
|
|
1730
1802
|
public fun <init> ()V
|
|
1731
1803
|
public static fun builder ()Lcom/facebook/react/common/MapBuilder$Builder;
|
|
@@ -1751,13 +1823,14 @@ public final class com/facebook/react/common/ReactConstants {
|
|
|
1751
1823
|
public static final field UNSET I
|
|
1752
1824
|
}
|
|
1753
1825
|
|
|
1754
|
-
public class com/facebook/react/common/ShakeDetector : android/hardware/SensorEventListener {
|
|
1826
|
+
public final class com/facebook/react/common/ShakeDetector : android/hardware/SensorEventListener {
|
|
1755
1827
|
public fun <init> (Lcom/facebook/react/common/ShakeDetector$ShakeListener;)V
|
|
1756
1828
|
public fun <init> (Lcom/facebook/react/common/ShakeDetector$ShakeListener;I)V
|
|
1829
|
+
public synthetic fun <init> (Lcom/facebook/react/common/ShakeDetector$ShakeListener;IILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
1757
1830
|
public fun onAccuracyChanged (Landroid/hardware/Sensor;I)V
|
|
1758
1831
|
public fun onSensorChanged (Landroid/hardware/SensorEvent;)V
|
|
1759
|
-
public fun start (Landroid/hardware/SensorManager;)V
|
|
1760
|
-
public fun stop ()V
|
|
1832
|
+
public final fun start (Landroid/hardware/SensorManager;)V
|
|
1833
|
+
public final fun stop ()V
|
|
1761
1834
|
}
|
|
1762
1835
|
|
|
1763
1836
|
public abstract interface class com/facebook/react/common/ShakeDetector$ShakeListener {
|
|
@@ -1813,45 +1886,56 @@ public abstract interface annotation class com/facebook/react/common/annotations
|
|
|
1813
1886
|
public abstract interface annotation class com/facebook/react/common/annotations/VisibleForTesting : java/lang/annotation/Annotation {
|
|
1814
1887
|
}
|
|
1815
1888
|
|
|
1816
|
-
public class com/facebook/react/common/assets/ReactFontManager {
|
|
1817
|
-
public
|
|
1818
|
-
public fun
|
|
1819
|
-
public
|
|
1820
|
-
public fun
|
|
1821
|
-
public fun
|
|
1822
|
-
public fun getTypeface (Ljava/lang/String;
|
|
1823
|
-
public fun getTypeface (Ljava/lang/String;
|
|
1824
|
-
public fun
|
|
1889
|
+
public final class com/facebook/react/common/assets/ReactFontManager {
|
|
1890
|
+
public static final field Companion Lcom/facebook/react/common/assets/ReactFontManager$Companion;
|
|
1891
|
+
public fun <init> ()V
|
|
1892
|
+
public final fun addCustomFont (Landroid/content/Context;Ljava/lang/String;I)V
|
|
1893
|
+
public final fun addCustomFont (Ljava/lang/String;Landroid/graphics/Typeface;)V
|
|
1894
|
+
public static final fun getInstance ()Lcom/facebook/react/common/assets/ReactFontManager;
|
|
1895
|
+
public final fun getTypeface (Ljava/lang/String;IILandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
1896
|
+
public final fun getTypeface (Ljava/lang/String;ILandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
1897
|
+
public final fun getTypeface (Ljava/lang/String;IZLandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
1898
|
+
public final fun getTypeface (Ljava/lang/String;Lcom/facebook/react/common/assets/ReactFontManager$TypefaceStyle;Landroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
1899
|
+
public final fun setTypeface (Ljava/lang/String;ILandroid/graphics/Typeface;)V
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
public final class com/facebook/react/common/assets/ReactFontManager$Companion {
|
|
1903
|
+
public final fun getInstance ()Lcom/facebook/react/common/assets/ReactFontManager;
|
|
1825
1904
|
}
|
|
1826
1905
|
|
|
1827
|
-
public class com/facebook/react/common/assets/ReactFontManager$TypefaceStyle {
|
|
1906
|
+
public final class com/facebook/react/common/assets/ReactFontManager$TypefaceStyle {
|
|
1828
1907
|
public static final field BOLD I
|
|
1908
|
+
public static final field Companion Lcom/facebook/react/common/assets/ReactFontManager$TypefaceStyle$Companion;
|
|
1829
1909
|
public static final field NORMAL I
|
|
1830
1910
|
public fun <init> (I)V
|
|
1831
1911
|
public fun <init> (II)V
|
|
1912
|
+
public synthetic fun <init> (IIILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
1832
1913
|
public fun <init> (IZ)V
|
|
1833
|
-
public fun apply (Landroid/graphics/Typeface;)Landroid/graphics/Typeface;
|
|
1834
|
-
public fun getNearestStyle ()I
|
|
1914
|
+
public final fun apply (Landroid/graphics/Typeface;)Landroid/graphics/Typeface;
|
|
1915
|
+
public final fun getNearestStyle ()I
|
|
1835
1916
|
}
|
|
1836
1917
|
|
|
1837
|
-
public class com/facebook/react/common/
|
|
1918
|
+
public final class com/facebook/react/common/assets/ReactFontManager$TypefaceStyle$Companion {
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
public final class com/facebook/react/common/build/ReactBuildConfig {
|
|
1838
1922
|
public static final field DEBUG Z
|
|
1839
1923
|
public static final field EXOPACKAGE_FLAGS I
|
|
1924
|
+
public static final field INSTANCE Lcom/facebook/react/common/build/ReactBuildConfig;
|
|
1840
1925
|
public static final field IS_INTERNAL_BUILD Z
|
|
1841
|
-
public fun <init> ()V
|
|
1842
1926
|
}
|
|
1843
1927
|
|
|
1844
|
-
public class com/facebook/react/common/futures/SimpleSettableFuture : java/util/concurrent/Future {
|
|
1928
|
+
public final class com/facebook/react/common/futures/SimpleSettableFuture : java/util/concurrent/Future {
|
|
1845
1929
|
public fun <init> ()V
|
|
1846
1930
|
public fun cancel (Z)Z
|
|
1847
1931
|
public fun get ()Ljava/lang/Object;
|
|
1848
1932
|
public fun get (JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
|
|
1849
|
-
public fun getOrThrow ()Ljava/lang/Object;
|
|
1850
|
-
public fun getOrThrow (JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
|
|
1933
|
+
public final fun getOrThrow ()Ljava/lang/Object;
|
|
1934
|
+
public final fun getOrThrow (JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
|
|
1851
1935
|
public fun isCancelled ()Z
|
|
1852
1936
|
public fun isDone ()Z
|
|
1853
|
-
public fun set (Ljava/lang/Object;)V
|
|
1854
|
-
public fun setException (Ljava/lang/Exception;)V
|
|
1937
|
+
public final fun set (Ljava/lang/Object;)V
|
|
1938
|
+
public final fun setException (Ljava/lang/Exception;)V
|
|
1855
1939
|
}
|
|
1856
1940
|
|
|
1857
1941
|
public abstract interface class com/facebook/react/common/mapbuffer/MapBuffer : java/lang/Iterable, kotlin/jvm/internal/markers/KMappedMarker {
|
|
@@ -1948,39 +2032,23 @@ public final class com/facebook/react/common/mapbuffer/WritableMapBuffer : com/f
|
|
|
1948
2032
|
public final fun put (IZ)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
1949
2033
|
}
|
|
1950
2034
|
|
|
1951
|
-
public class com/facebook/react/common/network/OkHttpCallUtil {
|
|
1952
|
-
public static
|
|
2035
|
+
public final class com/facebook/react/common/network/OkHttpCallUtil {
|
|
2036
|
+
public static final field INSTANCE Lcom/facebook/react/common/network/OkHttpCallUtil;
|
|
2037
|
+
public static final fun cancelTag (Lokhttp3/OkHttpClient;Ljava/lang/Object;)V
|
|
1953
2038
|
}
|
|
1954
2039
|
|
|
1955
2040
|
public class com/facebook/react/config/ReactFeatureFlags {
|
|
1956
2041
|
public static field dispatchPointerEvents Z
|
|
1957
2042
|
public static field enableBridgelessArchitecture Z
|
|
1958
2043
|
public static field enableCppPropsIteratorSetter Z
|
|
1959
|
-
public static field enableEagerRootViewAttachment Z
|
|
1960
|
-
public static field enableFabricLogs Z
|
|
1961
2044
|
public static field enableFabricRenderer Z
|
|
1962
|
-
public static field enableFabricRendererExclusively Z
|
|
1963
|
-
public static field enableRemoveDeleteTreeInstruction Z
|
|
1964
|
-
public static field enableViewRecycling Z
|
|
1965
|
-
public static field excludeYogaFromRawProps Z
|
|
1966
|
-
public static field rejectTurboModulePromiseOnNativeError Z
|
|
1967
|
-
public static field traceTurboModulePromiseRejections Z
|
|
1968
|
-
public static field unstable_enableTurboModuleSyncVoidMethods Z
|
|
1969
|
-
public static field unstable_useFabricInterop Z
|
|
1970
|
-
public static field unstable_useTurboModuleInterop Z
|
|
1971
|
-
public static field unstable_useTurboModuleInteropForAllTurboModules Z
|
|
1972
2045
|
public static field useTurboModules Z
|
|
1973
2046
|
public fun <init> ()V
|
|
1974
2047
|
}
|
|
1975
2048
|
|
|
1976
2049
|
public final class com/facebook/react/defaults/DefaultComponentsRegistry {
|
|
1977
|
-
public static final field
|
|
1978
|
-
public
|
|
1979
|
-
public static final fun register (Lcom/facebook/react/fabric/ComponentFactory;)Lcom/facebook/react/defaults/DefaultComponentsRegistry;
|
|
1980
|
-
}
|
|
1981
|
-
|
|
1982
|
-
public final class com/facebook/react/defaults/DefaultComponentsRegistry$Companion {
|
|
1983
|
-
public final fun register (Lcom/facebook/react/fabric/ComponentFactory;)Lcom/facebook/react/defaults/DefaultComponentsRegistry;
|
|
2050
|
+
public static final field INSTANCE Lcom/facebook/react/defaults/DefaultComponentsRegistry;
|
|
2051
|
+
public static final fun register (Lcom/facebook/react/fabric/ComponentFactory;)V
|
|
1984
2052
|
}
|
|
1985
2053
|
|
|
1986
2054
|
public final class com/facebook/react/defaults/DefaultNewArchitectureEntryPoint {
|
|
@@ -1994,7 +2062,6 @@ public final class com/facebook/react/defaults/DefaultNewArchitectureEntryPoint
|
|
|
1994
2062
|
public static final fun load (ZZ)V
|
|
1995
2063
|
public static final fun load (ZZZ)V
|
|
1996
2064
|
public static synthetic fun load$default (ZZZILjava/lang/Object;)V
|
|
1997
|
-
public static final fun unstable_loadFusebox (Z)V
|
|
1998
2065
|
}
|
|
1999
2066
|
|
|
2000
2067
|
public class com/facebook/react/defaults/DefaultReactActivityDelegate : com/facebook/react/ReactActivityDelegate {
|
|
@@ -2007,8 +2074,8 @@ public class com/facebook/react/defaults/DefaultReactActivityDelegate : com/face
|
|
|
2007
2074
|
public final class com/facebook/react/defaults/DefaultReactHost {
|
|
2008
2075
|
public static final field INSTANCE Lcom/facebook/react/defaults/DefaultReactHost;
|
|
2009
2076
|
public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;)Lcom/facebook/react/ReactHost;
|
|
2010
|
-
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;)Lcom/facebook/react/ReactHost;
|
|
2011
|
-
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2077
|
+
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;
|
|
2078
|
+
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;
|
|
2012
2079
|
}
|
|
2013
2080
|
|
|
2014
2081
|
public abstract class com/facebook/react/defaults/DefaultReactNativeHost : com/facebook/react/ReactNativeHost {
|
|
@@ -2052,14 +2119,18 @@ public class com/facebook/react/devsupport/BundleDownloader$BundleInfo {
|
|
|
2052
2119
|
public fun toJSONString ()Ljava/lang/String;
|
|
2053
2120
|
}
|
|
2054
2121
|
|
|
2055
|
-
public class com/facebook/react/devsupport/DefaultDevLoadingViewImplementation : com/facebook/react/devsupport/interfaces/DevLoadingViewManager {
|
|
2122
|
+
public final class com/facebook/react/devsupport/DefaultDevLoadingViewImplementation : com/facebook/react/devsupport/interfaces/DevLoadingViewManager {
|
|
2123
|
+
public static final field Companion Lcom/facebook/react/devsupport/DefaultDevLoadingViewImplementation$Companion;
|
|
2056
2124
|
public fun <init> (Lcom/facebook/react/devsupport/ReactInstanceDevHelper;)V
|
|
2057
2125
|
public fun hide ()V
|
|
2058
|
-
public static fun setDevLoadingEnabled (Z)V
|
|
2059
2126
|
public fun showMessage (Ljava/lang/String;)V
|
|
2060
2127
|
public fun updateProgress (Ljava/lang/String;Ljava/lang/Integer;Ljava/lang/Integer;)V
|
|
2061
2128
|
}
|
|
2062
2129
|
|
|
2130
|
+
public final class com/facebook/react/devsupport/DefaultDevLoadingViewImplementation$Companion {
|
|
2131
|
+
public final fun setDevLoadingEnabled (Z)V
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2063
2134
|
public final class com/facebook/react/devsupport/DefaultDevSupportManagerFactory : com/facebook/react/devsupport/DevSupportManagerFactory {
|
|
2064
2135
|
public fun <init> ()V
|
|
2065
2136
|
public final fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZI)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
@@ -2142,6 +2213,7 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
|
|
|
2142
2213
|
public fun registerErrorCustomizer (Lcom/facebook/react/devsupport/interfaces/ErrorCustomizer;)V
|
|
2143
2214
|
public fun reloadJSFromServer (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/BundleLoadCallback;)V
|
|
2144
2215
|
public fun reloadSettings ()V
|
|
2216
|
+
public fun setAdditionalOptionForPackager (Ljava/lang/String;Ljava/lang/String;)V
|
|
2145
2217
|
public fun setDevSupportEnabled (Z)V
|
|
2146
2218
|
public fun setFpsDebugEnabled (Z)V
|
|
2147
2219
|
public fun setHotModuleReplacementEnabled (Z)V
|
|
@@ -2306,6 +2378,7 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
|
|
|
2306
2378
|
public fun registerErrorCustomizer (Lcom/facebook/react/devsupport/interfaces/ErrorCustomizer;)V
|
|
2307
2379
|
public fun reloadJSFromServer (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/BundleLoadCallback;)V
|
|
2308
2380
|
public fun reloadSettings ()V
|
|
2381
|
+
public fun setAdditionalOptionForPackager (Ljava/lang/String;Ljava/lang/String;)V
|
|
2309
2382
|
public fun setDevSupportEnabled (Z)V
|
|
2310
2383
|
public fun setFpsDebugEnabled (Z)V
|
|
2311
2384
|
public fun setHotModuleReplacementEnabled (Z)V
|
|
@@ -2368,6 +2441,18 @@ public class com/facebook/react/devsupport/WebsocketJavaScriptExecutor$Websocket
|
|
|
2368
2441
|
public fun <init> (Ljava/lang/String;)V
|
|
2369
2442
|
}
|
|
2370
2443
|
|
|
2444
|
+
public class com/facebook/react/devsupport/inspector/InspectorNetworkHelper {
|
|
2445
|
+
public static fun loadNetworkResource (Ljava/lang/String;Lcom/facebook/react/devsupport/inspector/InspectorNetworkRequestListener;)V
|
|
2446
|
+
}
|
|
2447
|
+
|
|
2448
|
+
public class com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener {
|
|
2449
|
+
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
2450
|
+
public fun onCompletion ()V
|
|
2451
|
+
public fun onData (Ljava/lang/String;)V
|
|
2452
|
+
public fun onError (Ljava/lang/String;)V
|
|
2453
|
+
public fun onHeaders (ILjava/util/Map;)V
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2371
2456
|
public abstract interface class com/facebook/react/devsupport/interfaces/BundleLoadCallback {
|
|
2372
2457
|
public fun onError (Ljava/lang/Exception;)V
|
|
2373
2458
|
public abstract fun onSuccess ()V
|
|
@@ -2425,6 +2510,7 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
|
|
|
2425
2510
|
public abstract fun registerErrorCustomizer (Lcom/facebook/react/devsupport/interfaces/ErrorCustomizer;)V
|
|
2426
2511
|
public abstract fun reloadJSFromServer (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/BundleLoadCallback;)V
|
|
2427
2512
|
public abstract fun reloadSettings ()V
|
|
2513
|
+
public abstract fun setAdditionalOptionForPackager (Ljava/lang/String;Ljava/lang/String;)V
|
|
2428
2514
|
public abstract fun setDevSupportEnabled (Z)V
|
|
2429
2515
|
public abstract fun setFpsDebugEnabled (Z)V
|
|
2430
2516
|
public abstract fun setHotModuleReplacementEnabled (Z)V
|
|
@@ -2493,6 +2579,7 @@ public abstract interface class com/facebook/react/devsupport/interfaces/StackFr
|
|
|
2493
2579
|
}
|
|
2494
2580
|
|
|
2495
2581
|
public abstract interface class com/facebook/react/fabric/Binding {
|
|
2582
|
+
public abstract fun drainPreallocateViewsQueue ()V
|
|
2496
2583
|
public abstract fun driveCxxAnimations ()V
|
|
2497
2584
|
public abstract fun getInspectorDataForInstance (Lcom/facebook/react/fabric/events/EventEmitterWrapper;)Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
2498
2585
|
public abstract fun register (Lcom/facebook/react/bridge/RuntimeExecutor;Lcom/facebook/react/bridge/RuntimeScheduler;Lcom/facebook/react/fabric/FabricUIManager;Lcom/facebook/react/fabric/events/EventBeatManager;Lcom/facebook/react/fabric/ComponentFactory;Lcom/facebook/react/fabric/ReactNativeConfig;)V
|
|
@@ -2509,6 +2596,7 @@ public abstract interface class com/facebook/react/fabric/Binding {
|
|
|
2509
2596
|
|
|
2510
2597
|
public final class com/facebook/react/fabric/BindingImpl : com/facebook/react/fabric/Binding {
|
|
2511
2598
|
public fun <init> ()V
|
|
2599
|
+
public fun drainPreallocateViewsQueue ()V
|
|
2512
2600
|
public fun driveCxxAnimations ()V
|
|
2513
2601
|
public fun getInspectorDataForInstance (Lcom/facebook/react/fabric/events/EventEmitterWrapper;)Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
2514
2602
|
public fun register (Lcom/facebook/react/bridge/RuntimeExecutor;Lcom/facebook/react/bridge/RuntimeScheduler;Lcom/facebook/react/fabric/FabricUIManager;Lcom/facebook/react/fabric/events/EventBeatManager;Lcom/facebook/react/fabric/ComponentFactory;Lcom/facebook/react/fabric/ReactNativeConfig;)V
|
|
@@ -2527,16 +2615,6 @@ public final class com/facebook/react/fabric/ComponentFactory {
|
|
|
2527
2615
|
public fun <init> ()V
|
|
2528
2616
|
}
|
|
2529
2617
|
|
|
2530
|
-
public final class com/facebook/react/fabric/CoreComponentsRegistry {
|
|
2531
|
-
public static final field Companion Lcom/facebook/react/fabric/CoreComponentsRegistry$Companion;
|
|
2532
|
-
public synthetic fun <init> (Lcom/facebook/react/fabric/ComponentFactory;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
2533
|
-
public static final fun register (Lcom/facebook/react/fabric/ComponentFactory;)Lcom/facebook/react/fabric/CoreComponentsRegistry;
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
public final class com/facebook/react/fabric/CoreComponentsRegistry$Companion {
|
|
2537
|
-
public final fun register (Lcom/facebook/react/fabric/ComponentFactory;)Lcom/facebook/react/fabric/CoreComponentsRegistry;
|
|
2538
|
-
}
|
|
2539
|
-
|
|
2540
2618
|
public class com/facebook/react/fabric/DevToolsReactPerfLogger : com/facebook/react/bridge/ReactMarker$FabricMarkerListener {
|
|
2541
2619
|
public static final field mStreamingBatchExecutionStats Lcom/facebook/react/fabric/LongStreamingStats;
|
|
2542
2620
|
public static final field mStreamingCommitStats Lcom/facebook/react/fabric/LongStreamingStats;
|
|
@@ -2592,9 +2670,9 @@ public final class com/facebook/react/fabric/EmptyReactNativeConfig : com/facebo
|
|
|
2592
2670
|
public fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
2593
2671
|
}
|
|
2594
2672
|
|
|
2595
|
-
public class com/facebook/react/fabric/FabricComponents {
|
|
2596
|
-
public
|
|
2597
|
-
public static fun getFabricComponentName (Ljava/lang/String;)Ljava/lang/String;
|
|
2673
|
+
public final class com/facebook/react/fabric/FabricComponents {
|
|
2674
|
+
public static final field INSTANCE Lcom/facebook/react/fabric/FabricComponents;
|
|
2675
|
+
public static final fun getFabricComponentName (Ljava/lang/String;)Ljava/lang/String;
|
|
2598
2676
|
}
|
|
2599
2677
|
|
|
2600
2678
|
public final class com/facebook/react/fabric/FabricSoLoader {
|
|
@@ -2603,8 +2681,6 @@ public final class com/facebook/react/fabric/FabricSoLoader {
|
|
|
2603
2681
|
}
|
|
2604
2682
|
|
|
2605
2683
|
public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/UIManager, com/facebook/react/fabric/interop/UIBlockViewResolver, com/facebook/react/uimanager/events/SynchronousEventReceiver {
|
|
2606
|
-
public static final field ENABLE_FABRIC_LOGS Z
|
|
2607
|
-
public static final field ENABLE_FABRIC_PERF_LOGS Z
|
|
2608
2684
|
public static final field IS_DEVELOPMENT_ENVIRONMENT Z
|
|
2609
2685
|
public static final field TAG Ljava/lang/String;
|
|
2610
2686
|
public field mDevToolsReactPerfLogger Lcom/facebook/react/fabric/DevToolsReactPerfLogger;
|
|
@@ -2626,6 +2702,7 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2626
2702
|
public fun getThemeData (I[F)Z
|
|
2627
2703
|
public fun initialize ()V
|
|
2628
2704
|
public fun invalidate ()V
|
|
2705
|
+
public fun markActiveTouchForTag (II)V
|
|
2629
2706
|
public fun onAllAnimationsComplete ()V
|
|
2630
2707
|
public fun onAnimationStarted ()V
|
|
2631
2708
|
public fun onHostDestroy ()V
|
|
@@ -2649,6 +2726,7 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2649
2726
|
public fun startSurface (Lcom/facebook/react/interfaces/fabric/SurfaceHandler;Landroid/content/Context;Landroid/view/View;)V
|
|
2650
2727
|
public fun stopSurface (I)V
|
|
2651
2728
|
public fun stopSurface (Lcom/facebook/react/interfaces/fabric/SurfaceHandler;)V
|
|
2729
|
+
public fun sweepActiveTouchForTag (II)V
|
|
2652
2730
|
public fun synchronouslyUpdateViewOnUIThread (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
2653
2731
|
public fun updateRootLayoutSpecs (IIIII)V
|
|
2654
2732
|
}
|
|
@@ -2718,7 +2796,7 @@ public class com/facebook/react/fabric/events/EventEmitterWrapper {
|
|
|
2718
2796
|
public fun dispatchUnique (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2719
2797
|
}
|
|
2720
2798
|
|
|
2721
|
-
public class com/facebook/react/fabric/events/FabricEventEmitter : com/facebook/react/uimanager/events/RCTModernEventEmitter {
|
|
2799
|
+
public final class com/facebook/react/fabric/events/FabricEventEmitter : com/facebook/react/uimanager/events/RCTModernEventEmitter {
|
|
2722
2800
|
public fun <init> (Lcom/facebook/react/fabric/FabricUIManager;)V
|
|
2723
2801
|
public fun receiveEvent (IILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2724
2802
|
public fun receiveEvent (IILjava/lang/String;ZILcom/facebook/react/bridge/WritableMap;I)V
|
|
@@ -2804,16 +2882,17 @@ public class com/facebook/react/fabric/mounting/SurfaceMountingManager {
|
|
|
2804
2882
|
public fun getViewExists (I)Z
|
|
2805
2883
|
public fun isRootViewAttached ()Z
|
|
2806
2884
|
public fun isStopped ()Z
|
|
2807
|
-
public fun
|
|
2885
|
+
public fun markActiveTouchForTag (I)V
|
|
2886
|
+
public fun preallocateView (Ljava/lang/String;ILcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/uimanager/StateWrapper;Z)V
|
|
2808
2887
|
public fun printSurfaceState ()V
|
|
2809
2888
|
public fun receiveCommand (IILcom/facebook/react/bridge/ReadableArray;)V
|
|
2810
2889
|
public fun receiveCommand (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
2811
|
-
public fun removeDeleteTreeAt (III)V
|
|
2812
2890
|
public fun removeViewAt (III)V
|
|
2813
2891
|
public fun scheduleMountItemOnViewAttach (Lcom/facebook/react/fabric/mounting/mountitems/MountItem;)V
|
|
2814
2892
|
public fun sendAccessibilityEvent (II)V
|
|
2815
2893
|
public fun setJSResponder (IIZ)V
|
|
2816
2894
|
public fun stopSurface ()V
|
|
2895
|
+
public fun sweepActiveTouchForTag (I)V
|
|
2817
2896
|
public fun updateEventEmitter (ILcom/facebook/react/fabric/events/EventEmitterWrapper;)V
|
|
2818
2897
|
public fun updateLayout (IIIIIIII)V
|
|
2819
2898
|
public fun updateOverflowInset (IIIII)V
|
|
@@ -2842,7 +2921,7 @@ public final class com/facebook/react/fabric/mounting/mountitems/MountItemFactor
|
|
|
2842
2921
|
public static final fun createDispatchCommandMountItem (IIILcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem;
|
|
2843
2922
|
public static final fun createDispatchCommandMountItem (IILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem;
|
|
2844
2923
|
public static final fun createIntBufferBatchMountItem (I[I[Ljava/lang/Object;I)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2845
|
-
public static final fun createPreAllocateViewMountItem (IILjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/uimanager/StateWrapper;
|
|
2924
|
+
public static final fun createPreAllocateViewMountItem (IILjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/uimanager/StateWrapper;Z)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2846
2925
|
public static final fun createSendAccessibilityEventMountItem (III)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2847
2926
|
}
|
|
2848
2927
|
|
|
@@ -3122,12 +3201,17 @@ public abstract interface class com/facebook/react/modules/core/DefaultHardwareB
|
|
|
3122
3201
|
}
|
|
3123
3202
|
|
|
3124
3203
|
public class com/facebook/react/modules/core/DeviceEventManagerModule : com/facebook/fbreact/specs/NativeDeviceEventManagerSpec {
|
|
3204
|
+
public static final field Companion Lcom/facebook/react/modules/core/DeviceEventManagerModule$Companion;
|
|
3205
|
+
public static final field NAME Ljava/lang/String;
|
|
3125
3206
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/modules/core/DefaultHardwareBackBtnHandler;)V
|
|
3126
3207
|
public fun emitHardwareBackPressed ()V
|
|
3127
3208
|
public fun emitNewIntentReceived (Landroid/net/Uri;)V
|
|
3128
3209
|
public fun invokeDefaultBackPressHandler ()V
|
|
3129
3210
|
}
|
|
3130
3211
|
|
|
3212
|
+
public final class com/facebook/react/modules/core/DeviceEventManagerModule$Companion {
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3131
3215
|
public abstract interface class com/facebook/react/modules/core/DeviceEventManagerModule$RCTDeviceEventEmitter : com/facebook/react/bridge/JavaScriptModule {
|
|
3132
3216
|
public abstract fun emit (Ljava/lang/String;Ljava/lang/Object;)V
|
|
3133
3217
|
}
|
|
@@ -3189,10 +3273,12 @@ public abstract interface class com/facebook/react/modules/core/RCTNativeAppEven
|
|
|
3189
3273
|
}
|
|
3190
3274
|
|
|
3191
3275
|
public final class com/facebook/react/modules/core/ReactChoreographer {
|
|
3192
|
-
public static
|
|
3193
|
-
public
|
|
3194
|
-
public fun
|
|
3195
|
-
public fun
|
|
3276
|
+
public static final field Companion Lcom/facebook/react/modules/core/ReactChoreographer$Companion;
|
|
3277
|
+
public synthetic fun <init> (Lcom/facebook/react/internal/ChoreographerProvider;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3278
|
+
public static final fun getInstance ()Lcom/facebook/react/modules/core/ReactChoreographer;
|
|
3279
|
+
public static final fun initialize (Lcom/facebook/react/internal/ChoreographerProvider;)V
|
|
3280
|
+
public final fun postFrameCallback (Lcom/facebook/react/modules/core/ReactChoreographer$CallbackType;Landroid/view/Choreographer$FrameCallback;)V
|
|
3281
|
+
public final fun removeFrameCallback (Lcom/facebook/react/modules/core/ReactChoreographer$CallbackType;Landroid/view/Choreographer$FrameCallback;)V
|
|
3196
3282
|
}
|
|
3197
3283
|
|
|
3198
3284
|
public final class com/facebook/react/modules/core/ReactChoreographer$CallbackType : java/lang/Enum {
|
|
@@ -3201,11 +3287,19 @@ public final class com/facebook/react/modules/core/ReactChoreographer$CallbackTy
|
|
|
3201
3287
|
public static final field NATIVE_ANIMATED_MODULE Lcom/facebook/react/modules/core/ReactChoreographer$CallbackType;
|
|
3202
3288
|
public static final field PERF_MARKERS Lcom/facebook/react/modules/core/ReactChoreographer$CallbackType;
|
|
3203
3289
|
public static final field TIMERS_EVENTS Lcom/facebook/react/modules/core/ReactChoreographer$CallbackType;
|
|
3290
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
3204
3291
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/modules/core/ReactChoreographer$CallbackType;
|
|
3205
3292
|
public static fun values ()[Lcom/facebook/react/modules/core/ReactChoreographer$CallbackType;
|
|
3206
3293
|
}
|
|
3207
3294
|
|
|
3295
|
+
public final class com/facebook/react/modules/core/ReactChoreographer$Companion {
|
|
3296
|
+
public final fun getInstance ()Lcom/facebook/react/modules/core/ReactChoreographer;
|
|
3297
|
+
public final fun initialize (Lcom/facebook/react/internal/ChoreographerProvider;)V
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3208
3300
|
public final class com/facebook/react/modules/core/TimingModule : com/facebook/fbreact/specs/NativeTimingSpec, com/facebook/react/modules/core/JavaScriptTimerExecutor {
|
|
3301
|
+
public static final field Companion Lcom/facebook/react/modules/core/TimingModule$Companion;
|
|
3302
|
+
public static final field NAME Ljava/lang/String;
|
|
3209
3303
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
3210
3304
|
public fun callIdleCallbacks (D)V
|
|
3211
3305
|
public fun callTimers (Lcom/facebook/react/bridge/WritableArray;)V
|
|
@@ -3217,6 +3311,9 @@ public final class com/facebook/react/modules/core/TimingModule : com/facebook/f
|
|
|
3217
3311
|
public fun setSendIdleEvents (Z)V
|
|
3218
3312
|
}
|
|
3219
3313
|
|
|
3314
|
+
public final class com/facebook/react/modules/core/TimingModule$Companion {
|
|
3315
|
+
}
|
|
3316
|
+
|
|
3220
3317
|
public final class com/facebook/react/modules/debug/DevSettingsModule : com/facebook/fbreact/specs/NativeDevSettingsSpec {
|
|
3221
3318
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
3222
3319
|
public fun addListener (Ljava/lang/String;)V
|
|
@@ -3341,16 +3438,19 @@ public class com/facebook/react/modules/dialog/DialogModule : com/facebook/fbrea
|
|
|
3341
3438
|
}
|
|
3342
3439
|
|
|
3343
3440
|
public class com/facebook/react/modules/fresco/FrescoModule : com/facebook/react/bridge/ReactContextBaseJavaModule, com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/modules/common/ModuleDataCleaner$Cleanable, com/facebook/react/turbomodule/core/interfaces/TurboModule {
|
|
3344
|
-
public static final field
|
|
3441
|
+
public static final field Companion Lcom/facebook/react/modules/fresco/FrescoModule$Companion;
|
|
3345
3442
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3443
|
+
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;)V
|
|
3346
3444
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;Z)V
|
|
3347
3445
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;ZZ)V
|
|
3446
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;ZZILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3348
3447
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Z)V
|
|
3349
3448
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;ZLcom/facebook/imagepipeline/core/ImagePipelineConfig;)V
|
|
3449
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;ZLcom/facebook/imagepipeline/core/ImagePipelineConfig;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3350
3450
|
public fun clearSensitiveData ()V
|
|
3351
|
-
public static fun getDefaultConfigBuilder (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/imagepipeline/core/ImagePipelineConfig$Builder;
|
|
3451
|
+
public static final fun getDefaultConfigBuilder (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/imagepipeline/core/ImagePipelineConfig$Builder;
|
|
3352
3452
|
public fun getName ()Ljava/lang/String;
|
|
3353
|
-
public static fun hasBeenInitialized ()Z
|
|
3453
|
+
public static final fun hasBeenInitialized ()Z
|
|
3354
3454
|
public fun initialize ()V
|
|
3355
3455
|
public fun invalidate ()V
|
|
3356
3456
|
public fun onHostDestroy ()V
|
|
@@ -3358,13 +3458,22 @@ public class com/facebook/react/modules/fresco/FrescoModule : com/facebook/react
|
|
|
3358
3458
|
public fun onHostResume ()V
|
|
3359
3459
|
}
|
|
3360
3460
|
|
|
3361
|
-
public class com/facebook/react/modules/fresco/
|
|
3362
|
-
|
|
3363
|
-
public
|
|
3364
|
-
|
|
3461
|
+
public final class com/facebook/react/modules/fresco/FrescoModule$Companion {
|
|
3462
|
+
public final fun getDefaultConfigBuilder (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/imagepipeline/core/ImagePipelineConfig$Builder;
|
|
3463
|
+
public final fun hasBeenInitialized ()Z
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest : com/facebook/imagepipeline/request/ImageRequest {
|
|
3467
|
+
public static final field Companion Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion;
|
|
3468
|
+
public synthetic fun <init> (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3469
|
+
public static final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion {
|
|
3473
|
+
public final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3365
3474
|
}
|
|
3366
3475
|
|
|
3367
|
-
public class com/facebook/react/modules/fresco/SystraceRequestListener : com/facebook/imagepipeline/listener/BaseRequestListener {
|
|
3476
|
+
public final class com/facebook/react/modules/fresco/SystraceRequestListener : com/facebook/imagepipeline/listener/BaseRequestListener {
|
|
3368
3477
|
public fun <init> ()V
|
|
3369
3478
|
public fun onProducerEvent (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
|
|
3370
3479
|
public fun onProducerFinishWithCancellation (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V
|
|
@@ -3507,6 +3616,12 @@ public class com/facebook/react/modules/network/OkHttpClientProvider {
|
|
|
3507
3616
|
public static fun setOkHttpClientFactory (Lcom/facebook/react/modules/network/OkHttpClientFactory;)V
|
|
3508
3617
|
}
|
|
3509
3618
|
|
|
3619
|
+
public class com/facebook/react/modules/network/OkHttpCompat {
|
|
3620
|
+
public fun <init> ()V
|
|
3621
|
+
public static fun getCookieJarContainer (Lokhttp3/OkHttpClient;)Lcom/facebook/react/modules/network/CookieJarContainer;
|
|
3622
|
+
public static fun getHeadersFromMap (Ljava/util/Map;)Lokhttp3/Headers;
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3510
3625
|
public abstract interface class com/facebook/react/modules/network/ProgressListener {
|
|
3511
3626
|
public abstract fun onProgress (JJZ)V
|
|
3512
3627
|
}
|
|
@@ -3550,7 +3665,7 @@ public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl
|
|
|
3550
3665
|
public fun getSupportedCipherSuites ()[Ljava/lang/String;
|
|
3551
3666
|
}
|
|
3552
3667
|
|
|
3553
|
-
public class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
|
|
3668
|
+
public final class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
|
|
3554
3669
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3555
3670
|
public fun checkPermission (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3556
3671
|
public fun onRequestPermissionsResult (I[Ljava/lang/String;[I)Z
|
|
@@ -3596,6 +3711,7 @@ public class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
|
3596
3711
|
public static fun getAdbReverseTcpCommand (Landroid/content/Context;)Ljava/lang/String;
|
|
3597
3712
|
public static fun getAdbReverseTcpCommand (Ljava/lang/Integer;)Ljava/lang/String;
|
|
3598
3713
|
public static fun getFriendlyDeviceName ()Ljava/lang/String;
|
|
3714
|
+
public static fun getInspectorHostMetadata (Landroid/content/Context;)Ljava/util/Map;
|
|
3599
3715
|
public static fun getServerHost (Landroid/content/Context;)Ljava/lang/String;
|
|
3600
3716
|
public static fun getServerHost (Ljava/lang/Integer;)Ljava/lang/String;
|
|
3601
3717
|
}
|
|
@@ -3673,11 +3789,13 @@ public abstract class com/facebook/react/packagerconnection/NotificationOnlyHand
|
|
|
3673
3789
|
public final fun onRequest (Ljava/lang/Object;Lcom/facebook/react/packagerconnection/Responder;)V
|
|
3674
3790
|
}
|
|
3675
3791
|
|
|
3676
|
-
public class com/facebook/react/packagerconnection/PackagerConnectionSettings {
|
|
3792
|
+
public final class com/facebook/react/packagerconnection/PackagerConnectionSettings {
|
|
3677
3793
|
public fun <init> (Landroid/content/Context;)V
|
|
3678
|
-
public fun
|
|
3679
|
-
public fun
|
|
3680
|
-
public fun
|
|
3794
|
+
public final fun getAdditionalOptionsForPackager ()Ljava/util/Map;
|
|
3795
|
+
public final fun getDebugServerHost ()Ljava/lang/String;
|
|
3796
|
+
public final fun getPackageName ()Ljava/lang/String;
|
|
3797
|
+
public final fun setAdditionalOptionForPackager (Ljava/lang/String;Ljava/lang/String;)V
|
|
3798
|
+
public final fun setDebugServerHost (Ljava/lang/String;)V
|
|
3681
3799
|
}
|
|
3682
3800
|
|
|
3683
3801
|
public final class com/facebook/react/packagerconnection/ReconnectingWebSocket : okhttp3/WebSocketListener {
|
|
@@ -3795,15 +3913,16 @@ public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/React
|
|
|
3795
3913
|
public fun destroy (Ljava/lang/String;Ljava/lang/Exception;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3796
3914
|
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
3797
3915
|
public fun getDevSupportManager ()Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
3798
|
-
public fun getJsEngineResolutionAlgorithm ()Lcom/facebook/react/JSEngineResolutionAlgorithm;
|
|
3799
3916
|
public fun getLifecycleState ()Lcom/facebook/react/common/LifecycleState;
|
|
3800
3917
|
public fun getMemoryPressureRouter ()Lcom/facebook/react/MemoryPressureRouter;
|
|
3801
3918
|
public fun getReactQueueConfiguration ()Lcom/facebook/react/bridge/queue/ReactQueueConfiguration;
|
|
3919
|
+
public fun invalidate ()V
|
|
3802
3920
|
public fun onActivityResult (Landroid/app/Activity;IILandroid/content/Intent;)V
|
|
3803
3921
|
public fun onBackPressed ()Z
|
|
3804
3922
|
public fun onConfigurationChanged (Landroid/content/Context;)V
|
|
3805
3923
|
public fun onHostDestroy ()V
|
|
3806
3924
|
public fun onHostDestroy (Landroid/app/Activity;)V
|
|
3925
|
+
public fun onHostLeaveHint (Landroid/app/Activity;)V
|
|
3807
3926
|
public fun onHostPause ()V
|
|
3808
3927
|
public fun onHostPause (Landroid/app/Activity;)V
|
|
3809
3928
|
public fun onHostResume (Landroid/app/Activity;)V
|
|
@@ -3813,7 +3932,6 @@ public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/React
|
|
|
3813
3932
|
public fun reload (Ljava/lang/String;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3814
3933
|
public fun removeBeforeDestroyListener (Lkotlin/jvm/functions/Function0;)V
|
|
3815
3934
|
public fun removeReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
3816
|
-
public fun setJsEngineResolutionAlgorithm (Lcom/facebook/react/JSEngineResolutionAlgorithm;)V
|
|
3817
3935
|
public fun start ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
3818
3936
|
}
|
|
3819
3937
|
|
|
@@ -3853,7 +3971,7 @@ public final class com/facebook/react/runtime/ReactSurfaceView : com/facebook/re
|
|
|
3853
3971
|
public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebook/react/runtime/JSRuntimeFactory {
|
|
3854
3972
|
public static final field Companion Lcom/facebook/react/runtime/hermes/HermesInstance$Companion;
|
|
3855
3973
|
public fun <init> ()V
|
|
3856
|
-
public fun <init> (Lcom/facebook/react/fabric/ReactNativeConfig;)V
|
|
3974
|
+
public fun <init> (Lcom/facebook/react/fabric/ReactNativeConfig;Z)V
|
|
3857
3975
|
}
|
|
3858
3976
|
|
|
3859
3977
|
public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
|
|
@@ -3912,7 +4030,7 @@ public final class com/facebook/react/shell/MainPackageConfig {
|
|
|
3912
4030
|
public final fun getFrescoConfig ()Lcom/facebook/imagepipeline/core/ImagePipelineConfig;
|
|
3913
4031
|
}
|
|
3914
4032
|
|
|
3915
|
-
public class com/facebook/react/shell/MainReactPackage : com/facebook/react/
|
|
4033
|
+
public class com/facebook/react/shell/MainReactPackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
3916
4034
|
public fun <init> ()V
|
|
3917
4035
|
public fun <init> (Lcom/facebook/react/shell/MainPackageConfig;)V
|
|
3918
4036
|
public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
|
|
@@ -3973,6 +4091,26 @@ public abstract interface class com/facebook/react/turbomodule/core/interfaces/T
|
|
|
3973
4091
|
public abstract fun getBindingsInstaller ()Lcom/facebook/react/turbomodule/core/interfaces/BindingsInstallerHolder;
|
|
3974
4092
|
}
|
|
3975
4093
|
|
|
4094
|
+
public final class com/facebook/react/uimanager/BackgroundStyleApplicator {
|
|
4095
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/BackgroundStyleApplicator;
|
|
4096
|
+
public static final fun clipToPaddingBox (Landroid/view/View;Landroid/graphics/Canvas;)V
|
|
4097
|
+
public static final fun getBackgroundColor (Landroid/view/View;)Ljava/lang/Integer;
|
|
4098
|
+
public static final fun getBorderColor (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;)Ljava/lang/Integer;
|
|
4099
|
+
public static final fun getBorderRadius (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderRadiusProp;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4100
|
+
public static final fun getBorderStyle (Landroid/view/View;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
4101
|
+
public static final fun getBorderWidth (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;)Ljava/lang/Float;
|
|
4102
|
+
public static final fun reset (Landroid/view/View;)V
|
|
4103
|
+
public static final fun setBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4104
|
+
public static final fun setBackgroundImage (Landroid/view/View;Ljava/util/List;)V
|
|
4105
|
+
public static final fun setBorderColor (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;Ljava/lang/Integer;)V
|
|
4106
|
+
public static final fun setBorderRadius (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderRadiusProp;Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
4107
|
+
public static final fun setBorderStyle (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderStyle;)V
|
|
4108
|
+
public static final fun setBorderWidth (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;Ljava/lang/Float;)V
|
|
4109
|
+
public static final fun setBoxShadow (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4110
|
+
public static final fun setBoxShadow (Landroid/view/View;Ljava/util/List;)V
|
|
4111
|
+
public static final fun setFeedbackUnderlay (Landroid/view/View;Landroid/graphics/drawable/Drawable;)V
|
|
4112
|
+
}
|
|
4113
|
+
|
|
3976
4114
|
public abstract class com/facebook/react/uimanager/BaseViewManager : com/facebook/react/uimanager/ViewManager, android/view/View$OnLayoutChangeListener, com/facebook/react/uimanager/BaseViewManagerInterface {
|
|
3977
4115
|
public fun <init> ()V
|
|
3978
4116
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
@@ -4001,6 +4139,7 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4001
4139
|
public fun setElevation (Landroid/view/View;F)V
|
|
4002
4140
|
public fun setFilter (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4003
4141
|
public fun setImportantForAccessibility (Landroid/view/View;Ljava/lang/String;)V
|
|
4142
|
+
public fun setMixBlendMode (Landroid/view/View;Ljava/lang/String;)V
|
|
4004
4143
|
public fun setMoveShouldSetResponder (Landroid/view/View;Z)V
|
|
4005
4144
|
public fun setMoveShouldSetResponderCapture (Landroid/view/View;Z)V
|
|
4006
4145
|
public fun setNativeId (Landroid/view/View;Ljava/lang/String;)V
|
|
@@ -4071,6 +4210,7 @@ public abstract interface class com/facebook/react/uimanager/BaseViewManagerInte
|
|
|
4071
4210
|
public abstract fun setElevation (Landroid/view/View;F)V
|
|
4072
4211
|
public abstract fun setFilter (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4073
4212
|
public abstract fun setImportantForAccessibility (Landroid/view/View;Ljava/lang/String;)V
|
|
4213
|
+
public abstract fun setMixBlendMode (Landroid/view/View;Ljava/lang/String;)V
|
|
4074
4214
|
public abstract fun setNativeId (Landroid/view/View;Ljava/lang/String;)V
|
|
4075
4215
|
public abstract fun setOpacity (Landroid/view/View;F)V
|
|
4076
4216
|
public abstract fun setRenderToHardwareTexture (Landroid/view/View;Z)V
|
|
@@ -4159,6 +4299,7 @@ public class com/facebook/react/uimanager/JSPointerDispatcher {
|
|
|
4159
4299
|
public class com/facebook/react/uimanager/JSTouchDispatcher {
|
|
4160
4300
|
public fun <init> (Landroid/view/ViewGroup;)V
|
|
4161
4301
|
public fun handleTouchEvent (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
4302
|
+
public fun handleTouchEvent (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;Lcom/facebook/react/bridge/ReactContext;)V
|
|
4162
4303
|
public fun onChildEndedNativeGesture (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
4163
4304
|
public fun onChildStartedNativeGesture (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
4164
4305
|
}
|
|
@@ -4219,9 +4360,15 @@ public final class com/facebook/react/uimanager/LengthPercentage {
|
|
|
4219
4360
|
public static final field Companion Lcom/facebook/react/uimanager/LengthPercentage$Companion;
|
|
4220
4361
|
public fun <init> ()V
|
|
4221
4362
|
public fun <init> (FLcom/facebook/react/uimanager/LengthPercentageType;)V
|
|
4222
|
-
public final fun
|
|
4223
|
-
public final fun
|
|
4363
|
+
public final fun component2 ()Lcom/facebook/react/uimanager/LengthPercentageType;
|
|
4364
|
+
public final fun copy (FLcom/facebook/react/uimanager/LengthPercentageType;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4365
|
+
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/LengthPercentage;FLcom/facebook/react/uimanager/LengthPercentageType;ILjava/lang/Object;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4366
|
+
public fun equals (Ljava/lang/Object;)Z
|
|
4367
|
+
public final fun getType ()Lcom/facebook/react/uimanager/LengthPercentageType;
|
|
4368
|
+
public fun hashCode ()I
|
|
4369
|
+
public final fun resolve (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
4224
4370
|
public static final fun setFromDynamic (Lcom/facebook/react/bridge/Dynamic;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4371
|
+
public fun toString ()Ljava/lang/String;
|
|
4225
4372
|
}
|
|
4226
4373
|
|
|
4227
4374
|
public final class com/facebook/react/uimanager/LengthPercentage$Companion {
|
|
@@ -4314,7 +4461,8 @@ public class com/facebook/react/uimanager/NativeViewHierarchyManager {
|
|
|
4314
4461
|
public fun setJSResponder (IIZ)V
|
|
4315
4462
|
public fun setLayoutAnimationEnabled (Z)V
|
|
4316
4463
|
public fun updateInstanceHandle (IJ)V
|
|
4317
|
-
public fun updateLayout (
|
|
4464
|
+
public fun updateLayout (IIIII)V
|
|
4465
|
+
public fun updateLayout (IIIIIILcom/facebook/yoga/YogaDirection;)V
|
|
4318
4466
|
public fun updateProperties (ILcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
4319
4467
|
public fun updateViewExtraData (ILjava/lang/Object;)V
|
|
4320
4468
|
}
|
|
@@ -4344,7 +4492,11 @@ public class com/facebook/react/uimanager/OnLayoutEvent : com/facebook/react/uim
|
|
|
4344
4492
|
|
|
4345
4493
|
public final class com/facebook/react/uimanager/PixelUtil {
|
|
4346
4494
|
public static final field INSTANCE Lcom/facebook/react/uimanager/PixelUtil;
|
|
4495
|
+
public final fun dpToPx (D)F
|
|
4496
|
+
public final fun dpToPx (F)F
|
|
4347
4497
|
public static final fun getDisplayMetricDensity ()F
|
|
4498
|
+
public final fun pxToDp (D)F
|
|
4499
|
+
public final fun pxToDp (F)F
|
|
4348
4500
|
public static final fun toDIPFromPixel (F)F
|
|
4349
4501
|
public static final fun toPixelFromDIP (D)F
|
|
4350
4502
|
public static final fun toPixelFromDIP (F)F
|
|
@@ -5081,6 +5233,7 @@ public class com/facebook/react/uimanager/UIImplementation {
|
|
|
5081
5233
|
public fun setViewHierarchyUpdateDebugListener (Lcom/facebook/react/uimanager/debug/NotThreadSafeViewHierarchyUpdateDebugListener;)V
|
|
5082
5234
|
public fun setViewLocalData (ILjava/lang/Object;)V
|
|
5083
5235
|
public fun synchronouslyUpdateViewOnUIThread (ILcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5236
|
+
public fun updateInsetsPadding (IIIII)V
|
|
5084
5237
|
public fun updateNodeSize (III)V
|
|
5085
5238
|
public fun updateRootView (III)V
|
|
5086
5239
|
public fun updateRootView (Lcom/facebook/react/uimanager/ReactShadowNode;II)V
|
|
@@ -5142,6 +5295,7 @@ public class com/facebook/react/uimanager/UIManagerModule : com/facebook/react/b
|
|
|
5142
5295
|
public fun invalidate ()V
|
|
5143
5296
|
public fun invalidateNodeLayout (I)V
|
|
5144
5297
|
public fun manageChildren (ILcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
5298
|
+
public fun markActiveTouchForTag (II)V
|
|
5145
5299
|
public fun measure (ILcom/facebook/react/bridge/Callback;)V
|
|
5146
5300
|
public fun measureInWindow (ILcom/facebook/react/bridge/Callback;)V
|
|
5147
5301
|
public fun measureLayout (IILcom/facebook/react/bridge/Callback;Lcom/facebook/react/bridge/Callback;)V
|
|
@@ -5167,7 +5321,9 @@ public class com/facebook/react/uimanager/UIManagerModule : com/facebook/react/b
|
|
|
5167
5321
|
public fun setViewLocalData (ILjava/lang/Object;)V
|
|
5168
5322
|
public fun startSurface (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;II)I
|
|
5169
5323
|
public fun stopSurface (I)V
|
|
5324
|
+
public fun sweepActiveTouchForTag (II)V
|
|
5170
5325
|
public fun synchronouslyUpdateViewOnUIThread (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
5326
|
+
public fun updateInsetsPadding (IIIII)V
|
|
5171
5327
|
public fun updateNodeSize (III)V
|
|
5172
5328
|
public fun updateRootLayoutSpecs (IIIII)V
|
|
5173
5329
|
public fun updateView (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
@@ -5212,6 +5368,7 @@ public class com/facebook/react/uimanager/UIViewOperationQueue {
|
|
|
5212
5368
|
public fun enqueueUpdateExtraData (ILjava/lang/Object;)V
|
|
5213
5369
|
public fun enqueueUpdateInstanceHandle (IJ)V
|
|
5214
5370
|
public fun enqueueUpdateLayout (IIIIII)V
|
|
5371
|
+
public fun enqueueUpdateLayout (IIIIIILcom/facebook/yoga/YogaDirection;)V
|
|
5215
5372
|
public fun enqueueUpdateProperties (ILjava/lang/String;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5216
5373
|
public fun getProfiledBatchPerfCounters ()Ljava/util/Map;
|
|
5217
5374
|
public fun isEmpty ()Z
|
|
@@ -5294,7 +5451,7 @@ public abstract class com/facebook/react/uimanager/ViewManager : com/facebook/re
|
|
|
5294
5451
|
protected fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
5295
5452
|
public fun onDropViewInstance (Landroid/view/View;)V
|
|
5296
5453
|
public fun onSurfaceStopped (I)V
|
|
5297
|
-
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
5454
|
+
protected abstract fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
5298
5455
|
public fun receiveCommand (Landroid/view/View;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
5299
5456
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
5300
5457
|
protected fun recycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
@@ -5367,6 +5524,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5367
5524
|
public static final field ASPECT_RATIO Ljava/lang/String;
|
|
5368
5525
|
public static final field AUTO Ljava/lang/String;
|
|
5369
5526
|
public static final field BACKGROUND_COLOR Ljava/lang/String;
|
|
5527
|
+
public static final field BACKGROUND_IMAGE Ljava/lang/String;
|
|
5370
5528
|
public static final field BORDER_BLOCK_COLOR Ljava/lang/String;
|
|
5371
5529
|
public static final field BORDER_BLOCK_END_COLOR Ljava/lang/String;
|
|
5372
5530
|
public static final field BORDER_BLOCK_START_COLOR Ljava/lang/String;
|
|
@@ -5400,6 +5558,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5400
5558
|
public static final field BORDER_WIDTH Ljava/lang/String;
|
|
5401
5559
|
public static final field BOTTOM Ljava/lang/String;
|
|
5402
5560
|
public static final field BOX_NONE Ljava/lang/String;
|
|
5561
|
+
public static final field BOX_SHADOW Ljava/lang/String;
|
|
5403
5562
|
public static final field COLLAPSABLE Ljava/lang/String;
|
|
5404
5563
|
public static final field COLLAPSABLE_CHILDREN Ljava/lang/String;
|
|
5405
5564
|
public static final field COLOR Ljava/lang/String;
|
|
@@ -5449,6 +5608,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5449
5608
|
public static final field MINIMUM_FONT_SCALE Ljava/lang/String;
|
|
5450
5609
|
public static final field MIN_HEIGHT Ljava/lang/String;
|
|
5451
5610
|
public static final field MIN_WIDTH Ljava/lang/String;
|
|
5611
|
+
public static final field MIX_BLEND_MODE Ljava/lang/String;
|
|
5452
5612
|
public static final field NATIVE_ID Ljava/lang/String;
|
|
5453
5613
|
public static final field NEEDS_OFFSCREEN_ALPHA_COMPOSITING Ljava/lang/String;
|
|
5454
5614
|
public static final field NONE Ljava/lang/String;
|
|
@@ -5539,6 +5699,7 @@ public final class com/facebook/react/uimanager/common/ViewUtil {
|
|
|
5539
5699
|
public static final field NO_SURFACE_ID I
|
|
5540
5700
|
public static final fun getUIManagerType (I)I
|
|
5541
5701
|
public static final fun getUIManagerType (II)I
|
|
5702
|
+
public static final fun getUIManagerType (Landroid/view/View;)I
|
|
5542
5703
|
public static final fun isRootTag (I)Z
|
|
5543
5704
|
}
|
|
5544
5705
|
|
|
@@ -5547,48 +5708,17 @@ public abstract interface class com/facebook/react/uimanager/debug/NotThreadSafe
|
|
|
5547
5708
|
public abstract fun onViewHierarchyUpdateFinished ()V
|
|
5548
5709
|
}
|
|
5549
5710
|
|
|
5550
|
-
public class com/facebook/react/uimanager/drawable/CSSBackgroundDrawable : android/graphics/drawable/Drawable {
|
|
5551
|
-
public fun <init> (Landroid/content/Context;)V
|
|
5552
|
-
public fun draw (Landroid/graphics/Canvas;)V
|
|
5553
|
-
public fun getAlpha ()I
|
|
5554
|
-
public fun getBorderBoxPath ()Landroid/graphics/Path;
|
|
5555
|
-
public fun getBorderBoxRect ()Landroid/graphics/RectF;
|
|
5556
|
-
public fun getBorderColor (I)I
|
|
5557
|
-
public fun getBorderRadius ()Lcom/facebook/react/uimanager/style/BorderRadiusStyle;
|
|
5558
|
-
public fun getBorderWidthOrDefaultTo (FI)F
|
|
5559
|
-
public fun getComputedBorderRadius ()Lcom/facebook/react/uimanager/style/ComputedBorderRadius;
|
|
5560
|
-
public fun getDirectionAwareBorderInsets ()Landroid/graphics/RectF;
|
|
5561
|
-
public fun getFullBorderWidth ()F
|
|
5562
|
-
public fun getLayoutDirection ()I
|
|
5563
|
-
public fun getOpacity ()I
|
|
5564
|
-
public fun getOutline (Landroid/graphics/Outline;)V
|
|
5565
|
-
public fun getPaddingBoxPath ()Landroid/graphics/Path;
|
|
5566
|
-
public fun getPaddingBoxRect ()Landroid/graphics/RectF;
|
|
5567
|
-
public fun hasRoundedBorders ()Z
|
|
5568
|
-
protected fun onBoundsChange (Landroid/graphics/Rect;)V
|
|
5569
|
-
public fun setAlpha (I)V
|
|
5570
|
-
public fun setBorderColor (IFF)V
|
|
5571
|
-
public fun setBorderRadius (Lcom/facebook/react/uimanager/style/BorderRadiusProp;Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5572
|
-
public fun setBorderRadius (Lcom/facebook/react/uimanager/style/BorderRadiusStyle;)V
|
|
5573
|
-
public fun setBorderStyle (Ljava/lang/String;)V
|
|
5574
|
-
public fun setBorderWidth (IF)V
|
|
5575
|
-
public fun setColor (I)V
|
|
5576
|
-
public fun setColorFilter (Landroid/graphics/ColorFilter;)V
|
|
5577
|
-
public fun setLayoutDirectionOverride (I)V
|
|
5578
|
-
public fun setRadius (F)V
|
|
5579
|
-
public fun setRadius (FI)V
|
|
5580
|
-
}
|
|
5581
|
-
|
|
5582
5711
|
public abstract interface class com/facebook/react/uimanager/events/BatchEventDispatchedListener {
|
|
5583
5712
|
public abstract fun onBatchEventDispatched ()V
|
|
5584
5713
|
}
|
|
5585
5714
|
|
|
5586
|
-
public class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/facebook/react/uimanager/events/EventDispatcher {
|
|
5715
|
+
public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/facebook/react/uimanager/events/EventDispatcher {
|
|
5716
|
+
public static final field Companion Lcom/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion;
|
|
5587
5717
|
public fun addBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5588
5718
|
public fun addListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5589
5719
|
public fun dispatchAllEvents ()V
|
|
5590
5720
|
public fun dispatchEvent (Lcom/facebook/react/uimanager/events/Event;)V
|
|
5591
|
-
public static fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5721
|
+
public static final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5592
5722
|
public fun onCatalystInstanceDestroyed ()V
|
|
5593
5723
|
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5594
5724
|
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
@@ -5597,11 +5727,13 @@ public class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/
|
|
|
5597
5727
|
public fun unregisterEventEmitter (I)V
|
|
5598
5728
|
}
|
|
5599
5729
|
|
|
5600
|
-
public class com/facebook/react/uimanager/events/
|
|
5601
|
-
public
|
|
5730
|
+
public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion {
|
|
5731
|
+
public final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5732
|
+
}
|
|
5733
|
+
|
|
5734
|
+
public final class com/facebook/react/uimanager/events/ContentSizeChangeEvent : com/facebook/react/uimanager/events/Event {
|
|
5602
5735
|
public fun <init> (III)V
|
|
5603
5736
|
public fun <init> (IIII)V
|
|
5604
|
-
protected fun getEventData ()Lcom/facebook/react/bridge/WritableMap;
|
|
5605
5737
|
public fun getEventName ()Ljava/lang/String;
|
|
5606
5738
|
}
|
|
5607
5739
|
|
|
@@ -5875,6 +6007,11 @@ public abstract interface class com/facebook/react/uimanager/layoutanimation/Lay
|
|
|
5875
6007
|
public abstract fun onAnimationEnd ()V
|
|
5876
6008
|
}
|
|
5877
6009
|
|
|
6010
|
+
public final class com/facebook/react/uimanager/style/BackgroundImageLayer {
|
|
6011
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6012
|
+
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
6013
|
+
}
|
|
6014
|
+
|
|
5878
6015
|
public final class com/facebook/react/uimanager/style/BorderRadiusProp : java/lang/Enum {
|
|
5879
6016
|
public static final field BORDER_BOTTOM_END_RADIUS Lcom/facebook/react/uimanager/style/BorderRadiusProp;
|
|
5880
6017
|
public static final field BORDER_BOTTOM_LEFT_RADIUS Lcom/facebook/react/uimanager/style/BorderRadiusProp;
|
|
@@ -5949,25 +6086,141 @@ public final class com/facebook/react/uimanager/style/BorderRadiusStyle {
|
|
|
5949
6086
|
public fun toString ()Ljava/lang/String;
|
|
5950
6087
|
}
|
|
5951
6088
|
|
|
6089
|
+
public final class com/facebook/react/uimanager/style/BorderStyle : java/lang/Enum {
|
|
6090
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/BorderStyle$Companion;
|
|
6091
|
+
public static final field DASHED Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6092
|
+
public static final field DOTTED Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6093
|
+
public static final field SOLID Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6094
|
+
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6095
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6096
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6097
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6098
|
+
}
|
|
6099
|
+
|
|
6100
|
+
public final class com/facebook/react/uimanager/style/BorderStyle$Companion {
|
|
6101
|
+
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6102
|
+
}
|
|
6103
|
+
|
|
6104
|
+
public final class com/facebook/react/uimanager/style/BoxShadow {
|
|
6105
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/BoxShadow$Companion;
|
|
6106
|
+
public fun <init> (FFLjava/lang/Integer;Ljava/lang/Float;Ljava/lang/Float;Ljava/lang/Boolean;)V
|
|
6107
|
+
public synthetic fun <init> (FFLjava/lang/Integer;Ljava/lang/Float;Ljava/lang/Float;Ljava/lang/Boolean;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6108
|
+
public final fun component1 ()F
|
|
6109
|
+
public final fun component2 ()F
|
|
6110
|
+
public final fun component3 ()Ljava/lang/Integer;
|
|
6111
|
+
public final fun component4 ()Ljava/lang/Float;
|
|
6112
|
+
public final fun component5 ()Ljava/lang/Float;
|
|
6113
|
+
public final fun component6 ()Ljava/lang/Boolean;
|
|
6114
|
+
public final fun copy (FFLjava/lang/Integer;Ljava/lang/Float;Ljava/lang/Float;Ljava/lang/Boolean;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6115
|
+
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/style/BoxShadow;FFLjava/lang/Integer;Ljava/lang/Float;Ljava/lang/Float;Ljava/lang/Boolean;ILjava/lang/Object;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6116
|
+
public fun equals (Ljava/lang/Object;)Z
|
|
6117
|
+
public final fun getBlurRadius ()Ljava/lang/Float;
|
|
6118
|
+
public final fun getColor ()Ljava/lang/Integer;
|
|
6119
|
+
public final fun getInset ()Ljava/lang/Boolean;
|
|
6120
|
+
public final fun getOffsetX ()F
|
|
6121
|
+
public final fun getOffsetY ()F
|
|
6122
|
+
public final fun getSpreadDistance ()Ljava/lang/Float;
|
|
6123
|
+
public fun hashCode ()I
|
|
6124
|
+
public static final fun parse (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6125
|
+
public fun toString ()Ljava/lang/String;
|
|
6126
|
+
}
|
|
6127
|
+
|
|
6128
|
+
public final class com/facebook/react/uimanager/style/BoxShadow$Companion {
|
|
6129
|
+
public final fun parse (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6130
|
+
}
|
|
6131
|
+
|
|
5952
6132
|
public final class com/facebook/react/uimanager/style/ComputedBorderRadius {
|
|
5953
6133
|
public fun <init> ()V
|
|
5954
|
-
public fun <init> (
|
|
6134
|
+
public fun <init> (Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;)V
|
|
6135
|
+
public final fun component1 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6136
|
+
public final fun component2 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6137
|
+
public final fun component3 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6138
|
+
public final fun component4 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6139
|
+
public final fun copy (Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;)Lcom/facebook/react/uimanager/style/ComputedBorderRadius;
|
|
6140
|
+
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/style/ComputedBorderRadius;Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;Lcom/facebook/react/uimanager/style/CornerRadii;ILjava/lang/Object;)Lcom/facebook/react/uimanager/style/ComputedBorderRadius;
|
|
6141
|
+
public fun equals (Ljava/lang/Object;)Z
|
|
6142
|
+
public final fun get (Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6143
|
+
public final fun getBottomLeft ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6144
|
+
public final fun getBottomRight ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6145
|
+
public final fun getTopLeft ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6146
|
+
public final fun getTopRight ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6147
|
+
public final fun hasRoundedBorders ()Z
|
|
6148
|
+
public fun hashCode ()I
|
|
6149
|
+
public fun toString ()Ljava/lang/String;
|
|
6150
|
+
}
|
|
6151
|
+
|
|
6152
|
+
public final class com/facebook/react/uimanager/style/ComputedBorderRadiusProp : java/lang/Enum {
|
|
6153
|
+
public static final field COMPUTED_BORDER_BOTTOM_LEFT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6154
|
+
public static final field COMPUTED_BORDER_BOTTOM_RIGHT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6155
|
+
public static final field COMPUTED_BORDER_TOP_LEFT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6156
|
+
public static final field COMPUTED_BORDER_TOP_RIGHT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6157
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6158
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6159
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6160
|
+
}
|
|
6161
|
+
|
|
6162
|
+
public final class com/facebook/react/uimanager/style/CornerRadii {
|
|
6163
|
+
public fun <init> ()V
|
|
6164
|
+
public fun <init> (FF)V
|
|
6165
|
+
public synthetic fun <init> (FFILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
5955
6166
|
public final fun component1 ()F
|
|
5956
6167
|
public final fun component2 ()F
|
|
5957
|
-
public final fun
|
|
5958
|
-
public
|
|
5959
|
-
public final fun copy (FFFF)Lcom/facebook/react/uimanager/style/ComputedBorderRadius;
|
|
5960
|
-
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/style/ComputedBorderRadius;FFFFILjava/lang/Object;)Lcom/facebook/react/uimanager/style/ComputedBorderRadius;
|
|
6168
|
+
public final fun copy (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6169
|
+
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/style/CornerRadii;FFILjava/lang/Object;)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
5961
6170
|
public fun equals (Ljava/lang/Object;)Z
|
|
5962
|
-
public final fun
|
|
5963
|
-
public final fun
|
|
5964
|
-
public final fun getTopLeft ()F
|
|
5965
|
-
public final fun getTopRight ()F
|
|
5966
|
-
public final fun hasRoundedBorders ()Z
|
|
6171
|
+
public final fun getHorizontal ()F
|
|
6172
|
+
public final fun getVertical ()F
|
|
5967
6173
|
public fun hashCode ()I
|
|
6174
|
+
public final fun toPixelFromDIP ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
5968
6175
|
public fun toString ()Ljava/lang/String;
|
|
5969
6176
|
}
|
|
5970
6177
|
|
|
6178
|
+
public final class com/facebook/react/uimanager/style/Gradient {
|
|
6179
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6180
|
+
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
6181
|
+
}
|
|
6182
|
+
|
|
6183
|
+
public abstract class com/facebook/react/uimanager/style/LogicalEdge : java/lang/Enum {
|
|
6184
|
+
public static final field ALL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6185
|
+
public static final field BLOCK Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6186
|
+
public static final field BLOCK_END Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6187
|
+
public static final field BLOCK_START Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6188
|
+
public static final field BOTTOM Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6189
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/LogicalEdge$Companion;
|
|
6190
|
+
public static final field END Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6191
|
+
public static final field HORIZONTAL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6192
|
+
public static final field LEFT Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6193
|
+
public static final field RIGHT Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6194
|
+
public static final field START Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6195
|
+
public static final field TOP Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6196
|
+
public static final field VERTICAL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6197
|
+
public synthetic fun <init> (Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6198
|
+
public static final fun fromSpacingType (I)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6199
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6200
|
+
public abstract fun toSpacingType ()I
|
|
6201
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6202
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6203
|
+
}
|
|
6204
|
+
|
|
6205
|
+
public final class com/facebook/react/uimanager/style/LogicalEdge$Companion {
|
|
6206
|
+
public final fun fromSpacingType (I)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6207
|
+
}
|
|
6208
|
+
|
|
6209
|
+
public final class com/facebook/react/uimanager/style/Overflow : java/lang/Enum {
|
|
6210
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/Overflow$Companion;
|
|
6211
|
+
public static final field HIDDEN Lcom/facebook/react/uimanager/style/Overflow;
|
|
6212
|
+
public static final field SCROLL Lcom/facebook/react/uimanager/style/Overflow;
|
|
6213
|
+
public static final field VISIBLE Lcom/facebook/react/uimanager/style/Overflow;
|
|
6214
|
+
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6215
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6216
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6217
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/Overflow;
|
|
6218
|
+
}
|
|
6219
|
+
|
|
6220
|
+
public final class com/facebook/react/uimanager/style/Overflow$Companion {
|
|
6221
|
+
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6222
|
+
}
|
|
6223
|
+
|
|
5971
6224
|
public class com/facebook/react/uimanager/util/ReactFindViewUtil {
|
|
5972
6225
|
public fun <init> ()V
|
|
5973
6226
|
public static fun addViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
@@ -6203,20 +6456,27 @@ public final class com/facebook/react/views/debuggingoverlay/TraceUpdate {
|
|
|
6203
6456
|
public final fun getRectangle ()Landroid/graphics/RectF;
|
|
6204
6457
|
}
|
|
6205
6458
|
|
|
6206
|
-
public class com/facebook/react/views/drawer/
|
|
6459
|
+
public final class com/facebook/react/views/drawer/ReactDrawerLayout : androidx/drawerlayout/widget/DrawerLayout {
|
|
6460
|
+
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
6461
|
+
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6462
|
+
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6463
|
+
}
|
|
6464
|
+
|
|
6465
|
+
public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerInterface {
|
|
6207
6466
|
public static final field CLOSE_DRAWER I
|
|
6467
|
+
public static final field COMMAND_CLOSE_DRAWER Ljava/lang/String;
|
|
6468
|
+
public static final field COMMAND_OPEN_DRAWER Ljava/lang/String;
|
|
6469
|
+
public static final field Companion Lcom/facebook/react/views/drawer/ReactDrawerLayoutManager$Companion;
|
|
6208
6470
|
public static final field OPEN_DRAWER I
|
|
6209
6471
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6210
6472
|
public fun <init> ()V
|
|
6211
|
-
|
|
6212
|
-
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/drawer/ReactDrawerLayout;)V
|
|
6473
|
+
public synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
6213
6474
|
public synthetic fun addView (Landroid/view/View;Landroid/view/View;I)V
|
|
6214
6475
|
public synthetic fun addView (Landroid/view/ViewGroup;Landroid/view/View;I)V
|
|
6215
6476
|
public fun addView (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Landroid/view/View;I)V
|
|
6216
6477
|
public synthetic fun closeDrawer (Landroid/view/View;)V
|
|
6217
6478
|
public fun closeDrawer (Lcom/facebook/react/views/drawer/ReactDrawerLayout;)V
|
|
6218
|
-
|
|
6219
|
-
protected fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/drawer/ReactDrawerLayout;
|
|
6479
|
+
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6220
6480
|
public fun getCommandsMap ()Ljava/util/Map;
|
|
6221
6481
|
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6222
6482
|
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
@@ -6234,10 +6494,10 @@ public class com/facebook/react/views/drawer/ReactDrawerLayoutManager : com/face
|
|
|
6234
6494
|
public synthetic fun setDrawerLockMode (Landroid/view/View;Ljava/lang/String;)V
|
|
6235
6495
|
public fun setDrawerLockMode (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/String;)V
|
|
6236
6496
|
public synthetic fun setDrawerPosition (Landroid/view/View;Ljava/lang/String;)V
|
|
6237
|
-
public fun setDrawerPosition (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Lcom/facebook/react/bridge/Dynamic;)V
|
|
6497
|
+
public final fun setDrawerPosition (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Lcom/facebook/react/bridge/Dynamic;)V
|
|
6238
6498
|
public fun setDrawerPosition (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/String;)V
|
|
6239
6499
|
public synthetic fun setDrawerWidth (Landroid/view/View;Ljava/lang/Float;)V
|
|
6240
|
-
public fun setDrawerWidth (Lcom/facebook/react/views/drawer/ReactDrawerLayout;F)V
|
|
6500
|
+
public final fun setDrawerWidth (Lcom/facebook/react/views/drawer/ReactDrawerLayout;F)V
|
|
6241
6501
|
public fun setDrawerWidth (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/Float;)V
|
|
6242
6502
|
public synthetic fun setElevation (Landroid/view/View;F)V
|
|
6243
6503
|
public fun setElevation (Lcom/facebook/react/views/drawer/ReactDrawerLayout;F)V
|
|
@@ -6254,12 +6514,7 @@ public class com/facebook/react/views/drawer/ReactDrawerLayoutManager$$PropsSett
|
|
|
6254
6514
|
public fun setProperty (Lcom/facebook/react/views/drawer/ReactDrawerLayoutManager;Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6255
6515
|
}
|
|
6256
6516
|
|
|
6257
|
-
public class com/facebook/react/views/drawer/ReactDrawerLayoutManager$
|
|
6258
|
-
public fun <init> (Landroidx/drawerlayout/widget/DrawerLayout;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6259
|
-
public fun onDrawerClosed (Landroid/view/View;)V
|
|
6260
|
-
public fun onDrawerOpened (Landroid/view/View;)V
|
|
6261
|
-
public fun onDrawerSlide (Landroid/view/View;F)V
|
|
6262
|
-
public fun onDrawerStateChanged (I)V
|
|
6517
|
+
public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager$Companion {
|
|
6263
6518
|
}
|
|
6264
6519
|
|
|
6265
6520
|
public final class com/facebook/react/views/drawer/events/DrawerClosedEvent : com/facebook/react/uimanager/events/Event {
|
|
@@ -6366,51 +6621,60 @@ public final class com/facebook/react/views/image/ImageResizeMode {
|
|
|
6366
6621
|
public static final fun toTileMode (Ljava/lang/String;)Landroid/graphics/Shader$TileMode;
|
|
6367
6622
|
}
|
|
6368
6623
|
|
|
6369
|
-
public class com/facebook/react/views/image/MultiPostprocessor : com/facebook/imagepipeline/request/Postprocessor {
|
|
6370
|
-
public static
|
|
6624
|
+
public final class com/facebook/react/views/image/MultiPostprocessor : com/facebook/imagepipeline/request/Postprocessor {
|
|
6625
|
+
public static final field Companion Lcom/facebook/react/views/image/MultiPostprocessor$Companion;
|
|
6626
|
+
public synthetic fun <init> (Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6627
|
+
public static final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
|
|
6371
6628
|
public fun getName ()Ljava/lang/String;
|
|
6372
6629
|
public fun getPostprocessorCacheKey ()Lcom/facebook/cache/common/CacheKey;
|
|
6373
6630
|
public fun process (Landroid/graphics/Bitmap;Lcom/facebook/imagepipeline/bitmaps/PlatformBitmapFactory;)Lcom/facebook/common/references/CloseableReference;
|
|
6374
6631
|
}
|
|
6375
6632
|
|
|
6633
|
+
public final class com/facebook/react/views/image/MultiPostprocessor$Companion {
|
|
6634
|
+
public final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
|
|
6635
|
+
}
|
|
6636
|
+
|
|
6376
6637
|
public abstract interface class com/facebook/react/views/image/ReactCallerContextFactory {
|
|
6377
6638
|
public abstract fun getOrCreateCallerContext (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
|
|
6378
6639
|
}
|
|
6379
6640
|
|
|
6380
|
-
public class com/facebook/react/views/image/ReactImageManager : com/facebook/react/uimanager/SimpleViewManager {
|
|
6641
|
+
public final class com/facebook/react/views/image/ReactImageManager : com/facebook/react/uimanager/SimpleViewManager {
|
|
6642
|
+
public static final field Companion Lcom/facebook/react/views/image/ReactImageManager$Companion;
|
|
6381
6643
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6382
6644
|
public fun <init> ()V
|
|
6645
|
+
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;)V
|
|
6646
|
+
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/GlobalImageLoadListener;)V
|
|
6383
6647
|
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/GlobalImageLoadListener;Lcom/facebook/react/views/image/ReactCallerContextFactory;)V
|
|
6648
|
+
public synthetic fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/GlobalImageLoadListener;Lcom/facebook/react/views/image/ReactCallerContextFactory;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6384
6649
|
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/GlobalImageLoadListener;Ljava/lang/Object;)V
|
|
6385
|
-
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/ReactCallerContextFactory;)V
|
|
6386
6650
|
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Ljava/lang/Object;)V
|
|
6387
6651
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6388
6652
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/image/ReactImageView;
|
|
6389
|
-
public fun getCallerContext ()Ljava/lang/Object;
|
|
6390
|
-
public fun getDraweeControllerBuilder ()Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;
|
|
6391
6653
|
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
6392
6654
|
public fun getName ()Ljava/lang/String;
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
public fun
|
|
6396
|
-
public fun
|
|
6397
|
-
public fun
|
|
6398
|
-
public fun
|
|
6399
|
-
public fun
|
|
6400
|
-
public fun
|
|
6401
|
-
public fun
|
|
6402
|
-
public fun
|
|
6403
|
-
public fun
|
|
6404
|
-
public fun
|
|
6405
|
-
public fun
|
|
6406
|
-
public fun
|
|
6407
|
-
public fun
|
|
6408
|
-
public fun
|
|
6409
|
-
public fun
|
|
6410
|
-
public fun
|
|
6411
|
-
public fun
|
|
6412
|
-
public fun
|
|
6413
|
-
public fun
|
|
6655
|
+
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6656
|
+
public final fun setAccessible (Lcom/facebook/react/views/image/ReactImageView;Z)V
|
|
6657
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
6658
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/image/ReactImageView;I)V
|
|
6659
|
+
public final fun setBlurRadius (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6660
|
+
public final fun setBorderColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6661
|
+
public final fun setBorderRadius (Lcom/facebook/react/views/image/ReactImageView;IF)V
|
|
6662
|
+
public final fun setBorderWidth (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6663
|
+
public final fun setBoxShadow (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6664
|
+
public final fun setDefaultSource (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6665
|
+
public final fun setFadeDuration (Lcom/facebook/react/views/image/ReactImageView;I)V
|
|
6666
|
+
public final fun setHeaders (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6667
|
+
public final fun setInternal_AnalyticsTag (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6668
|
+
public final fun setLoadHandlersRegistered (Lcom/facebook/react/views/image/ReactImageView;Z)V
|
|
6669
|
+
public final fun setLoadingIndicatorSource (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6670
|
+
public final fun setOverlayColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6671
|
+
public final fun setProgressiveRenderingEnabled (Lcom/facebook/react/views/image/ReactImageView;Z)V
|
|
6672
|
+
public final fun setResizeMethod (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6673
|
+
public final fun setResizeMode (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6674
|
+
public final fun setResizeMultiplier (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6675
|
+
public final fun setSource (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6676
|
+
public final fun setSrc (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6677
|
+
public final fun setTintColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6414
6678
|
}
|
|
6415
6679
|
|
|
6416
6680
|
public class com/facebook/react/views/image/ReactImageManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
@@ -6420,33 +6684,38 @@ public class com/facebook/react/views/image/ReactImageManager$$PropsSetter : com
|
|
|
6420
6684
|
public fun setProperty (Lcom/facebook/react/views/image/ReactImageManager;Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6421
6685
|
}
|
|
6422
6686
|
|
|
6423
|
-
public class com/facebook/react/views/image/
|
|
6687
|
+
public final class com/facebook/react/views/image/ReactImageManager$Companion {
|
|
6688
|
+
}
|
|
6689
|
+
|
|
6690
|
+
public final class com/facebook/react/views/image/ReactImageView : com/facebook/drawee/view/GenericDraweeView {
|
|
6691
|
+
public static final field Companion Lcom/facebook/react/views/image/ReactImageView$Companion;
|
|
6424
6692
|
public static final field REMOTE_IMAGE_FADE_DURATION_MS I
|
|
6425
6693
|
public fun <init> (Landroid/content/Context;Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/GlobalImageLoadListener;Ljava/lang/Object;)V
|
|
6426
|
-
public fun getImageSource ()Lcom/facebook/react/views/imagehelper/ImageSource;
|
|
6427
6694
|
public fun hasOverlappingRendering ()Z
|
|
6428
|
-
public fun maybeUpdateView ()V
|
|
6429
|
-
|
|
6695
|
+
public final fun maybeUpdateView ()V
|
|
6696
|
+
public fun onDraw (Landroid/graphics/Canvas;)V
|
|
6430
6697
|
public fun setBackgroundColor (I)V
|
|
6431
|
-
public fun setBlurRadius (F)V
|
|
6432
|
-
public fun setBorderColor (I)V
|
|
6433
|
-
public fun setBorderRadius (F)V
|
|
6434
|
-
public fun setBorderRadius (FI)V
|
|
6435
|
-
public fun setBorderWidth (F)V
|
|
6436
|
-
public fun
|
|
6437
|
-
public fun
|
|
6438
|
-
public fun
|
|
6439
|
-
public fun
|
|
6440
|
-
public fun
|
|
6441
|
-
public fun
|
|
6442
|
-
public fun
|
|
6443
|
-
public fun
|
|
6444
|
-
public fun
|
|
6445
|
-
public fun
|
|
6446
|
-
public fun
|
|
6447
|
-
public fun
|
|
6448
|
-
public fun
|
|
6449
|
-
|
|
6698
|
+
public final fun setBlurRadius (F)V
|
|
6699
|
+
public final fun setBorderColor (I)V
|
|
6700
|
+
public final fun setBorderRadius (F)V
|
|
6701
|
+
public final fun setBorderRadius (FI)V
|
|
6702
|
+
public final fun setBorderWidth (F)V
|
|
6703
|
+
public final fun setDefaultSource (Ljava/lang/String;)V
|
|
6704
|
+
public final fun setFadeDuration (I)V
|
|
6705
|
+
public final fun setHeaders (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6706
|
+
public final fun setLoadingIndicatorSource (Ljava/lang/String;)V
|
|
6707
|
+
public final fun setOverlayColor (I)V
|
|
6708
|
+
public final fun setProgressiveRenderingEnabled (Z)V
|
|
6709
|
+
public final fun setResizeMethod (Lcom/facebook/react/views/image/ImageResizeMethod;)V
|
|
6710
|
+
public final fun setResizeMultiplier (F)V
|
|
6711
|
+
public final fun setScaleType (Lcom/facebook/drawee/drawable/ScalingUtils$ScaleType;)V
|
|
6712
|
+
public final fun setShouldNotifyLoadEvents (Z)V
|
|
6713
|
+
public final fun setSource (Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6714
|
+
public final fun setTileMode (Landroid/graphics/Shader$TileMode;)V
|
|
6715
|
+
public final fun updateCallerContext (Ljava/lang/Object;)V
|
|
6716
|
+
}
|
|
6717
|
+
|
|
6718
|
+
public final class com/facebook/react/views/image/ReactImageView$Companion {
|
|
6450
6719
|
}
|
|
6451
6720
|
|
|
6452
6721
|
public final class com/facebook/react/views/imagehelper/ImageSource {
|
|
@@ -6459,9 +6728,9 @@ public final class com/facebook/react/views/imagehelper/ImageSource {
|
|
|
6459
6728
|
public final fun getSize ()D
|
|
6460
6729
|
public final fun getSource ()Ljava/lang/String;
|
|
6461
6730
|
public static final fun getTransparentBitmapImageSource (Landroid/content/Context;)Lcom/facebook/react/views/imagehelper/ImageSource;
|
|
6462
|
-
public
|
|
6731
|
+
public fun getUri ()Landroid/net/Uri;
|
|
6463
6732
|
public fun hashCode ()I
|
|
6464
|
-
public
|
|
6733
|
+
public fun isResource ()Z
|
|
6465
6734
|
}
|
|
6466
6735
|
|
|
6467
6736
|
public final class com/facebook/react/views/imagehelper/ImageSource$Companion {
|
|
@@ -6487,6 +6756,7 @@ public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper
|
|
|
6487
6756
|
public final fun getResourceDrawable (Landroid/content/Context;Ljava/lang/String;)Landroid/graphics/drawable/Drawable;
|
|
6488
6757
|
public final fun getResourceDrawableId (Landroid/content/Context;Ljava/lang/String;)I
|
|
6489
6758
|
public final fun getResourceDrawableUri (Landroid/content/Context;Ljava/lang/String;)Landroid/net/Uri;
|
|
6759
|
+
public final fun isVectorDrawable (Landroid/content/Context;Ljava/lang/String;)Z
|
|
6490
6760
|
}
|
|
6491
6761
|
|
|
6492
6762
|
public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper$Companion {
|
|
@@ -6506,13 +6776,10 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6506
6776
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6507
6777
|
public fun <init> ()V
|
|
6508
6778
|
public synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
6509
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/LayoutShadowNode;
|
|
6510
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6511
6779
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6512
6780
|
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6513
6781
|
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
6514
6782
|
public fun getName ()Ljava/lang/String;
|
|
6515
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6516
6783
|
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6517
6784
|
public synthetic fun onDropViewInstance (Landroid/view/View;)V
|
|
6518
6785
|
public fun onDropViewInstance (Lcom/facebook/react/views/modal/ReactModalHostView;)V
|
|
@@ -6573,18 +6840,16 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6573
6840
|
public final fun setAnimationType (Ljava/lang/String;)V
|
|
6574
6841
|
public final fun setEventDispatcher (Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6575
6842
|
public final fun setHardwareAccelerated (Z)V
|
|
6843
|
+
public fun setId (I)V
|
|
6576
6844
|
public final fun setOnRequestCloseListener (Lcom/facebook/react/views/modal/ReactModalHostView$OnRequestCloseListener;)V
|
|
6577
6845
|
public final fun setOnShowListener (Landroid/content/DialogInterface$OnShowListener;)V
|
|
6578
6846
|
public final fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
6579
6847
|
public final fun setStatusBarTranslucent (Z)V
|
|
6580
6848
|
public final fun setTransparent (Z)V
|
|
6581
6849
|
public final fun showOrUpdate ()V
|
|
6582
|
-
public final fun updateState (II)V
|
|
6583
6850
|
}
|
|
6584
6851
|
|
|
6585
6852
|
public final class com/facebook/react/views/modal/ReactModalHostView$DialogRootViewGroup : com/facebook/react/views/view/ReactViewGroup, com/facebook/react/uimanager/RootView {
|
|
6586
|
-
public fun <init> (Lcom/facebook/react/views/modal/ReactModalHostView;Landroid/content/Context;)V
|
|
6587
|
-
public fun addView (Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
|
|
6588
6853
|
public fun handleException (Ljava/lang/Throwable;)V
|
|
6589
6854
|
public fun onChildEndedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
6590
6855
|
public fun onChildStartedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
@@ -6600,6 +6865,11 @@ public abstract interface class com/facebook/react/views/modal/ReactModalHostVie
|
|
|
6600
6865
|
public abstract fun onRequestClose (Landroid/content/DialogInterface;)V
|
|
6601
6866
|
}
|
|
6602
6867
|
|
|
6868
|
+
public final class com/facebook/react/views/progressbar/ProgressBarContainerView : android/widget/FrameLayout {
|
|
6869
|
+
public static final field MAX_PROGRESS I
|
|
6870
|
+
public fun <init> (Landroid/content/Context;)V
|
|
6871
|
+
}
|
|
6872
|
+
|
|
6603
6873
|
public final class com/facebook/react/views/progressbar/ProgressBarShadowNode : com/facebook/react/uimanager/LayoutShadowNode, com/facebook/yoga/YogaMeasureFunction {
|
|
6604
6874
|
public fun <init> ()V
|
|
6605
6875
|
public final fun getStyle ()Ljava/lang/String;
|
|
@@ -6614,20 +6884,17 @@ public class com/facebook/react/views/progressbar/ProgressBarShadowNode$$PropsSe
|
|
|
6614
6884
|
public fun setProperty (Lcom/facebook/react/views/progressbar/ProgressBarShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6615
6885
|
}
|
|
6616
6886
|
|
|
6617
|
-
public class com/facebook/react/views/progressbar/ReactProgressBarViewManager : com/facebook/react/uimanager/BaseViewManager, com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface {
|
|
6887
|
+
public final class com/facebook/react/views/progressbar/ReactProgressBarViewManager : com/facebook/react/uimanager/BaseViewManager, com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface {
|
|
6888
|
+
public static final field Companion Lcom/facebook/react/views/progressbar/ReactProgressBarViewManager$Companion;
|
|
6618
6889
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6619
6890
|
public fun <init> ()V
|
|
6620
|
-
public static fun createProgressBar (Landroid/content/Context;I)Landroid/widget/ProgressBar;
|
|
6621
6891
|
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6622
6892
|
public fun createShadowNodeInstance ()Lcom/facebook/react/views/progressbar/ProgressBarShadowNode;
|
|
6623
|
-
|
|
6624
|
-
protected fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/progressbar/ProgressBarContainerView;
|
|
6625
|
-
protected fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6893
|
+
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6626
6894
|
public fun getName ()Ljava/lang/String;
|
|
6627
6895
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6628
6896
|
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
|
|
6629
|
-
|
|
6630
|
-
protected fun onAfterUpdateTransaction (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;)V
|
|
6897
|
+
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6631
6898
|
public synthetic fun setAnimating (Landroid/view/View;Z)V
|
|
6632
6899
|
public fun setAnimating (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Z)V
|
|
6633
6900
|
public synthetic fun setColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
@@ -6653,17 +6920,56 @@ public class com/facebook/react/views/progressbar/ReactProgressBarViewManager$$P
|
|
|
6653
6920
|
public fun setProperty (Lcom/facebook/react/views/progressbar/ReactProgressBarViewManager;Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6654
6921
|
}
|
|
6655
6922
|
|
|
6923
|
+
public final class com/facebook/react/views/progressbar/ReactProgressBarViewManager$Companion {
|
|
6924
|
+
public final fun createProgressBar (Landroid/content/Context;I)Landroid/widget/ProgressBar;
|
|
6925
|
+
}
|
|
6926
|
+
|
|
6927
|
+
public final class com/facebook/react/views/safeareaview/ReactSafeAreaView : android/view/ViewGroup {
|
|
6928
|
+
public fun <init> (Lcom/facebook/react/uimanager/ThemedReactContext;)V
|
|
6929
|
+
public final fun getReactContext ()Lcom/facebook/react/uimanager/ThemedReactContext;
|
|
6930
|
+
}
|
|
6931
|
+
|
|
6932
|
+
public final class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/SafeAreaViewManagerInterface {
|
|
6933
|
+
public static final field Companion Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewManager$Companion;
|
|
6934
|
+
public static final field REACT_CLASS Ljava/lang/String;
|
|
6935
|
+
public fun <init> ()V
|
|
6936
|
+
public fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/LayoutShadowNode;
|
|
6937
|
+
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6938
|
+
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6939
|
+
public fun getName ()Ljava/lang/String;
|
|
6940
|
+
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6941
|
+
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6942
|
+
public fun updateState (Lcom/facebook/react/views/safeareaview/ReactSafeAreaView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6943
|
+
}
|
|
6944
|
+
|
|
6945
|
+
public class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6946
|
+
public fun <init> ()V
|
|
6947
|
+
public fun getProperties (Ljava/util/Map;)V
|
|
6948
|
+
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6949
|
+
public fun setProperty (Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewManager;Lcom/facebook/react/views/safeareaview/ReactSafeAreaView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6950
|
+
}
|
|
6951
|
+
|
|
6952
|
+
public final class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager$Companion {
|
|
6953
|
+
}
|
|
6954
|
+
|
|
6955
|
+
public class com/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
6956
|
+
public fun <init> ()V
|
|
6957
|
+
public fun getProperties (Ljava/util/Map;)V
|
|
6958
|
+
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6959
|
+
public fun setProperty (Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6960
|
+
}
|
|
6961
|
+
|
|
6656
6962
|
public abstract interface class com/facebook/react/views/scroll/FpsListener {
|
|
6657
6963
|
public abstract fun disable (Ljava/lang/String;)V
|
|
6658
6964
|
public abstract fun enable (Ljava/lang/String;)V
|
|
6659
6965
|
public abstract fun isEnabled ()Z
|
|
6660
6966
|
}
|
|
6661
6967
|
|
|
6662
|
-
public class com/facebook/react/views/scroll/OnScrollDispatchHelper {
|
|
6968
|
+
public final class com/facebook/react/views/scroll/OnScrollDispatchHelper {
|
|
6663
6969
|
public fun <init> ()V
|
|
6664
|
-
public fun getXFlingVelocity ()F
|
|
6665
|
-
public fun getYFlingVelocity ()F
|
|
6666
|
-
public fun onScrollChanged (II)Z
|
|
6970
|
+
public final fun getXFlingVelocity ()F
|
|
6971
|
+
public final fun getYFlingVelocity ()F
|
|
6972
|
+
public final fun onScrollChanged (II)Z
|
|
6667
6973
|
}
|
|
6668
6974
|
|
|
6669
6975
|
public class com/facebook/react/views/scroll/ReactHorizontalScrollContainerView : com/facebook/react/views/view/ReactViewGroup {
|
|
@@ -6738,7 +7044,7 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
6738
7044
|
public fun scrollTo (II)V
|
|
6739
7045
|
public fun scrollToPreservingMomentum (II)V
|
|
6740
7046
|
public fun setBackgroundColor (I)V
|
|
6741
|
-
public fun setBorderColor (
|
|
7047
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
6742
7048
|
public fun setBorderRadius (F)V
|
|
6743
7049
|
public fun setBorderRadius (FI)V
|
|
6744
7050
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
@@ -6785,11 +7091,14 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
6785
7091
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
6786
7092
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
6787
7093
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7094
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7095
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
6788
7096
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;ILjava/lang/Integer;)V
|
|
6789
7097
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
6790
7098
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6791
7099
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
6792
7100
|
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
7101
|
+
public fun setBoxShadow (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6793
7102
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6794
7103
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
6795
7104
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
@@ -6867,7 +7176,7 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
6867
7176
|
public fun scrollTo (II)V
|
|
6868
7177
|
public fun scrollToPreservingMomentum (II)V
|
|
6869
7178
|
public fun setBackgroundColor (I)V
|
|
6870
|
-
public fun setBorderColor (
|
|
7179
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
6871
7180
|
public fun setBorderRadius (F)V
|
|
6872
7181
|
public fun setBorderRadius (FI)V
|
|
6873
7182
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
@@ -7025,11 +7334,14 @@ public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebo
|
|
|
7025
7334
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
7026
7335
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7027
7336
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7337
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7338
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7028
7339
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactScrollView;ILjava/lang/Integer;)V
|
|
7029
7340
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7030
7341
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
7031
7342
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7032
7343
|
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7344
|
+
public fun setBoxShadow (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7033
7345
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7034
7346
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
7035
7347
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
@@ -7099,6 +7411,7 @@ public final class com/facebook/react/views/scroll/ScrollEventType$Companion {
|
|
|
7099
7411
|
|
|
7100
7412
|
public class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout : androidx/swiperefreshlayout/widget/SwipeRefreshLayout {
|
|
7101
7413
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
7414
|
+
public fun canChildScrollUp ()Z
|
|
7102
7415
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
7103
7416
|
public fun onLayout (ZIIII)V
|
|
7104
7417
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
@@ -7291,6 +7604,7 @@ public class com/facebook/react/views/text/ReactRawTextManager : com/facebook/re
|
|
|
7291
7604
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/text/ReactTextView;
|
|
7292
7605
|
public fun getName ()Ljava/lang/String;
|
|
7293
7606
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7607
|
+
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
7294
7608
|
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7295
7609
|
}
|
|
7296
7610
|
|
|
@@ -7321,10 +7635,12 @@ public abstract class com/facebook/react/views/text/ReactTextAnchorViewManager :
|
|
|
7321
7635
|
public fun setAccessible (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7322
7636
|
public fun setAdjustFontSizeToFit (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7323
7637
|
public fun setAndroidHyphenationFrequency (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7638
|
+
public fun setBackgroundColor (Landroid/view/View;I)V
|
|
7324
7639
|
public fun setBorderColor (Lcom/facebook/react/views/text/ReactTextView;ILjava/lang/Integer;)V
|
|
7325
7640
|
public fun setBorderRadius (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7326
7641
|
public fun setBorderStyle (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7327
7642
|
public fun setBorderWidth (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7643
|
+
public fun setBoxShadow (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7328
7644
|
public fun setDataDetectorType (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7329
7645
|
public fun setDisabled (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7330
7646
|
public fun setEllipsizeMode (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
@@ -7385,11 +7701,12 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
|
|
|
7385
7701
|
protected fun onDraw (Landroid/graphics/Canvas;)V
|
|
7386
7702
|
public fun onFinishTemporaryDetach ()V
|
|
7387
7703
|
protected fun onLayout (ZIIII)V
|
|
7704
|
+
protected fun onMeasure (II)V
|
|
7388
7705
|
public fun onStartTemporaryDetach ()V
|
|
7389
7706
|
public fun reactTagForTouch (FF)I
|
|
7390
7707
|
public fun setAdjustFontSizeToFit (Z)V
|
|
7391
7708
|
public fun setBackgroundColor (I)V
|
|
7392
|
-
public fun setBorderColor (
|
|
7709
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
7393
7710
|
public fun setBorderRadius (F)V
|
|
7394
7711
|
public fun setBorderRadius (FI)V
|
|
7395
7712
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
@@ -7538,6 +7855,7 @@ public class com/facebook/react/views/text/TextAttributeProps {
|
|
|
7538
7855
|
protected field mLineHeight F
|
|
7539
7856
|
protected field mLineHeightInput F
|
|
7540
7857
|
protected field mNumberOfLines I
|
|
7858
|
+
protected field mOpacity F
|
|
7541
7859
|
protected field mRole Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
7542
7860
|
protected field mTextAlign I
|
|
7543
7861
|
protected field mTextShadowColor I
|
|
@@ -7561,6 +7879,7 @@ public class com/facebook/react/views/text/TextAttributeProps {
|
|
|
7561
7879
|
public static fun getJustificationMode (Lcom/facebook/react/uimanager/ReactStylesDiffMap;I)I
|
|
7562
7880
|
public static fun getLayoutDirection (Ljava/lang/String;)I
|
|
7563
7881
|
public fun getLetterSpacing ()F
|
|
7882
|
+
public fun getOpacity ()F
|
|
7564
7883
|
public fun getRole ()Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
7565
7884
|
public static fun getTextAlignment (Lcom/facebook/react/uimanager/ReactStylesDiffMap;ZI)I
|
|
7566
7885
|
public static fun getTextBreakStrategy (Ljava/lang/String;)I
|
|
@@ -7621,6 +7940,7 @@ public class com/facebook/react/views/text/TextLayoutManager {
|
|
|
7621
7940
|
public static final field PA_KEY_TEXT_BREAK_STRATEGY S
|
|
7622
7941
|
public fun <init> ()V
|
|
7623
7942
|
public static fun adjustSpannableFontToFit (Landroid/text/Spannable;FLcom/facebook/yoga/YogaMeasureMode;FLcom/facebook/yoga/YogaMeasureMode;DIZIILandroid/text/Layout$Alignment;)V
|
|
7943
|
+
public static fun createLayout (Landroid/content/Context;Lcom/facebook/react/common/mapbuffer/MapBuffer;Lcom/facebook/react/common/mapbuffer/MapBuffer;FFLcom/facebook/react/views/text/ReactTextViewManagerCallback;)Landroid/text/Layout;
|
|
7624
7944
|
public static fun deleteCachedSpannableForTag (I)V
|
|
7625
7945
|
public static fun getOrCreateSpannableForText (Landroid/content/Context;Lcom/facebook/react/common/mapbuffer/MapBuffer;Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Landroid/text/Spannable;
|
|
7626
7946
|
public static fun getTextAlignment (Lcom/facebook/react/common/mapbuffer/MapBuffer;Landroid/text/Spannable;)Landroid/text/Layout$Alignment;
|
|
@@ -7726,12 +8046,13 @@ public class com/facebook/react/views/textinput/ReactEditText : androidx/appcomp
|
|
|
7726
8046
|
public fun setAllowFontScaling (Z)V
|
|
7727
8047
|
public fun setAutoFocus (Z)V
|
|
7728
8048
|
public fun setBackgroundColor (I)V
|
|
7729
|
-
public fun setBorderColor (
|
|
8049
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
7730
8050
|
public fun setBorderRadius (F)V
|
|
7731
8051
|
public fun setBorderRadius (FI)V
|
|
7732
8052
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
7733
8053
|
public fun setBorderWidth (IF)V
|
|
7734
8054
|
public fun setContentSizeWatcher (Lcom/facebook/react/views/textinput/ContentSizeWatcher;)V
|
|
8055
|
+
public fun setContextMenuHidden (Z)V
|
|
7735
8056
|
public fun setDisableFullscreenUI (Z)V
|
|
7736
8057
|
public fun setFontFamily (Ljava/lang/String;)V
|
|
7737
8058
|
public fun setFontFeatureSettings (Ljava/lang/String;)V
|
|
@@ -7747,6 +8068,7 @@ public class com/facebook/react/views/textinput/ReactEditText : androidx/appcomp
|
|
|
7747
8068
|
public fun setPlaceholder (Ljava/lang/String;)V
|
|
7748
8069
|
public fun setReturnKeyType (Ljava/lang/String;)V
|
|
7749
8070
|
public fun setScrollWatcher (Lcom/facebook/react/views/textinput/ScrollWatcher;)V
|
|
8071
|
+
public fun setSelectTextOnFocus (Z)V
|
|
7750
8072
|
public fun setSelection (II)V
|
|
7751
8073
|
public fun setSelectionWatcher (Lcom/facebook/react/views/textinput/SelectionWatcher;)V
|
|
7752
8074
|
public fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
@@ -7799,10 +8121,13 @@ public class com/facebook/react/views/textinput/ReactTextInputManager : com/face
|
|
|
7799
8121
|
public fun setAutoCapitalize (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/Dynamic;)V
|
|
7800
8122
|
public fun setAutoCorrect (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Boolean;)V
|
|
7801
8123
|
public fun setAutoFocus (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
8124
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8125
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/textinput/ReactEditText;I)V
|
|
7802
8126
|
public fun setBorderColor (Lcom/facebook/react/views/textinput/ReactEditText;ILjava/lang/Integer;)V
|
|
7803
8127
|
public fun setBorderRadius (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
7804
8128
|
public fun setBorderStyle (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
7805
8129
|
public fun setBorderWidth (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
8130
|
+
public fun setBoxShadow (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7806
8131
|
public fun setCaretHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
7807
8132
|
public fun setColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
7808
8133
|
public fun setContextMenuHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
@@ -7933,21 +8258,6 @@ public class com/facebook/react/views/view/ReactViewBackgroundDrawable : com/fac
|
|
|
7933
8258
|
public fun <init> (Landroid/content/Context;)V
|
|
7934
8259
|
}
|
|
7935
8260
|
|
|
7936
|
-
public class com/facebook/react/views/view/ReactViewBackgroundManager {
|
|
7937
|
-
public fun <init> (Landroid/view/View;)V
|
|
7938
|
-
public fun cleanup ()V
|
|
7939
|
-
public fun getBackgroundColor ()I
|
|
7940
|
-
public fun getBorderColor (I)I
|
|
7941
|
-
public fun maybeClipToPaddingBox (Landroid/graphics/Canvas;)V
|
|
7942
|
-
public fun setBackgroundColor (I)V
|
|
7943
|
-
public fun setBorderColor (IFF)V
|
|
7944
|
-
public fun setBorderRadius (F)V
|
|
7945
|
-
public fun setBorderRadius (FI)V
|
|
7946
|
-
public fun setBorderStyle (Ljava/lang/String;)V
|
|
7947
|
-
public fun setBorderWidth (IF)V
|
|
7948
|
-
public fun setOverflow (Ljava/lang/String;)V
|
|
7949
|
-
}
|
|
7950
|
-
|
|
7951
8261
|
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 {
|
|
7952
8262
|
public fun <init> (Landroid/content/Context;)V
|
|
7953
8263
|
public fun addView (Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
|
|
@@ -7956,6 +8266,7 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
7956
8266
|
public fun dispatchGenericMotionEvent (Landroid/view/MotionEvent;)Z
|
|
7957
8267
|
public fun dispatchProvideStructure (Landroid/view/ViewStructure;)V
|
|
7958
8268
|
protected fun dispatchSetPressed (Z)V
|
|
8269
|
+
public fun draw (Landroid/graphics/Canvas;)V
|
|
7959
8270
|
protected fun drawChild (Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
|
7960
8271
|
protected fun getChildDrawingOrder (II)I
|
|
7961
8272
|
public fun getChildVisibleRect (Landroid/view/View;Landroid/graphics/Rect;Landroid/graphics/Point;)Z
|
|
@@ -7981,9 +8292,8 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
7981
8292
|
public fun requestLayout ()V
|
|
7982
8293
|
public fun setBackfaceVisibility (Ljava/lang/String;)V
|
|
7983
8294
|
public fun setBackfaceVisibilityDependantOpacity ()V
|
|
7984
|
-
public fun setBackground (Landroid/graphics/drawable/Drawable;)V
|
|
7985
8295
|
public fun setBackgroundColor (I)V
|
|
7986
|
-
public fun setBorderColor (
|
|
8296
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
7987
8297
|
public fun setBorderRadius (F)V
|
|
7988
8298
|
public fun setBorderRadius (FI)V
|
|
7989
8299
|
public fun setBorderRadius (Lcom/facebook/react/uimanager/style/BorderRadiusProp;Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
@@ -7995,6 +8305,7 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
7995
8305
|
public fun setOpacityIfPossible (F)V
|
|
7996
8306
|
public fun setOverflow (Ljava/lang/String;)V
|
|
7997
8307
|
public fun setOverflowInset (IIII)V
|
|
8308
|
+
public fun setPointerEvents (Lcom/facebook/react/uimanager/PointerEvents;)V
|
|
7998
8309
|
public fun setRemoveClippedSubviews (Z)V
|
|
7999
8310
|
public fun setTranslucentBackgroundDrawable (Landroid/graphics/drawable/Drawable;)V
|
|
8000
8311
|
public fun updateClippingRect ()V
|
|
@@ -8020,11 +8331,15 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8020
8331
|
public fun receiveCommand (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8021
8332
|
public fun setAccessible (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8022
8333
|
public fun setBackfaceVisibility (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8334
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8335
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8336
|
+
public fun setBackgroundImage (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8023
8337
|
public fun setBorderColor (Lcom/facebook/react/views/view/ReactViewGroup;ILjava/lang/Integer;)V
|
|
8024
8338
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8025
8339
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;ILcom/facebook/react/bridge/Dynamic;)V
|
|
8026
8340
|
public fun setBorderStyle (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8027
8341
|
public fun setBorderWidth (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8342
|
+
public fun setBoxShadow (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8028
8343
|
public fun setCollapsable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8029
8344
|
public fun setCollapsableChildren (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8030
8345
|
public fun setFocusable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
@@ -8055,3 +8370,8 @@ public final class com/facebook/react/views/view/ViewGroupClickEvent : com/faceb
|
|
|
8055
8370
|
public fun getEventName ()Ljava/lang/String;
|
|
8056
8371
|
}
|
|
8057
8372
|
|
|
8373
|
+
public final class com/facebook/react/views/view/WindowUtilKt {
|
|
8374
|
+
public static final fun setStatusBarTranslucency (Landroid/view/Window;Z)V
|
|
8375
|
+
public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
|
|
8376
|
+
}
|
|
8377
|
+
|