react-native-tvos 0.75.3-0 → 0.76.0-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/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 +10 -5
- package/Libraries/AppDelegate/RCTAppDelegate.mm +24 -50
- package/Libraries/AppDelegate/RCTRootViewFactory.h +5 -23
- package/Libraries/AppDelegate/RCTRootViewFactory.mm +21 -26
- 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/RCTFileReaderModule.mm +4 -3
- 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/Keyboard/KeyboardAvoidingView.js +17 -0
- package/Libraries/Components/Pressable/Pressable.js +3 -36
- package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +1 -1
- package/Libraries/Components/ScrollView/ScrollView.js +132 -171
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +3 -0
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +1 -1
- package/Libraries/Components/StatusBar/StatusBar.js +3 -1
- package/Libraries/Components/TV/TVTextScrollView.js +1 -1
- package/Libraries/Components/TV/TVViewPropTypes.js +1 -0
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
- package/Libraries/Components/TextInput/TextInput.d.ts +32 -2
- package/Libraries/Components/TextInput/TextInput.js +230 -94
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +23 -1
- 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/setUpDeveloperTools.js +5 -1
- package/Libraries/Core/setUpErrorHandling.js +7 -1
- package/Libraries/Core/setUpGlobals.js +1 -0
- package/Libraries/Core/setUpReactRefresh.js +0 -4
- 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 -1
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +17 -1
- package/Libraries/NativeComponent/NativeComponentRegistry.js +22 -22
- package/Libraries/NativeComponent/StaticViewConfigValidator.js +0 -21
- package/Libraries/NativeComponent/TVViewConfig.js +4 -0
- 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/Pressability/Pressability.js +37 -0
- package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +1 -1
- package/Libraries/ReactNative/AppContainer-dev.js +1 -5
- 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 +26 -4
- package/Libraries/ReactNative/getNativeComponentAttributes.js +12 -0
- package/Libraries/ReactNative/renderApplication.js +0 -2
- package/Libraries/Renderer/shims/ReactNativeTypes.js +11 -4
- package/Libraries/StyleSheet/StyleSheet.js +1 -1
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +152 -2
- package/Libraries/StyleSheet/StyleSheetTypes.js +60 -5
- package/Libraries/StyleSheet/processBackgroundImage.js +384 -0
- package/Libraries/StyleSheet/processBoxShadow.js +209 -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/DevLoadingView.js +2 -4
- package/Libraries/Utilities/HMRClient.js +8 -6
- 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/WebSocket/WebSocket.js +1 -1
- package/Libraries/promiseRejectionTrackingOptions.js +1 -1
- package/Libraries/vendor/emitter/EventEmitter.js +6 -5
- package/README.md +38 -26
- 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 +15 -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/RCTPullToRefreshViewComponentView.mm +24 -2
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.h +9 -0
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +160 -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 +29 -17
- 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 +64 -8
- package/React/Views/RefreshControl/RCTRefreshControl.m +18 -0
- package/React/Views/ScrollView/RCTScrollView.m +20 -0
- package/React-Core.podspec +4 -1
- package/ReactAndroid/api/ReactAndroid.api +624 -268
- package/ReactAndroid/build.gradle.kts +109 -278
- package/ReactAndroid/cmake-utils/ReactNative-application.cmake +10 -55
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/hermes-engine/build.gradle.kts +1 -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 +6 -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 -3
- package/ReactAndroid/src/main/java/com/facebook/react/ReactFragment.java +37 -4
- 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 +179 -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 +29 -10
- 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 -38
- 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/flipper/ReactNativeFlipper.kt +2 -2
- 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/jstasks/HeadlessJsTaskContext.java +13 -14
- 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/DevMenuModule.kt +46 -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 +1 -0
- 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/BridgelessReactContext.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/CoreReactPackage.java +7 -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 +222 -184
- 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/soloader/OpenSourceMergedSoMapping.kt +119 -0
- 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 +41 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewProps.kt +4 -1
- 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 +151 -83
- 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 +1 -1
- 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 +80 -99
- 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 +87 -26
- 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 +158 -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/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/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 +1 -22
- package/ReactCommon/react/renderer/animations/utils.h +45 -0
- 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 +115 -75
- 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 +9 -4
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHermesInstance.mm +18 -7
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.h +5 -0
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm +33 -52
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.h +6 -3
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +10 -10
- 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/cli.js +23 -5
- package/flow/jest.js +2 -2
- package/gradle/libs.versions.toml +5 -5
- package/index.js +3 -1
- 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 +15 -16
- package/react-native.config.js +26 -5
- package/scripts/bundle.js +5 -2
- package/scripts/cocoapods/helpers.rb +73 -6
- package/scripts/cocoapods/new_architecture.rb +17 -3
- package/scripts/cocoapods/privacy_manifest_utils.rb +23 -8
- package/scripts/cocoapods/utils.rb +30 -18
- package/scripts/ios-configure-glog.sh +2 -0
- package/scripts/react-native-xcode.sh +3 -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 -16
- package/sdks/hermes-engine/utils/build-ios-framework.sh +20 -5
- 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/hermesc/win64-bin/msvcp140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140_1.dll +0 -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 +29 -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 +12 -98
- 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/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
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
public final class com/facebook/react/common/assets/ReactFontManager$TypefaceStyle$Companion {
|
|
1835
1919
|
}
|
|
1836
1920
|
|
|
1837
|
-
public class com/facebook/react/common/build/ReactBuildConfig {
|
|
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,18 @@ 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
|
+
|
|
3317
|
+
public final class com/facebook/react/modules/debug/DevMenuModule : com/facebook/fbreact/specs/NativeDevMenuSpec {
|
|
3318
|
+
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
3319
|
+
public fun debugRemotely (Z)V
|
|
3320
|
+
public fun reload ()V
|
|
3321
|
+
public fun setHotLoadingEnabled (Z)V
|
|
3322
|
+
public fun setProfilingEnabled (Z)V
|
|
3323
|
+
public fun show ()V
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3220
3326
|
public final class com/facebook/react/modules/debug/DevSettingsModule : com/facebook/fbreact/specs/NativeDevSettingsSpec {
|
|
3221
3327
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
3222
3328
|
public fun addListener (Ljava/lang/String;)V
|
|
@@ -3341,16 +3447,19 @@ public class com/facebook/react/modules/dialog/DialogModule : com/facebook/fbrea
|
|
|
3341
3447
|
}
|
|
3342
3448
|
|
|
3343
3449
|
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
|
|
3450
|
+
public static final field Companion Lcom/facebook/react/modules/fresco/FrescoModule$Companion;
|
|
3345
3451
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3452
|
+
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;)V
|
|
3346
3453
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;Z)V
|
|
3347
3454
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;ZZ)V
|
|
3455
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;ZZILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3348
3456
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Z)V
|
|
3349
3457
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;ZLcom/facebook/imagepipeline/core/ImagePipelineConfig;)V
|
|
3458
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;ZLcom/facebook/imagepipeline/core/ImagePipelineConfig;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3350
3459
|
public fun clearSensitiveData ()V
|
|
3351
|
-
public static fun getDefaultConfigBuilder (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/imagepipeline/core/ImagePipelineConfig$Builder;
|
|
3460
|
+
public static final fun getDefaultConfigBuilder (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/imagepipeline/core/ImagePipelineConfig$Builder;
|
|
3352
3461
|
public fun getName ()Ljava/lang/String;
|
|
3353
|
-
public static fun hasBeenInitialized ()Z
|
|
3462
|
+
public static final fun hasBeenInitialized ()Z
|
|
3354
3463
|
public fun initialize ()V
|
|
3355
3464
|
public fun invalidate ()V
|
|
3356
3465
|
public fun onHostDestroy ()V
|
|
@@ -3358,13 +3467,22 @@ public class com/facebook/react/modules/fresco/FrescoModule : com/facebook/react
|
|
|
3358
3467
|
public fun onHostResume ()V
|
|
3359
3468
|
}
|
|
3360
3469
|
|
|
3361
|
-
public class com/facebook/react/modules/fresco/
|
|
3362
|
-
|
|
3363
|
-
public
|
|
3364
|
-
public fun getHeaders ()Lcom/facebook/react/bridge/ReadableMap;
|
|
3470
|
+
public final class com/facebook/react/modules/fresco/FrescoModule$Companion {
|
|
3471
|
+
public final fun getDefaultConfigBuilder (Lcom/facebook/react/bridge/ReactContext;)Lcom/facebook/imagepipeline/core/ImagePipelineConfig$Builder;
|
|
3472
|
+
public final fun hasBeenInitialized ()Z
|
|
3365
3473
|
}
|
|
3366
3474
|
|
|
3367
|
-
public class com/facebook/react/modules/fresco/
|
|
3475
|
+
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest : com/facebook/imagepipeline/request/ImageRequest {
|
|
3476
|
+
public static final field Companion Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion;
|
|
3477
|
+
public synthetic fun <init> (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3478
|
+
public static final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion {
|
|
3482
|
+
public final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
public final class com/facebook/react/modules/fresco/SystraceRequestListener : com/facebook/imagepipeline/listener/BaseRequestListener {
|
|
3368
3486
|
public fun <init> ()V
|
|
3369
3487
|
public fun onProducerEvent (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
|
|
3370
3488
|
public fun onProducerFinishWithCancellation (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V
|
|
@@ -3507,6 +3625,12 @@ public class com/facebook/react/modules/network/OkHttpClientProvider {
|
|
|
3507
3625
|
public static fun setOkHttpClientFactory (Lcom/facebook/react/modules/network/OkHttpClientFactory;)V
|
|
3508
3626
|
}
|
|
3509
3627
|
|
|
3628
|
+
public class com/facebook/react/modules/network/OkHttpCompat {
|
|
3629
|
+
public fun <init> ()V
|
|
3630
|
+
public static fun getCookieJarContainer (Lokhttp3/OkHttpClient;)Lcom/facebook/react/modules/network/CookieJarContainer;
|
|
3631
|
+
public static fun getHeadersFromMap (Ljava/util/Map;)Lokhttp3/Headers;
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3510
3634
|
public abstract interface class com/facebook/react/modules/network/ProgressListener {
|
|
3511
3635
|
public abstract fun onProgress (JJZ)V
|
|
3512
3636
|
}
|
|
@@ -3550,7 +3674,7 @@ public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl
|
|
|
3550
3674
|
public fun getSupportedCipherSuites ()[Ljava/lang/String;
|
|
3551
3675
|
}
|
|
3552
3676
|
|
|
3553
|
-
public class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
|
|
3677
|
+
public final class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
|
|
3554
3678
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3555
3679
|
public fun checkPermission (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3556
3680
|
public fun onRequestPermissionsResult (I[Ljava/lang/String;[I)Z
|
|
@@ -3596,6 +3720,7 @@ public class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
|
3596
3720
|
public static fun getAdbReverseTcpCommand (Landroid/content/Context;)Ljava/lang/String;
|
|
3597
3721
|
public static fun getAdbReverseTcpCommand (Ljava/lang/Integer;)Ljava/lang/String;
|
|
3598
3722
|
public static fun getFriendlyDeviceName ()Ljava/lang/String;
|
|
3723
|
+
public static fun getInspectorHostMetadata (Landroid/content/Context;)Ljava/util/Map;
|
|
3599
3724
|
public static fun getServerHost (Landroid/content/Context;)Ljava/lang/String;
|
|
3600
3725
|
public static fun getServerHost (Ljava/lang/Integer;)Ljava/lang/String;
|
|
3601
3726
|
}
|
|
@@ -3675,8 +3800,10 @@ public abstract class com/facebook/react/packagerconnection/NotificationOnlyHand
|
|
|
3675
3800
|
|
|
3676
3801
|
public class com/facebook/react/packagerconnection/PackagerConnectionSettings {
|
|
3677
3802
|
public fun <init> (Landroid/content/Context;)V
|
|
3803
|
+
public final fun getAdditionalOptionsForPackager ()Ljava/util/Map;
|
|
3678
3804
|
public fun getDebugServerHost ()Ljava/lang/String;
|
|
3679
|
-
public fun getPackageName ()Ljava/lang/String;
|
|
3805
|
+
public final fun getPackageName ()Ljava/lang/String;
|
|
3806
|
+
public final fun setAdditionalOptionForPackager (Ljava/lang/String;Ljava/lang/String;)V
|
|
3680
3807
|
public fun setDebugServerHost (Ljava/lang/String;)V
|
|
3681
3808
|
}
|
|
3682
3809
|
|
|
@@ -3795,15 +3922,16 @@ public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/React
|
|
|
3795
3922
|
public fun destroy (Ljava/lang/String;Ljava/lang/Exception;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3796
3923
|
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
3797
3924
|
public fun getDevSupportManager ()Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
3798
|
-
public fun getJsEngineResolutionAlgorithm ()Lcom/facebook/react/JSEngineResolutionAlgorithm;
|
|
3799
3925
|
public fun getLifecycleState ()Lcom/facebook/react/common/LifecycleState;
|
|
3800
3926
|
public fun getMemoryPressureRouter ()Lcom/facebook/react/MemoryPressureRouter;
|
|
3801
3927
|
public fun getReactQueueConfiguration ()Lcom/facebook/react/bridge/queue/ReactQueueConfiguration;
|
|
3928
|
+
public fun invalidate ()V
|
|
3802
3929
|
public fun onActivityResult (Landroid/app/Activity;IILandroid/content/Intent;)V
|
|
3803
3930
|
public fun onBackPressed ()Z
|
|
3804
3931
|
public fun onConfigurationChanged (Landroid/content/Context;)V
|
|
3805
3932
|
public fun onHostDestroy ()V
|
|
3806
3933
|
public fun onHostDestroy (Landroid/app/Activity;)V
|
|
3934
|
+
public fun onHostLeaveHint (Landroid/app/Activity;)V
|
|
3807
3935
|
public fun onHostPause ()V
|
|
3808
3936
|
public fun onHostPause (Landroid/app/Activity;)V
|
|
3809
3937
|
public fun onHostResume (Landroid/app/Activity;)V
|
|
@@ -3813,7 +3941,6 @@ public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/React
|
|
|
3813
3941
|
public fun reload (Ljava/lang/String;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3814
3942
|
public fun removeBeforeDestroyListener (Lkotlin/jvm/functions/Function0;)V
|
|
3815
3943
|
public fun removeReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
3816
|
-
public fun setJsEngineResolutionAlgorithm (Lcom/facebook/react/JSEngineResolutionAlgorithm;)V
|
|
3817
3944
|
public fun start ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
3818
3945
|
}
|
|
3819
3946
|
|
|
@@ -3853,7 +3980,7 @@ public final class com/facebook/react/runtime/ReactSurfaceView : com/facebook/re
|
|
|
3853
3980
|
public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebook/react/runtime/JSRuntimeFactory {
|
|
3854
3981
|
public static final field Companion Lcom/facebook/react/runtime/hermes/HermesInstance$Companion;
|
|
3855
3982
|
public fun <init> ()V
|
|
3856
|
-
public fun <init> (Lcom/facebook/react/fabric/ReactNativeConfig;)V
|
|
3983
|
+
public fun <init> (Lcom/facebook/react/fabric/ReactNativeConfig;Z)V
|
|
3857
3984
|
}
|
|
3858
3985
|
|
|
3859
3986
|
public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
|
|
@@ -3912,7 +4039,7 @@ public final class com/facebook/react/shell/MainPackageConfig {
|
|
|
3912
4039
|
public final fun getFrescoConfig ()Lcom/facebook/imagepipeline/core/ImagePipelineConfig;
|
|
3913
4040
|
}
|
|
3914
4041
|
|
|
3915
|
-
public class com/facebook/react/shell/MainReactPackage : com/facebook/react/
|
|
4042
|
+
public class com/facebook/react/shell/MainReactPackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
3916
4043
|
public fun <init> ()V
|
|
3917
4044
|
public fun <init> (Lcom/facebook/react/shell/MainPackageConfig;)V
|
|
3918
4045
|
public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
|
|
@@ -3929,6 +4056,33 @@ public class com/facebook/react/shell/MainReactPackage$$ReactModuleInfoProvider
|
|
|
3929
4056
|
public fun getReactModuleInfos ()Ljava/util/Map;
|
|
3930
4057
|
}
|
|
3931
4058
|
|
|
4059
|
+
public final class com/facebook/react/soloader/OpenSourceMergedSoMapping : com/facebook/soloader/ExternalSoMapping {
|
|
4060
|
+
public static final field INSTANCE Lcom/facebook/react/soloader/OpenSourceMergedSoMapping;
|
|
4061
|
+
public fun invokeJniOnload (Ljava/lang/String;)V
|
|
4062
|
+
public final fun libfabricjni_so ()I
|
|
4063
|
+
public final fun libhermes_executor_so ()I
|
|
4064
|
+
public final fun libhermesinstancejni_so ()I
|
|
4065
|
+
public final fun libhermestooling_so ()I
|
|
4066
|
+
public final fun libjscexecutor_so ()I
|
|
4067
|
+
public final fun libjscinstance_so ()I
|
|
4068
|
+
public final fun libjscruntime_so ()I
|
|
4069
|
+
public final fun libjsctooling_so ()I
|
|
4070
|
+
public final fun libjsijniprofiler_so ()I
|
|
4071
|
+
public final fun libjsinspector_so ()I
|
|
4072
|
+
public final fun libmapbufferjni_so ()I
|
|
4073
|
+
public final fun libreact_devsupportjni_so ()I
|
|
4074
|
+
public final fun libreact_featureflagsjni_so ()I
|
|
4075
|
+
public final fun libreact_newarchdefaults_so ()I
|
|
4076
|
+
public final fun libreactnative_so ()I
|
|
4077
|
+
public final fun libreactnativeblob_so ()I
|
|
4078
|
+
public final fun libreactnativejni_so ()I
|
|
4079
|
+
public final fun librninstance_so ()I
|
|
4080
|
+
public final fun libturbomodulejsijni_so ()I
|
|
4081
|
+
public final fun libuimanagerjni_so ()I
|
|
4082
|
+
public final fun libyoga_so ()I
|
|
4083
|
+
public fun mapLibName (Ljava/lang/String;)Ljava/lang/String;
|
|
4084
|
+
}
|
|
4085
|
+
|
|
3932
4086
|
public final class com/facebook/react/touch/JSResponderHandler : com/facebook/react/touch/OnInterceptTouchEventListener {
|
|
3933
4087
|
public fun <init> ()V
|
|
3934
4088
|
public final fun clearJSResponder ()V
|
|
@@ -3973,6 +4127,26 @@ public abstract interface class com/facebook/react/turbomodule/core/interfaces/T
|
|
|
3973
4127
|
public abstract fun getBindingsInstaller ()Lcom/facebook/react/turbomodule/core/interfaces/BindingsInstallerHolder;
|
|
3974
4128
|
}
|
|
3975
4129
|
|
|
4130
|
+
public final class com/facebook/react/uimanager/BackgroundStyleApplicator {
|
|
4131
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/BackgroundStyleApplicator;
|
|
4132
|
+
public static final fun clipToPaddingBox (Landroid/view/View;Landroid/graphics/Canvas;)V
|
|
4133
|
+
public static final fun getBackgroundColor (Landroid/view/View;)Ljava/lang/Integer;
|
|
4134
|
+
public static final fun getBorderColor (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;)Ljava/lang/Integer;
|
|
4135
|
+
public static final fun getBorderRadius (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderRadiusProp;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4136
|
+
public static final fun getBorderStyle (Landroid/view/View;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
4137
|
+
public static final fun getBorderWidth (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;)Ljava/lang/Float;
|
|
4138
|
+
public static final fun reset (Landroid/view/View;)V
|
|
4139
|
+
public static final fun setBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4140
|
+
public static final fun setBackgroundImage (Landroid/view/View;Ljava/util/List;)V
|
|
4141
|
+
public static final fun setBorderColor (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;Ljava/lang/Integer;)V
|
|
4142
|
+
public static final fun setBorderRadius (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderRadiusProp;Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
4143
|
+
public static final fun setBorderStyle (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderStyle;)V
|
|
4144
|
+
public static final fun setBorderWidth (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;Ljava/lang/Float;)V
|
|
4145
|
+
public static final fun setBoxShadow (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4146
|
+
public static final fun setBoxShadow (Landroid/view/View;Ljava/util/List;)V
|
|
4147
|
+
public static final fun setFeedbackUnderlay (Landroid/view/View;Landroid/graphics/drawable/Drawable;)V
|
|
4148
|
+
}
|
|
4149
|
+
|
|
3976
4150
|
public abstract class com/facebook/react/uimanager/BaseViewManager : com/facebook/react/uimanager/ViewManager, android/view/View$OnLayoutChangeListener, com/facebook/react/uimanager/BaseViewManagerInterface {
|
|
3977
4151
|
public fun <init> ()V
|
|
3978
4152
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
@@ -4001,6 +4175,7 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4001
4175
|
public fun setElevation (Landroid/view/View;F)V
|
|
4002
4176
|
public fun setFilter (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4003
4177
|
public fun setImportantForAccessibility (Landroid/view/View;Ljava/lang/String;)V
|
|
4178
|
+
public fun setMixBlendMode (Landroid/view/View;Ljava/lang/String;)V
|
|
4004
4179
|
public fun setMoveShouldSetResponder (Landroid/view/View;Z)V
|
|
4005
4180
|
public fun setMoveShouldSetResponderCapture (Landroid/view/View;Z)V
|
|
4006
4181
|
public fun setNativeId (Landroid/view/View;Ljava/lang/String;)V
|
|
@@ -4071,6 +4246,7 @@ public abstract interface class com/facebook/react/uimanager/BaseViewManagerInte
|
|
|
4071
4246
|
public abstract fun setElevation (Landroid/view/View;F)V
|
|
4072
4247
|
public abstract fun setFilter (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4073
4248
|
public abstract fun setImportantForAccessibility (Landroid/view/View;Ljava/lang/String;)V
|
|
4249
|
+
public abstract fun setMixBlendMode (Landroid/view/View;Ljava/lang/String;)V
|
|
4074
4250
|
public abstract fun setNativeId (Landroid/view/View;Ljava/lang/String;)V
|
|
4075
4251
|
public abstract fun setOpacity (Landroid/view/View;F)V
|
|
4076
4252
|
public abstract fun setRenderToHardwareTexture (Landroid/view/View;Z)V
|
|
@@ -4159,6 +4335,7 @@ public class com/facebook/react/uimanager/JSPointerDispatcher {
|
|
|
4159
4335
|
public class com/facebook/react/uimanager/JSTouchDispatcher {
|
|
4160
4336
|
public fun <init> (Landroid/view/ViewGroup;)V
|
|
4161
4337
|
public fun handleTouchEvent (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
4338
|
+
public fun handleTouchEvent (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;Lcom/facebook/react/bridge/ReactContext;)V
|
|
4162
4339
|
public fun onChildEndedNativeGesture (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
4163
4340
|
public fun onChildStartedNativeGesture (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
4164
4341
|
}
|
|
@@ -4219,9 +4396,15 @@ public final class com/facebook/react/uimanager/LengthPercentage {
|
|
|
4219
4396
|
public static final field Companion Lcom/facebook/react/uimanager/LengthPercentage$Companion;
|
|
4220
4397
|
public fun <init> ()V
|
|
4221
4398
|
public fun <init> (FLcom/facebook/react/uimanager/LengthPercentageType;)V
|
|
4222
|
-
public final fun
|
|
4223
|
-
public final fun
|
|
4399
|
+
public final fun component2 ()Lcom/facebook/react/uimanager/LengthPercentageType;
|
|
4400
|
+
public final fun copy (FLcom/facebook/react/uimanager/LengthPercentageType;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4401
|
+
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/LengthPercentage;FLcom/facebook/react/uimanager/LengthPercentageType;ILjava/lang/Object;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4402
|
+
public fun equals (Ljava/lang/Object;)Z
|
|
4403
|
+
public final fun getType ()Lcom/facebook/react/uimanager/LengthPercentageType;
|
|
4404
|
+
public fun hashCode ()I
|
|
4405
|
+
public final fun resolve (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
4224
4406
|
public static final fun setFromDynamic (Lcom/facebook/react/bridge/Dynamic;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4407
|
+
public fun toString ()Ljava/lang/String;
|
|
4225
4408
|
}
|
|
4226
4409
|
|
|
4227
4410
|
public final class com/facebook/react/uimanager/LengthPercentage$Companion {
|
|
@@ -4314,7 +4497,8 @@ public class com/facebook/react/uimanager/NativeViewHierarchyManager {
|
|
|
4314
4497
|
public fun setJSResponder (IIZ)V
|
|
4315
4498
|
public fun setLayoutAnimationEnabled (Z)V
|
|
4316
4499
|
public fun updateInstanceHandle (IJ)V
|
|
4317
|
-
public fun updateLayout (
|
|
4500
|
+
public fun updateLayout (IIIII)V
|
|
4501
|
+
public fun updateLayout (IIIIIILcom/facebook/yoga/YogaDirection;)V
|
|
4318
4502
|
public fun updateProperties (ILcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
4319
4503
|
public fun updateViewExtraData (ILjava/lang/Object;)V
|
|
4320
4504
|
}
|
|
@@ -4344,7 +4528,11 @@ public class com/facebook/react/uimanager/OnLayoutEvent : com/facebook/react/uim
|
|
|
4344
4528
|
|
|
4345
4529
|
public final class com/facebook/react/uimanager/PixelUtil {
|
|
4346
4530
|
public static final field INSTANCE Lcom/facebook/react/uimanager/PixelUtil;
|
|
4531
|
+
public final fun dpToPx (D)F
|
|
4532
|
+
public final fun dpToPx (F)F
|
|
4347
4533
|
public static final fun getDisplayMetricDensity ()F
|
|
4534
|
+
public final fun pxToDp (D)F
|
|
4535
|
+
public final fun pxToDp (F)F
|
|
4348
4536
|
public static final fun toDIPFromPixel (F)F
|
|
4349
4537
|
public static final fun toPixelFromDIP (D)F
|
|
4350
4538
|
public static final fun toPixelFromDIP (F)F
|
|
@@ -5081,6 +5269,7 @@ public class com/facebook/react/uimanager/UIImplementation {
|
|
|
5081
5269
|
public fun setViewHierarchyUpdateDebugListener (Lcom/facebook/react/uimanager/debug/NotThreadSafeViewHierarchyUpdateDebugListener;)V
|
|
5082
5270
|
public fun setViewLocalData (ILjava/lang/Object;)V
|
|
5083
5271
|
public fun synchronouslyUpdateViewOnUIThread (ILcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5272
|
+
public fun updateInsetsPadding (IIIII)V
|
|
5084
5273
|
public fun updateNodeSize (III)V
|
|
5085
5274
|
public fun updateRootView (III)V
|
|
5086
5275
|
public fun updateRootView (Lcom/facebook/react/uimanager/ReactShadowNode;II)V
|
|
@@ -5142,6 +5331,7 @@ public class com/facebook/react/uimanager/UIManagerModule : com/facebook/react/b
|
|
|
5142
5331
|
public fun invalidate ()V
|
|
5143
5332
|
public fun invalidateNodeLayout (I)V
|
|
5144
5333
|
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
|
|
5334
|
+
public fun markActiveTouchForTag (II)V
|
|
5145
5335
|
public fun measure (ILcom/facebook/react/bridge/Callback;)V
|
|
5146
5336
|
public fun measureInWindow (ILcom/facebook/react/bridge/Callback;)V
|
|
5147
5337
|
public fun measureLayout (IILcom/facebook/react/bridge/Callback;Lcom/facebook/react/bridge/Callback;)V
|
|
@@ -5167,7 +5357,9 @@ public class com/facebook/react/uimanager/UIManagerModule : com/facebook/react/b
|
|
|
5167
5357
|
public fun setViewLocalData (ILjava/lang/Object;)V
|
|
5168
5358
|
public fun startSurface (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;II)I
|
|
5169
5359
|
public fun stopSurface (I)V
|
|
5360
|
+
public fun sweepActiveTouchForTag (II)V
|
|
5170
5361
|
public fun synchronouslyUpdateViewOnUIThread (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
5362
|
+
public fun updateInsetsPadding (IIIII)V
|
|
5171
5363
|
public fun updateNodeSize (III)V
|
|
5172
5364
|
public fun updateRootLayoutSpecs (IIIII)V
|
|
5173
5365
|
public fun updateView (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
@@ -5212,6 +5404,7 @@ public class com/facebook/react/uimanager/UIViewOperationQueue {
|
|
|
5212
5404
|
public fun enqueueUpdateExtraData (ILjava/lang/Object;)V
|
|
5213
5405
|
public fun enqueueUpdateInstanceHandle (IJ)V
|
|
5214
5406
|
public fun enqueueUpdateLayout (IIIIII)V
|
|
5407
|
+
public fun enqueueUpdateLayout (IIIIIILcom/facebook/yoga/YogaDirection;)V
|
|
5215
5408
|
public fun enqueueUpdateProperties (ILjava/lang/String;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5216
5409
|
public fun getProfiledBatchPerfCounters ()Ljava/util/Map;
|
|
5217
5410
|
public fun isEmpty ()Z
|
|
@@ -5294,7 +5487,7 @@ public abstract class com/facebook/react/uimanager/ViewManager : com/facebook/re
|
|
|
5294
5487
|
protected fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
5295
5488
|
public fun onDropViewInstance (Landroid/view/View;)V
|
|
5296
5489
|
public fun onSurfaceStopped (I)V
|
|
5297
|
-
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
5490
|
+
protected abstract fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
5298
5491
|
public fun receiveCommand (Landroid/view/View;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
5299
5492
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
5300
5493
|
protected fun recycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
@@ -5367,6 +5560,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5367
5560
|
public static final field ASPECT_RATIO Ljava/lang/String;
|
|
5368
5561
|
public static final field AUTO Ljava/lang/String;
|
|
5369
5562
|
public static final field BACKGROUND_COLOR Ljava/lang/String;
|
|
5563
|
+
public static final field BACKGROUND_IMAGE Ljava/lang/String;
|
|
5370
5564
|
public static final field BORDER_BLOCK_COLOR Ljava/lang/String;
|
|
5371
5565
|
public static final field BORDER_BLOCK_END_COLOR Ljava/lang/String;
|
|
5372
5566
|
public static final field BORDER_BLOCK_START_COLOR Ljava/lang/String;
|
|
@@ -5400,6 +5594,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5400
5594
|
public static final field BORDER_WIDTH Ljava/lang/String;
|
|
5401
5595
|
public static final field BOTTOM Ljava/lang/String;
|
|
5402
5596
|
public static final field BOX_NONE Ljava/lang/String;
|
|
5597
|
+
public static final field BOX_SHADOW Ljava/lang/String;
|
|
5403
5598
|
public static final field COLLAPSABLE Ljava/lang/String;
|
|
5404
5599
|
public static final field COLLAPSABLE_CHILDREN Ljava/lang/String;
|
|
5405
5600
|
public static final field COLOR Ljava/lang/String;
|
|
@@ -5449,6 +5644,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5449
5644
|
public static final field MINIMUM_FONT_SCALE Ljava/lang/String;
|
|
5450
5645
|
public static final field MIN_HEIGHT Ljava/lang/String;
|
|
5451
5646
|
public static final field MIN_WIDTH Ljava/lang/String;
|
|
5647
|
+
public static final field MIX_BLEND_MODE Ljava/lang/String;
|
|
5452
5648
|
public static final field NATIVE_ID Ljava/lang/String;
|
|
5453
5649
|
public static final field NEEDS_OFFSCREEN_ALPHA_COMPOSITING Ljava/lang/String;
|
|
5454
5650
|
public static final field NONE Ljava/lang/String;
|
|
@@ -5539,6 +5735,7 @@ public final class com/facebook/react/uimanager/common/ViewUtil {
|
|
|
5539
5735
|
public static final field NO_SURFACE_ID I
|
|
5540
5736
|
public static final fun getUIManagerType (I)I
|
|
5541
5737
|
public static final fun getUIManagerType (II)I
|
|
5738
|
+
public static final fun getUIManagerType (Landroid/view/View;)I
|
|
5542
5739
|
public static final fun isRootTag (I)Z
|
|
5543
5740
|
}
|
|
5544
5741
|
|
|
@@ -5547,48 +5744,17 @@ public abstract interface class com/facebook/react/uimanager/debug/NotThreadSafe
|
|
|
5547
5744
|
public abstract fun onViewHierarchyUpdateFinished ()V
|
|
5548
5745
|
}
|
|
5549
5746
|
|
|
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
5747
|
public abstract interface class com/facebook/react/uimanager/events/BatchEventDispatchedListener {
|
|
5583
5748
|
public abstract fun onBatchEventDispatched ()V
|
|
5584
5749
|
}
|
|
5585
5750
|
|
|
5586
|
-
public class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/facebook/react/uimanager/events/EventDispatcher {
|
|
5751
|
+
public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/facebook/react/uimanager/events/EventDispatcher {
|
|
5752
|
+
public static final field Companion Lcom/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion;
|
|
5587
5753
|
public fun addBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5588
5754
|
public fun addListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5589
5755
|
public fun dispatchAllEvents ()V
|
|
5590
5756
|
public fun dispatchEvent (Lcom/facebook/react/uimanager/events/Event;)V
|
|
5591
|
-
public static fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5757
|
+
public static final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5592
5758
|
public fun onCatalystInstanceDestroyed ()V
|
|
5593
5759
|
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5594
5760
|
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
@@ -5597,11 +5763,13 @@ public class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/
|
|
|
5597
5763
|
public fun unregisterEventEmitter (I)V
|
|
5598
5764
|
}
|
|
5599
5765
|
|
|
5600
|
-
public class com/facebook/react/uimanager/events/
|
|
5601
|
-
public
|
|
5766
|
+
public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion {
|
|
5767
|
+
public final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5768
|
+
}
|
|
5769
|
+
|
|
5770
|
+
public final class com/facebook/react/uimanager/events/ContentSizeChangeEvent : com/facebook/react/uimanager/events/Event {
|
|
5602
5771
|
public fun <init> (III)V
|
|
5603
5772
|
public fun <init> (IIII)V
|
|
5604
|
-
protected fun getEventData ()Lcom/facebook/react/bridge/WritableMap;
|
|
5605
5773
|
public fun getEventName ()Ljava/lang/String;
|
|
5606
5774
|
}
|
|
5607
5775
|
|
|
@@ -5875,6 +6043,11 @@ public abstract interface class com/facebook/react/uimanager/layoutanimation/Lay
|
|
|
5875
6043
|
public abstract fun onAnimationEnd ()V
|
|
5876
6044
|
}
|
|
5877
6045
|
|
|
6046
|
+
public final class com/facebook/react/uimanager/style/BackgroundImageLayer {
|
|
6047
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6048
|
+
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
6049
|
+
}
|
|
6050
|
+
|
|
5878
6051
|
public final class com/facebook/react/uimanager/style/BorderRadiusProp : java/lang/Enum {
|
|
5879
6052
|
public static final field BORDER_BOTTOM_END_RADIUS Lcom/facebook/react/uimanager/style/BorderRadiusProp;
|
|
5880
6053
|
public static final field BORDER_BOTTOM_LEFT_RADIUS Lcom/facebook/react/uimanager/style/BorderRadiusProp;
|
|
@@ -5949,25 +6122,141 @@ public final class com/facebook/react/uimanager/style/BorderRadiusStyle {
|
|
|
5949
6122
|
public fun toString ()Ljava/lang/String;
|
|
5950
6123
|
}
|
|
5951
6124
|
|
|
6125
|
+
public final class com/facebook/react/uimanager/style/BorderStyle : java/lang/Enum {
|
|
6126
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/BorderStyle$Companion;
|
|
6127
|
+
public static final field DASHED Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6128
|
+
public static final field DOTTED Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6129
|
+
public static final field SOLID Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6130
|
+
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6131
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6132
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6133
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6134
|
+
}
|
|
6135
|
+
|
|
6136
|
+
public final class com/facebook/react/uimanager/style/BorderStyle$Companion {
|
|
6137
|
+
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
6138
|
+
}
|
|
6139
|
+
|
|
6140
|
+
public final class com/facebook/react/uimanager/style/BoxShadow {
|
|
6141
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/BoxShadow$Companion;
|
|
6142
|
+
public fun <init> (FFLjava/lang/Integer;Ljava/lang/Float;Ljava/lang/Float;Ljava/lang/Boolean;)V
|
|
6143
|
+
public synthetic fun <init> (FFLjava/lang/Integer;Ljava/lang/Float;Ljava/lang/Float;Ljava/lang/Boolean;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6144
|
+
public final fun component1 ()F
|
|
6145
|
+
public final fun component2 ()F
|
|
6146
|
+
public final fun component3 ()Ljava/lang/Integer;
|
|
6147
|
+
public final fun component4 ()Ljava/lang/Float;
|
|
6148
|
+
public final fun component5 ()Ljava/lang/Float;
|
|
6149
|
+
public final fun component6 ()Ljava/lang/Boolean;
|
|
6150
|
+
public final fun copy (FFLjava/lang/Integer;Ljava/lang/Float;Ljava/lang/Float;Ljava/lang/Boolean;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6151
|
+
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;
|
|
6152
|
+
public fun equals (Ljava/lang/Object;)Z
|
|
6153
|
+
public final fun getBlurRadius ()Ljava/lang/Float;
|
|
6154
|
+
public final fun getColor ()Ljava/lang/Integer;
|
|
6155
|
+
public final fun getInset ()Ljava/lang/Boolean;
|
|
6156
|
+
public final fun getOffsetX ()F
|
|
6157
|
+
public final fun getOffsetY ()F
|
|
6158
|
+
public final fun getSpreadDistance ()Ljava/lang/Float;
|
|
6159
|
+
public fun hashCode ()I
|
|
6160
|
+
public static final fun parse (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6161
|
+
public fun toString ()Ljava/lang/String;
|
|
6162
|
+
}
|
|
6163
|
+
|
|
6164
|
+
public final class com/facebook/react/uimanager/style/BoxShadow$Companion {
|
|
6165
|
+
public final fun parse (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6166
|
+
}
|
|
6167
|
+
|
|
5952
6168
|
public final class com/facebook/react/uimanager/style/ComputedBorderRadius {
|
|
5953
6169
|
public fun <init> ()V
|
|
5954
|
-
public fun <init> (
|
|
6170
|
+
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
|
|
6171
|
+
public final fun component1 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6172
|
+
public final fun component2 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6173
|
+
public final fun component3 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6174
|
+
public final fun component4 ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6175
|
+
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;
|
|
6176
|
+
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;
|
|
6177
|
+
public fun equals (Ljava/lang/Object;)Z
|
|
6178
|
+
public final fun get (Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6179
|
+
public final fun getBottomLeft ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6180
|
+
public final fun getBottomRight ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6181
|
+
public final fun getTopLeft ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6182
|
+
public final fun getTopRight ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6183
|
+
public final fun hasRoundedBorders ()Z
|
|
6184
|
+
public fun hashCode ()I
|
|
6185
|
+
public fun toString ()Ljava/lang/String;
|
|
6186
|
+
}
|
|
6187
|
+
|
|
6188
|
+
public final class com/facebook/react/uimanager/style/ComputedBorderRadiusProp : java/lang/Enum {
|
|
6189
|
+
public static final field COMPUTED_BORDER_BOTTOM_LEFT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6190
|
+
public static final field COMPUTED_BORDER_BOTTOM_RIGHT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6191
|
+
public static final field COMPUTED_BORDER_TOP_LEFT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6192
|
+
public static final field COMPUTED_BORDER_TOP_RIGHT_RADIUS Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6193
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6194
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6195
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/ComputedBorderRadiusProp;
|
|
6196
|
+
}
|
|
6197
|
+
|
|
6198
|
+
public final class com/facebook/react/uimanager/style/CornerRadii {
|
|
6199
|
+
public fun <init> ()V
|
|
6200
|
+
public fun <init> (FF)V
|
|
6201
|
+
public synthetic fun <init> (FFILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
5955
6202
|
public final fun component1 ()F
|
|
5956
6203
|
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;
|
|
6204
|
+
public final fun copy (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6205
|
+
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/style/CornerRadii;FFILjava/lang/Object;)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
5961
6206
|
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
|
|
6207
|
+
public final fun getHorizontal ()F
|
|
6208
|
+
public final fun getVertical ()F
|
|
5967
6209
|
public fun hashCode ()I
|
|
6210
|
+
public final fun toPixelFromDIP ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
5968
6211
|
public fun toString ()Ljava/lang/String;
|
|
5969
6212
|
}
|
|
5970
6213
|
|
|
6214
|
+
public final class com/facebook/react/uimanager/style/Gradient {
|
|
6215
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6216
|
+
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
6217
|
+
}
|
|
6218
|
+
|
|
6219
|
+
public abstract class com/facebook/react/uimanager/style/LogicalEdge : java/lang/Enum {
|
|
6220
|
+
public static final field ALL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6221
|
+
public static final field BLOCK Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6222
|
+
public static final field BLOCK_END Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6223
|
+
public static final field BLOCK_START Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6224
|
+
public static final field BOTTOM Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6225
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/LogicalEdge$Companion;
|
|
6226
|
+
public static final field END Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6227
|
+
public static final field HORIZONTAL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6228
|
+
public static final field LEFT Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6229
|
+
public static final field RIGHT Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6230
|
+
public static final field START Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6231
|
+
public static final field TOP Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6232
|
+
public static final field VERTICAL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6233
|
+
public synthetic fun <init> (Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6234
|
+
public static final fun fromSpacingType (I)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6235
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6236
|
+
public abstract fun toSpacingType ()I
|
|
6237
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6238
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6241
|
+
public final class com/facebook/react/uimanager/style/LogicalEdge$Companion {
|
|
6242
|
+
public final fun fromSpacingType (I)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6243
|
+
}
|
|
6244
|
+
|
|
6245
|
+
public final class com/facebook/react/uimanager/style/Overflow : java/lang/Enum {
|
|
6246
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/Overflow$Companion;
|
|
6247
|
+
public static final field HIDDEN Lcom/facebook/react/uimanager/style/Overflow;
|
|
6248
|
+
public static final field SCROLL Lcom/facebook/react/uimanager/style/Overflow;
|
|
6249
|
+
public static final field VISIBLE Lcom/facebook/react/uimanager/style/Overflow;
|
|
6250
|
+
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6251
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6252
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6253
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/Overflow;
|
|
6254
|
+
}
|
|
6255
|
+
|
|
6256
|
+
public final class com/facebook/react/uimanager/style/Overflow$Companion {
|
|
6257
|
+
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6258
|
+
}
|
|
6259
|
+
|
|
5971
6260
|
public class com/facebook/react/uimanager/util/ReactFindViewUtil {
|
|
5972
6261
|
public fun <init> ()V
|
|
5973
6262
|
public static fun addViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
@@ -6203,20 +6492,27 @@ public final class com/facebook/react/views/debuggingoverlay/TraceUpdate {
|
|
|
6203
6492
|
public final fun getRectangle ()Landroid/graphics/RectF;
|
|
6204
6493
|
}
|
|
6205
6494
|
|
|
6206
|
-
public class com/facebook/react/views/drawer/
|
|
6495
|
+
public final class com/facebook/react/views/drawer/ReactDrawerLayout : androidx/drawerlayout/widget/DrawerLayout {
|
|
6496
|
+
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
6497
|
+
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6498
|
+
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
6499
|
+
}
|
|
6500
|
+
|
|
6501
|
+
public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerInterface {
|
|
6207
6502
|
public static final field CLOSE_DRAWER I
|
|
6503
|
+
public static final field COMMAND_CLOSE_DRAWER Ljava/lang/String;
|
|
6504
|
+
public static final field COMMAND_OPEN_DRAWER Ljava/lang/String;
|
|
6505
|
+
public static final field Companion Lcom/facebook/react/views/drawer/ReactDrawerLayoutManager$Companion;
|
|
6208
6506
|
public static final field OPEN_DRAWER I
|
|
6209
6507
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6210
6508
|
public fun <init> ()V
|
|
6211
|
-
|
|
6212
|
-
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/drawer/ReactDrawerLayout;)V
|
|
6509
|
+
public synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
6213
6510
|
public synthetic fun addView (Landroid/view/View;Landroid/view/View;I)V
|
|
6214
6511
|
public synthetic fun addView (Landroid/view/ViewGroup;Landroid/view/View;I)V
|
|
6215
6512
|
public fun addView (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Landroid/view/View;I)V
|
|
6216
6513
|
public synthetic fun closeDrawer (Landroid/view/View;)V
|
|
6217
6514
|
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;
|
|
6515
|
+
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6220
6516
|
public fun getCommandsMap ()Ljava/util/Map;
|
|
6221
6517
|
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6222
6518
|
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
@@ -6234,10 +6530,10 @@ public class com/facebook/react/views/drawer/ReactDrawerLayoutManager : com/face
|
|
|
6234
6530
|
public synthetic fun setDrawerLockMode (Landroid/view/View;Ljava/lang/String;)V
|
|
6235
6531
|
public fun setDrawerLockMode (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/String;)V
|
|
6236
6532
|
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
|
|
6533
|
+
public final fun setDrawerPosition (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Lcom/facebook/react/bridge/Dynamic;)V
|
|
6238
6534
|
public fun setDrawerPosition (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/String;)V
|
|
6239
6535
|
public synthetic fun setDrawerWidth (Landroid/view/View;Ljava/lang/Float;)V
|
|
6240
|
-
public fun setDrawerWidth (Lcom/facebook/react/views/drawer/ReactDrawerLayout;F)V
|
|
6536
|
+
public final fun setDrawerWidth (Lcom/facebook/react/views/drawer/ReactDrawerLayout;F)V
|
|
6241
6537
|
public fun setDrawerWidth (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/Float;)V
|
|
6242
6538
|
public synthetic fun setElevation (Landroid/view/View;F)V
|
|
6243
6539
|
public fun setElevation (Lcom/facebook/react/views/drawer/ReactDrawerLayout;F)V
|
|
@@ -6254,12 +6550,7 @@ public class com/facebook/react/views/drawer/ReactDrawerLayoutManager$$PropsSett
|
|
|
6254
6550
|
public fun setProperty (Lcom/facebook/react/views/drawer/ReactDrawerLayoutManager;Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6255
6551
|
}
|
|
6256
6552
|
|
|
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
|
|
6553
|
+
public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager$Companion {
|
|
6263
6554
|
}
|
|
6264
6555
|
|
|
6265
6556
|
public final class com/facebook/react/views/drawer/events/DrawerClosedEvent : com/facebook/react/uimanager/events/Event {
|
|
@@ -6366,51 +6657,60 @@ public final class com/facebook/react/views/image/ImageResizeMode {
|
|
|
6366
6657
|
public static final fun toTileMode (Ljava/lang/String;)Landroid/graphics/Shader$TileMode;
|
|
6367
6658
|
}
|
|
6368
6659
|
|
|
6369
|
-
public class com/facebook/react/views/image/MultiPostprocessor : com/facebook/imagepipeline/request/Postprocessor {
|
|
6370
|
-
public static
|
|
6660
|
+
public final class com/facebook/react/views/image/MultiPostprocessor : com/facebook/imagepipeline/request/Postprocessor {
|
|
6661
|
+
public static final field Companion Lcom/facebook/react/views/image/MultiPostprocessor$Companion;
|
|
6662
|
+
public synthetic fun <init> (Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6663
|
+
public static final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
|
|
6371
6664
|
public fun getName ()Ljava/lang/String;
|
|
6372
6665
|
public fun getPostprocessorCacheKey ()Lcom/facebook/cache/common/CacheKey;
|
|
6373
6666
|
public fun process (Landroid/graphics/Bitmap;Lcom/facebook/imagepipeline/bitmaps/PlatformBitmapFactory;)Lcom/facebook/common/references/CloseableReference;
|
|
6374
6667
|
}
|
|
6375
6668
|
|
|
6669
|
+
public final class com/facebook/react/views/image/MultiPostprocessor$Companion {
|
|
6670
|
+
public final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6376
6673
|
public abstract interface class com/facebook/react/views/image/ReactCallerContextFactory {
|
|
6377
6674
|
public abstract fun getOrCreateCallerContext (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
|
|
6378
6675
|
}
|
|
6379
6676
|
|
|
6380
|
-
public class com/facebook/react/views/image/ReactImageManager : com/facebook/react/uimanager/SimpleViewManager {
|
|
6677
|
+
public final class com/facebook/react/views/image/ReactImageManager : com/facebook/react/uimanager/SimpleViewManager {
|
|
6678
|
+
public static final field Companion Lcom/facebook/react/views/image/ReactImageManager$Companion;
|
|
6381
6679
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6382
6680
|
public fun <init> ()V
|
|
6681
|
+
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;)V
|
|
6682
|
+
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/GlobalImageLoadListener;)V
|
|
6383
6683
|
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Lcom/facebook/react/views/image/GlobalImageLoadListener;Lcom/facebook/react/views/image/ReactCallerContextFactory;)V
|
|
6684
|
+
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
6685
|
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
6686
|
public fun <init> (Lcom/facebook/drawee/controller/AbstractDraweeControllerBuilder;Ljava/lang/Object;)V
|
|
6387
6687
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6388
6688
|
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
6689
|
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
6392
6690
|
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
|
|
6691
|
+
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6692
|
+
public final fun setAccessible (Lcom/facebook/react/views/image/ReactImageView;Z)V
|
|
6693
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
6694
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/image/ReactImageView;I)V
|
|
6695
|
+
public final fun setBlurRadius (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6696
|
+
public final fun setBorderColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6697
|
+
public final fun setBorderRadius (Lcom/facebook/react/views/image/ReactImageView;IF)V
|
|
6698
|
+
public final fun setBorderWidth (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6699
|
+
public final fun setBoxShadow (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6700
|
+
public final fun setDefaultSource (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6701
|
+
public final fun setFadeDuration (Lcom/facebook/react/views/image/ReactImageView;I)V
|
|
6702
|
+
public final fun setHeaders (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6703
|
+
public final fun setInternal_AnalyticsTag (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6704
|
+
public final fun setLoadHandlersRegistered (Lcom/facebook/react/views/image/ReactImageView;Z)V
|
|
6705
|
+
public final fun setLoadingIndicatorSource (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6706
|
+
public final fun setOverlayColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6707
|
+
public final fun setProgressiveRenderingEnabled (Lcom/facebook/react/views/image/ReactImageView;Z)V
|
|
6708
|
+
public final fun setResizeMethod (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6709
|
+
public final fun setResizeMode (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6710
|
+
public final fun setResizeMultiplier (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6711
|
+
public final fun setSource (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6712
|
+
public final fun setSrc (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6713
|
+
public final fun setTintColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6414
6714
|
}
|
|
6415
6715
|
|
|
6416
6716
|
public class com/facebook/react/views/image/ReactImageManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
@@ -6420,33 +6720,38 @@ public class com/facebook/react/views/image/ReactImageManager$$PropsSetter : com
|
|
|
6420
6720
|
public fun setProperty (Lcom/facebook/react/views/image/ReactImageManager;Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6421
6721
|
}
|
|
6422
6722
|
|
|
6423
|
-
public class com/facebook/react/views/image/
|
|
6723
|
+
public final class com/facebook/react/views/image/ReactImageManager$Companion {
|
|
6724
|
+
}
|
|
6725
|
+
|
|
6726
|
+
public final class com/facebook/react/views/image/ReactImageView : com/facebook/drawee/view/GenericDraweeView {
|
|
6727
|
+
public static final field Companion Lcom/facebook/react/views/image/ReactImageView$Companion;
|
|
6424
6728
|
public static final field REMOTE_IMAGE_FADE_DURATION_MS I
|
|
6425
6729
|
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
6730
|
public fun hasOverlappingRendering ()Z
|
|
6428
|
-
public fun maybeUpdateView ()V
|
|
6429
|
-
|
|
6731
|
+
public final fun maybeUpdateView ()V
|
|
6732
|
+
public fun onDraw (Landroid/graphics/Canvas;)V
|
|
6430
6733
|
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
|
-
|
|
6734
|
+
public final fun setBlurRadius (F)V
|
|
6735
|
+
public final fun setBorderColor (I)V
|
|
6736
|
+
public final fun setBorderRadius (F)V
|
|
6737
|
+
public final fun setBorderRadius (FI)V
|
|
6738
|
+
public final fun setBorderWidth (F)V
|
|
6739
|
+
public final fun setDefaultSource (Ljava/lang/String;)V
|
|
6740
|
+
public final fun setFadeDuration (I)V
|
|
6741
|
+
public final fun setHeaders (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6742
|
+
public final fun setLoadingIndicatorSource (Ljava/lang/String;)V
|
|
6743
|
+
public final fun setOverlayColor (I)V
|
|
6744
|
+
public final fun setProgressiveRenderingEnabled (Z)V
|
|
6745
|
+
public final fun setResizeMethod (Lcom/facebook/react/views/image/ImageResizeMethod;)V
|
|
6746
|
+
public final fun setResizeMultiplier (F)V
|
|
6747
|
+
public final fun setScaleType (Lcom/facebook/drawee/drawable/ScalingUtils$ScaleType;)V
|
|
6748
|
+
public final fun setShouldNotifyLoadEvents (Z)V
|
|
6749
|
+
public final fun setSource (Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6750
|
+
public final fun setTileMode (Landroid/graphics/Shader$TileMode;)V
|
|
6751
|
+
public final fun updateCallerContext (Ljava/lang/Object;)V
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6754
|
+
public final class com/facebook/react/views/image/ReactImageView$Companion {
|
|
6450
6755
|
}
|
|
6451
6756
|
|
|
6452
6757
|
public final class com/facebook/react/views/imagehelper/ImageSource {
|
|
@@ -6487,6 +6792,7 @@ public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper
|
|
|
6487
6792
|
public final fun getResourceDrawable (Landroid/content/Context;Ljava/lang/String;)Landroid/graphics/drawable/Drawable;
|
|
6488
6793
|
public final fun getResourceDrawableId (Landroid/content/Context;Ljava/lang/String;)I
|
|
6489
6794
|
public final fun getResourceDrawableUri (Landroid/content/Context;Ljava/lang/String;)Landroid/net/Uri;
|
|
6795
|
+
public final fun isVectorDrawable (Landroid/content/Context;Ljava/lang/String;)Z
|
|
6490
6796
|
}
|
|
6491
6797
|
|
|
6492
6798
|
public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper$Companion {
|
|
@@ -6506,13 +6812,10 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6506
6812
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6507
6813
|
public fun <init> ()V
|
|
6508
6814
|
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
6815
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6512
6816
|
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6513
6817
|
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
6514
6818
|
public fun getName ()Ljava/lang/String;
|
|
6515
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6516
6819
|
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6517
6820
|
public synthetic fun onDropViewInstance (Landroid/view/View;)V
|
|
6518
6821
|
public fun onDropViewInstance (Lcom/facebook/react/views/modal/ReactModalHostView;)V
|
|
@@ -6573,18 +6876,16 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6573
6876
|
public final fun setAnimationType (Ljava/lang/String;)V
|
|
6574
6877
|
public final fun setEventDispatcher (Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6575
6878
|
public final fun setHardwareAccelerated (Z)V
|
|
6879
|
+
public fun setId (I)V
|
|
6576
6880
|
public final fun setOnRequestCloseListener (Lcom/facebook/react/views/modal/ReactModalHostView$OnRequestCloseListener;)V
|
|
6577
6881
|
public final fun setOnShowListener (Landroid/content/DialogInterface$OnShowListener;)V
|
|
6578
6882
|
public final fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
6579
6883
|
public final fun setStatusBarTranslucent (Z)V
|
|
6580
6884
|
public final fun setTransparent (Z)V
|
|
6581
6885
|
public final fun showOrUpdate ()V
|
|
6582
|
-
public final fun updateState (II)V
|
|
6583
6886
|
}
|
|
6584
6887
|
|
|
6585
6888
|
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
6889
|
public fun handleException (Ljava/lang/Throwable;)V
|
|
6589
6890
|
public fun onChildEndedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
6590
6891
|
public fun onChildStartedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
@@ -6600,6 +6901,11 @@ public abstract interface class com/facebook/react/views/modal/ReactModalHostVie
|
|
|
6600
6901
|
public abstract fun onRequestClose (Landroid/content/DialogInterface;)V
|
|
6601
6902
|
}
|
|
6602
6903
|
|
|
6904
|
+
public final class com/facebook/react/views/progressbar/ProgressBarContainerView : android/widget/FrameLayout {
|
|
6905
|
+
public static final field MAX_PROGRESS I
|
|
6906
|
+
public fun <init> (Landroid/content/Context;)V
|
|
6907
|
+
}
|
|
6908
|
+
|
|
6603
6909
|
public final class com/facebook/react/views/progressbar/ProgressBarShadowNode : com/facebook/react/uimanager/LayoutShadowNode, com/facebook/yoga/YogaMeasureFunction {
|
|
6604
6910
|
public fun <init> ()V
|
|
6605
6911
|
public final fun getStyle ()Ljava/lang/String;
|
|
@@ -6614,20 +6920,17 @@ public class com/facebook/react/views/progressbar/ProgressBarShadowNode$$PropsSe
|
|
|
6614
6920
|
public fun setProperty (Lcom/facebook/react/views/progressbar/ProgressBarShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6615
6921
|
}
|
|
6616
6922
|
|
|
6617
|
-
public class com/facebook/react/views/progressbar/ReactProgressBarViewManager : com/facebook/react/uimanager/BaseViewManager, com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface {
|
|
6923
|
+
public final class com/facebook/react/views/progressbar/ReactProgressBarViewManager : com/facebook/react/uimanager/BaseViewManager, com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface {
|
|
6924
|
+
public static final field Companion Lcom/facebook/react/views/progressbar/ReactProgressBarViewManager$Companion;
|
|
6618
6925
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6619
6926
|
public fun <init> ()V
|
|
6620
|
-
public static fun createProgressBar (Landroid/content/Context;I)Landroid/widget/ProgressBar;
|
|
6621
6927
|
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6622
6928
|
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;
|
|
6929
|
+
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6626
6930
|
public fun getName ()Ljava/lang/String;
|
|
6627
6931
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6628
6932
|
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
|
|
6933
|
+
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6631
6934
|
public synthetic fun setAnimating (Landroid/view/View;Z)V
|
|
6632
6935
|
public fun setAnimating (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Z)V
|
|
6633
6936
|
public synthetic fun setColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
@@ -6653,17 +6956,56 @@ public class com/facebook/react/views/progressbar/ReactProgressBarViewManager$$P
|
|
|
6653
6956
|
public fun setProperty (Lcom/facebook/react/views/progressbar/ReactProgressBarViewManager;Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6654
6957
|
}
|
|
6655
6958
|
|
|
6959
|
+
public final class com/facebook/react/views/progressbar/ReactProgressBarViewManager$Companion {
|
|
6960
|
+
public final fun createProgressBar (Landroid/content/Context;I)Landroid/widget/ProgressBar;
|
|
6961
|
+
}
|
|
6962
|
+
|
|
6963
|
+
public final class com/facebook/react/views/safeareaview/ReactSafeAreaView : android/view/ViewGroup {
|
|
6964
|
+
public fun <init> (Lcom/facebook/react/uimanager/ThemedReactContext;)V
|
|
6965
|
+
public final fun getReactContext ()Lcom/facebook/react/uimanager/ThemedReactContext;
|
|
6966
|
+
}
|
|
6967
|
+
|
|
6968
|
+
public final class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/SafeAreaViewManagerInterface {
|
|
6969
|
+
public static final field Companion Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewManager$Companion;
|
|
6970
|
+
public static final field REACT_CLASS Ljava/lang/String;
|
|
6971
|
+
public fun <init> ()V
|
|
6972
|
+
public fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/LayoutShadowNode;
|
|
6973
|
+
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6974
|
+
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6975
|
+
public fun getName ()Ljava/lang/String;
|
|
6976
|
+
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6977
|
+
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6978
|
+
public fun updateState (Lcom/facebook/react/views/safeareaview/ReactSafeAreaView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6979
|
+
}
|
|
6980
|
+
|
|
6981
|
+
public class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6982
|
+
public fun <init> ()V
|
|
6983
|
+
public fun getProperties (Ljava/util/Map;)V
|
|
6984
|
+
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6985
|
+
public fun setProperty (Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewManager;Lcom/facebook/react/views/safeareaview/ReactSafeAreaView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6986
|
+
}
|
|
6987
|
+
|
|
6988
|
+
public final class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager$Companion {
|
|
6989
|
+
}
|
|
6990
|
+
|
|
6991
|
+
public class com/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
6992
|
+
public fun <init> ()V
|
|
6993
|
+
public fun getProperties (Ljava/util/Map;)V
|
|
6994
|
+
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6995
|
+
public fun setProperty (Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6996
|
+
}
|
|
6997
|
+
|
|
6656
6998
|
public abstract interface class com/facebook/react/views/scroll/FpsListener {
|
|
6657
6999
|
public abstract fun disable (Ljava/lang/String;)V
|
|
6658
7000
|
public abstract fun enable (Ljava/lang/String;)V
|
|
6659
7001
|
public abstract fun isEnabled ()Z
|
|
6660
7002
|
}
|
|
6661
7003
|
|
|
6662
|
-
public class com/facebook/react/views/scroll/OnScrollDispatchHelper {
|
|
7004
|
+
public final class com/facebook/react/views/scroll/OnScrollDispatchHelper {
|
|
6663
7005
|
public fun <init> ()V
|
|
6664
|
-
public fun getXFlingVelocity ()F
|
|
6665
|
-
public fun getYFlingVelocity ()F
|
|
6666
|
-
public fun onScrollChanged (II)Z
|
|
7006
|
+
public final fun getXFlingVelocity ()F
|
|
7007
|
+
public final fun getYFlingVelocity ()F
|
|
7008
|
+
public final fun onScrollChanged (II)Z
|
|
6667
7009
|
}
|
|
6668
7010
|
|
|
6669
7011
|
public class com/facebook/react/views/scroll/ReactHorizontalScrollContainerView : com/facebook/react/views/view/ReactViewGroup {
|
|
@@ -6738,7 +7080,7 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
6738
7080
|
public fun scrollTo (II)V
|
|
6739
7081
|
public fun scrollToPreservingMomentum (II)V
|
|
6740
7082
|
public fun setBackgroundColor (I)V
|
|
6741
|
-
public fun setBorderColor (
|
|
7083
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
6742
7084
|
public fun setBorderRadius (F)V
|
|
6743
7085
|
public fun setBorderRadius (FI)V
|
|
6744
7086
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
@@ -6785,11 +7127,14 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
6785
7127
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
6786
7128
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
6787
7129
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7130
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7131
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
6788
7132
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;ILjava/lang/Integer;)V
|
|
6789
7133
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
6790
7134
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6791
7135
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
6792
7136
|
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
7137
|
+
public fun setBoxShadow (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6793
7138
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6794
7139
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
6795
7140
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
@@ -6867,7 +7212,7 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
6867
7212
|
public fun scrollTo (II)V
|
|
6868
7213
|
public fun scrollToPreservingMomentum (II)V
|
|
6869
7214
|
public fun setBackgroundColor (I)V
|
|
6870
|
-
public fun setBorderColor (
|
|
7215
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
6871
7216
|
public fun setBorderRadius (F)V
|
|
6872
7217
|
public fun setBorderRadius (FI)V
|
|
6873
7218
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
@@ -7025,11 +7370,14 @@ public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebo
|
|
|
7025
7370
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
7026
7371
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7027
7372
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7373
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7374
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7028
7375
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactScrollView;ILjava/lang/Integer;)V
|
|
7029
7376
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7030
7377
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
7031
7378
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7032
7379
|
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7380
|
+
public fun setBoxShadow (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7033
7381
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7034
7382
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
7035
7383
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
@@ -7099,6 +7447,7 @@ public final class com/facebook/react/views/scroll/ScrollEventType$Companion {
|
|
|
7099
7447
|
|
|
7100
7448
|
public class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout : androidx/swiperefreshlayout/widget/SwipeRefreshLayout {
|
|
7101
7449
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
7450
|
+
public fun canChildScrollUp ()Z
|
|
7102
7451
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
7103
7452
|
public fun onLayout (ZIIII)V
|
|
7104
7453
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
@@ -7291,6 +7640,7 @@ public class com/facebook/react/views/text/ReactRawTextManager : com/facebook/re
|
|
|
7291
7640
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/text/ReactTextView;
|
|
7292
7641
|
public fun getName ()Ljava/lang/String;
|
|
7293
7642
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7643
|
+
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
7294
7644
|
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7295
7645
|
}
|
|
7296
7646
|
|
|
@@ -7321,10 +7671,12 @@ public abstract class com/facebook/react/views/text/ReactTextAnchorViewManager :
|
|
|
7321
7671
|
public fun setAccessible (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7322
7672
|
public fun setAdjustFontSizeToFit (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7323
7673
|
public fun setAndroidHyphenationFrequency (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7674
|
+
public fun setBackgroundColor (Landroid/view/View;I)V
|
|
7324
7675
|
public fun setBorderColor (Lcom/facebook/react/views/text/ReactTextView;ILjava/lang/Integer;)V
|
|
7325
7676
|
public fun setBorderRadius (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7326
7677
|
public fun setBorderStyle (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7327
7678
|
public fun setBorderWidth (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7679
|
+
public fun setBoxShadow (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7328
7680
|
public fun setDataDetectorType (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7329
7681
|
public fun setDisabled (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7330
7682
|
public fun setEllipsizeMode (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
@@ -7385,11 +7737,12 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
|
|
|
7385
7737
|
protected fun onDraw (Landroid/graphics/Canvas;)V
|
|
7386
7738
|
public fun onFinishTemporaryDetach ()V
|
|
7387
7739
|
protected fun onLayout (ZIIII)V
|
|
7740
|
+
protected fun onMeasure (II)V
|
|
7388
7741
|
public fun onStartTemporaryDetach ()V
|
|
7389
7742
|
public fun reactTagForTouch (FF)I
|
|
7390
7743
|
public fun setAdjustFontSizeToFit (Z)V
|
|
7391
7744
|
public fun setBackgroundColor (I)V
|
|
7392
|
-
public fun setBorderColor (
|
|
7745
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
7393
7746
|
public fun setBorderRadius (F)V
|
|
7394
7747
|
public fun setBorderRadius (FI)V
|
|
7395
7748
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
@@ -7538,6 +7891,7 @@ public class com/facebook/react/views/text/TextAttributeProps {
|
|
|
7538
7891
|
protected field mLineHeight F
|
|
7539
7892
|
protected field mLineHeightInput F
|
|
7540
7893
|
protected field mNumberOfLines I
|
|
7894
|
+
protected field mOpacity F
|
|
7541
7895
|
protected field mRole Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
7542
7896
|
protected field mTextAlign I
|
|
7543
7897
|
protected field mTextShadowColor I
|
|
@@ -7561,6 +7915,7 @@ public class com/facebook/react/views/text/TextAttributeProps {
|
|
|
7561
7915
|
public static fun getJustificationMode (Lcom/facebook/react/uimanager/ReactStylesDiffMap;I)I
|
|
7562
7916
|
public static fun getLayoutDirection (Ljava/lang/String;)I
|
|
7563
7917
|
public fun getLetterSpacing ()F
|
|
7918
|
+
public fun getOpacity ()F
|
|
7564
7919
|
public fun getRole ()Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
7565
7920
|
public static fun getTextAlignment (Lcom/facebook/react/uimanager/ReactStylesDiffMap;ZI)I
|
|
7566
7921
|
public static fun getTextBreakStrategy (Ljava/lang/String;)I
|
|
@@ -7621,6 +7976,7 @@ public class com/facebook/react/views/text/TextLayoutManager {
|
|
|
7621
7976
|
public static final field PA_KEY_TEXT_BREAK_STRATEGY S
|
|
7622
7977
|
public fun <init> ()V
|
|
7623
7978
|
public static fun adjustSpannableFontToFit (Landroid/text/Spannable;FLcom/facebook/yoga/YogaMeasureMode;FLcom/facebook/yoga/YogaMeasureMode;DIZIILandroid/text/Layout$Alignment;)V
|
|
7979
|
+
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
7980
|
public static fun deleteCachedSpannableForTag (I)V
|
|
7625
7981
|
public static fun getOrCreateSpannableForText (Landroid/content/Context;Lcom/facebook/react/common/mapbuffer/MapBuffer;Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Landroid/text/Spannable;
|
|
7626
7982
|
public static fun getTextAlignment (Lcom/facebook/react/common/mapbuffer/MapBuffer;Landroid/text/Spannable;)Landroid/text/Layout$Alignment;
|
|
@@ -7726,12 +8082,13 @@ public class com/facebook/react/views/textinput/ReactEditText : androidx/appcomp
|
|
|
7726
8082
|
public fun setAllowFontScaling (Z)V
|
|
7727
8083
|
public fun setAutoFocus (Z)V
|
|
7728
8084
|
public fun setBackgroundColor (I)V
|
|
7729
|
-
public fun setBorderColor (
|
|
8085
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
7730
8086
|
public fun setBorderRadius (F)V
|
|
7731
8087
|
public fun setBorderRadius (FI)V
|
|
7732
8088
|
public fun setBorderStyle (Ljava/lang/String;)V
|
|
7733
8089
|
public fun setBorderWidth (IF)V
|
|
7734
8090
|
public fun setContentSizeWatcher (Lcom/facebook/react/views/textinput/ContentSizeWatcher;)V
|
|
8091
|
+
public fun setContextMenuHidden (Z)V
|
|
7735
8092
|
public fun setDisableFullscreenUI (Z)V
|
|
7736
8093
|
public fun setFontFamily (Ljava/lang/String;)V
|
|
7737
8094
|
public fun setFontFeatureSettings (Ljava/lang/String;)V
|
|
@@ -7747,6 +8104,7 @@ public class com/facebook/react/views/textinput/ReactEditText : androidx/appcomp
|
|
|
7747
8104
|
public fun setPlaceholder (Ljava/lang/String;)V
|
|
7748
8105
|
public fun setReturnKeyType (Ljava/lang/String;)V
|
|
7749
8106
|
public fun setScrollWatcher (Lcom/facebook/react/views/textinput/ScrollWatcher;)V
|
|
8107
|
+
public fun setSelectTextOnFocus (Z)V
|
|
7750
8108
|
public fun setSelection (II)V
|
|
7751
8109
|
public fun setSelectionWatcher (Lcom/facebook/react/views/textinput/SelectionWatcher;)V
|
|
7752
8110
|
public fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
@@ -7799,10 +8157,13 @@ public class com/facebook/react/views/textinput/ReactTextInputManager : com/face
|
|
|
7799
8157
|
public fun setAutoCapitalize (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/Dynamic;)V
|
|
7800
8158
|
public fun setAutoCorrect (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Boolean;)V
|
|
7801
8159
|
public fun setAutoFocus (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
8160
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8161
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/textinput/ReactEditText;I)V
|
|
7802
8162
|
public fun setBorderColor (Lcom/facebook/react/views/textinput/ReactEditText;ILjava/lang/Integer;)V
|
|
7803
8163
|
public fun setBorderRadius (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
7804
8164
|
public fun setBorderStyle (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
7805
8165
|
public fun setBorderWidth (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
8166
|
+
public fun setBoxShadow (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7806
8167
|
public fun setCaretHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
7807
8168
|
public fun setColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
7808
8169
|
public fun setContextMenuHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
@@ -7933,21 +8294,6 @@ public class com/facebook/react/views/view/ReactViewBackgroundDrawable : com/fac
|
|
|
7933
8294
|
public fun <init> (Landroid/content/Context;)V
|
|
7934
8295
|
}
|
|
7935
8296
|
|
|
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
8297
|
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
8298
|
public fun <init> (Landroid/content/Context;)V
|
|
7953
8299
|
public fun addView (Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
|
|
@@ -7956,6 +8302,7 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
7956
8302
|
public fun dispatchGenericMotionEvent (Landroid/view/MotionEvent;)Z
|
|
7957
8303
|
public fun dispatchProvideStructure (Landroid/view/ViewStructure;)V
|
|
7958
8304
|
protected fun dispatchSetPressed (Z)V
|
|
8305
|
+
public fun draw (Landroid/graphics/Canvas;)V
|
|
7959
8306
|
protected fun drawChild (Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
|
7960
8307
|
protected fun getChildDrawingOrder (II)I
|
|
7961
8308
|
public fun getChildVisibleRect (Landroid/view/View;Landroid/graphics/Rect;Landroid/graphics/Point;)Z
|
|
@@ -7981,9 +8328,8 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
7981
8328
|
public fun requestLayout ()V
|
|
7982
8329
|
public fun setBackfaceVisibility (Ljava/lang/String;)V
|
|
7983
8330
|
public fun setBackfaceVisibilityDependantOpacity ()V
|
|
7984
|
-
public fun setBackground (Landroid/graphics/drawable/Drawable;)V
|
|
7985
8331
|
public fun setBackgroundColor (I)V
|
|
7986
|
-
public fun setBorderColor (
|
|
8332
|
+
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
7987
8333
|
public fun setBorderRadius (F)V
|
|
7988
8334
|
public fun setBorderRadius (FI)V
|
|
7989
8335
|
public fun setBorderRadius (Lcom/facebook/react/uimanager/style/BorderRadiusProp;Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
@@ -7995,6 +8341,7 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
7995
8341
|
public fun setOpacityIfPossible (F)V
|
|
7996
8342
|
public fun setOverflow (Ljava/lang/String;)V
|
|
7997
8343
|
public fun setOverflowInset (IIII)V
|
|
8344
|
+
public fun setPointerEvents (Lcom/facebook/react/uimanager/PointerEvents;)V
|
|
7998
8345
|
public fun setRemoveClippedSubviews (Z)V
|
|
7999
8346
|
public fun setTranslucentBackgroundDrawable (Landroid/graphics/drawable/Drawable;)V
|
|
8000
8347
|
public fun updateClippingRect ()V
|
|
@@ -8020,11 +8367,15 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8020
8367
|
public fun receiveCommand (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8021
8368
|
public fun setAccessible (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8022
8369
|
public fun setBackfaceVisibility (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8370
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8371
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8372
|
+
public fun setBackgroundImage (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8023
8373
|
public fun setBorderColor (Lcom/facebook/react/views/view/ReactViewGroup;ILjava/lang/Integer;)V
|
|
8024
8374
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8025
8375
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;ILcom/facebook/react/bridge/Dynamic;)V
|
|
8026
8376
|
public fun setBorderStyle (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8027
8377
|
public fun setBorderWidth (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8378
|
+
public fun setBoxShadow (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8028
8379
|
public fun setCollapsable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8029
8380
|
public fun setCollapsableChildren (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8030
8381
|
public fun setFocusable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
@@ -8055,3 +8406,8 @@ public final class com/facebook/react/views/view/ViewGroupClickEvent : com/faceb
|
|
|
8055
8406
|
public fun getEventName ()Ljava/lang/String;
|
|
8056
8407
|
}
|
|
8057
8408
|
|
|
8409
|
+
public final class com/facebook/react/views/view/WindowUtilKt {
|
|
8410
|
+
public static final fun setStatusBarTranslucency (Landroid/view/Window;Z)V
|
|
8411
|
+
public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
|
|
8412
|
+
}
|
|
8413
|
+
|