react-native-tvos 0.76.6-0 → 0.77.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/ActionSheetIOS/ActionSheetIOS.d.ts +1 -0
- package/Libraries/ActionSheetIOS/ActionSheetIOS.js +13 -0
- package/Libraries/Animated/AnimatedEvent.js +1 -1
- package/Libraries/Animated/AnimatedImplementation.js +2 -2
- package/Libraries/Animated/NativeAnimatedAllowlist.js +20 -9
- package/Libraries/Animated/animations/Animation.js +60 -25
- package/Libraries/Animated/animations/DecayAnimation.js +26 -38
- package/Libraries/Animated/animations/SpringAnimation.js +33 -39
- package/Libraries/Animated/animations/TimingAnimation.js +34 -42
- package/Libraries/Animated/components/AnimatedFlatList.js +1 -1
- package/Libraries/Animated/components/AnimatedSectionList.js +3 -1
- package/Libraries/Animated/createAnimatedComponent.js +60 -33
- package/Libraries/Animated/nodes/AnimatedColor.js +1 -1
- package/Libraries/Animated/nodes/AnimatedInterpolation.js +1 -1
- package/Libraries/Animated/nodes/AnimatedNode.js +39 -45
- package/Libraries/Animated/nodes/AnimatedObject.js +13 -3
- package/Libraries/Animated/nodes/AnimatedProps.js +104 -46
- package/Libraries/Animated/nodes/AnimatedStyle.js +116 -39
- package/Libraries/Animated/nodes/AnimatedTransform.js +56 -23
- package/Libraries/Animated/nodes/AnimatedValue.js +1 -1
- package/Libraries/Animated/nodes/AnimatedWithChildren.js +1 -3
- package/Libraries/Animated/useAnimatedProps.js +41 -35
- package/Libraries/AppDelegate/RCTAppDelegate.h +10 -64
- package/Libraries/AppDelegate/RCTAppDelegate.mm +23 -21
- package/Libraries/AppDelegate/RCTAppSetupUtils.h +5 -1
- package/Libraries/AppDelegate/RCTAppSetupUtils.mm +8 -14
- package/Libraries/AppDelegate/RCTArchConfiguratorProtocol.h +32 -0
- package/Libraries/AppDelegate/RCTDependencyProvider.h +26 -0
- package/Libraries/AppDelegate/RCTRootViewFactory.h +6 -2
- package/Libraries/AppDelegate/RCTRootViewFactory.mm +27 -43
- package/Libraries/AppDelegate/RCTUIConfiguratorProtocol.h +56 -0
- package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +2 -1
- package/Libraries/Blob/React-RCTBlob.podspec +3 -1
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +19 -3
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +77 -5
- package/Libraries/Components/ActivityIndicator/ActivityIndicator.js +4 -4
- package/Libraries/Components/Button.js +9 -4
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +3 -1
- package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +7 -0
- package/Libraries/Components/Pressable/Pressable.d.ts +1 -1
- package/Libraries/Components/Pressable/Pressable.js +7 -7
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js +13 -7
- package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +3 -2
- package/Libraries/Components/SafeAreaView/SafeAreaView.js +4 -4
- package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +0 -1
- package/Libraries/Components/ScrollView/ScrollView.js +51 -90
- package/Libraries/Components/ScrollView/ScrollViewCommands.js +1 -1
- package/Libraries/Components/ScrollView/ScrollViewContext.js +2 -0
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +0 -2
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +8 -9
- package/Libraries/Components/Switch/Switch.js +8 -6
- package/Libraries/Components/TV/TVFocusGuideView.js +2 -5
- package/Libraries/Components/TextInput/InputAccessoryView.js +1 -1
- package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +4 -4
- package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +6 -4
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +2 -1
- package/Libraries/Components/TextInput/TextInput.d.ts +27 -4
- package/Libraries/Components/TextInput/TextInput.flow.js +36 -19
- package/Libraries/Components/TextInput/TextInput.js +38 -14
- package/Libraries/Components/TextInput/TextInputState.js +11 -13
- package/Libraries/Components/Touchable/BoundingDimensions.js +11 -3
- package/Libraries/Components/Touchable/Position.js +7 -2
- package/Libraries/Components/Touchable/Touchable.js +4 -0
- package/Libraries/Components/Touchable/TouchableBounce.js +6 -2
- package/Libraries/Components/Touchable/TouchableHighlight.js +5 -5
- package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -1
- package/Libraries/Components/Touchable/TouchableOpacity.js +7 -7
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +1 -2
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +6 -1
- package/Libraries/Components/View/View.js +6 -11
- package/Libraries/Components/View/ViewNativeComponent.js +8 -111
- package/Libraries/Components/View/ViewPropTypes.d.ts +7 -0
- package/Libraries/Components/View/ViewPropTypes.js +0 -3
- package/Libraries/Core/ExceptionsManager.js +50 -29
- package/Libraries/Core/ReactNativeVersion.js +2 -2
- package/Libraries/Core/__mocks__/NativeExceptionsManager.js +0 -1
- package/Libraries/Core/setUpBatchedBridge.js +1 -10
- package/Libraries/Core/setUpDeveloperTools.js +1 -5
- package/Libraries/Core/setUpErrorHandling.js +20 -18
- package/Libraries/Core/setUpReactDevTools.js +107 -8
- package/Libraries/Core/setUpSegmentFetcher.js +1 -0
- package/Libraries/Core/setUpTimers.js +21 -18
- package/Libraries/Debugging/DebuggingOverlay.js +4 -5
- package/Libraries/Image/AssetSourceResolver.js +12 -1
- package/Libraries/Image/Image.android.js +1 -5
- package/Libraries/Image/Image.d.ts +20 -29
- package/Libraries/Image/Image.ios.js +0 -2
- package/Libraries/Image/ImageBackground.js +2 -5
- package/Libraries/Image/ImageProps.js +7 -6
- package/Libraries/Image/ImageResizeMode.d.ts +8 -1
- package/Libraries/Image/ImageResizeMode.js +4 -1
- package/Libraries/Image/ImageSource.d.ts +0 -2
- package/Libraries/Image/ImageSource.js +0 -2
- package/Libraries/Image/ImageTypes.flow.js +11 -9
- package/Libraries/Image/ImageUtils.js +6 -3
- package/Libraries/Image/ImageViewNativeComponent.js +5 -3
- package/Libraries/Image/RCTImageUtils.mm +2 -0
- package/Libraries/Image/RCTResizeMode.h +4 -1
- package/Libraries/Image/RCTResizeMode.mm +1 -0
- package/Libraries/Image/React-RCTImage.podspec +1 -1
- package/Libraries/Inspector/Inspector.js +1 -0
- package/Libraries/Inspector/NetworkOverlay.js +4 -0
- package/Libraries/Inspector/ReactDevToolsOverlay.js +8 -14
- package/Libraries/Inspector/getInspectorDataForViewAtPoint.js +3 -5
- package/Libraries/Interaction/InteractionManager.js +6 -1
- package/Libraries/Interaction/InteractionManagerStub.js +176 -0
- package/Libraries/Interaction/TouchHistoryMath.js +22 -19
- package/Libraries/JSInspector/NetworkAgent.js +1 -1
- package/Libraries/LinkingIOS/RCTLinkingManager.mm +2 -1
- package/Libraries/LinkingIOS/React-RCTLinking.podspec +1 -1
- package/Libraries/Lists/FlatList.d.ts +1 -2
- package/Libraries/Lists/FlatList.js +2 -2
- package/Libraries/Lists/SectionListModern.js +7 -7
- package/Libraries/Lists/__flowtests__/FlatList-flowtest.js +2 -2
- package/Libraries/Lists/__flowtests__/SectionList-flowtest.js +1 -1
- package/Libraries/LogBox/Data/LogBoxData.js +3 -3
- package/Libraries/LogBox/LogBox.js +18 -5
- package/Libraries/LogBox/LogBoxInspectorContainer.js +1 -1
- package/Libraries/LogBox/LogBoxNotificationContainer.js +3 -3
- package/Libraries/LogBox/UI/AnsiHighlight.js +26 -17
- package/Libraries/LogBox/UI/LogBoxButton.js +2 -2
- package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.js +6 -1
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +1 -1
- package/Libraries/LogBox/UI/LogBoxInspectorStackFrames.js +1 -1
- package/Libraries/LogBox/UI/LogBoxMessage.js +2 -2
- package/Libraries/LogBox/UI/LogBoxNotification.js +1 -1
- package/Libraries/Modal/Modal.d.ts +12 -0
- package/Libraries/Modal/Modal.js +31 -4
- package/Libraries/NativeAnimation/React-RCTAnimation.podspec +1 -1
- package/Libraries/NativeComponent/BaseViewConfig.android.js +72 -1
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +2 -1
- package/Libraries/NativeComponent/NativeComponentRegistry.js +3 -3
- package/Libraries/NativeComponent/StaticViewConfigValidator.js +0 -1
- package/Libraries/NativeComponent/TVViewConfig.js +1 -0
- package/Libraries/Network/FormData.js +11 -3
- package/Libraries/Network/React-RCTNetwork.podspec +1 -1
- package/Libraries/Network/XHRInterceptor.js +63 -14
- package/Libraries/Network/XMLHttpRequest.js +26 -1
- package/Libraries/NewAppScreen/components/HermesBadge.js +1 -1
- package/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts +49 -2
- package/Libraries/PermissionsAndroid/PermissionsAndroid.js +4 -4
- package/Libraries/Pressability/HoverState.js +2 -0
- package/Libraries/Pressability/Pressability.js +4 -5
- package/Libraries/Pressability/usePressability.js +4 -1
- package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +1 -1
- package/Libraries/ReactNative/AppContainer.js +1 -1
- package/Libraries/ReactNative/AppRegistry.js +1 -11
- package/Libraries/ReactNative/DisplayMode.js +1 -1
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +2 -3
- package/Libraries/ReactNative/RendererImplementation.js +18 -17
- package/Libraries/ReactNative/getCachedComponentWithDebugName.js +1 -3
- package/Libraries/ReactNative/renderApplication.js +9 -8
- package/Libraries/ReactNative/requireNativeComponent.js +5 -2
- package/Libraries/Renderer/shims/ReactFabric.js +3 -3
- package/Libraries/Renderer/shims/ReactFeatureFlags.js +2 -2
- package/Libraries/Renderer/shims/ReactNative.js +3 -3
- package/Libraries/Renderer/shims/ReactNativeTypes.js +22 -35
- package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +5 -6
- package/Libraries/Renderer/shims/createReactNativeComponentClass.js +2 -2
- package/Libraries/Settings/React-RCTSettings.podspec +1 -1
- package/Libraries/StyleSheet/StyleSheet.js +7 -1
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +13 -2
- package/Libraries/StyleSheet/StyleSheetTypes.js +24 -6
- package/Libraries/StyleSheet/processBackgroundImage.js +87 -110
- package/Libraries/StyleSheet/processTransform.js +3 -34
- package/Libraries/Text/RCTTextAttributes.h +1 -2
- package/Libraries/Text/RCTTextAttributes.mm +9 -13
- package/Libraries/Text/Text.js +248 -249
- package/Libraries/Text/TextInput/Multiline/RCTUITextView.h +1 -0
- package/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h +1 -0
- package/Libraries/Text/TextInput/RCTBaseTextInputView.h +1 -0
- package/Libraries/Text/TextInput/RCTBaseTextInputView.mm +24 -2
- package/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm +1 -0
- package/Libraries/Text/TextInput/Singleline/RCTUITextField.h +1 -0
- package/Libraries/Text/TextNativeComponent.js +0 -1
- package/Libraries/TurboModule/TurboModuleRegistry.js +5 -5
- package/Libraries/Types/CoreEventTypes.d.ts +3 -10
- package/Libraries/Types/CoreEventTypes.js +4 -6
- package/Libraries/Utilities/Appearance.js +3 -1
- package/Libraries/Utilities/BackHandler.android.js +6 -18
- package/Libraries/Utilities/BackHandler.d.ts +0 -4
- package/Libraries/Utilities/BackHandler.ios.js +3 -16
- package/Libraries/Utilities/BackHandler.js.flow +0 -4
- package/Libraries/Utilities/HMRClient.js +3 -4
- package/Libraries/Utilities/Platform.flow.js +2 -2
- package/Libraries/Utilities/__mocks__/BackHandler.js +3 -8
- package/Libraries/Utilities/codegenNativeComponent.js +1 -1
- package/Libraries/Utilities/setAndForwardRef.js +2 -2
- package/Libraries/Utilities/useMergeRefs.js +26 -7
- package/Libraries/Vibration/React-RCTVibration.podspec +1 -1
- package/Libraries/WebSocket/WebSocketEvent.js +4 -1
- package/Libraries/WebSocket/WebSocketInterceptor.js +31 -13
- package/Libraries/__flowtests__/ReactNativeTypes-flowtest.js +6 -5
- package/Libraries/promiseRejectionTrackingOptions.js +1 -1
- package/React/Base/RCTBridge.h +3 -0
- package/React/Base/RCTBridge.mm +12 -11
- package/React/Base/RCTBridgeModule.h +1 -9
- package/React/Base/RCTBridgeProxy.h +3 -0
- package/React/Base/RCTBridgeProxy.mm +10 -0
- package/React/Base/RCTCallInvoker.mm +5 -0
- package/React/Base/RCTConstants.h +2 -12
- package/React/Base/RCTConstants.m +3 -31
- package/React/Base/RCTConvert.mm +3 -0
- package/React/Base/RCTKeyCommands.m +0 -2
- package/React/Base/RCTModuleData.h +1 -7
- package/React/Base/RCTModuleData.mm +27 -34
- package/React/Base/RCTModuleMethod.mm +1 -1
- package/React/Base/RCTTouchEvent.m +1 -1
- package/React/Base/RCTUtils.h +1 -1
- package/React/Base/RCTUtils.m +9 -10
- package/React/Base/RCTVersion.m +2 -2
- package/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h +7 -0
- package/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.mm +2 -5
- package/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h +1 -1
- package/React/CoreModules/PlatformStubs/RCTStatusBarManager.mm +57 -0
- package/React/CoreModules/RCTAccessibilityManager.h +1 -0
- package/React/CoreModules/RCTAccessibilityManager.mm +27 -0
- package/React/CoreModules/RCTActionSheetManager.mm +14 -7
- package/React/CoreModules/RCTAppearance.h +1 -1
- package/React/CoreModules/RCTAppearance.mm +8 -2
- package/React/CoreModules/RCTDevLoadingView.mm +42 -25
- package/React/CoreModules/RCTDevMenu.mm +5 -1
- package/{ReactAndroid/src/main/java/com/facebook/perftest/PerfTestConfig.java → React/CoreModules/RCTDevToolsRuntimeSettingsModule.h} +3 -7
- package/React/CoreModules/RCTDevToolsRuntimeSettingsModule.mm +58 -0
- package/React/CoreModules/RCTDeviceInfo.mm +4 -1
- package/React/CoreModules/RCTEventDispatcher.mm +1 -1
- package/React/CoreModules/RCTExceptionsManager.h +2 -6
- package/React/CoreModules/RCTExceptionsManager.mm +35 -30
- package/React/CoreModules/React-CoreModules.podspec +12 -2
- package/React/CxxBridge/RCTCxxBridge.mm +20 -23
- package/React/CxxModule/RCTCxxMethod.mm +10 -2
- package/React/DevSupport/RCTInspectorDevServerHelper.mm +1 -5
- package/React/DevSupport/RCTPackagerConnection.mm +11 -0
- package/React/DevSupport/RCTPausedInDebuggerOverlayController.mm +5 -1
- package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec-generated.mm +2395 -0
- package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec.h +2854 -0
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI-generated.cpp +2982 -0
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI.h +8201 -0
- package/React/Fabric/AppleEventBeat.cpp +31 -0
- package/{ReactCommon/react/renderer/scheduler/AsynchronousEventBeat.h → React/Fabric/AppleEventBeat.h} +8 -11
- package/React/Fabric/Mounting/ComponentViews/Image/RCTImageComponentView.mm +0 -8
- package/React/Fabric/Mounting/ComponentViews/Modal/RCTFabricModalHostViewController.mm +1 -1
- package/React/Fabric/Mounting/ComponentViews/RCTFabricComponentsPlugins.h +0 -1
- package/React/Fabric/Mounting/ComponentViews/RCTFabricComponentsPlugins.mm +1 -1
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm +3 -1
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +106 -59
- package/React/Fabric/Mounting/ComponentViews/Switch/RCTSwitchComponentView.mm +2 -1
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +35 -15
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.mm +9 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +161 -96
- package/React/Fabric/Mounting/RCTMountingManager.h +1 -1
- package/React/Fabric/Mounting/RCTMountingManager.mm +1 -2
- package/React/Fabric/RCTScheduler.h +3 -2
- package/React/Fabric/RCTScheduler.mm +5 -8
- package/React/Fabric/RCTSurfacePointerHandler.mm +8 -6
- package/React/Fabric/RCTSurfacePresenter.mm +6 -18
- package/React/Fabric/Surface/RCTFabricSurface.mm +7 -6
- package/React/Fabric/Utils/PlatformRunLoopObserver.h +6 -3
- package/React/Fabric/Utils/PlatformRunLoopObserver.mm +2 -5
- package/React/Fabric/Utils/RCTLinearGradient.h +19 -0
- package/React/Fabric/Utils/RCTLinearGradient.mm +134 -0
- package/React/I18n/FBXXHashUtils.h +10 -8
- package/React/Inspector/RCTCxxInspectorPackagerConnection.mm +3 -0
- package/React/Inspector/RCTCxxInspectorPackagerConnectionDelegate.mm +3 -0
- package/React/Inspector/RCTCxxInspectorWebSocketAdapter.mm +12 -1
- package/React/Inspector/RCTInspector.mm +1 -1
- package/React/Modules/{RCTUIManager.m → RCTUIManager.mm} +7 -4
- package/React/React-RCTFBReactNativeSpec.podspec +87 -0
- package/React/React-RCTFabric.podspec +3 -1
- package/React/Tests/Text/RCTAttributedTextUtilsTest.mm +274 -0
- package/React/Tests/Text/RCTParagraphComponentViewTests.mm +20 -20
- package/React/Tests/Text/RCTTextAttributesTest.mm +49 -0
- package/React/Views/RCTBorderDrawing.h +5 -5
- package/React/Views/RCTBorderDrawing.m +21 -23
- package/React/Views/{RCTComponentData.m → RCTComponentData.mm} +5 -4
- package/React/Views/RCTLayout.m +3 -0
- package/React/Views/RCTModalHostViewController.m +1 -1
- package/React/Views/RCTModalHostViewManager.m +3 -23
- package/React/Views/RCTView.m +9 -10
- package/React/Views/RCTViewManager.m +1 -1
- package/React/Views/ScrollView/RCTScrollEvent.m +3 -0
- package/React/Views/ScrollView/RCTScrollView.h +1 -1
- package/React/Views/ScrollView/RCTScrollView.m +80 -26
- package/React/Views/ScrollView/RCTScrollViewManager.m +1 -0
- package/React/third-party.xcconfig +1 -1
- package/React-Core.podspec +4 -2
- package/ReactAndroid/api/ReactAndroid.api +339 -814
- package/ReactAndroid/build.gradle.kts +48 -13
- package/ReactAndroid/cmake-utils/ReactNative-application.cmake +1 -1
- package/ReactAndroid/gradle.properties +8 -2
- package/ReactAndroid/hermes-engine/build.gradle.kts +28 -26
- package/ReactAndroid/src/main/AndroidManifest.xml +1 -1
- package/ReactAndroid/src/main/java/com/facebook/debug/debugoverlay/model/DebugOverlayTag.kt +21 -0
- package/ReactAndroid/src/main/java/com/facebook/debug/holder/NoopPrinter.kt +4 -5
- package/ReactAndroid/src/main/java/com/facebook/debug/holder/Printer.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/debug/holder/PrinterHolder.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/debug/tags/ReactDebugOverlayTags.kt +45 -0
- package/ReactAndroid/src/main/java/com/facebook/proguard/annotations/KeepGettersAndSetters.kt +24 -0
- package/ReactAndroid/src/main/java/com/facebook/react/BaseReactPackage.kt +131 -0
- package/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.java +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/NativeModuleRegistryBuilder.kt +61 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivity.java +12 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivityDelegate.java +74 -34
- package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +109 -27
- package/ReactAndroid/src/main/java/com/facebook/react/ReactFragment.java +25 -7
- package/ReactAndroid/src/main/java/com/facebook/react/ReactHost.kt +35 -3
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +43 -27
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManagerBuilder.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackage.kt +53 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageHelper.kt +43 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageTurboModuleManagerDelegate.java +1 -2
- package/ReactAndroid/src/main/java/com/facebook/react/ReactRootView.java +28 -0
- package/ReactAndroid/src/main/java/com/facebook/react/TurboReactPackage.kt +13 -0
- package/ReactAndroid/src/main/java/com/facebook/react/{ViewManagerOnDemandReactPackage.java → ViewManagerOnDemandReactPackage.kt} +8 -8
- package/ReactAndroid/src/main/java/com/facebook/react/animated/EventAnimationDriver.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/InterpolationAnimatedNode.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java +22 -30
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ObjectAnimatedNode.kt +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/animated/TransformAnimatedNode.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/AssertionException.kt +14 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BridgeReactContext.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CatalystInstance.kt +9 -10
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CatalystInstanceImpl.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ColorPropConverter.java +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxCallbackImpl.java +3 -6
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicNative.kt +2 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{InvalidIteratorException.java → InvalidIteratorException.kt} +4 -9
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{JSApplicationCausedNativeException.java → JSApplicationCausedNativeException.kt} +7 -16
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSApplicationIllegalArgumentException.kt +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaOnlyArray.kt +148 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaOnlyMap.kt +180 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArgumentsParseException.kt +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArray.kt +25 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeMap.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NoSuchKeyException.kt +14 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{ObjectAlreadyConsumedException.java → ObjectAlreadyConsumedException.kt} +4 -9
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactContext.java +4 -3
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactIgnorableMountingException.kt +35 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactNoCrashBridgeNotAllowedSoftException.kt +17 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactNoCrashSoftException.kt +22 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactSoftExceptionLogger.kt +65 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableArray.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableMap.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeArray.kt +92 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeMap.kt +8 -13
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{RetryableMountingLayerException.java → RetryableMountingLayerException.kt} +6 -11
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UIManagerProvider.kt +1 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/WritableNativeArray.kt +52 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/WritableNativeMap.kt +6 -9
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/interop/InteropModuleRegistry.kt +49 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/{SurfaceDelegate.java → SurfaceDelegate.kt} +11 -11
- package/ReactAndroid/src/main/java/com/facebook/react/common/SurfaceDelegateFactory.kt +22 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/build/ReactBuildConfig.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/futures/SimpleSettableFuture.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/common/network/OkHttpCallUtil.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/config/ReactFeatureFlags.kt +35 -0
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultNewArchitectureEntryPoint.kt +14 -15
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactHost.kt +52 -3
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultTurboModuleManagerDelegate.kt +14 -18
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgeDevSupportManager.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgelessDevSupportManager.java +124 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.java +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevSupportManagerFactory.kt +33 -26
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java +6 -3
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSettingsActivity.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerBase.java +28 -38
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerFactory.java +22 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/LogBoxDialog.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/LogBoxDialogSurfaceDelegate.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/LogBoxModule.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReactInstanceDevHelper.java +12 -2
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxDialogSurfaceDelegate.java +37 -3
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReleaseDevSupportManager.kt +3 -6
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/StackTraceHelper.java +23 -5
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/DevSupportManager.kt +1 -2
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/DevToolsReactPerfLogger.java +6 -7
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +24 -26
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/{BindingImpl.kt → FabricUIManagerBinding.kt} +26 -20
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerProviderImpl.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/LongStreamingStats.kt +62 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/StateWrapperImpl.java +10 -14
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/SurfaceHandlerBinding.java +10 -57
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventEmitterWrapper.java +5 -17
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/FabricEventEmitter.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountItemDispatcher.java +45 -62
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java +10 -18
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DestroyUnmountedViewMountItem.kt +30 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/FabricNameComponentMapping.kt +3 -9
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/IntBufferBatchMountItem.java +27 -11
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/MountItemFactory.kt +5 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/PreAllocateViewMountItem.kt +63 -0
- package/ReactAndroid/src/main/java/com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler.kt +20 -10
- package/ReactAndroid/src/main/java/com/facebook/react/interfaces/fabric/ReactSurface.kt +10 -10
- package/ReactAndroid/src/main/java/com/facebook/react/interfaces/fabric/SurfaceHandler.kt +0 -11
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +80 -66
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsAccessor.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +107 -124
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +25 -27
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +25 -29
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +136 -144
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +23 -27
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeNewArchitectureFeatureFlagsDefaults.kt +25 -22
- package/ReactAndroid/src/main/java/com/facebook/react/internal/interop/InteropEventEmitter.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/module/model/ReactModuleInfo.kt +11 -16
- package/ReactAndroid/src/main/java/com/facebook/react/modules/accessibilityinfo/AccessibilityInfoModule.kt +121 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/appearance/AppearanceModule.kt +0 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/appstate/AppStateModule.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/camera/ImageStoreManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/clipboard/ClipboardModule.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ExceptionsManagerModule.kt +0 -11
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ReactChoreographer.kt +7 -8
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DidJSUpdateUiDuringFrameDetector.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/FpsDebugFrameCallback.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/devloading/DevLoadingModule.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/devtoolsruntimesettings/ReactDevToolsRuntimeSettingsModule.kt +49 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/dialog/AlertFragment.java +57 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/dialog/DialogTitle.kt +55 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/FrescoModule.kt +21 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ImageCacheControl.kt +31 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactNetworkImageRequest.kt +6 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactOkHttpNetworkFetcher.kt +19 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/SystraceRequestListener.kt +21 -14
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/XmlFormat.kt +143 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/i18nmanager/I18nManagerModule.kt +5 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/intent/IntentModule.kt +270 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/permissions/PermissionsModule.kt +4 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/reactdevtoolssettings/ReactDevToolsSettingsManagerModule.kt +34 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/share/ShareModule.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/sound/SoundManagerModule.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoHelpers.kt +126 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoModule.kt +87 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/vibration/VibrationModule.kt +8 -4
- package/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/reactperflogger/NativeModulePerfLogger.kt +11 -11
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessCatalystInstance.kt +15 -8
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.java +153 -81
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImplDevHelper.kt +75 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.java +2 -3
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactSurfaceImpl.java +6 -2
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/cxxreactpackage/CxxReactPackage.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/{Continuation.java → Continuation.kt} +4 -8
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/{ExecutorException.java → ExecutorException.kt} +3 -9
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Task.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/TaskCompletionSource.kt +50 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/UnobservedErrorNotifier.kt +27 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/{UnobservedTaskException.java → UnobservedTaskException.kt} +2 -8
- package/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.kt +272 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BackgroundStyleApplicator.kt +398 -62
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +42 -36
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerDelegate.kt +40 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BlendModeHelper.kt +7 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/FilterHelper.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/JSPointerDispatcher.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeViewHierarchyManager.java +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/PixelUtil.kt +12 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactAccessibilityDelegate.java +13 -14
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ReactClippingProhibitedView.java → ReactClippingProhibitedView.kt} +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ReactCompoundView.java → ReactCompoundView.kt} +3 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ReactCompoundViewGroup.java → ReactCompoundViewGroup.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIImplementation.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModule.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModuleConstantsHelper.java +4 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIViewOperationQueue.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewGroupDrawingOrderHelper.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewGroupManager.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewProps.kt +5 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactProp.java +0 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactPropGroup.java +0 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactPropertyHolder.java +0 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/debug/NotThreadSafeViewHierarchyUpdateDebugListener.kt +25 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BackgroundDrawable.kt +257 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BorderDrawable.kt +1071 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CSSBackgroundDrawable.java +11 -9
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CompositeBackgroundDrawable.kt +200 -24
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/InsetBoxShadowDrawable.kt +16 -20
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutlineDrawable.kt +189 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutsetBoxShadowDrawable.kt +15 -11
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/BlackHoleEventDispatcher.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FabricEventDispatcher.java +7 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/PointerEvent.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchEvent.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BackgroundImageLayer.kt +3 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderColors.kt +107 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderRadiusStyle.kt +53 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BoxShadow.kt +14 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/ComputedBorderRadius.kt +5 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Gradient.kt +20 -29
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/LinearGradient.kt +137 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/OutlineStyle.kt +26 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/util/ReactFindViewUtil.kt +129 -0
- package/ReactAndroid/src/main/java/com/facebook/react/util/JSStackTrace.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/common/ContextUtils.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager.kt +96 -90
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ImageResizeMethod.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ImageResizeMode.kt +4 -1
- 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 +8 -56
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageView.kt +74 -171
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/ImageSource.kt +7 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/MultiSourceHelper.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/ResourceDrawableIdHelper.kt +0 -35
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ModalHostShadowNode.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostManager.kt +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt +24 -6
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ProgressBarContainerView.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ProgressBarShadowNode.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ReactProgressBarViewManager.kt +25 -25
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaView.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaViewManager.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollContainerLegacyView.kt +46 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager.kt +27 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollView.java +56 -100
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollViewManager.java +15 -93
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java +44 -81
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewCommandHelper.kt +101 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewHelper.kt +28 -49
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.java +12 -63
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ScrollEvent.kt +5 -11
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout.kt +131 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/RefreshEvent.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager.kt +153 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchManager.java +6 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/FontMetricsUtil.kt +72 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactBaseTextShadowNode.java +7 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactFontManager.kt +60 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextManager.kt +45 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextAnchorViewManager.java +12 -59
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextShadowNode.java +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextUpdate.kt +92 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +20 -54
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewManagerCallback.kt +25 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTypefaceUtils.kt +114 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/{ReactVirtualTextShadowNode.java → ReactVirtualTextShadowNode.kt} +3 -8
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactVirtualTextViewManager.kt +38 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextLayoutManager.java +161 -56
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextTransform.kt +48 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/CustomLineHeightSpan.kt +25 -38
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/LegacyLineHeightSpan.kt +69 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactTextPaintHolderSpan.kt +13 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java +54 -58
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputManager.java +16 -60
- package/ReactAndroid/src/main/java/com/facebook/react/views/unimplementedview/ReactUnimplementedView.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager.kt +14 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/CanvasUtil.kt +0 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactClippingViewManager.kt +82 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactDrawableHelper.java +9 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.java +149 -351
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +489 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/WindowUtil.kt +42 -0
- package/ReactAndroid/src/main/java/com/facebook/systrace/Systrace.kt +11 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaBoxSizing.java +33 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaDisplay.java +3 -1
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaErrata.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNative.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNode.java +4 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNodeJNIBase.java +10 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaProps.java +4 -0
- package/ReactAndroid/src/main/jni/CMakeLists.txt +1 -0
- package/ReactAndroid/src/main/jni/first-party/yogajni/jni/YGJNIVanilla.cpp +7 -0
- package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnection.cpp +4 -2
- package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnection.h +2 -0
- package/ReactAndroid/src/main/jni/react/fabric/{AsyncEventBeat.cpp → AndroidEventBeat.cpp} +10 -32
- package/ReactAndroid/src/main/jni/react/fabric/{AsyncEventBeat.h → AndroidEventBeat.h} +6 -9
- package/ReactAndroid/src/main/jni/react/fabric/Binding.h +3 -156
- package/ReactAndroid/src/main/jni/react/fabric/CoreComponentsRegistry.cpp +1 -0
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp +422 -313
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.h +2 -4
- package/ReactAndroid/src/main/jni/react/fabric/{Binding.cpp → FabricUIManagerBinding.cpp} +233 -151
- package/ReactAndroid/src/main/jni/react/fabric/FabricUIManagerBinding.h +174 -0
- package/ReactAndroid/src/main/jni/react/fabric/JFabricUIManager.cpp +5 -6
- package/ReactAndroid/src/main/jni/react/fabric/JFabricUIManager.h +2 -2
- package/ReactAndroid/src/main/jni/react/fabric/OnLoad.cpp +2 -2
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.cpp +16 -48
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.h +1 -3
- package/ReactAndroid/src/main/jni/react/fabric/SurfaceHandlerBinding.cpp +8 -36
- package/ReactAndroid/src/main/jni/react/fabric/SurfaceHandlerBinding.h +2 -9
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +149 -163
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +32 -34
- package/ReactAndroid/src/main/jni/react/jni/JCallback.h +1 -1
- package/ReactAndroid/src/main/jni/react/jni/JInspector.cpp +1 -1
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeArray.cpp +2 -3
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeArray.h +1 -1
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeMap.cpp +2 -3
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeMap.h +1 -1
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactExceptionManager.cpp +29 -8
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactExceptionManager.h +3 -1
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactInstance.cpp +2 -1
- package/ReactAndroid/src/main/jni/react/turbomodule/CMakeLists.txt +0 -1
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/BindingsInstallerHolder.cpp +12 -3
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/BindingsInstallerHolder.h +15 -4
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/OnLoad.cpp +0 -3
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/TurboModuleManager.cpp +1 -1
- package/ReactAndroid/src/main/jni/third-party/fast_float/CMakeLists.txt +13 -0
- package/ReactAndroid/src/main/jni/third-party/folly/CMakeLists.txt +5 -6
- package/ReactAndroid/src/main/res/views/alert/layout/alert_title_layout.xml +22 -0
- package/ReactCommon/React-Fabric.podspec +4 -2
- package/ReactCommon/React-FabricComponents.podspec +7 -4
- package/ReactCommon/React-FabricImage.podspec +6 -2
- package/ReactCommon/ReactCommon.podspec +5 -3
- package/ReactCommon/callinvoker/React-callinvoker.podspec +0 -6
- package/ReactCommon/cxxreact/CMakeLists.txt +0 -1
- package/ReactCommon/cxxreact/CxxNativeModule.cpp +6 -3
- package/ReactCommon/cxxreact/JSBigString.cpp +4 -4
- package/ReactCommon/cxxreact/JSExecutor.cpp +2 -4
- package/ReactCommon/cxxreact/React-cxxreact.podspec +4 -2
- package/ReactCommon/cxxreact/ReactNativeVersion.h +2 -2
- package/ReactCommon/devtoolsruntimesettings/CMakeLists.txt +22 -0
- package/ReactCommon/devtoolsruntimesettings/DevToolsRuntimeSettings.cpp +27 -0
- package/ReactCommon/devtoolsruntimesettings/DevToolsRuntimeSettings.h +56 -0
- package/ReactCommon/hermes/React-hermes.podspec +3 -1
- package/ReactCommon/jsc/JSCRuntime.cpp +9 -9
- package/ReactCommon/jserrorhandler/CMakeLists.txt +2 -1
- package/ReactCommon/jserrorhandler/JsErrorHandler.cpp +369 -98
- package/ReactCommon/jserrorhandler/JsErrorHandler.h +34 -8
- package/ReactCommon/jserrorhandler/React-jserrorhandler.podspec +8 -4
- package/ReactCommon/jserrorhandler/StackTraceParser.cpp +317 -0
- package/ReactCommon/jserrorhandler/StackTraceParser.h +23 -0
- package/ReactCommon/jserrorhandler/tests/StackTraceParserTest.cpp +1196 -0
- package/ReactCommon/jsi/React-jsi.podspec +8 -3
- package/ReactCommon/jsi/jsi/decorator.h +16 -0
- package/ReactCommon/jsi/jsi/jsi.cpp +113 -2
- package/ReactCommon/jsi/jsi/jsi.h +19 -6
- package/ReactCommon/jsi/jsi/test/testlib.cpp +59 -0
- package/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +4 -2
- package/ReactCommon/jsinspector-modern/HostAgent.cpp +6 -40
- package/ReactCommon/jsinspector-modern/HostAgent.h +4 -1
- package/ReactCommon/jsinspector-modern/InspectorFlags.cpp +2 -0
- package/ReactCommon/jsinspector-modern/InspectorInterfaces.cpp +8 -7
- package/ReactCommon/jsinspector-modern/InspectorInterfaces.h +2 -2
- package/ReactCommon/jsinspector-modern/InspectorPackagerConnection.cpp +19 -9
- package/ReactCommon/jsinspector-modern/InspectorPackagerConnection.h +4 -2
- package/ReactCommon/jsinspector-modern/InspectorPackagerConnectionImpl.h +6 -3
- package/ReactCommon/jsinspector-modern/React-jsinspector.podspec +1 -1
- package/ReactCommon/jsinspector-modern/TracingAgent.cpp +59 -0
- package/ReactCommon/jsinspector-modern/TracingAgent.h +41 -0
- package/ReactCommon/jsinspector-modern/tests/InspectorPackagerConnectionTest.cpp +29 -33
- package/ReactCommon/jsinspector-modern/tests/JsiIntegrationTest.cpp +130 -0
- package/ReactCommon/jsinspector-modern/tests/ReactInstanceIntegrationTest.cpp +4 -13
- package/ReactCommon/logger/React-logger.podspec +2 -1
- package/ReactCommon/react/bridging/Base.h +29 -4
- package/ReactCommon/react/bridging/Convert.h +2 -2
- package/ReactCommon/react/config/ReactNativeConfig.cpp +0 -3
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +66 -59
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +67 -60
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +191 -218
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +31 -33
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +37 -45
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +15 -17
- package/ReactCommon/react/featureflags/tests/ReactNativeFeatureFlagsTest.cpp +23 -0
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboCxxModule.cpp +4 -16
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboCxxModule.h +1 -1
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboModule.h +22 -22
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleBinding.cpp +65 -45
- package/ReactCommon/react/nativemodule/core/platform/ios/React-NativeModulesApple.podspec +5 -2
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +2 -2
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.h +0 -8
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm +4 -22
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleWithJSIBindings.h +9 -1
- package/ReactCommon/react/nativemodule/defaults/CMakeLists.txt +1 -0
- package/ReactCommon/react/nativemodule/defaults/DefaultTurboModules.cpp +10 -0
- package/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +18 -2
- package/ReactCommon/react/nativemodule/devtoolsruntimesettings/CMakeLists.txt +24 -0
- package/ReactCommon/react/nativemodule/devtoolsruntimesettings/DevToolsRuntimeSettingsModule.cpp +35 -0
- package/ReactCommon/react/nativemodule/devtoolsruntimesettings/DevToolsRuntimeSettingsModule.h +27 -0
- package/ReactCommon/react/nativemodule/devtoolsruntimesettings/README.md +6 -0
- package/ReactCommon/react/nativemodule/dom/React-domnativemodule.podspec +21 -3
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +54 -57
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +24 -26
- package/ReactCommon/react/nativemodule/featureflags/React-featureflagsnativemodule.podspec +19 -3
- package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +18 -3
- package/ReactCommon/react/nativemodule/intersectionobserver/NativeIntersectionObserver.cpp +6 -1
- package/ReactCommon/react/nativemodule/intersectionobserver/NativeIntersectionObserver.h +3 -1
- package/ReactCommon/react/nativemodule/microtasks/React-microtasksnativemodule.podspec +18 -3
- package/ReactCommon/react/nativemodule/mutationobserver/NativeMutationObserver.cpp +2 -1
- package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +6 -3
- package/ReactCommon/react/nativemodule/samples/platform/android/ReactCommon/SampleTurboModuleJSIBindings.cpp +5 -4
- package/ReactCommon/react/nativemodule/samples/platform/android/SampleLegacyModule.kt +277 -0
- package/ReactCommon/react/nativemodule/samples/platform/android/SampleTurboModule.kt +245 -0
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTNativeSampleTurboModuleSpec.h +4 -0
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleLegacyModule.mm +2 -2
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboModule.mm +3 -2
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.cpp +261 -28
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.h +131 -0
- package/ReactCommon/react/performance/timeline/CircularBuffer.h +133 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntry.h +53 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryBuffer.h +40 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryCircularBuffer.cpp +38 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryCircularBuffer.h +34 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryKeyedBuffer.cpp +59 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryKeyedBuffer.h +39 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.cpp +140 -206
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.h +82 -131
- package/ReactCommon/react/performance/timeline/PerformanceObserver.cpp +92 -0
- package/ReactCommon/react/performance/timeline/PerformanceObserver.h +139 -0
- package/ReactCommon/react/performance/timeline/PerformanceObserverRegistry.cpp +34 -0
- package/ReactCommon/react/performance/timeline/PerformanceObserverRegistry.h +54 -0
- package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -0
- package/ReactCommon/react/performance/timeline/tests/CircularBufferTest.cpp +127 -0
- package/ReactCommon/react/performance/timeline/tests/PerformanceEntryReporterTest.cpp +238 -254
- package/ReactCommon/react/performance/timeline/tests/PerformanceObserverTest.cpp +272 -0
- package/ReactCommon/react/renderer/animations/LayoutAnimationKeyFrameManager.h +4 -4
- package/ReactCommon/react/renderer/attributedstring/AttributedString.cpp +13 -28
- package/ReactCommon/react/renderer/attributedstring/AttributedString.h +8 -6
- package/ReactCommon/react/renderer/attributedstring/conversions.h +4 -0
- package/ReactCommon/react/renderer/attributedstring/tests/AttributedStringBoxTest.cpp +3 -3
- package/ReactCommon/react/renderer/componentregistry/ComponentDescriptorRegistry.cpp +5 -18
- package/ReactCommon/react/renderer/components/image/ImageProps.cpp +110 -36
- package/ReactCommon/react/renderer/components/image/ImageProps.h +8 -1
- package/ReactCommon/react/renderer/components/image/ImageShadowNode.h +1 -1
- package/ReactCommon/react/renderer/components/image/conversions.h +27 -0
- package/ReactCommon/react/renderer/components/rncore/ComponentDescriptors.cpp +0 -1
- package/ReactCommon/react/renderer/components/rncore/ComponentDescriptors.h +0 -1
- package/ReactCommon/react/renderer/components/rncore/Props.cpp +1 -0
- package/ReactCommon/react/renderer/components/rncore/Props.h +1 -0
- package/ReactCommon/react/renderer/components/rncore/ShadowNodes.cpp +0 -1
- package/ReactCommon/react/renderer/components/rncore/ShadowNodes.h +0 -11
- package/ReactCommon/react/renderer/components/rncore/States.h +0 -12
- package/ReactCommon/react/renderer/components/scrollview/AndroidHorizontalScrollContentViewComponentDescriptor.h +18 -0
- package/ReactCommon/react/renderer/components/scrollview/AndroidHorizontalScrollContentViewShadowNode.cpp +29 -0
- package/ReactCommon/react/renderer/components/scrollview/AndroidHorizontalScrollContentViewShadowNode.h +26 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.cpp +8 -6
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.h +5 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewEventEmitter.cpp +0 -8
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewEventEmitter.h +0 -1
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewProps.cpp +98 -100
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewProps.h +0 -1
- package/ReactCommon/react/renderer/components/text/BaseTextProps.cpp +2 -2
- package/ReactCommon/react/renderer/components/text/BaseTextShadowNode.cpp +19 -10
- package/ReactCommon/react/renderer/components/text/ParagraphProps.cpp +18 -16
- package/ReactCommon/react/renderer/components/text/ParagraphShadowNode.cpp +1 -0
- package/ReactCommon/react/renderer/components/text/tests/BaseTextShadowNodeTest.cpp +93 -0
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputProps.cpp +38 -2
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputProps.h +10 -0
- package/ReactCommon/react/renderer/components/textinput/{platform/ios/react/renderer/components/iostextinput/TextInputEventEmitter.cpp → TextInputEventEmitter.cpp} +3 -1
- package/ReactCommon/react/renderer/components/textinput/{platform/ios/react/renderer/components/iostextinput/TextInputEventEmitter.h → TextInputEventEmitter.h} +1 -0
- package/ReactCommon/react/renderer/components/textinput/baseConversions.h +46 -0
- package/ReactCommon/react/{utils/CoreFeatures.cpp → renderer/components/textinput/basePrimitives.h} +7 -4
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputComponentDescriptor.h +8 -6
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputProps.cpp +44 -57
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputProps.h +1 -3
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.cpp +3 -20
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.h +0 -4
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputProps.cpp +8 -1
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputProps.h +1 -0
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputShadowNode.cpp +1 -18
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/TextInputShadowNode.h +1 -5
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/conversions.h +0 -20
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/primitives.h +1 -20
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/propsConversions.h +0 -12
- package/ReactCommon/react/renderer/components/view/AccessibilityProps.cpp +36 -34
- package/ReactCommon/react/renderer/components/view/BaseViewProps.cpp +206 -149
- package/ReactCommon/react/renderer/components/view/BaseViewProps.h +8 -2
- package/ReactCommon/react/renderer/components/view/TouchEventEmitter.cpp +48 -36
- package/ReactCommon/react/renderer/components/view/TouchEventEmitter.h +18 -18
- package/ReactCommon/react/renderer/components/view/ViewShadowNode.cpp +2 -2
- package/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.cpp +60 -60
- package/ReactCommon/react/renderer/components/view/YogaStylableProps.cpp +23 -17
- package/ReactCommon/react/renderer/components/view/conversions.h +136 -68
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.cpp +22 -20
- package/ReactCommon/react/renderer/components/view/primitives.h +2 -0
- package/ReactCommon/react/renderer/components/view/tests/LayoutTest.cpp +20 -20
- package/ReactCommon/react/renderer/core/ConcreteComponentDescriptor.h +2 -2
- package/ReactCommon/react/renderer/core/EventBeat.cpp +47 -14
- package/ReactCommon/react/renderer/core/EventBeat.h +87 -31
- package/ReactCommon/react/renderer/core/EventDispatcher.cpp +4 -9
- package/ReactCommon/react/renderer/core/EventDispatcher.h +1 -3
- package/ReactCommon/react/renderer/core/EventEmitter.h +0 -2
- package/ReactCommon/react/renderer/core/EventLogger.h +4 -1
- package/ReactCommon/react/renderer/core/EventQueue.cpp +3 -18
- package/ReactCommon/react/renderer/core/EventQueue.h +1 -8
- package/ReactCommon/react/renderer/core/LayoutPrimitives.h +1 -1
- package/ReactCommon/react/renderer/core/LayoutableShadowNode.cpp +4 -4
- package/ReactCommon/react/renderer/core/Props.cpp +3 -2
- package/ReactCommon/react/renderer/core/RawEvent.h +6 -0
- package/ReactCommon/react/renderer/core/RawValue.h +20 -20
- package/ReactCommon/react/renderer/core/ShadowNode.cpp +21 -28
- package/ReactCommon/react/renderer/core/ShadowNode.h +4 -13
- package/ReactCommon/react/renderer/core/ShadowNodeFamily.cpp +24 -1
- package/ReactCommon/react/renderer/core/ShadowNodeFamily.h +38 -1
- package/ReactCommon/react/renderer/core/ShadowNodeFragment.h +0 -1
- package/ReactCommon/react/renderer/core/ShadowNodeTraits.h +5 -5
- package/ReactCommon/react/renderer/core/conversions.h +3 -3
- package/ReactCommon/react/renderer/core/tests/EventQueueProcessorTest.cpp +4 -2
- package/ReactCommon/react/renderer/core/tests/ShadowNodeTest.cpp +2 -51
- package/ReactCommon/react/renderer/debug/DebugStringConvertible.h +18 -18
- package/ReactCommon/react/renderer/debug/React-rendererdebug.podspec +2 -0
- package/ReactCommon/react/renderer/dom/DOM.cpp +4 -7
- package/ReactCommon/react/renderer/graphics/BackgroundImage.h +4 -32
- package/ReactCommon/react/renderer/graphics/LinearGradient.h +62 -0
- package/ReactCommon/react/renderer/graphics/React-graphics.podspec +4 -1
- package/ReactCommon/react/renderer/graphics/Transform.h +4 -4
- package/ReactCommon/react/renderer/graphics/platform/android/react/renderer/graphics/PlatformColorParser.h +20 -48
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.mm +2 -2
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/RCTPlatformColorUtils.mm +2 -0
- package/ReactCommon/react/renderer/imagemanager/ImageRequest.cpp +4 -8
- package/ReactCommon/react/renderer/imagemanager/ImageRequest.h +2 -12
- package/ReactCommon/react/renderer/imagemanager/ImageResponse.h +1 -0
- package/ReactCommon/react/renderer/imagemanager/ImageResponseObserverCoordinator.cpp +27 -3
- package/ReactCommon/react/renderer/imagemanager/ImageResponseObserverCoordinator.h +15 -0
- package/ReactCommon/react/renderer/imagemanager/platform/ios/React-ImageManager.podspec +5 -2
- package/ReactCommon/react/renderer/imagemanager/platform/ios/react/renderer/imagemanager/RCTImageManager.mm +24 -16
- package/ReactCommon/react/renderer/imagemanager/platform/ios/react/renderer/imagemanager/RCTImagePrimitivesConversions.h +44 -8
- package/ReactCommon/react/renderer/imagemanager/platform/ios/react/renderer/imagemanager/RCTSyncImageManager.mm +4 -3
- package/ReactCommon/react/renderer/imagemanager/primitives.h +5 -0
- package/ReactCommon/react/renderer/mounting/Differentiator.cpp +36 -23
- package/ReactCommon/react/renderer/mounting/Differentiator.h +41 -2
- package/ReactCommon/react/renderer/mounting/MountingCoordinator.cpp +12 -7
- package/ReactCommon/react/renderer/mounting/MountingCoordinator.h +0 -3
- package/ReactCommon/react/renderer/mounting/MountingOverrideDelegate.h +5 -4
- package/ReactCommon/react/renderer/mounting/ShadowTree.cpp +10 -130
- package/ReactCommon/react/renderer/mounting/ShadowTree.h +2 -7
- package/ReactCommon/react/renderer/mounting/ShadowTreeDelegate.h +1 -1
- package/ReactCommon/react/renderer/mounting/ShadowView.cpp +0 -8
- package/ReactCommon/react/renderer/mounting/ShadowView.h +0 -44
- package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.cpp +4 -4
- package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.h +1 -1
- package/ReactCommon/react/renderer/mounting/stubs/stubs.h +2 -2
- package/ReactCommon/react/renderer/mounting/tests/StackingContextTest.cpp +3 -3
- package/ReactCommon/react/renderer/mounting/tests/StateReconciliationTest.cpp +35 -109
- package/ReactCommon/react/renderer/observers/events/EventPerformanceLogger.cpp +10 -6
- package/ReactCommon/react/renderer/observers/events/EventPerformanceLogger.h +5 -2
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserver.cpp +36 -16
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserver.h +4 -3
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserverManager.cpp +6 -2
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserverManager.h +1 -0
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserverState.cpp +9 -6
- package/ReactCommon/react/renderer/observers/intersection/IntersectionObserverState.h +11 -1
- package/ReactCommon/react/renderer/observers/mutation/MutationObserver.cpp +14 -16
- package/ReactCommon/react/renderer/observers/mutation/MutationObserver.h +15 -4
- package/ReactCommon/react/renderer/observers/mutation/MutationObserverManager.cpp +2 -2
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler.cpp +2 -1
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Legacy.cpp +6 -0
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.cpp +42 -51
- package/ReactCommon/react/renderer/runtimescheduler/primitives.h +0 -1
- package/ReactCommon/react/renderer/runtimescheduler/tests/RuntimeSchedulerTest.cpp +86 -68
- package/ReactCommon/react/renderer/scheduler/Scheduler.cpp +33 -37
- package/ReactCommon/react/renderer/scheduler/Scheduler.h +3 -3
- package/ReactCommon/react/renderer/scheduler/SchedulerDelegate.h +4 -2
- package/ReactCommon/react/renderer/scheduler/SchedulerToolbox.h +1 -2
- package/ReactCommon/react/renderer/scheduler/SurfaceManager.cpp +3 -3
- package/ReactCommon/react/renderer/scheduler/SurfaceManager.h +1 -1
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +25 -0
- package/ReactCommon/react/renderer/uimanager/UIManager.cpp +4 -10
- package/ReactCommon/react/renderer/uimanager/UIManager.h +1 -1
- package/ReactCommon/react/renderer/uimanager/UIManagerAnimationDelegate.h +1 -1
- package/ReactCommon/react/renderer/uimanager/UIManagerBinding.cpp +1 -3
- package/ReactCommon/react/renderer/uimanager/UIManagerDelegate.h +1 -1
- package/ReactCommon/react/renderer/uimanager/consistency/tests/LazyShadowTreeRevisionConsistencyManagerTest.cpp +1 -1
- package/ReactCommon/react/renderer/uimanager/tests/PointerEventsProcessorTest.cpp +10 -10
- package/ReactCommon/react/runtime/React-RuntimeCore.podspec +5 -2
- package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +4 -2
- package/ReactCommon/react/runtime/ReactInstance.cpp +189 -39
- package/ReactCommon/react/runtime/ReactInstance.h +1 -0
- package/ReactCommon/react/runtime/TimerManager.cpp +1 -1
- package/ReactCommon/react/runtime/hermes/HermesInstance.cpp +3 -6
- package/ReactCommon/react/runtime/iostests/RCTHostTests.mm +20 -2
- package/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +7 -2
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost+Internal.h +3 -0
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.h +14 -6
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm +59 -21
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.h +11 -6
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +65 -27
- package/ReactCommon/react/runtime/tests/cxx/ReactInstanceTest.cpp +2 -131
- package/ReactCommon/react/timing/CMakeLists.txt +1 -1
- package/ReactCommon/react/timing/primitives.h +2 -0
- package/ReactCommon/react/utils/RunLoopObserver.cpp +2 -4
- package/ReactCommon/react/utils/RunLoopObserver.h +1 -3
- package/ReactCommon/react/utils/SharedFunction.h +1 -0
- package/ReactCommon/reactperflogger/CMakeLists.txt +4 -1
- package/ReactCommon/reactperflogger/React-perflogger.podspec +1 -0
- package/ReactCommon/reactperflogger/reactperflogger/FuseboxPerfettoDataSource.cpp +143 -0
- package/ReactCommon/reactperflogger/reactperflogger/FuseboxPerfettoDataSource.h +48 -0
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfLogger.cpp +65 -0
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfLogger.h +35 -0
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfetto.cpp +2 -0
- package/ReactCommon/runtimeexecutor/React-runtimeexecutor.podspec +2 -1
- package/ReactCommon/yoga/yoga/YGEnums.cpp +14 -2
- package/ReactCommon/yoga/yoga/YGEnums.h +8 -2
- package/ReactCommon/yoga/yoga/YGNodeStyle.cpp +38 -28
- package/ReactCommon/yoga/yoga/YGNodeStyle.h +3 -0
- package/ReactCommon/yoga/yoga/algorithm/AbsoluteLayout.cpp +51 -117
- package/ReactCommon/yoga/yoga/algorithm/Align.h +4 -4
- package/ReactCommon/yoga/yoga/algorithm/Baseline.cpp +2 -6
- package/ReactCommon/yoga/yoga/algorithm/BoundAxis.h +13 -6
- package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.cpp +349 -341
- package/ReactCommon/yoga/yoga/algorithm/FlexLine.cpp +19 -18
- package/ReactCommon/yoga/yoga/algorithm/FlexLine.h +2 -4
- package/ReactCommon/yoga/yoga/enums/BoxSizing.h +40 -0
- package/ReactCommon/yoga/yoga/enums/Display.h +2 -1
- package/ReactCommon/yoga/yoga/enums/Errata.h +1 -1
- package/ReactCommon/yoga/yoga/node/LayoutableChildren.h +148 -0
- package/ReactCommon/yoga/yoga/node/Node.cpp +60 -7
- package/ReactCommon/yoga/yoga/node/Node.h +51 -9
- package/ReactCommon/yoga/yoga/style/Style.h +64 -1
- package/ReactCommon/yoga/yoga/style/StyleLength.h +0 -32
- package/ReactCommon/yoga/yoga/style/StyleValuePool.h +4 -4
- package/cli.js +2 -2
- package/gradle/libs.versions.toml +9 -8
- package/index.js +15 -8
- package/jest/setup.js +31 -0
- package/package.json +11 -13
- package/scripts/cocoapods/codegen_utils.rb +42 -17
- package/scripts/cocoapods/helpers.rb +16 -2
- package/scripts/cocoapods/new_architecture.rb +2 -0
- package/scripts/cocoapods/spm.rb +1 -1
- package/scripts/cocoapods/utils.rb +2 -0
- package/scripts/codegen/generate-artifacts-executor.js +336 -172
- package/scripts/codegen/generate-specs-cli-executor.js +3 -3
- package/scripts/codegen/templates/RCTAppDependencyProviderH.template +25 -0
- package/scripts/codegen/templates/RCTAppDependencyProviderMM.template +55 -0
- package/scripts/codegen/templates/RCTThirdPartyComponentsProviderH.template +16 -0
- package/scripts/codegen/templates/RCTThirdPartyComponentsProviderMM.template +23 -0
- package/scripts/codegen/templates/ReactAppDependencyProvider.podspec.template +34 -0
- package/scripts/generate-provider-cli.js +1 -2
- package/scripts/ios-configure-glog.sh +2 -2
- package/scripts/react-native-xcode.sh +8 -5
- package/scripts/react_native_pods.rb +16 -0
- package/sdks/.hermesversion +1 -1
- package/sdks/hermes-engine/hermes-engine.podspec +15 -9
- package/sdks/hermes-engine/hermes-utils.rb +29 -8
- package/sdks/hermes-engine/utils/build-ios-framework.sh +4 -24
- package/sdks/hermesc/linux64-bin/hermesc +0 -0
- package/sdks/hermesc/osx-bin/hermes +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/src/private/animated/NativeAnimatedHelper.js +18 -16
- package/src/private/animated/useAnimatedPropsMemo.js +356 -0
- package/src/private/components/HScrollViewNativeComponents.js +1 -27
- package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +11 -8
- package/src/private/components/VScrollViewNativeComponents.js +2 -25
- package/src/private/debugging/ReactDevToolsSettingsManager.android.js +20 -0
- package/src/private/debugging/ReactDevToolsSettingsManager.ios.js +30 -0
- package/{Libraries/ReactNative/ReactFabricInternals.js → src/private/debugging/ReactDevToolsSettingsManager.js.flow} +5 -6
- package/src/private/{fusebox → debugging}/setUpFuseboxReactDevToolsDispatcher.js +6 -0
- package/src/private/devmenu/DevMenu.d.ts +20 -0
- package/src/private/devmenu/DevMenu.js +31 -0
- package/src/private/featureflags/ReactNativeFeatureFlags.js +96 -82
- package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +8 -2
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +17 -18
- package/src/private/fusebox/specs/NativeReactDevToolsRuntimeSettingsModule.js +34 -0
- package/src/private/setup/setUpDOM.js +14 -6
- package/src/private/setup/setUpMutationObserver.js +5 -0
- package/src/private/specs/components/AndroidHorizontalScrollContentViewNativeComponent.js +1 -0
- package/src/private/specs/components/RCTModalHostViewNativeComponent.js +8 -0
- package/src/private/specs/modules/NativeAccessibilityInfo.js +9 -0
- package/src/private/specs/modules/NativeAccessibilityManager.js +4 -0
- package/src/private/specs/modules/NativeActionSheetManager.js +2 -0
- package/src/private/specs/modules/NativeAppearance.js +4 -10
- package/src/private/specs/modules/NativeExceptionsManager.js +0 -12
- package/src/private/specs/modules/{NativeDevToolsSettingsManager.js → NativeReactDevToolsSettingsManager.js} +3 -5
- package/src/private/webapis/dom/geometry/DOMRect.js +2 -2
- package/src/private/webapis/dom/geometry/DOMRectReadOnly.js +2 -2
- package/src/private/webapis/dom/nodes/ReactNativeElement.js +2 -3
- package/src/private/webapis/intersectionobserver/IntersectionObserver.js +102 -11
- package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +26 -0
- package/src/private/webapis/intersectionobserver/IntersectionObserverManager.js +1 -0
- package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +1 -0
- package/src/private/webapis/intersectionobserver/specs/__mocks__/NativeIntersectionObserver.js +9 -0
- package/src/private/webapis/performance/EventTiming.js +13 -8
- package/src/private/webapis/performance/Performance.js +66 -73
- package/src/private/webapis/performance/PerformanceEntry.js +2 -5
- package/src/private/webapis/performance/PerformanceObserver.js +65 -164
- package/src/private/webapis/performance/RawPerformanceEntry.js +1 -1
- package/src/private/webapis/performance/UserTiming.js +11 -7
- package/src/private/webapis/performance/Utilities.js +18 -0
- package/src/private/webapis/performance/specs/NativePerformance.js +71 -2
- package/src/private/webapis/performance/specs/__mocks__/NativePerformanceMock.js +267 -0
- package/third-party-podspecs/DoubleConversion.podspec +1 -0
- package/third-party-podspecs/RCT-Folly.podspec +20 -11
- package/third-party-podspecs/boost.podspec +4 -0
- package/third-party-podspecs/fast_float.podspec +29 -0
- package/third-party-podspecs/glog.podspec +2 -1
- package/types/index.d.ts +1 -1
- package/types/public/ReactNativeTypes.d.ts +4 -8
- package/types/tsconfig.json +13 -13
- package/Libraries/DevToolsSettings/DevToolsSettingsManager.android.js +0 -35
- package/Libraries/DevToolsSettings/DevToolsSettingsManager.d.ts +0 -20
- package/Libraries/DevToolsSettings/DevToolsSettingsManager.ios.js +0 -49
- package/Libraries/DevToolsSettings/DevToolsSettingsManager.js.flow +0 -19
- package/Libraries/DevToolsSettings/NativeDevToolsSettingsManager.js +0 -13
- package/React/Base/RCTRuntimeExecutorModule.h +0 -19
- package/ReactAndroid/src/main/java/com/facebook/debug/debugoverlay/model/DebugOverlayTag.java +0 -30
- package/ReactAndroid/src/main/java/com/facebook/debug/tags/ReactDebugOverlayTags.java +0 -38
- package/ReactAndroid/src/main/java/com/facebook/proguard/annotations/KeepGettersAndSetters.java +0 -27
- package/ReactAndroid/src/main/java/com/facebook/react/BaseReactPackage.java +0 -159
- package/ReactAndroid/src/main/java/com/facebook/react/CompositeReactPackage.java +0 -131
- package/ReactAndroid/src/main/java/com/facebook/react/CompositeReactPackageTurboModuleManagerDelegate.java +0 -57
- package/ReactAndroid/src/main/java/com/facebook/react/EagerModuleProvider.java +0 -26
- package/ReactAndroid/src/main/java/com/facebook/react/NativeModuleRegistryBuilder.java +0 -69
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackage.java +0 -67
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageHelper.java +0 -56
- package/ReactAndroid/src/main/java/com/facebook/react/TurboReactPackage.java +0 -14
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/AssertionException.java +0 -20
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSApplicationIllegalArgumentException.java +0 -20
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaOnlyArray.java +0 -219
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaOnlyMap.java +0 -266
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArgumentsParseException.java +0 -22
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArray.java +0 -28
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NoSuchKeyException.java +0 -20
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactIgnorableMountingException.java +0 -36
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactNoCrashBridgeNotAllowedSoftException.java +0 -27
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactNoCrashSoftException.java +0 -29
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactSoftExceptionLogger.java +0 -66
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeArray.java +0 -174
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/WritableNativeArray.java +0 -68
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/interop/InteropModuleRegistry.java +0 -57
- package/ReactAndroid/src/main/java/com/facebook/react/common/SurfaceDelegateFactory.java +0 -24
- package/ReactAndroid/src/main/java/com/facebook/react/config/ReactFeatureFlags.java +0 -79
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/AndroidManifest.xml +0 -10
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/Binding.kt +0 -74
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricComponents.kt +0 -45
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/LongStreamingStats.java +0 -76
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/PreAllocateViewMountItem.java +0 -90
- package/ReactAndroid/src/main/java/com/facebook/react/flipper/ReactNativeFlipper.kt +0 -34
- package/ReactAndroid/src/main/java/com/facebook/react/modules/devtoolssettings/DevToolsSettingsManagerModule.kt +0 -40
- package/ReactAndroid/src/main/java/com/facebook/react/modules/intent/IntentModule.java +0 -280
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoHelpers.java +0 -175
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoModule.java +0 -104
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessDevSupportManager.java +0 -159
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/TaskCompletionSource.java +0 -73
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/UnobservedErrorNotifier.java +0 -42
- package/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.java +0 -329
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerInterface.kt +0 -85
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/debug/NotThreadSafeViewHierarchyUpdateDebugListener.java +0 -30
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/util/ReactFindViewUtil.java +0 -138
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollContainerView.java +0 -82
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewCommandHelper.java +0 -141
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout.java +0 -151
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager.java +0 -194
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/FontMetricsUtil.java +0 -65
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactFontManager.java +0 -66
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextManager.java +0 -55
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextUpdate.java +0 -153
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewManagerCallback.java +0 -25
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTypefaceUtils.java +0 -198
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactVirtualTextViewManager.java +0 -47
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextTransform.java +0 -63
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactClippingViewManager.java +0 -95
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewBackgroundDrawable.java +0 -25
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewBackgroundManager.java +0 -146
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.java +0 -588
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/CompositeTurboModuleManagerDelegate.cpp +0 -58
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/CompositeTurboModuleManagerDelegate.h +0 -48
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTRuntimeExecutor.h +0 -32
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTRuntimeExecutor.mm +0 -34
- package/ReactCommon/react/nativemodule/samples/platform/android/SampleLegacyModule.java +0 -246
- package/ReactCommon/react/nativemodule/samples/platform/android/SampleTurboModule.java +0 -281
- package/ReactCommon/react/nativemodule/webperformance/NativePerformanceObserver.cpp +0 -130
- package/ReactCommon/react/nativemodule/webperformance/NativePerformanceObserver.h +0 -91
- package/ReactCommon/react/performance/timeline/BoundedConsumableBuffer.h +0 -247
- package/ReactCommon/react/performance/timeline/tests/BoundedConsumableBufferTest.cpp +0 -219
- package/ReactCommon/react/renderer/scheduler/AsynchronousEventBeat.cpp +0 -57
- package/ReactCommon/react/utils/CoreFeatures.h +0 -30
- package/src/private/components/useSyncOnScroll.js +0 -48
- package/src/private/fusebox/README.md +0 -12
- package/src/private/webapis/performance/specs/NativePerformanceObserver.js +0 -61
- package/src/private/webapis/performance/specs/__mocks__/NativePerformance.js +0 -67
- package/src/private/webapis/performance/specs/__mocks__/NativePerformanceObserver.js +0 -127
- package/types/experimental.d.ts +0 -59
- /package/src/private/{fusebox → debugging}/FuseboxSessionObserver.js +0 -0
|
@@ -7,23 +7,6 @@ public abstract class com/facebook/react/BaseReactPackage : com/facebook/react/R
|
|
|
7
7
|
protected fun getViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
public class com/facebook/react/CompositeReactPackage : com/facebook/react/ReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
11
|
-
public fun <init> (Lcom/facebook/react/ReactPackage;Lcom/facebook/react/ReactPackage;[Lcom/facebook/react/ReactPackage;)V
|
|
12
|
-
public fun createNativeModules (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
13
|
-
public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
|
|
14
|
-
public fun createViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
15
|
-
public fun getViewManagerNames (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/Collection;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
public class com/facebook/react/CompositeReactPackageTurboModuleManagerDelegate : com/facebook/react/ReactPackageTurboModuleManagerDelegate {
|
|
19
|
-
protected fun initHybrid ()Lcom/facebook/jni/HybridData;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
public class com/facebook/react/CompositeReactPackageTurboModuleManagerDelegate$Builder : com/facebook/react/ReactPackageTurboModuleManagerDelegate$Builder {
|
|
23
|
-
public fun <init> (Ljava/util/List;)V
|
|
24
|
-
protected fun build (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/util/List;)Lcom/facebook/react/ReactPackageTurboModuleManagerDelegate;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
10
|
public class com/facebook/react/CoreModulesPackage$$ReactModuleInfoProvider : com/facebook/react/module/model/ReactModuleInfoProvider {
|
|
28
11
|
public fun <init> ()V
|
|
29
12
|
public fun getReactModuleInfos ()Ljava/util/Map;
|
|
@@ -85,10 +68,11 @@ public class com/facebook/react/MemoryPressureRouter : android/content/Component
|
|
|
85
68
|
public fun removeMemoryPressureListener (Lcom/facebook/react/bridge/MemoryPressureListener;)V
|
|
86
69
|
}
|
|
87
70
|
|
|
88
|
-
public class com/facebook/react/NativeModuleRegistryBuilder {
|
|
71
|
+
public final class com/facebook/react/NativeModuleRegistryBuilder {
|
|
72
|
+
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
89
73
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/ReactInstanceManager;)V
|
|
90
|
-
public fun build ()Lcom/facebook/react/bridge/NativeModuleRegistry;
|
|
91
|
-
public fun processPackage (Lcom/facebook/react/ReactPackage;)V
|
|
74
|
+
public final fun build ()Lcom/facebook/react/bridge/NativeModuleRegistry;
|
|
75
|
+
public final fun processPackage (Lcom/facebook/react/ReactPackage;)V
|
|
92
76
|
}
|
|
93
77
|
|
|
94
78
|
public abstract class com/facebook/react/ReactActivity : androidx/appcompat/app/AppCompatActivity, com/facebook/react/modules/core/DefaultHardwareBackBtnHandler, com/facebook/react/modules/core/PermissionAwareActivity {
|
|
@@ -97,6 +81,7 @@ public abstract class com/facebook/react/ReactActivity : androidx/appcompat/app/
|
|
|
97
81
|
protected fun getMainComponentName ()Ljava/lang/String;
|
|
98
82
|
public fun getReactActivityDelegate ()Lcom/facebook/react/ReactActivityDelegate;
|
|
99
83
|
public fun getReactDelegate ()Lcom/facebook/react/ReactDelegate;
|
|
84
|
+
protected fun getReactHost ()Lcom/facebook/react/ReactHost;
|
|
100
85
|
protected final fun getReactInstanceManager ()Lcom/facebook/react/ReactInstanceManager;
|
|
101
86
|
protected final fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
|
|
102
87
|
public fun invokeDefaultOnBackPressed ()V
|
|
@@ -124,9 +109,11 @@ public class com/facebook/react/ReactActivityDelegate {
|
|
|
124
109
|
protected fun composeLaunchOptions ()Landroid/os/Bundle;
|
|
125
110
|
protected fun createRootView ()Lcom/facebook/react/ReactRootView;
|
|
126
111
|
protected fun getContext ()Landroid/content/Context;
|
|
112
|
+
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
127
113
|
protected fun getLaunchOptions ()Landroid/os/Bundle;
|
|
128
114
|
public fun getMainComponentName ()Ljava/lang/String;
|
|
129
115
|
protected fun getPlainActivity ()Landroid/app/Activity;
|
|
116
|
+
protected fun getReactActivity ()Lcom/facebook/react/ReactActivity;
|
|
130
117
|
protected fun getReactDelegate ()Lcom/facebook/react/ReactDelegate;
|
|
131
118
|
public fun getReactHost ()Lcom/facebook/react/ReactHost;
|
|
132
119
|
public fun getReactInstanceManager ()Lcom/facebook/react/ReactInstanceManager;
|
|
@@ -161,6 +148,8 @@ public class com/facebook/react/ReactDelegate {
|
|
|
161
148
|
public fun <init> (Landroid/app/Activity;Lcom/facebook/react/ReactNativeHost;Ljava/lang/String;Landroid/os/Bundle;)V
|
|
162
149
|
public fun <init> (Landroid/app/Activity;Lcom/facebook/react/ReactNativeHost;Ljava/lang/String;Landroid/os/Bundle;Z)V
|
|
163
150
|
protected fun createRootView ()Lcom/facebook/react/ReactRootView;
|
|
151
|
+
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
152
|
+
public fun getReactHost ()Lcom/facebook/react/ReactHost;
|
|
164
153
|
public fun getReactInstanceManager ()Lcom/facebook/react/ReactInstanceManager;
|
|
165
154
|
public fun getReactRootView ()Lcom/facebook/react/ReactRootView;
|
|
166
155
|
protected fun isFabricEnabled ()Z
|
|
@@ -179,10 +168,12 @@ public class com/facebook/react/ReactDelegate {
|
|
|
179
168
|
public fun onWindowFocusChanged (Z)V
|
|
180
169
|
public fun reload ()V
|
|
181
170
|
public fun shouldShowDevMenuOrReload (ILandroid/view/KeyEvent;)Z
|
|
171
|
+
public fun unloadApp ()V
|
|
182
172
|
}
|
|
183
173
|
|
|
184
174
|
public class com/facebook/react/ReactFragment : androidx/fragment/app/Fragment, com/facebook/react/modules/core/PermissionAwareActivity {
|
|
185
175
|
protected static final field ARG_COMPONENT_NAME Ljava/lang/String;
|
|
176
|
+
protected static final field ARG_DISABLE_HOST_LIFECYCLE_EVENTS Ljava/lang/String;
|
|
186
177
|
protected static final field ARG_FABRIC_ENABLED Ljava/lang/String;
|
|
187
178
|
protected static final field ARG_LAUNCH_OPTIONS Ljava/lang/String;
|
|
188
179
|
protected field mReactDelegate Lcom/facebook/react/ReactDelegate;
|
|
@@ -190,6 +181,7 @@ public class com/facebook/react/ReactFragment : androidx/fragment/app/Fragment,
|
|
|
190
181
|
public fun checkPermission (Ljava/lang/String;II)I
|
|
191
182
|
public fun checkSelfPermission (Ljava/lang/String;)I
|
|
192
183
|
protected fun getReactDelegate ()Lcom/facebook/react/ReactDelegate;
|
|
184
|
+
protected fun getReactHost ()Lcom/facebook/react/ReactHost;
|
|
193
185
|
protected fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
|
|
194
186
|
public fun onActivityResult (IILandroid/content/Intent;)V
|
|
195
187
|
public fun onBackPressed ()Z
|
|
@@ -216,6 +208,8 @@ public abstract interface class com/facebook/react/ReactHost {
|
|
|
216
208
|
public abstract fun addReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
217
209
|
public abstract fun createSurface (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/interfaces/fabric/ReactSurface;
|
|
218
210
|
public abstract fun destroy (Ljava/lang/String;Ljava/lang/Exception;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
211
|
+
public abstract fun destroy (Ljava/lang/String;Ljava/lang/Exception;Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
212
|
+
public static synthetic fun destroy$default (Lcom/facebook/react/ReactHost;Ljava/lang/String;Ljava/lang/Exception;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
219
213
|
public abstract fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
220
214
|
public abstract fun getDevSupportManager ()Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
221
215
|
public abstract fun getLifecycleState ()Lcom/facebook/react/common/LifecycleState;
|
|
@@ -348,6 +342,7 @@ public abstract class com/facebook/react/ReactNativeHost {
|
|
|
348
342
|
public abstract interface class com/facebook/react/ReactPackage {
|
|
349
343
|
public abstract fun createNativeModules (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
350
344
|
public abstract fun createViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
345
|
+
public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
|
|
351
346
|
}
|
|
352
347
|
|
|
353
348
|
public abstract interface class com/facebook/react/ReactPackageLogger {
|
|
@@ -382,6 +377,7 @@ public class com/facebook/react/ReactRootView : android/widget/FrameLayout, com/
|
|
|
382
377
|
protected fun dispatchJSPointerEvent (Landroid/view/MotionEvent;Z)V
|
|
383
378
|
protected fun dispatchJSTouchEvent (Landroid/view/MotionEvent;)V
|
|
384
379
|
public fun dispatchKeyEvent (Landroid/view/KeyEvent;)Z
|
|
380
|
+
protected fun drawChild (Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
|
385
381
|
protected fun finalize ()V
|
|
386
382
|
public fun getAppProperties ()Landroid/os/Bundle;
|
|
387
383
|
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
@@ -588,7 +584,7 @@ public class com/facebook/react/bridge/Arguments {
|
|
|
588
584
|
public static fun toList (Lcom/facebook/react/bridge/ReadableArray;)Ljava/util/ArrayList;
|
|
589
585
|
}
|
|
590
586
|
|
|
591
|
-
public class com/facebook/react/bridge/AssertionException : java/lang/RuntimeException {
|
|
587
|
+
public final class com/facebook/react/bridge/AssertionException : java/lang/RuntimeException {
|
|
592
588
|
public fun <init> (Ljava/lang/String;)V
|
|
593
589
|
}
|
|
594
590
|
|
|
@@ -614,28 +610,6 @@ public abstract class com/facebook/react/bridge/BaseJavaModule : com/facebook/re
|
|
|
614
610
|
public fun invalidate ()V
|
|
615
611
|
}
|
|
616
612
|
|
|
617
|
-
public class com/facebook/react/bridge/BridgeReactContext : com/facebook/react/bridge/ReactApplicationContext {
|
|
618
|
-
public fun <init> (Landroid/content/Context;)V
|
|
619
|
-
public fun destroy ()V
|
|
620
|
-
public fun getCatalystInstance ()Lcom/facebook/react/bridge/CatalystInstance;
|
|
621
|
-
public fun getFabricUIManager ()Lcom/facebook/react/bridge/UIManager;
|
|
622
|
-
public fun getJSCallInvokerHolder ()Lcom/facebook/react/turbomodule/core/interfaces/CallInvokerHolder;
|
|
623
|
-
public fun getJSModule (Ljava/lang/Class;)Lcom/facebook/react/bridge/JavaScriptModule;
|
|
624
|
-
public fun getNativeModule (Ljava/lang/Class;)Lcom/facebook/react/bridge/NativeModule;
|
|
625
|
-
public fun getNativeModule (Ljava/lang/String;)Lcom/facebook/react/bridge/NativeModule;
|
|
626
|
-
public fun getNativeModules ()Ljava/util/Collection;
|
|
627
|
-
public fun getSourceURL ()Ljava/lang/String;
|
|
628
|
-
public fun handleException (Ljava/lang/Exception;)V
|
|
629
|
-
public fun hasActiveCatalystInstance ()Z
|
|
630
|
-
public fun hasActiveReactInstance ()Z
|
|
631
|
-
public fun hasCatalystInstance ()Z
|
|
632
|
-
public fun hasNativeModule (Ljava/lang/Class;)Z
|
|
633
|
-
public fun hasReactInstance ()Z
|
|
634
|
-
public fun initializeWithInstance (Lcom/facebook/react/bridge/CatalystInstance;)V
|
|
635
|
-
public fun isBridgeless ()Z
|
|
636
|
-
public fun registerSegment (ILjava/lang/String;Lcom/facebook/react/bridge/Callback;)V
|
|
637
|
-
}
|
|
638
|
-
|
|
639
613
|
public abstract interface class com/facebook/react/bridge/BridgeReactContext$RCTDeviceEventEmitter : com/facebook/react/bridge/JavaScriptModule {
|
|
640
614
|
public abstract fun emit (Ljava/lang/String;Ljava/lang/Object;)V
|
|
641
615
|
}
|
|
@@ -741,7 +715,7 @@ public class com/facebook/react/bridge/ColorPropConverter {
|
|
|
741
715
|
public static fun resolveResourcePath (Landroid/content/Context;Ljava/lang/String;)Ljava/lang/Integer;
|
|
742
716
|
}
|
|
743
717
|
|
|
744
|
-
public class com/facebook/react/bridge/CxxCallbackImpl : com/facebook/react/bridge/Callback {
|
|
718
|
+
public class com/facebook/react/bridge/CxxCallbackImpl : com/facebook/jni/HybridClassBase, com/facebook/react/bridge/Callback {
|
|
745
719
|
public fun invoke ([Ljava/lang/Object;)V
|
|
746
720
|
}
|
|
747
721
|
|
|
@@ -845,7 +819,7 @@ public abstract interface class com/facebook/react/bridge/Inspector$RemoteConnec
|
|
|
845
819
|
public abstract fun onMessage (Ljava/lang/String;)V
|
|
846
820
|
}
|
|
847
821
|
|
|
848
|
-
public class com/facebook/react/bridge/InvalidIteratorException : java/lang/RuntimeException {
|
|
822
|
+
public final class com/facebook/react/bridge/InvalidIteratorException : java/lang/RuntimeException {
|
|
849
823
|
public fun <init> (Ljava/lang/String;)V
|
|
850
824
|
}
|
|
851
825
|
|
|
@@ -854,7 +828,7 @@ public class com/facebook/react/bridge/JSApplicationCausedNativeException : java
|
|
|
854
828
|
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
855
829
|
}
|
|
856
830
|
|
|
857
|
-
public class com/facebook/react/bridge/JSApplicationIllegalArgumentException : com/facebook/react/bridge/JSApplicationCausedNativeException {
|
|
831
|
+
public final class com/facebook/react/bridge/JSApplicationIllegalArgumentException : com/facebook/react/bridge/JSApplicationCausedNativeException {
|
|
858
832
|
public fun <init> (Ljava/lang/String;)V
|
|
859
833
|
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
860
834
|
}
|
|
@@ -908,11 +882,14 @@ public final class com/facebook/react/bridge/JavaJSExecutor$ProxyExecutorExcepti
|
|
|
908
882
|
public fun <init> (Ljava/lang/Throwable;)V
|
|
909
883
|
}
|
|
910
884
|
|
|
911
|
-
public class com/facebook/react/bridge/JavaOnlyArray : com/facebook/react/bridge/ReadableArray, com/facebook/react/bridge/WritableArray {
|
|
885
|
+
public final class com/facebook/react/bridge/JavaOnlyArray : com/facebook/react/bridge/ReadableArray, com/facebook/react/bridge/WritableArray {
|
|
886
|
+
public static final field Companion Lcom/facebook/react/bridge/JavaOnlyArray$Companion;
|
|
912
887
|
public fun <init> ()V
|
|
913
|
-
public
|
|
888
|
+
public synthetic fun <init> (Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
889
|
+
public synthetic fun <init> ([Ljava/lang/Object;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
890
|
+
public static final fun deepClone (Lcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
914
891
|
public fun equals (Ljava/lang/Object;)Z
|
|
915
|
-
public static fun from (Ljava/util/List;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
892
|
+
public static final fun from (Ljava/util/List;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
916
893
|
public fun getArray (I)Lcom/facebook/react/bridge/ReadableArray;
|
|
917
894
|
public fun getBoolean (I)Z
|
|
918
895
|
public fun getDouble (I)D
|
|
@@ -924,7 +901,7 @@ public class com/facebook/react/bridge/JavaOnlyArray : com/facebook/react/bridge
|
|
|
924
901
|
public fun getType (I)Lcom/facebook/react/bridge/ReadableType;
|
|
925
902
|
public fun hashCode ()I
|
|
926
903
|
public fun isNull (I)Z
|
|
927
|
-
public static fun of ([Ljava/lang/Object;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
904
|
+
public static final fun of ([Ljava/lang/Object;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
928
905
|
public fun pushArray (Lcom/facebook/react/bridge/ReadableArray;)V
|
|
929
906
|
public fun pushBoolean (Z)V
|
|
930
907
|
public fun pushDouble (D)V
|
|
@@ -938,12 +915,20 @@ public class com/facebook/react/bridge/JavaOnlyArray : com/facebook/react/bridge
|
|
|
938
915
|
public fun toString ()Ljava/lang/String;
|
|
939
916
|
}
|
|
940
917
|
|
|
941
|
-
public class com/facebook/react/bridge/
|
|
918
|
+
public final class com/facebook/react/bridge/JavaOnlyArray$Companion {
|
|
919
|
+
public final fun deepClone (Lcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
920
|
+
public final fun from (Ljava/util/List;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
921
|
+
public final fun of ([Ljava/lang/Object;)Lcom/facebook/react/bridge/JavaOnlyArray;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
public final class com/facebook/react/bridge/JavaOnlyMap : com/facebook/react/bridge/ReadableMap, com/facebook/react/bridge/WritableMap {
|
|
925
|
+
public static final field Companion Lcom/facebook/react/bridge/JavaOnlyMap$Companion;
|
|
942
926
|
public fun <init> ()V
|
|
927
|
+
public synthetic fun <init> ([Ljava/lang/Object;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
943
928
|
public fun copy ()Lcom/facebook/react/bridge/WritableMap;
|
|
944
|
-
public static fun deepClone (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
929
|
+
public static final fun deepClone (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
945
930
|
public fun equals (Ljava/lang/Object;)Z
|
|
946
|
-
public static fun from (Ljava/util/Map;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
931
|
+
public static final fun from (Ljava/util/Map;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
947
932
|
public fun getArray (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableArray;
|
|
948
933
|
public fun getBoolean (Ljava/lang/String;)Z
|
|
949
934
|
public fun getDouble (Ljava/lang/String;)D
|
|
@@ -959,7 +944,7 @@ public class com/facebook/react/bridge/JavaOnlyMap : com/facebook/react/bridge/R
|
|
|
959
944
|
public fun isNull (Ljava/lang/String;)Z
|
|
960
945
|
public fun keySetIterator ()Lcom/facebook/react/bridge/ReadableMapKeySetIterator;
|
|
961
946
|
public fun merge (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
962
|
-
public static fun of ([Ljava/lang/Object;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
947
|
+
public static final fun of ([Ljava/lang/Object;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
963
948
|
public fun putArray (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
964
949
|
public fun putBoolean (Ljava/lang/String;Z)V
|
|
965
950
|
public fun putDouble (Ljava/lang/String;D)V
|
|
@@ -968,10 +953,17 @@ public class com/facebook/react/bridge/JavaOnlyMap : com/facebook/react/bridge/R
|
|
|
968
953
|
public fun putMap (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
969
954
|
public fun putNull (Ljava/lang/String;)V
|
|
970
955
|
public fun putString (Ljava/lang/String;Ljava/lang/String;)V
|
|
956
|
+
public final fun remove (Ljava/lang/String;)V
|
|
971
957
|
public fun toHashMap ()Ljava/util/HashMap;
|
|
972
958
|
public fun toString ()Ljava/lang/String;
|
|
973
959
|
}
|
|
974
960
|
|
|
961
|
+
public final class com/facebook/react/bridge/JavaOnlyMap$Companion {
|
|
962
|
+
public final fun deepClone (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
963
|
+
public final fun from (Ljava/util/Map;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
964
|
+
public final fun of ([Ljava/lang/Object;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
965
|
+
}
|
|
966
|
+
|
|
975
967
|
public class com/facebook/react/bridge/JavaScriptContextHolder {
|
|
976
968
|
public fun <init> (J)V
|
|
977
969
|
public fun clear ()V
|
|
@@ -1044,8 +1036,8 @@ public class com/facebook/react/bridge/ModuleSpec {
|
|
|
1044
1036
|
public static fun viewManagerSpec (Ljavax/inject/Provider;)Lcom/facebook/react/bridge/ModuleSpec;
|
|
1045
1037
|
}
|
|
1046
1038
|
|
|
1047
|
-
public abstract class com/facebook/react/bridge/NativeArray : com/facebook/react/bridge/NativeArrayInterface {
|
|
1048
|
-
protected fun <init> (
|
|
1039
|
+
public abstract class com/facebook/react/bridge/NativeArray : com/facebook/jni/HybridClassBase, com/facebook/react/bridge/NativeArrayInterface {
|
|
1040
|
+
protected fun <init> ()V
|
|
1049
1041
|
public fun toString ()Ljava/lang/String;
|
|
1050
1042
|
}
|
|
1051
1043
|
|
|
@@ -1053,8 +1045,8 @@ public abstract interface class com/facebook/react/bridge/NativeArrayInterface {
|
|
|
1053
1045
|
public abstract fun toString ()Ljava/lang/String;
|
|
1054
1046
|
}
|
|
1055
1047
|
|
|
1056
|
-
public abstract class com/facebook/react/bridge/NativeMap {
|
|
1057
|
-
public fun <init> (
|
|
1048
|
+
public abstract class com/facebook/react/bridge/NativeMap : com/facebook/jni/HybridClassBase {
|
|
1049
|
+
public fun <init> ()V
|
|
1058
1050
|
public fun toString ()Ljava/lang/String;
|
|
1059
1051
|
}
|
|
1060
1052
|
|
|
@@ -1076,7 +1068,7 @@ public class com/facebook/react/bridge/NativeModuleRegistry {
|
|
|
1076
1068
|
public fun onBatchComplete ()V
|
|
1077
1069
|
}
|
|
1078
1070
|
|
|
1079
|
-
public class com/facebook/react/bridge/NoSuchKeyException : java/lang/RuntimeException {
|
|
1071
|
+
public final class com/facebook/react/bridge/NoSuchKeyException : java/lang/RuntimeException {
|
|
1080
1072
|
public fun <init> (Ljava/lang/String;)V
|
|
1081
1073
|
}
|
|
1082
1074
|
|
|
@@ -1086,10 +1078,6 @@ public abstract interface class com/facebook/react/bridge/NotThreadSafeBridgeIdl
|
|
|
1086
1078
|
public abstract fun onTransitionToBridgeIdle ()V
|
|
1087
1079
|
}
|
|
1088
1080
|
|
|
1089
|
-
public class com/facebook/react/bridge/ObjectAlreadyConsumedException : java/lang/RuntimeException {
|
|
1090
|
-
public fun <init> (Ljava/lang/String;)V
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
1081
|
public abstract interface class com/facebook/react/bridge/OnBatchCompleteListener {
|
|
1094
1082
|
public abstract fun onBatchComplete ()V
|
|
1095
1083
|
}
|
|
@@ -1238,11 +1226,16 @@ public class com/facebook/react/bridge/ReactCxxErrorHandler {
|
|
|
1238
1226
|
public static fun setHandleErrorFunc (Ljava/lang/Object;Ljava/lang/reflect/Method;)V
|
|
1239
1227
|
}
|
|
1240
1228
|
|
|
1241
|
-
public class com/facebook/react/bridge/ReactIgnorableMountingException : java/lang/RuntimeException {
|
|
1229
|
+
public final class com/facebook/react/bridge/ReactIgnorableMountingException : java/lang/RuntimeException {
|
|
1230
|
+
public static final field Companion Lcom/facebook/react/bridge/ReactIgnorableMountingException$Companion;
|
|
1242
1231
|
public fun <init> (Ljava/lang/String;)V
|
|
1243
1232
|
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1244
1233
|
public fun <init> (Ljava/lang/Throwable;)V
|
|
1245
|
-
public static fun isIgnorable (Ljava/lang/Throwable;)Z
|
|
1234
|
+
public static final fun isIgnorable (Ljava/lang/Throwable;)Z
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
public final class com/facebook/react/bridge/ReactIgnorableMountingException$Companion {
|
|
1238
|
+
public final fun isIgnorable (Ljava/lang/Throwable;)Z
|
|
1246
1239
|
}
|
|
1247
1240
|
|
|
1248
1241
|
public class com/facebook/react/bridge/ReactInstanceManagerInspectorTarget : java/lang/AutoCloseable {
|
|
@@ -1419,7 +1412,7 @@ public abstract interface annotation class com/facebook/react/bridge/ReactMethod
|
|
|
1419
1412
|
public abstract interface class com/facebook/react/bridge/ReactModuleWithSpec {
|
|
1420
1413
|
}
|
|
1421
1414
|
|
|
1422
|
-
public class com/facebook/react/bridge/ReactNoCrashBridgeNotAllowedSoftException : com/facebook/react/bridge/ReactNoCrashSoftException {
|
|
1415
|
+
public final class com/facebook/react/bridge/ReactNoCrashBridgeNotAllowedSoftException : com/facebook/react/bridge/ReactNoCrashSoftException {
|
|
1423
1416
|
public fun <init> (Ljava/lang/String;)V
|
|
1424
1417
|
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1425
1418
|
public fun <init> (Ljava/lang/Throwable;)V
|
|
@@ -1431,13 +1424,13 @@ public class com/facebook/react/bridge/ReactNoCrashSoftException : java/lang/Run
|
|
|
1431
1424
|
public fun <init> (Ljava/lang/Throwable;)V
|
|
1432
1425
|
}
|
|
1433
1426
|
|
|
1434
|
-
public class com/facebook/react/bridge/ReactSoftExceptionLogger {
|
|
1435
|
-
public
|
|
1436
|
-
public static fun addListener (Lcom/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener;)V
|
|
1437
|
-
public static fun clearListeners ()V
|
|
1438
|
-
public static fun logSoftException (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1439
|
-
public static fun logSoftExceptionVerbose (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1440
|
-
public static fun removeListener (Lcom/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener;)V
|
|
1427
|
+
public final class com/facebook/react/bridge/ReactSoftExceptionLogger {
|
|
1428
|
+
public static final field INSTANCE Lcom/facebook/react/bridge/ReactSoftExceptionLogger;
|
|
1429
|
+
public static final fun addListener (Lcom/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener;)V
|
|
1430
|
+
public static final fun clearListeners ()V
|
|
1431
|
+
public static final fun logSoftException (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1432
|
+
public static final fun logSoftExceptionVerbose (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1433
|
+
public static final fun removeListener (Lcom/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener;)V
|
|
1441
1434
|
}
|
|
1442
1435
|
|
|
1443
1436
|
public abstract interface class com/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener {
|
|
@@ -1482,7 +1475,7 @@ public abstract interface class com/facebook/react/bridge/ReadableMapKeySetItera
|
|
|
1482
1475
|
}
|
|
1483
1476
|
|
|
1484
1477
|
public class com/facebook/react/bridge/ReadableNativeArray : com/facebook/react/bridge/NativeArray, com/facebook/react/bridge/ReadableArray {
|
|
1485
|
-
protected fun <init> (
|
|
1478
|
+
protected fun <init> ()V
|
|
1486
1479
|
public fun equals (Ljava/lang/Object;)Z
|
|
1487
1480
|
public synthetic fun getArray (I)Lcom/facebook/react/bridge/ReadableArray;
|
|
1488
1481
|
public fun getArray (I)Lcom/facebook/react/bridge/ReadableNativeArray;
|
|
@@ -1490,7 +1483,7 @@ public class com/facebook/react/bridge/ReadableNativeArray : com/facebook/react/
|
|
|
1490
1483
|
public fun getDouble (I)D
|
|
1491
1484
|
public fun getDynamic (I)Lcom/facebook/react/bridge/Dynamic;
|
|
1492
1485
|
public fun getInt (I)I
|
|
1493
|
-
public static fun getJNIPassCounter ()I
|
|
1486
|
+
public static final fun getJNIPassCounter ()I
|
|
1494
1487
|
public fun getLong (I)J
|
|
1495
1488
|
public synthetic fun getMap (I)Lcom/facebook/react/bridge/ReadableMap;
|
|
1496
1489
|
public fun getMap (I)Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
@@ -1503,7 +1496,7 @@ public class com/facebook/react/bridge/ReadableNativeArray : com/facebook/react/
|
|
|
1503
1496
|
}
|
|
1504
1497
|
|
|
1505
1498
|
public class com/facebook/react/bridge/ReadableNativeMap : com/facebook/react/bridge/NativeMap, com/facebook/react/bridge/ReadableMap {
|
|
1506
|
-
protected fun <init> (
|
|
1499
|
+
protected fun <init> ()V
|
|
1507
1500
|
public fun equals (Ljava/lang/Object;)Z
|
|
1508
1501
|
public fun getArray (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableArray;
|
|
1509
1502
|
public fun getBoolean (Ljava/lang/String;)Z
|
|
@@ -1536,7 +1529,7 @@ public final class com/facebook/react/bridge/ReadableType : java/lang/Enum {
|
|
|
1536
1529
|
public static fun values ()[Lcom/facebook/react/bridge/ReadableType;
|
|
1537
1530
|
}
|
|
1538
1531
|
|
|
1539
|
-
public class com/facebook/react/bridge/RetryableMountingLayerException : java/lang/RuntimeException {
|
|
1532
|
+
public final class com/facebook/react/bridge/RetryableMountingLayerException : java/lang/RuntimeException {
|
|
1540
1533
|
public fun <init> (Ljava/lang/String;)V
|
|
1541
1534
|
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1542
1535
|
public fun <init> (Ljava/lang/Throwable;)V
|
|
@@ -1566,7 +1559,7 @@ public abstract interface class com/facebook/react/bridge/UIManager : com/facebo
|
|
|
1566
1559
|
public abstract fun addUIManagerEventListener (Lcom/facebook/react/bridge/UIManagerListener;)V
|
|
1567
1560
|
public abstract fun dispatchCommand (IILcom/facebook/react/bridge/ReadableArray;)V
|
|
1568
1561
|
public abstract fun dispatchCommand (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
1569
|
-
public abstract fun getEventDispatcher ()
|
|
1562
|
+
public abstract fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
1570
1563
|
public abstract fun initialize ()V
|
|
1571
1564
|
public abstract fun invalidate ()V
|
|
1572
1565
|
public abstract fun markActiveTouchForTag (II)V
|
|
@@ -1630,7 +1623,7 @@ public abstract interface class com/facebook/react/bridge/WritableMap : com/face
|
|
|
1630
1623
|
public abstract fun putString (Ljava/lang/String;Ljava/lang/String;)V
|
|
1631
1624
|
}
|
|
1632
1625
|
|
|
1633
|
-
public class com/facebook/react/bridge/WritableNativeArray : com/facebook/react/bridge/ReadableNativeArray, com/facebook/react/bridge/WritableArray {
|
|
1626
|
+
public final class com/facebook/react/bridge/WritableNativeArray : com/facebook/react/bridge/ReadableNativeArray, com/facebook/react/bridge/WritableArray {
|
|
1634
1627
|
public fun <init> ()V
|
|
1635
1628
|
public fun pushArray (Lcom/facebook/react/bridge/ReadableArray;)V
|
|
1636
1629
|
public fun pushBoolean (Z)V
|
|
@@ -1656,13 +1649,6 @@ public final class com/facebook/react/bridge/WritableNativeMap : com/facebook/re
|
|
|
1656
1649
|
public fun putString (Ljava/lang/String;Ljava/lang/String;)V
|
|
1657
1650
|
}
|
|
1658
1651
|
|
|
1659
|
-
public class com/facebook/react/bridge/interop/InteropModuleRegistry {
|
|
1660
|
-
public fun <init> ()V
|
|
1661
|
-
public fun getInteropModule (Ljava/lang/Class;)Lcom/facebook/react/bridge/JavaScriptModule;
|
|
1662
|
-
public fun registerInteropModule (Ljava/lang/Class;Ljava/lang/Object;)V
|
|
1663
|
-
public fun shouldReturnInteropModule (Ljava/lang/Class;)Z
|
|
1664
|
-
}
|
|
1665
|
-
|
|
1666
1652
|
public abstract interface class com/facebook/react/bridge/queue/MessageQueueThread {
|
|
1667
1653
|
public abstract fun assertIsOnThread ()V
|
|
1668
1654
|
public abstract fun assertIsOnThread (Ljava/lang/String;)V
|
|
@@ -1923,19 +1909,7 @@ public final class com/facebook/react/common/build/ReactBuildConfig {
|
|
|
1923
1909
|
public static final field EXOPACKAGE_FLAGS I
|
|
1924
1910
|
public static final field INSTANCE Lcom/facebook/react/common/build/ReactBuildConfig;
|
|
1925
1911
|
public static final field IS_INTERNAL_BUILD Z
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
public final class com/facebook/react/common/futures/SimpleSettableFuture : java/util/concurrent/Future {
|
|
1929
|
-
public fun <init> ()V
|
|
1930
|
-
public fun cancel (Z)Z
|
|
1931
|
-
public fun get ()Ljava/lang/Object;
|
|
1932
|
-
public fun get (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;
|
|
1935
|
-
public fun isCancelled ()Z
|
|
1936
|
-
public fun isDone ()Z
|
|
1937
|
-
public final fun set (Ljava/lang/Object;)V
|
|
1938
|
-
public final fun setException (Ljava/lang/Exception;)V
|
|
1912
|
+
public static final field UNSTABLE_ENABLE_FUSEBOX_RELEASE Z
|
|
1939
1913
|
}
|
|
1940
1914
|
|
|
1941
1915
|
public abstract interface class com/facebook/react/common/mapbuffer/MapBuffer : java/lang/Iterable, kotlin/jvm/internal/markers/KMappedMarker {
|
|
@@ -2032,18 +2006,9 @@ public final class com/facebook/react/common/mapbuffer/WritableMapBuffer : com/f
|
|
|
2032
2006
|
public final fun put (IZ)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
2033
2007
|
}
|
|
2034
2008
|
|
|
2035
|
-
public final class com/facebook/react/
|
|
2036
|
-
public static final field INSTANCE Lcom/facebook/react/
|
|
2037
|
-
public static final fun cancelTag (Lokhttp3/OkHttpClient;Ljava/lang/Object;)V
|
|
2038
|
-
}
|
|
2039
|
-
|
|
2040
|
-
public class com/facebook/react/config/ReactFeatureFlags {
|
|
2009
|
+
public final class com/facebook/react/config/ReactFeatureFlags {
|
|
2010
|
+
public static final field INSTANCE Lcom/facebook/react/config/ReactFeatureFlags;
|
|
2041
2011
|
public static field dispatchPointerEvents Z
|
|
2042
|
-
public static field enableBridgelessArchitecture Z
|
|
2043
|
-
public static field enableCppPropsIteratorSetter Z
|
|
2044
|
-
public static field enableFabricRenderer Z
|
|
2045
|
-
public static field useTurboModules Z
|
|
2046
|
-
public fun <init> ()V
|
|
2047
2012
|
}
|
|
2048
2013
|
|
|
2049
2014
|
public final class com/facebook/react/defaults/DefaultComponentsRegistry {
|
|
@@ -2075,7 +2040,9 @@ public final class com/facebook/react/defaults/DefaultReactHost {
|
|
|
2075
2040
|
public static final field INSTANCE Lcom/facebook/react/defaults/DefaultReactHost;
|
|
2076
2041
|
public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;)Lcom/facebook/react/ReactHost;
|
|
2077
2042
|
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;)Lcom/facebook/react/ReactHost;
|
|
2043
|
+
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/ReactHost;
|
|
2078
2044
|
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2045
|
+
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2079
2046
|
}
|
|
2080
2047
|
|
|
2081
2048
|
public abstract class com/facebook/react/defaults/DefaultReactNativeHost : com/facebook/react/ReactNativeHost {
|
|
@@ -2096,6 +2063,7 @@ public final class com/facebook/react/defaults/DefaultTurboModuleManagerDelegate
|
|
|
2096
2063
|
public fun <init> ()V
|
|
2097
2064
|
public final fun addCxxReactPackage (Lkotlin/jvm/functions/Function0;)Lcom/facebook/react/defaults/DefaultTurboModuleManagerDelegate$Builder;
|
|
2098
2065
|
public final fun addCxxReactPackage (Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/defaults/DefaultTurboModuleManagerDelegate$Builder;
|
|
2066
|
+
public final fun addCxxReactPackages (Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/defaults/DefaultTurboModuleManagerDelegate$Builder;
|
|
2099
2067
|
public synthetic fun build (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/util/List;)Lcom/facebook/react/ReactPackageTurboModuleManagerDelegate;
|
|
2100
2068
|
}
|
|
2101
2069
|
|
|
@@ -2133,8 +2101,8 @@ public final class com/facebook/react/devsupport/DefaultDevLoadingViewImplementa
|
|
|
2133
2101
|
|
|
2134
2102
|
public final class com/facebook/react/devsupport/DefaultDevSupportManagerFactory : com/facebook/react/devsupport/DevSupportManagerFactory {
|
|
2135
2103
|
public fun <init> ()V
|
|
2136
|
-
public final fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZI)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
2137
2104
|
public fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
2105
|
+
public fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;Z)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
2138
2106
|
}
|
|
2139
2107
|
|
|
2140
2108
|
public class com/facebook/react/devsupport/DevServerHelper {
|
|
@@ -2174,6 +2142,7 @@ public final class com/facebook/react/devsupport/DevSettingsActivity : android/p
|
|
|
2174
2142
|
}
|
|
2175
2143
|
|
|
2176
2144
|
public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/facebook/react/devsupport/interfaces/DevSupportManager {
|
|
2145
|
+
protected final field mReactInstanceDevHelper Lcom/facebook/react/devsupport/ReactInstanceDevHelper;
|
|
2177
2146
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;)V
|
|
2178
2147
|
public fun addCustomDevOption (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevOptionHandler;)V
|
|
2179
2148
|
public fun createRootView (Ljava/lang/String;)Landroid/view/View;
|
|
@@ -2183,7 +2152,7 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
|
|
|
2183
2152
|
public fun fetchSplitBundleAndCreateBundleLoader (Ljava/lang/String;Lcom/facebook/react/devsupport/DevSupportManagerBase$CallbackWithBundleLoader;)V
|
|
2184
2153
|
protected fun getApplicationContext ()Landroid/content/Context;
|
|
2185
2154
|
public fun getCurrentActivity ()Landroid/app/Activity;
|
|
2186
|
-
|
|
2155
|
+
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
2187
2156
|
public fun getDevLoadingViewManager ()Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;
|
|
2188
2157
|
public fun getDevServerHelper ()Lcom/facebook/react/devsupport/DevServerHelper;
|
|
2189
2158
|
public fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
@@ -2227,7 +2196,6 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
|
|
|
2227
2196
|
public fun startInspector ()V
|
|
2228
2197
|
public fun stopInspector ()V
|
|
2229
2198
|
public fun toggleElementInspector ()V
|
|
2230
|
-
public fun updateJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
|
|
2231
2199
|
}
|
|
2232
2200
|
|
|
2233
2201
|
public abstract interface class com/facebook/react/devsupport/DevSupportManagerBase$CallbackWithBundleLoader {
|
|
@@ -2237,6 +2205,7 @@ public abstract interface class com/facebook/react/devsupport/DevSupportManagerB
|
|
|
2237
2205
|
|
|
2238
2206
|
public abstract interface class com/facebook/react/devsupport/DevSupportManagerFactory {
|
|
2239
2207
|
public abstract fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
2208
|
+
public abstract fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;Z)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
2240
2209
|
}
|
|
2241
2210
|
|
|
2242
2211
|
public final class com/facebook/react/devsupport/DoubleTapReloadRecognizer {
|
|
@@ -2328,9 +2297,12 @@ public abstract interface class com/facebook/react/devsupport/ReactInstanceDevHe
|
|
|
2328
2297
|
public abstract fun createRootView (Ljava/lang/String;)Landroid/view/View;
|
|
2329
2298
|
public abstract fun destroyRootView (Landroid/view/View;)V
|
|
2330
2299
|
public abstract fun getCurrentActivity ()Landroid/app/Activity;
|
|
2300
|
+
public abstract fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
2331
2301
|
public abstract fun getJavaScriptExecutorFactory ()Lcom/facebook/react/bridge/JavaScriptExecutorFactory;
|
|
2302
|
+
public abstract fun loadBundle (Lcom/facebook/react/bridge/JSBundleLoader;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
2332
2303
|
public abstract fun onJSBundleLoadedFromServer ()V
|
|
2333
2304
|
public abstract fun onReloadWithJSDebugger (Lcom/facebook/react/bridge/JavaJSExecutor$Factory;)V
|
|
2305
|
+
public abstract fun reload (Ljava/lang/String;)V
|
|
2334
2306
|
public abstract fun toggleElementInspector ()V
|
|
2335
2307
|
}
|
|
2336
2308
|
|
|
@@ -2353,6 +2325,7 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
|
|
|
2353
2325
|
public fun destroyRootView (Landroid/view/View;)V
|
|
2354
2326
|
public fun downloadBundleResourceFromUrlSync (Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
|
|
2355
2327
|
public fun getCurrentActivity ()Landroid/app/Activity;
|
|
2328
|
+
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
2356
2329
|
public fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
2357
2330
|
public fun getDevSupportEnabled ()Z
|
|
2358
2331
|
public fun getDownloadedJSBundleFile ()Ljava/lang/String;
|
|
@@ -2391,17 +2364,20 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
|
|
|
2391
2364
|
public fun startInspector ()V
|
|
2392
2365
|
public fun stopInspector ()V
|
|
2393
2366
|
public fun toggleElementInspector ()V
|
|
2394
|
-
public fun updateJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
|
|
2395
2367
|
}
|
|
2396
2368
|
|
|
2397
2369
|
public class com/facebook/react/devsupport/StackTraceHelper {
|
|
2398
2370
|
public static final field COLUMN_KEY Ljava/lang/String;
|
|
2371
|
+
public static final field COMPONENT_STACK_KEY Ljava/lang/String;
|
|
2372
|
+
public static final field EXTRA_DATA_KEY Ljava/lang/String;
|
|
2399
2373
|
public static final field FILE_KEY Ljava/lang/String;
|
|
2400
2374
|
public static final field ID_KEY Ljava/lang/String;
|
|
2401
2375
|
public static final field IS_FATAL_KEY Ljava/lang/String;
|
|
2402
2376
|
public static final field LINE_NUMBER_KEY Ljava/lang/String;
|
|
2403
2377
|
public static final field MESSAGE_KEY Ljava/lang/String;
|
|
2404
2378
|
public static final field METHOD_NAME_KEY Ljava/lang/String;
|
|
2379
|
+
public static final field NAME_KEY Ljava/lang/String;
|
|
2380
|
+
public static final field ORIGINAL_MESSAGE_KEY Ljava/lang/String;
|
|
2405
2381
|
public static final field STACK_KEY Ljava/lang/String;
|
|
2406
2382
|
public fun <init> ()V
|
|
2407
2383
|
public static fun convertJavaStackTrace (Ljava/lang/Throwable;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
@@ -2486,6 +2462,7 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
|
|
|
2486
2462
|
public abstract fun destroyRootView (Landroid/view/View;)V
|
|
2487
2463
|
public abstract fun downloadBundleResourceFromUrlSync (Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
|
|
2488
2464
|
public abstract fun getCurrentActivity ()Landroid/app/Activity;
|
|
2465
|
+
public abstract fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
2489
2466
|
public abstract fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
2490
2467
|
public abstract fun getDevSupportEnabled ()Z
|
|
2491
2468
|
public abstract fun getDownloadedJSBundleFile ()Ljava/lang/String;
|
|
@@ -2523,7 +2500,6 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
|
|
|
2523
2500
|
public abstract fun startInspector ()V
|
|
2524
2501
|
public abstract fun stopInspector ()V
|
|
2525
2502
|
public abstract fun toggleElementInspector ()V
|
|
2526
|
-
public abstract fun updateJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
|
|
2527
2503
|
}
|
|
2528
2504
|
|
|
2529
2505
|
public abstract interface class com/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer {
|
|
@@ -2578,49 +2554,11 @@ public abstract interface class com/facebook/react/devsupport/interfaces/StackFr
|
|
|
2578
2554
|
public abstract fun toJSON ()Lorg/json/JSONObject;
|
|
2579
2555
|
}
|
|
2580
2556
|
|
|
2581
|
-
public abstract interface class com/facebook/react/fabric/Binding {
|
|
2582
|
-
public abstract fun drainPreallocateViewsQueue ()V
|
|
2583
|
-
public abstract fun driveCxxAnimations ()V
|
|
2584
|
-
public abstract fun getInspectorDataForInstance (Lcom/facebook/react/fabric/events/EventEmitterWrapper;)Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
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
|
|
2586
|
-
public abstract fun registerSurface (Lcom/facebook/react/fabric/SurfaceHandlerBinding;)V
|
|
2587
|
-
public abstract fun reportMount (I)V
|
|
2588
|
-
public abstract fun setConstraints (IFFFFFFZZ)V
|
|
2589
|
-
public abstract fun setPixelDensity (F)V
|
|
2590
|
-
public abstract fun startSurface (ILjava/lang/String;Lcom/facebook/react/bridge/NativeMap;)V
|
|
2591
|
-
public abstract fun startSurfaceWithConstraints (ILjava/lang/String;Lcom/facebook/react/bridge/NativeMap;FFFFFFZZ)V
|
|
2592
|
-
public abstract fun stopSurface (I)V
|
|
2593
|
-
public abstract fun unregister ()V
|
|
2594
|
-
public abstract fun unregisterSurface (Lcom/facebook/react/fabric/SurfaceHandlerBinding;)V
|
|
2595
|
-
}
|
|
2596
|
-
|
|
2597
|
-
public final class com/facebook/react/fabric/BindingImpl : com/facebook/react/fabric/Binding {
|
|
2598
|
-
public fun <init> ()V
|
|
2599
|
-
public fun drainPreallocateViewsQueue ()V
|
|
2600
|
-
public fun driveCxxAnimations ()V
|
|
2601
|
-
public fun getInspectorDataForInstance (Lcom/facebook/react/fabric/events/EventEmitterWrapper;)Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
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
|
|
2603
|
-
public fun registerSurface (Lcom/facebook/react/fabric/SurfaceHandlerBinding;)V
|
|
2604
|
-
public fun reportMount (I)V
|
|
2605
|
-
public fun setConstraints (IFFFFFFZZ)V
|
|
2606
|
-
public fun setPixelDensity (F)V
|
|
2607
|
-
public fun startSurface (ILjava/lang/String;Lcom/facebook/react/bridge/NativeMap;)V
|
|
2608
|
-
public fun startSurfaceWithConstraints (ILjava/lang/String;Lcom/facebook/react/bridge/NativeMap;FFFFFFZZ)V
|
|
2609
|
-
public fun stopSurface (I)V
|
|
2610
|
-
public fun unregister ()V
|
|
2611
|
-
public fun unregisterSurface (Lcom/facebook/react/fabric/SurfaceHandlerBinding;)V
|
|
2612
|
-
}
|
|
2613
|
-
|
|
2614
2557
|
public final class com/facebook/react/fabric/ComponentFactory {
|
|
2615
2558
|
public fun <init> ()V
|
|
2616
2559
|
}
|
|
2617
2560
|
|
|
2618
2561
|
public class com/facebook/react/fabric/DevToolsReactPerfLogger : com/facebook/react/bridge/ReactMarker$FabricMarkerListener {
|
|
2619
|
-
public static final field mStreamingBatchExecutionStats Lcom/facebook/react/fabric/LongStreamingStats;
|
|
2620
|
-
public static final field mStreamingCommitStats Lcom/facebook/react/fabric/LongStreamingStats;
|
|
2621
|
-
public static final field mStreamingDiffStats Lcom/facebook/react/fabric/LongStreamingStats;
|
|
2622
|
-
public static final field mStreamingLayoutStats Lcom/facebook/react/fabric/LongStreamingStats;
|
|
2623
|
-
public static final field mStreamingTransactionEndStats Lcom/facebook/react/fabric/LongStreamingStats;
|
|
2624
2562
|
public fun <init> ()V
|
|
2625
2563
|
public fun addDevToolsReactPerfLoggerListener (Lcom/facebook/react/fabric/DevToolsReactPerfLogger$DevToolsReactPerfLoggerListener;)V
|
|
2626
2564
|
public fun logFabricMarker (Lcom/facebook/react/bridge/ReactMarkerConstants;Ljava/lang/String;IJ)V
|
|
@@ -2656,12 +2594,6 @@ public class com/facebook/react/fabric/DevToolsReactPerfLogger$FabricCommitPoint
|
|
|
2656
2594
|
public fun toString ()Ljava/lang/String;
|
|
2657
2595
|
}
|
|
2658
2596
|
|
|
2659
|
-
public class com/facebook/react/fabric/DevToolsReactPerfLogger$FabricCommitPointData {
|
|
2660
|
-
public fun <init> (JI)V
|
|
2661
|
-
public fun getCounter ()I
|
|
2662
|
-
public fun getTimeStamp ()J
|
|
2663
|
-
}
|
|
2664
|
-
|
|
2665
2597
|
public final class com/facebook/react/fabric/EmptyReactNativeConfig : com/facebook/react/fabric/ReactNativeConfig {
|
|
2666
2598
|
public fun <init> ()V
|
|
2667
2599
|
public fun getBool (Ljava/lang/String;)Z
|
|
@@ -2670,11 +2602,6 @@ public final class com/facebook/react/fabric/EmptyReactNativeConfig : com/facebo
|
|
|
2670
2602
|
public fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
2671
2603
|
}
|
|
2672
2604
|
|
|
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;
|
|
2676
|
-
}
|
|
2677
|
-
|
|
2678
2605
|
public final class com/facebook/react/fabric/FabricSoLoader {
|
|
2679
2606
|
public static final field INSTANCE Lcom/facebook/react/fabric/FabricSoLoader;
|
|
2680
2607
|
public static final fun staticInit ()V
|
|
@@ -2696,7 +2623,6 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2696
2623
|
public fun dispatchCommand (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
2697
2624
|
public fun getColor (I[Ljava/lang/String;)I
|
|
2698
2625
|
public fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
2699
|
-
public synthetic fun getEventDispatcher ()Ljava/lang/Object;
|
|
2700
2626
|
public fun getInspectorDataForInstance (ILandroid/view/View;)Lcom/facebook/react/bridge/ReadableMap;
|
|
2701
2627
|
public fun getPerformanceCounters ()Ljava/util/Map;
|
|
2702
2628
|
public fun getThemeData (I[F)Z
|
|
@@ -2720,7 +2646,7 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2720
2646
|
public fun resolveView (I)Landroid/view/View;
|
|
2721
2647
|
public fun sendAccessibilityEvent (II)V
|
|
2722
2648
|
public fun sendAccessibilityEventFromJS (IILjava/lang/String;)V
|
|
2723
|
-
public fun setBinding (Lcom/facebook/react/fabric/
|
|
2649
|
+
public fun setBinding (Lcom/facebook/react/fabric/FabricUIManagerBinding;)V
|
|
2724
2650
|
public fun setJSResponder (IIIZ)V
|
|
2725
2651
|
public fun startSurface (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;II)I
|
|
2726
2652
|
public fun startSurface (Lcom/facebook/react/interfaces/fabric/SurfaceHandler;Landroid/content/Context;Landroid/view/View;)V
|
|
@@ -2755,7 +2681,7 @@ public abstract interface class com/facebook/react/fabric/ReactNativeConfig {
|
|
|
2755
2681
|
public final class com/facebook/react/fabric/ReactNativeConfig$Companion {
|
|
2756
2682
|
}
|
|
2757
2683
|
|
|
2758
|
-
public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/react/uimanager/StateWrapper {
|
|
2684
|
+
public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/jni/HybridClassBase, com/facebook/react/uimanager/StateWrapper {
|
|
2759
2685
|
public fun destroyState ()V
|
|
2760
2686
|
public fun getStateData ()Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
2761
2687
|
public fun getStateDataMapBuffer ()Lcom/facebook/react/common/mapbuffer/ReadableMapBuffer;
|
|
@@ -2764,7 +2690,7 @@ public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/react/uim
|
|
|
2764
2690
|
public fun updateStateImpl (Lcom/facebook/react/bridge/NativeMap;)V
|
|
2765
2691
|
}
|
|
2766
2692
|
|
|
2767
|
-
public class com/facebook/react/fabric/SurfaceHandlerBinding : com/facebook/react/interfaces/fabric/SurfaceHandler {
|
|
2693
|
+
public class com/facebook/react/fabric/SurfaceHandlerBinding : com/facebook/jni/HybridClassBase, com/facebook/react/interfaces/fabric/SurfaceHandler {
|
|
2768
2694
|
public static final field DISPLAY_MODE_HIDDEN I
|
|
2769
2695
|
public static final field DISPLAY_MODE_SUSPENDED I
|
|
2770
2696
|
public static final field DISPLAY_MODE_VISIBLE I
|
|
@@ -2775,12 +2701,6 @@ public class com/facebook/react/fabric/SurfaceHandlerBinding : com/facebook/reac
|
|
|
2775
2701
|
public fun setLayoutConstraints (IIIIZZF)V
|
|
2776
2702
|
public fun setMountable (Z)V
|
|
2777
2703
|
public fun setProps (Lcom/facebook/react/bridge/NativeMap;)V
|
|
2778
|
-
public fun setSurfaceId (I)V
|
|
2779
|
-
public fun start ()V
|
|
2780
|
-
public fun stop ()V
|
|
2781
|
-
}
|
|
2782
|
-
|
|
2783
|
-
public abstract interface annotation class com/facebook/react/fabric/SurfaceHandlerBinding$DisplayModeTypeDef : java/lang/annotation/Annotation {
|
|
2784
2704
|
}
|
|
2785
2705
|
|
|
2786
2706
|
public final class com/facebook/react/fabric/events/EventBeatManager : com/facebook/react/uimanager/events/BatchEventDispatchedListener {
|
|
@@ -2789,7 +2709,7 @@ public final class com/facebook/react/fabric/events/EventBeatManager : com/faceb
|
|
|
2789
2709
|
public fun onBatchEventDispatched ()V
|
|
2790
2710
|
}
|
|
2791
2711
|
|
|
2792
|
-
public class com/facebook/react/fabric/events/EventEmitterWrapper {
|
|
2712
|
+
public class com/facebook/react/fabric/events/EventEmitterWrapper : com/facebook/jni/HybridClassBase {
|
|
2793
2713
|
public fun destroy ()V
|
|
2794
2714
|
public fun dispatch (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;I)V
|
|
2795
2715
|
public fun dispatchEventSynchronously (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
@@ -2918,6 +2838,7 @@ public abstract interface class com/facebook/react/fabric/mounting/mountitems/Mo
|
|
|
2918
2838
|
|
|
2919
2839
|
public final class com/facebook/react/fabric/mounting/mountitems/MountItemFactory {
|
|
2920
2840
|
public static final field INSTANCE Lcom/facebook/react/fabric/mounting/mountitems/MountItemFactory;
|
|
2841
|
+
public static final fun createDestroyViewMountItem (II)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2921
2842
|
public static final fun createDispatchCommandMountItem (IIILcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem;
|
|
2922
2843
|
public static final fun createDispatchCommandMountItem (IILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem;
|
|
2923
2844
|
public static final fun createIntBufferBatchMountItem (I[I[Ljava/lang/Object;I)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
@@ -2936,16 +2857,20 @@ public abstract interface class com/facebook/react/interfaces/TaskInterface {
|
|
|
2936
2857
|
}
|
|
2937
2858
|
|
|
2938
2859
|
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ParsedError {
|
|
2939
|
-
public abstract fun
|
|
2940
|
-
public abstract fun
|
|
2860
|
+
public abstract fun getComponentStack ()Ljava/lang/String;
|
|
2861
|
+
public abstract fun getExtraData ()Lcom/facebook/react/bridge/ReadableMap;
|
|
2862
|
+
public abstract fun getId ()I
|
|
2941
2863
|
public abstract fun getMessage ()Ljava/lang/String;
|
|
2864
|
+
public abstract fun getName ()Ljava/lang/String;
|
|
2865
|
+
public abstract fun getOriginalMessage ()Ljava/lang/String;
|
|
2866
|
+
public abstract fun getStack ()Ljava/util/List;
|
|
2942
2867
|
public abstract fun isFatal ()Z
|
|
2943
2868
|
}
|
|
2944
2869
|
|
|
2945
2870
|
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ParsedError$StackFrame {
|
|
2946
|
-
public abstract fun
|
|
2947
|
-
public abstract fun
|
|
2948
|
-
public abstract fun getLineNumber ()
|
|
2871
|
+
public abstract fun getColumn ()Ljava/lang/Integer;
|
|
2872
|
+
public abstract fun getFile ()Ljava/lang/String;
|
|
2873
|
+
public abstract fun getLineNumber ()Ljava/lang/Integer;
|
|
2949
2874
|
public abstract fun getMethodName ()Ljava/lang/String;
|
|
2950
2875
|
}
|
|
2951
2876
|
|
|
@@ -2969,9 +2894,6 @@ public abstract interface class com/facebook/react/interfaces/fabric/SurfaceHand
|
|
|
2969
2894
|
public abstract fun setLayoutConstraints (IIIIZZF)V
|
|
2970
2895
|
public abstract fun setMountable (Z)V
|
|
2971
2896
|
public abstract fun setProps (Lcom/facebook/react/bridge/NativeMap;)V
|
|
2972
|
-
public abstract fun setSurfaceId (I)V
|
|
2973
|
-
public abstract fun start ()V
|
|
2974
|
-
public abstract fun stop ()V
|
|
2975
2897
|
}
|
|
2976
2898
|
|
|
2977
2899
|
public final class com/facebook/react/jscexecutor/JSCExecutor : com/facebook/react/bridge/JavaScriptExecutor {
|
|
@@ -3045,7 +2967,6 @@ public final class com/facebook/react/module/model/ReactModuleInfo {
|
|
|
3045
2967
|
public final fun canOverrideExistingModule ()Z
|
|
3046
2968
|
public static final fun classIsTurboModule (Ljava/lang/Class;)Z
|
|
3047
2969
|
public final fun className ()Ljava/lang/String;
|
|
3048
|
-
public final fun hasConstants ()Z
|
|
3049
2970
|
public final fun isCxxModule ()Z
|
|
3050
2971
|
public final fun isTurboModule ()Z
|
|
3051
2972
|
public final fun name ()Ljava/lang/String;
|
|
@@ -3060,21 +2981,6 @@ public abstract interface class com/facebook/react/module/model/ReactModuleInfoP
|
|
|
3060
2981
|
public abstract fun getReactModuleInfos ()Ljava/util/Map;
|
|
3061
2982
|
}
|
|
3062
2983
|
|
|
3063
|
-
public final class com/facebook/react/modules/accessibilityinfo/AccessibilityInfoModule : com/facebook/fbreact/specs/NativeAccessibilityInfoSpec, com/facebook/react/bridge/LifecycleEventListener {
|
|
3064
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3065
|
-
public fun announceForAccessibility (Ljava/lang/String;)V
|
|
3066
|
-
public fun getRecommendedTimeoutMillis (DLcom/facebook/react/bridge/Callback;)V
|
|
3067
|
-
public fun initialize ()V
|
|
3068
|
-
public fun invalidate ()V
|
|
3069
|
-
public fun isAccessibilityServiceEnabled (Lcom/facebook/react/bridge/Callback;)V
|
|
3070
|
-
public fun isReduceMotionEnabled (Lcom/facebook/react/bridge/Callback;)V
|
|
3071
|
-
public fun isTouchExplorationEnabled (Lcom/facebook/react/bridge/Callback;)V
|
|
3072
|
-
public fun onHostDestroy ()V
|
|
3073
|
-
public fun onHostPause ()V
|
|
3074
|
-
public fun onHostResume ()V
|
|
3075
|
-
public fun setAccessibilityFocus (D)V
|
|
3076
|
-
}
|
|
3077
|
-
|
|
3078
2984
|
public final class com/facebook/react/modules/appearance/AppearanceModule : com/facebook/fbreact/specs/NativeAppearanceSpec {
|
|
3079
2985
|
public static final field Companion Lcom/facebook/react/modules/appearance/AppearanceModule$Companion;
|
|
3080
2986
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3102,26 +3008,6 @@ public abstract interface class com/facebook/react/modules/appregistry/AppRegist
|
|
|
3102
3008
|
public abstract fun unmountApplicationComponentAtRootTag (I)V
|
|
3103
3009
|
}
|
|
3104
3010
|
|
|
3105
|
-
public final class com/facebook/react/modules/appstate/AppStateModule : com/facebook/fbreact/specs/NativeAppStateSpec, com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/WindowFocusChangeListener {
|
|
3106
|
-
public static final field APP_STATE_ACTIVE Ljava/lang/String;
|
|
3107
|
-
public static final field APP_STATE_BACKGROUND Ljava/lang/String;
|
|
3108
|
-
public static final field Companion Lcom/facebook/react/modules/appstate/AppStateModule$Companion;
|
|
3109
|
-
public static final field NAME Ljava/lang/String;
|
|
3110
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3111
|
-
public fun addListener (Ljava/lang/String;)V
|
|
3112
|
-
public fun getCurrentAppState (Lcom/facebook/react/bridge/Callback;Lcom/facebook/react/bridge/Callback;)V
|
|
3113
|
-
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
3114
|
-
public fun invalidate ()V
|
|
3115
|
-
public fun onHostDestroy ()V
|
|
3116
|
-
public fun onHostPause ()V
|
|
3117
|
-
public fun onHostResume ()V
|
|
3118
|
-
public fun onWindowFocusChange (Z)V
|
|
3119
|
-
public fun removeListeners (D)V
|
|
3120
|
-
}
|
|
3121
|
-
|
|
3122
|
-
public final class com/facebook/react/modules/appstate/AppStateModule$Companion {
|
|
3123
|
-
}
|
|
3124
|
-
|
|
3125
3011
|
public class com/facebook/react/modules/blob/BlobModule : com/facebook/fbreact/specs/NativeBlobModuleSpec {
|
|
3126
3012
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3127
3013
|
public fun addNetworkingHandler ()V
|
|
@@ -3158,27 +3044,6 @@ public class com/facebook/react/modules/blob/FileReaderModule : com/facebook/fbr
|
|
|
3158
3044
|
public fun readAsText (Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3159
3045
|
}
|
|
3160
3046
|
|
|
3161
|
-
public final class com/facebook/react/modules/camera/ImageStoreManager : com/facebook/fbreact/specs/NativeImageStoreAndroidSpec {
|
|
3162
|
-
public static final field Companion Lcom/facebook/react/modules/camera/ImageStoreManager$Companion;
|
|
3163
|
-
public static final field NAME Ljava/lang/String;
|
|
3164
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3165
|
-
public fun getBase64ForTag (Ljava/lang/String;Lcom/facebook/react/bridge/Callback;Lcom/facebook/react/bridge/Callback;)V
|
|
3166
|
-
}
|
|
3167
|
-
|
|
3168
|
-
public final class com/facebook/react/modules/camera/ImageStoreManager$Companion {
|
|
3169
|
-
}
|
|
3170
|
-
|
|
3171
|
-
public final class com/facebook/react/modules/clipboard/ClipboardModule : com/facebook/fbreact/specs/NativeClipboardSpec {
|
|
3172
|
-
public static final field Companion Lcom/facebook/react/modules/clipboard/ClipboardModule$Companion;
|
|
3173
|
-
public static final field NAME Ljava/lang/String;
|
|
3174
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3175
|
-
public fun getString (Lcom/facebook/react/bridge/Promise;)V
|
|
3176
|
-
public fun setString (Ljava/lang/String;)V
|
|
3177
|
-
}
|
|
3178
|
-
|
|
3179
|
-
public final class com/facebook/react/modules/clipboard/ClipboardModule$Companion {
|
|
3180
|
-
}
|
|
3181
|
-
|
|
3182
3047
|
public final class com/facebook/react/modules/common/ModuleDataCleaner {
|
|
3183
3048
|
public static final field INSTANCE Lcom/facebook/react/modules/common/ModuleDataCleaner;
|
|
3184
3049
|
public static final fun cleanDataFromModules (Lcom/facebook/react/bridge/ReactContext;)V
|
|
@@ -3222,7 +3087,6 @@ public class com/facebook/react/modules/core/ExceptionsManagerModule : com/faceb
|
|
|
3222
3087
|
public fun reportException (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
3223
3088
|
public fun reportFatalException (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;D)V
|
|
3224
3089
|
public fun reportSoftException (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;D)V
|
|
3225
|
-
public fun updateExceptionMessage (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;D)V
|
|
3226
3090
|
}
|
|
3227
3091
|
|
|
3228
3092
|
public class com/facebook/react/modules/core/HeadlessJsTaskSupportModule : com/facebook/fbreact/specs/NativeHeadlessJsTaskSupportSpec {
|
|
@@ -3406,25 +3270,6 @@ public final class com/facebook/react/modules/deviceinfo/DeviceInfoModule : com/
|
|
|
3406
3270
|
public fun onHostResume ()V
|
|
3407
3271
|
}
|
|
3408
3272
|
|
|
3409
|
-
public final class com/facebook/react/modules/devloading/DevLoadingModule : com/facebook/fbreact/specs/NativeDevLoadingViewSpec {
|
|
3410
|
-
public static final field Companion Lcom/facebook/react/modules/devloading/DevLoadingModule$Companion;
|
|
3411
|
-
public static final field NAME Ljava/lang/String;
|
|
3412
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3413
|
-
public fun hide ()V
|
|
3414
|
-
public fun showMessage (Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;)V
|
|
3415
|
-
}
|
|
3416
|
-
|
|
3417
|
-
public final class com/facebook/react/modules/devloading/DevLoadingModule$Companion {
|
|
3418
|
-
}
|
|
3419
|
-
|
|
3420
|
-
public final class com/facebook/react/modules/devtoolssettings/DevToolsSettingsManagerModule : com/facebook/fbreact/specs/NativeDevToolsSettingsManagerSpec {
|
|
3421
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3422
|
-
public fun getConsolePatchSettings ()Ljava/lang/String;
|
|
3423
|
-
public fun getProfilingSettings ()Ljava/lang/String;
|
|
3424
|
-
public fun setConsolePatchSettings (Ljava/lang/String;)V
|
|
3425
|
-
public fun setProfilingSettings (Ljava/lang/String;)V
|
|
3426
|
-
}
|
|
3427
|
-
|
|
3428
3273
|
public class com/facebook/react/modules/dialog/AlertFragment : androidx/fragment/app/DialogFragment, android/content/DialogInterface$OnClickListener {
|
|
3429
3274
|
public fun <init> ()V
|
|
3430
3275
|
public fun <init> (Lcom/facebook/react/modules/dialog/DialogModule$AlertFragmentListener;Landroid/os/Bundle;)V
|
|
@@ -3447,6 +3292,7 @@ public class com/facebook/react/modules/dialog/DialogModule : com/facebook/fbrea
|
|
|
3447
3292
|
|
|
3448
3293
|
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 {
|
|
3449
3294
|
public static final field Companion Lcom/facebook/react/modules/fresco/FrescoModule$Companion;
|
|
3295
|
+
public static final field NAME Ljava/lang/String;
|
|
3450
3296
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3451
3297
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;)V
|
|
3452
3298
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;Z)V
|
|
@@ -3471,14 +3317,27 @@ public final class com/facebook/react/modules/fresco/FrescoModule$Companion {
|
|
|
3471
3317
|
public final fun hasBeenInitialized ()Z
|
|
3472
3318
|
}
|
|
3473
3319
|
|
|
3320
|
+
public final class com/facebook/react/modules/fresco/ImageCacheControl : java/lang/Enum {
|
|
3321
|
+
public static final field DEFAULT Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3322
|
+
public static final field FORCE_CACHE Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3323
|
+
public static final field ONLY_IF_CACHED Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3324
|
+
public static final field RELOAD Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3325
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
3326
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3327
|
+
public static fun values ()[Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3328
|
+
}
|
|
3329
|
+
|
|
3474
3330
|
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest : com/facebook/imagepipeline/request/ImageRequest {
|
|
3475
3331
|
public static final field Companion Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion;
|
|
3476
|
-
public synthetic fun <init> (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3332
|
+
public synthetic fun <init> (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/modules/fresco/ImageCacheControl;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3477
3333
|
public static final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3334
|
+
public static final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/modules/fresco/ImageCacheControl;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3478
3335
|
}
|
|
3479
3336
|
|
|
3480
3337
|
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion {
|
|
3481
3338
|
public final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3339
|
+
public final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/modules/fresco/ImageCacheControl;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3340
|
+
public static synthetic fun fromBuilderWithHeaders$default (Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion;Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/modules/fresco/ImageCacheControl;ILjava/lang/Object;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3482
3341
|
}
|
|
3483
3342
|
|
|
3484
3343
|
public final class com/facebook/react/modules/fresco/SystraceRequestListener : com/facebook/imagepipeline/listener/BaseRequestListener {
|
|
@@ -3495,7 +3354,15 @@ public final class com/facebook/react/modules/fresco/SystraceRequestListener : c
|
|
|
3495
3354
|
public fun requiresExtraMap (Ljava/lang/String;)Z
|
|
3496
3355
|
}
|
|
3497
3356
|
|
|
3357
|
+
public final class com/facebook/react/modules/fresco/XmlFormat {
|
|
3358
|
+
public static final field INSTANCE Lcom/facebook/react/modules/fresco/XmlFormat;
|
|
3359
|
+
public final fun addDecodingCapability (Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;Landroid/content/Context;)Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;
|
|
3360
|
+
public final fun getDrawableFactory ()Lcom/facebook/imagepipeline/drawable/DrawableFactory;
|
|
3361
|
+
}
|
|
3362
|
+
|
|
3498
3363
|
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : com/facebook/fbreact/specs/NativeI18nManagerSpec {
|
|
3364
|
+
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nManagerModule$Companion;
|
|
3365
|
+
public static final field NAME Ljava/lang/String;
|
|
3499
3366
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3500
3367
|
public fun allowRTL (Z)V
|
|
3501
3368
|
public fun forceRTL (Z)V
|
|
@@ -3503,6 +3370,9 @@ public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : co
|
|
|
3503
3370
|
public fun swapLeftAndRightInRTL (Z)V
|
|
3504
3371
|
}
|
|
3505
3372
|
|
|
3373
|
+
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule$Companion {
|
|
3374
|
+
}
|
|
3375
|
+
|
|
3506
3376
|
public final class com/facebook/react/modules/i18nmanager/I18nUtil {
|
|
3507
3377
|
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nUtil$Companion;
|
|
3508
3378
|
public final fun allowRTL (Landroid/content/Context;Z)V
|
|
@@ -3538,6 +3408,8 @@ public final class com/facebook/react/modules/image/ImageLoaderModule$Companion
|
|
|
3538
3408
|
}
|
|
3539
3409
|
|
|
3540
3410
|
public class com/facebook/react/modules/intent/IntentModule : com/facebook/fbreact/specs/NativeIntentAndroidSpec {
|
|
3411
|
+
public static final field Companion Lcom/facebook/react/modules/intent/IntentModule$Companion;
|
|
3412
|
+
public static final field NAME Ljava/lang/String;
|
|
3541
3413
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3542
3414
|
public fun canOpenURL (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3543
3415
|
public fun getInitialURL (Lcom/facebook/react/bridge/Promise;)V
|
|
@@ -3547,6 +3419,9 @@ public class com/facebook/react/modules/intent/IntentModule : com/facebook/fbrea
|
|
|
3547
3419
|
public fun sendIntent (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V
|
|
3548
3420
|
}
|
|
3549
3421
|
|
|
3422
|
+
public final class com/facebook/react/modules/intent/IntentModule$Companion {
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3550
3425
|
public abstract interface class com/facebook/react/modules/network/CookieJarContainer : okhttp3/CookieJar {
|
|
3551
3426
|
public abstract fun removeCookieJar ()V
|
|
3552
3427
|
public abstract fun setCookieJar (Lokhttp3/CookieJar;)V
|
|
@@ -3674,6 +3549,8 @@ public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl
|
|
|
3674
3549
|
}
|
|
3675
3550
|
|
|
3676
3551
|
public final class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
|
|
3552
|
+
public static final field Companion Lcom/facebook/react/modules/permissions/PermissionsModule$Companion;
|
|
3553
|
+
public static final field NAME Ljava/lang/String;
|
|
3677
3554
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3678
3555
|
public fun checkPermission (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3679
3556
|
public fun onRequestPermissionsResult (I[Ljava/lang/String;[I)Z
|
|
@@ -3682,9 +3559,13 @@ public final class com/facebook/react/modules/permissions/PermissionsModule : co
|
|
|
3682
3559
|
public fun shouldShowRequestPermissionRationale (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3683
3560
|
}
|
|
3684
3561
|
|
|
3562
|
+
public final class com/facebook/react/modules/permissions/PermissionsModule$Companion {
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3685
3565
|
public final class com/facebook/react/modules/share/ShareModule : com/facebook/fbreact/specs/NativeShareModuleSpec {
|
|
3686
3566
|
public static final field Companion Lcom/facebook/react/modules/share/ShareModule$Companion;
|
|
3687
3567
|
public static final field ERROR_INVALID_CONTENT Ljava/lang/String;
|
|
3568
|
+
public static final field NAME Ljava/lang/String;
|
|
3688
3569
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3689
3570
|
public fun share (Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3690
3571
|
}
|
|
@@ -3693,10 +3574,15 @@ public final class com/facebook/react/modules/share/ShareModule$Companion {
|
|
|
3693
3574
|
}
|
|
3694
3575
|
|
|
3695
3576
|
public final class com/facebook/react/modules/sound/SoundManagerModule : com/facebook/fbreact/specs/NativeSoundManagerSpec {
|
|
3577
|
+
public static final field Companion Lcom/facebook/react/modules/sound/SoundManagerModule$Companion;
|
|
3578
|
+
public static final field NAME Ljava/lang/String;
|
|
3696
3579
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3697
3580
|
public fun playTouchSound ()V
|
|
3698
3581
|
}
|
|
3699
3582
|
|
|
3583
|
+
public final class com/facebook/react/modules/sound/SoundManagerModule$Companion {
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3700
3586
|
public final class com/facebook/react/modules/statusbar/StatusBarModule : com/facebook/fbreact/specs/NativeStatusBarManagerAndroidSpec {
|
|
3701
3587
|
public static final field Companion Lcom/facebook/react/modules/statusbar/StatusBarModule$Companion;
|
|
3702
3588
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3710,24 +3596,23 @@ public final class com/facebook/react/modules/statusbar/StatusBarModule : com/fa
|
|
|
3710
3596
|
public final class com/facebook/react/modules/statusbar/StatusBarModule$Companion {
|
|
3711
3597
|
}
|
|
3712
3598
|
|
|
3713
|
-
public class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
3599
|
+
public final class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
3714
3600
|
public static final field DEVICE_LOCALHOST Ljava/lang/String;
|
|
3715
3601
|
public static final field EMULATOR_LOCALHOST Ljava/lang/String;
|
|
3716
3602
|
public static final field GENYMOTION_LOCALHOST Ljava/lang/String;
|
|
3603
|
+
public static final field INSTANCE Lcom/facebook/react/modules/systeminfo/AndroidInfoHelpers;
|
|
3717
3604
|
public static final field METRO_HOST_PROP_NAME Ljava/lang/String;
|
|
3718
|
-
public fun
|
|
3719
|
-
public static fun getAdbReverseTcpCommand (Landroid/content/Context;)Ljava/lang/String;
|
|
3720
|
-
public static fun
|
|
3721
|
-
public static fun
|
|
3722
|
-
public static fun
|
|
3723
|
-
public static fun getServerHost (Landroid/content/Context;)Ljava/lang/String;
|
|
3724
|
-
public static fun getServerHost (Ljava/lang/Integer;)Ljava/lang/String;
|
|
3605
|
+
public static final fun getAdbReverseTcpCommand (I)Ljava/lang/String;
|
|
3606
|
+
public static final fun getAdbReverseTcpCommand (Landroid/content/Context;)Ljava/lang/String;
|
|
3607
|
+
public static final fun getFriendlyDeviceName ()Ljava/lang/String;
|
|
3608
|
+
public static final fun getInspectorHostMetadata (Landroid/content/Context;)Ljava/util/Map;
|
|
3609
|
+
public static final fun getServerHost (I)Ljava/lang/String;
|
|
3610
|
+
public static final fun getServerHost (Landroid/content/Context;)Ljava/lang/String;
|
|
3725
3611
|
}
|
|
3726
3612
|
|
|
3727
|
-
public class com/facebook/react/modules/systeminfo/AndroidInfoModule : com/facebook/fbreact/specs/NativePlatformConstantsAndroidSpec
|
|
3613
|
+
public final class com/facebook/react/modules/systeminfo/AndroidInfoModule : com/facebook/fbreact/specs/NativePlatformConstantsAndroidSpec {
|
|
3728
3614
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3729
3615
|
public fun getAndroidID ()Ljava/lang/String;
|
|
3730
|
-
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
3731
3616
|
public fun invalidate ()V
|
|
3732
3617
|
}
|
|
3733
3618
|
|
|
@@ -3749,13 +3634,6 @@ public final class com/facebook/react/modules/toast/ToastModule : com/facebook/f
|
|
|
3749
3634
|
public final class com/facebook/react/modules/toast/ToastModule$Companion {
|
|
3750
3635
|
}
|
|
3751
3636
|
|
|
3752
|
-
public final class com/facebook/react/modules/vibration/VibrationModule : com/facebook/fbreact/specs/NativeVibrationSpec {
|
|
3753
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3754
|
-
public fun cancel ()V
|
|
3755
|
-
public fun vibrate (D)V
|
|
3756
|
-
public fun vibrateByPattern (Lcom/facebook/react/bridge/ReadableArray;D)V
|
|
3757
|
-
}
|
|
3758
|
-
|
|
3759
3637
|
public final class com/facebook/react/modules/websocket/WebSocketModule : com/facebook/fbreact/specs/NativeWebSocketModuleSpec {
|
|
3760
3638
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3761
3639
|
public fun addListener (Ljava/lang/String;)V
|
|
@@ -3845,22 +3723,6 @@ public abstract interface class com/facebook/react/packagerconnection/Responder
|
|
|
3845
3723
|
public abstract fun respond (Ljava/lang/Object;)V
|
|
3846
3724
|
}
|
|
3847
3725
|
|
|
3848
|
-
public abstract class com/facebook/react/reactperflogger/NativeModulePerfLogger {
|
|
3849
|
-
protected fun <init> ()V
|
|
3850
|
-
protected abstract fun initHybrid ()Lcom/facebook/jni/HybridData;
|
|
3851
|
-
protected final fun maybeLoadOtherSoLibraries ()V
|
|
3852
|
-
public abstract fun moduleCreateCacheHit (Ljava/lang/String;I)V
|
|
3853
|
-
public abstract fun moduleCreateConstructEnd (Ljava/lang/String;I)V
|
|
3854
|
-
public abstract fun moduleCreateConstructStart (Ljava/lang/String;I)V
|
|
3855
|
-
public abstract fun moduleCreateEnd (Ljava/lang/String;I)V
|
|
3856
|
-
public abstract fun moduleCreateFail (Ljava/lang/String;I)V
|
|
3857
|
-
public abstract fun moduleCreateSetUpEnd (Ljava/lang/String;I)V
|
|
3858
|
-
public abstract fun moduleCreateSetUpStart (Ljava/lang/String;I)V
|
|
3859
|
-
public abstract fun moduleCreateStart (Ljava/lang/String;I)V
|
|
3860
|
-
public abstract fun moduleDataCreateEnd (Ljava/lang/String;I)V
|
|
3861
|
-
public abstract fun moduleDataCreateStart (Ljava/lang/String;I)V
|
|
3862
|
-
}
|
|
3863
|
-
|
|
3864
3726
|
public abstract class com/facebook/react/runtime/BindingsInstaller {
|
|
3865
3727
|
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
3866
3728
|
}
|
|
@@ -3914,11 +3776,13 @@ public abstract class com/facebook/react/runtime/JSRuntimeFactory {
|
|
|
3914
3776
|
|
|
3915
3777
|
public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/ReactHost {
|
|
3916
3778
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/runtime/ReactHostDelegate;Lcom/facebook/react/fabric/ComponentFactory;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;ZZ)V
|
|
3779
|
+
public fun <init> (Landroid/content/Context;Lcom/facebook/react/runtime/ReactHostDelegate;Lcom/facebook/react/fabric/ComponentFactory;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;ZZLcom/facebook/react/devsupport/DevSupportManagerFactory;)V
|
|
3917
3780
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/runtime/ReactHostDelegate;Lcom/facebook/react/fabric/ComponentFactory;ZZ)V
|
|
3918
3781
|
public fun addBeforeDestroyListener (Lkotlin/jvm/functions/Function0;)V
|
|
3919
3782
|
public fun addReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
3920
3783
|
public fun createSurface (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/interfaces/fabric/ReactSurface;
|
|
3921
3784
|
public fun destroy (Ljava/lang/String;Ljava/lang/Exception;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3785
|
+
public fun destroy (Ljava/lang/String;Ljava/lang/Exception;Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3922
3786
|
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
3923
3787
|
public fun getDevSupportManager ()Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
3924
3788
|
public fun getLifecycleState ()Lcom/facebook/react/common/LifecycleState;
|
|
@@ -3945,7 +3809,7 @@ public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/React
|
|
|
3945
3809
|
|
|
3946
3810
|
public class com/facebook/react/runtime/ReactSurfaceImpl : com/facebook/react/interfaces/fabric/ReactSurface {
|
|
3947
3811
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)V
|
|
3948
|
-
public fun attach (Lcom/facebook/react/
|
|
3812
|
+
public fun attach (Lcom/facebook/react/ReactHost;)V
|
|
3949
3813
|
public fun attachView (Lcom/facebook/react/runtime/ReactSurfaceView;)V
|
|
3950
3814
|
public fun clear ()V
|
|
3951
3815
|
public static fun createWithView (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/runtime/ReactSurfaceImpl;
|
|
@@ -3976,6 +3840,10 @@ public final class com/facebook/react/runtime/ReactSurfaceView : com/facebook/re
|
|
|
3976
3840
|
public fun setIsFabric (Z)V
|
|
3977
3841
|
}
|
|
3978
3842
|
|
|
3843
|
+
public abstract class com/facebook/react/runtime/cxxreactpackage/CxxReactPackage {
|
|
3844
|
+
protected fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
3845
|
+
}
|
|
3846
|
+
|
|
3979
3847
|
public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebook/react/runtime/JSRuntimeFactory {
|
|
3980
3848
|
public static final field Companion Lcom/facebook/react/runtime/hermes/HermesInstance$Companion;
|
|
3981
3849
|
public fun <init> ()V
|
|
@@ -3985,10 +3853,6 @@ public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebo
|
|
|
3985
3853
|
public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
|
|
3986
3854
|
}
|
|
3987
3855
|
|
|
3988
|
-
public abstract interface class com/facebook/react/runtime/internal/bolts/Continuation {
|
|
3989
|
-
public abstract fun then (Lcom/facebook/react/runtime/internal/bolts/Task;)Ljava/lang/Object;
|
|
3990
|
-
}
|
|
3991
|
-
|
|
3992
3856
|
public class com/facebook/react/runtime/internal/bolts/Task : com/facebook/react/interfaces/TaskInterface {
|
|
3993
3857
|
public static final field IMMEDIATE_EXECUTOR Ljava/util/concurrent/Executor;
|
|
3994
3858
|
public static final field UI_THREAD_EXECUTOR Ljava/util/concurrent/Executor;
|
|
@@ -4022,32 +3886,22 @@ public abstract interface class com/facebook/react/runtime/internal/bolts/Task$U
|
|
|
4022
3886
|
public abstract fun unobservedException (Lcom/facebook/react/runtime/internal/bolts/Task;Lcom/facebook/react/runtime/internal/bolts/UnobservedTaskException;)V
|
|
4023
3887
|
}
|
|
4024
3888
|
|
|
4025
|
-
public class com/facebook/react/runtime/internal/bolts/TaskCompletionSource {
|
|
4026
|
-
public fun <init> ()V
|
|
4027
|
-
public fun getTask ()Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
4028
|
-
public fun setCancelled ()V
|
|
4029
|
-
public fun setError (Ljava/lang/Exception;)V
|
|
4030
|
-
public fun setResult (Ljava/lang/Object;)V
|
|
4031
|
-
public fun trySetCancelled ()Z
|
|
4032
|
-
public fun trySetError (Ljava/lang/Exception;)Z
|
|
4033
|
-
public fun trySetResult (Ljava/lang/Object;)Z
|
|
4034
|
-
}
|
|
4035
|
-
|
|
4036
3889
|
public final class com/facebook/react/shell/MainPackageConfig {
|
|
4037
3890
|
public fun <init> (Lcom/facebook/imagepipeline/core/ImagePipelineConfig;)V
|
|
4038
3891
|
public final fun getFrescoConfig ()Lcom/facebook/imagepipeline/core/ImagePipelineConfig;
|
|
4039
3892
|
}
|
|
4040
3893
|
|
|
4041
|
-
public class com/facebook/react/shell/MainReactPackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
3894
|
+
public final class com/facebook/react/shell/MainReactPackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
4042
3895
|
public fun <init> ()V
|
|
4043
3896
|
public fun <init> (Lcom/facebook/react/shell/MainPackageConfig;)V
|
|
3897
|
+
public synthetic fun <init> (Lcom/facebook/react/shell/MainPackageConfig;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
4044
3898
|
public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
|
|
4045
3899
|
public fun createViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
4046
3900
|
public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
|
|
4047
3901
|
public fun getReactModuleInfoProvider ()Lcom/facebook/react/module/model/ReactModuleInfoProvider;
|
|
4048
3902
|
public fun getViewManagerNames (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/Collection;
|
|
4049
3903
|
public fun getViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
4050
|
-
public fun getViewManagersMap ()Ljava/util/Map;
|
|
3904
|
+
public final fun getViewManagersMap ()Ljava/util/Map;
|
|
4051
3905
|
}
|
|
4052
3906
|
|
|
4053
3907
|
public class com/facebook/react/shell/MainReactPackage$$ReactModuleInfoProvider : com/facebook/react/module/model/ReactModuleInfoProvider {
|
|
@@ -4134,6 +3988,10 @@ public final class com/facebook/react/uimanager/BackgroundStyleApplicator {
|
|
|
4134
3988
|
public static final fun getBorderRadius (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderRadiusProp;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4135
3989
|
public static final fun getBorderStyle (Landroid/view/View;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
4136
3990
|
public static final fun getBorderWidth (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;)Ljava/lang/Float;
|
|
3991
|
+
public static final fun getOutlineColor (Landroid/view/View;)Ljava/lang/Integer;
|
|
3992
|
+
public final fun getOutlineOffset (Landroid/view/View;)Ljava/lang/Float;
|
|
3993
|
+
public final fun getOutlineStyle (Landroid/view/View;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
3994
|
+
public final fun getOutlineWidth (Landroid/view/View;)Ljava/lang/Float;
|
|
4137
3995
|
public static final fun reset (Landroid/view/View;)V
|
|
4138
3996
|
public static final fun setBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4139
3997
|
public static final fun setBackgroundImage (Landroid/view/View;Ljava/util/List;)V
|
|
@@ -4144,9 +4002,13 @@ public final class com/facebook/react/uimanager/BackgroundStyleApplicator {
|
|
|
4144
4002
|
public static final fun setBoxShadow (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4145
4003
|
public static final fun setBoxShadow (Landroid/view/View;Ljava/util/List;)V
|
|
4146
4004
|
public static final fun setFeedbackUnderlay (Landroid/view/View;Landroid/graphics/drawable/Drawable;)V
|
|
4005
|
+
public static final fun setOutlineColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4006
|
+
public static final fun setOutlineOffset (Landroid/view/View;F)V
|
|
4007
|
+
public static final fun setOutlineStyle (Landroid/view/View;Lcom/facebook/react/uimanager/style/OutlineStyle;)V
|
|
4008
|
+
public static final fun setOutlineWidth (Landroid/view/View;F)V
|
|
4147
4009
|
}
|
|
4148
4010
|
|
|
4149
|
-
public abstract class com/facebook/react/uimanager/BaseViewManager : com/facebook/react/uimanager/ViewManager, android/view/View$OnLayoutChangeListener
|
|
4011
|
+
public abstract class com/facebook/react/uimanager/BaseViewManager : com/facebook/react/uimanager/ViewManager, android/view/View$OnLayoutChangeListener {
|
|
4150
4012
|
public fun <init> ()V
|
|
4151
4013
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
4152
4014
|
public fun getExportedCustomBubblingEventTypeConstants ()Ljava/util/Map;
|
|
@@ -4169,6 +4031,7 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4169
4031
|
public fun setBorderRadius (Landroid/view/View;F)V
|
|
4170
4032
|
public fun setBorderTopLeftRadius (Landroid/view/View;F)V
|
|
4171
4033
|
public fun setBorderTopRightRadius (Landroid/view/View;F)V
|
|
4034
|
+
public fun setBoxShadow (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4172
4035
|
public fun setClick (Landroid/view/View;Z)V
|
|
4173
4036
|
public fun setClickCapture (Landroid/view/View;Z)V
|
|
4174
4037
|
public fun setElevation (Landroid/view/View;F)V
|
|
@@ -4179,6 +4042,10 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4179
4042
|
public fun setMoveShouldSetResponderCapture (Landroid/view/View;Z)V
|
|
4180
4043
|
public fun setNativeId (Landroid/view/View;Ljava/lang/String;)V
|
|
4181
4044
|
public fun setOpacity (Landroid/view/View;F)V
|
|
4045
|
+
public fun setOutlineColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4046
|
+
public fun setOutlineOffset (Landroid/view/View;F)V
|
|
4047
|
+
public fun setOutlineStyle (Landroid/view/View;Ljava/lang/String;)V
|
|
4048
|
+
public fun setOutlineWidth (Landroid/view/View;F)V
|
|
4182
4049
|
public fun setPointerEnter (Landroid/view/View;Z)V
|
|
4183
4050
|
public fun setPointerEnterCapture (Landroid/view/View;Z)V
|
|
4184
4051
|
public fun setPointerLeave (Landroid/view/View;Z)V
|
|
@@ -4221,48 +4088,12 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4221
4088
|
}
|
|
4222
4089
|
|
|
4223
4090
|
public abstract class com/facebook/react/uimanager/BaseViewManagerDelegate : com/facebook/react/uimanager/ViewManagerDelegate {
|
|
4224
|
-
protected final field mViewManager Lcom/facebook/react/uimanager/
|
|
4225
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
4091
|
+
protected final field mViewManager Lcom/facebook/react/uimanager/BaseViewManager;
|
|
4092
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
4226
4093
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4227
4094
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4228
4095
|
}
|
|
4229
4096
|
|
|
4230
|
-
public abstract interface class com/facebook/react/uimanager/BaseViewManagerInterface {
|
|
4231
|
-
public abstract fun setAccessibilityActions (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4232
|
-
public abstract fun setAccessibilityCollection (Landroid/view/View;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
4233
|
-
public abstract fun setAccessibilityCollectionItem (Landroid/view/View;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
4234
|
-
public abstract fun setAccessibilityHint (Landroid/view/View;Ljava/lang/String;)V
|
|
4235
|
-
public abstract fun setAccessibilityLabel (Landroid/view/View;Ljava/lang/String;)V
|
|
4236
|
-
public abstract fun setAccessibilityLabelledBy (Landroid/view/View;Lcom/facebook/react/bridge/Dynamic;)V
|
|
4237
|
-
public abstract fun setAccessibilityLiveRegion (Landroid/view/View;Ljava/lang/String;)V
|
|
4238
|
-
public abstract fun setAccessibilityRole (Landroid/view/View;Ljava/lang/String;)V
|
|
4239
|
-
public abstract fun setBackgroundColor (Landroid/view/View;I)V
|
|
4240
|
-
public abstract fun setBorderBottomLeftRadius (Landroid/view/View;F)V
|
|
4241
|
-
public abstract fun setBorderBottomRightRadius (Landroid/view/View;F)V
|
|
4242
|
-
public abstract fun setBorderRadius (Landroid/view/View;F)V
|
|
4243
|
-
public abstract fun setBorderTopLeftRadius (Landroid/view/View;F)V
|
|
4244
|
-
public abstract fun setBorderTopRightRadius (Landroid/view/View;F)V
|
|
4245
|
-
public abstract fun setElevation (Landroid/view/View;F)V
|
|
4246
|
-
public abstract fun setFilter (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4247
|
-
public abstract fun setImportantForAccessibility (Landroid/view/View;Ljava/lang/String;)V
|
|
4248
|
-
public abstract fun setMixBlendMode (Landroid/view/View;Ljava/lang/String;)V
|
|
4249
|
-
public abstract fun setNativeId (Landroid/view/View;Ljava/lang/String;)V
|
|
4250
|
-
public abstract fun setOpacity (Landroid/view/View;F)V
|
|
4251
|
-
public abstract fun setRenderToHardwareTexture (Landroid/view/View;Z)V
|
|
4252
|
-
public abstract fun setRole (Landroid/view/View;Ljava/lang/String;)V
|
|
4253
|
-
public abstract fun setRotation (Landroid/view/View;F)V
|
|
4254
|
-
public abstract fun setScaleX (Landroid/view/View;F)V
|
|
4255
|
-
public abstract fun setScaleY (Landroid/view/View;F)V
|
|
4256
|
-
public abstract fun setShadowColor (Landroid/view/View;I)V
|
|
4257
|
-
public abstract fun setTestId (Landroid/view/View;Ljava/lang/String;)V
|
|
4258
|
-
public abstract fun setTransform (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4259
|
-
public abstract fun setTransformOrigin (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4260
|
-
public abstract fun setTranslateX (Landroid/view/View;F)V
|
|
4261
|
-
public abstract fun setTranslateY (Landroid/view/View;F)V
|
|
4262
|
-
public abstract fun setViewState (Landroid/view/View;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
4263
|
-
public abstract fun setZIndex (Landroid/view/View;F)V
|
|
4264
|
-
}
|
|
4265
|
-
|
|
4266
4097
|
public abstract interface class com/facebook/react/uimanager/ComponentNameResolver {
|
|
4267
4098
|
public abstract fun getComponentNames ()[Ljava/lang/String;
|
|
4268
4099
|
}
|
|
@@ -4384,13 +4215,6 @@ public class com/facebook/react/uimanager/LayoutShadowNode : com/facebook/react/
|
|
|
4384
4215
|
public fun setWidth (Lcom/facebook/react/bridge/Dynamic;)V
|
|
4385
4216
|
}
|
|
4386
4217
|
|
|
4387
|
-
public class com/facebook/react/uimanager/LayoutShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
4388
|
-
public fun <init> ()V
|
|
4389
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
4390
|
-
public fun setProperty (Lcom/facebook/react/uimanager/LayoutShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4391
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4392
|
-
}
|
|
4393
|
-
|
|
4394
4218
|
public final class com/facebook/react/uimanager/LengthPercentage {
|
|
4395
4219
|
public static final field Companion Lcom/facebook/react/uimanager/LengthPercentage$Companion;
|
|
4396
4220
|
public fun <init> ()V
|
|
@@ -4529,9 +4353,13 @@ public final class com/facebook/react/uimanager/PixelUtil {
|
|
|
4529
4353
|
public static final field INSTANCE Lcom/facebook/react/uimanager/PixelUtil;
|
|
4530
4354
|
public final fun dpToPx (D)F
|
|
4531
4355
|
public final fun dpToPx (F)F
|
|
4356
|
+
public final fun dpToPx (I)F
|
|
4357
|
+
public final fun dpToPx (J)F
|
|
4532
4358
|
public static final fun getDisplayMetricDensity ()F
|
|
4533
4359
|
public final fun pxToDp (D)F
|
|
4534
4360
|
public final fun pxToDp (F)F
|
|
4361
|
+
public final fun pxToDp (I)F
|
|
4362
|
+
public final fun pxToDp (J)F
|
|
4535
4363
|
public static final fun toDIPFromPixel (F)F
|
|
4536
4364
|
public static final fun toPixelFromDIP (D)F
|
|
4537
4365
|
public static final fun toPixelFromDIP (F)F
|
|
@@ -5040,13 +4868,6 @@ public class com/facebook/react/uimanager/ReactShadowNodeImpl : com/facebook/rea
|
|
|
5040
4868
|
public final fun updateProperties (Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5041
4869
|
}
|
|
5042
4870
|
|
|
5043
|
-
public class com/facebook/react/uimanager/ReactShadowNodeImpl$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
5044
|
-
public fun <init> ()V
|
|
5045
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
5046
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
5047
|
-
public fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNodeImpl;Ljava/lang/String;Ljava/lang/Object;)V
|
|
5048
|
-
}
|
|
5049
|
-
|
|
5050
4871
|
public abstract interface annotation class com/facebook/react/uimanager/ReactStage : java/lang/annotation/Annotation {
|
|
5051
4872
|
public static final field BRIDGE_DID_LOAD I
|
|
5052
4873
|
public static final field MODULE_DID_LOAD I
|
|
@@ -5100,13 +4921,6 @@ public final class com/facebook/react/uimanager/RootViewManager : com/facebook/r
|
|
|
5100
4921
|
public fun getName ()Ljava/lang/String;
|
|
5101
4922
|
}
|
|
5102
4923
|
|
|
5103
|
-
public class com/facebook/react/uimanager/RootViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
5104
|
-
public fun <init> ()V
|
|
5105
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
5106
|
-
public fun setProperty (Lcom/facebook/react/uimanager/RootViewManager;Landroid/view/ViewGroup;Ljava/lang/String;Ljava/lang/Object;)V
|
|
5107
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
5108
|
-
}
|
|
5109
|
-
|
|
5110
4924
|
public final class com/facebook/react/uimanager/RootViewManager$Companion {
|
|
5111
4925
|
}
|
|
5112
4926
|
|
|
@@ -5321,7 +5135,6 @@ public class com/facebook/react/uimanager/UIManagerModule : com/facebook/react/b
|
|
|
5321
5135
|
public fun getDefaultEventTypes ()Lcom/facebook/react/bridge/WritableMap;
|
|
5322
5136
|
public fun getDirectEventNamesResolver ()Lcom/facebook/react/uimanager/UIManagerModule$CustomEventNamesResolver;
|
|
5323
5137
|
public fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5324
|
-
public synthetic fun getEventDispatcher ()Ljava/lang/Object;
|
|
5325
5138
|
public fun getName ()Ljava/lang/String;
|
|
5326
5139
|
public fun getPerformanceCounters ()Ljava/util/Map;
|
|
5327
5140
|
public fun getUIImplementation ()Lcom/facebook/react/uimanager/UIImplementation;
|
|
@@ -5651,6 +5464,10 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5651
5464
|
public static final field ON Ljava/lang/String;
|
|
5652
5465
|
public static final field ON_LAYOUT Ljava/lang/String;
|
|
5653
5466
|
public static final field OPACITY Ljava/lang/String;
|
|
5467
|
+
public static final field OUTLINE_COLOR Ljava/lang/String;
|
|
5468
|
+
public static final field OUTLINE_OFFSET Ljava/lang/String;
|
|
5469
|
+
public static final field OUTLINE_STYLE Ljava/lang/String;
|
|
5470
|
+
public static final field OUTLINE_WIDTH Ljava/lang/String;
|
|
5654
5471
|
public static final field OVERFLOW Ljava/lang/String;
|
|
5655
5472
|
public static final field PADDING Ljava/lang/String;
|
|
5656
5473
|
public static final field PADDING_BOTTOM Ljava/lang/String;
|
|
@@ -5738,11 +5555,6 @@ public final class com/facebook/react/uimanager/common/ViewUtil {
|
|
|
5738
5555
|
public static final fun isRootTag (I)Z
|
|
5739
5556
|
}
|
|
5740
5557
|
|
|
5741
|
-
public abstract interface class com/facebook/react/uimanager/debug/NotThreadSafeViewHierarchyUpdateDebugListener {
|
|
5742
|
-
public abstract fun onViewHierarchyUpdateEnqueued ()V
|
|
5743
|
-
public abstract fun onViewHierarchyUpdateFinished ()V
|
|
5744
|
-
}
|
|
5745
|
-
|
|
5746
5558
|
public abstract interface class com/facebook/react/uimanager/events/BatchEventDispatchedListener {
|
|
5747
5559
|
public abstract fun onBatchEventDispatched ()V
|
|
5748
5560
|
}
|
|
@@ -6043,7 +5855,7 @@ public abstract interface class com/facebook/react/uimanager/layoutanimation/Lay
|
|
|
6043
5855
|
}
|
|
6044
5856
|
|
|
6045
5857
|
public final class com/facebook/react/uimanager/style/BackgroundImageLayer {
|
|
6046
|
-
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
5858
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;Landroid/content/Context;)V
|
|
6047
5859
|
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
6048
5860
|
}
|
|
6049
5861
|
|
|
@@ -6156,12 +5968,12 @@ public final class com/facebook/react/uimanager/style/BoxShadow {
|
|
|
6156
5968
|
public final fun getOffsetY ()F
|
|
6157
5969
|
public final fun getSpreadDistance ()Ljava/lang/Float;
|
|
6158
5970
|
public fun hashCode ()I
|
|
6159
|
-
public static final fun parse (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
5971
|
+
public static final fun parse (Lcom/facebook/react/bridge/ReadableMap;Landroid/content/Context;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6160
5972
|
public fun toString ()Ljava/lang/String;
|
|
6161
5973
|
}
|
|
6162
5974
|
|
|
6163
5975
|
public final class com/facebook/react/uimanager/style/BoxShadow$Companion {
|
|
6164
|
-
public final fun parse (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
5976
|
+
public final fun parse (Lcom/facebook/react/bridge/ReadableMap;Landroid/content/Context;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6165
5977
|
}
|
|
6166
5978
|
|
|
6167
5979
|
public final class com/facebook/react/uimanager/style/ComputedBorderRadius {
|
|
@@ -6181,6 +5993,7 @@ public final class com/facebook/react/uimanager/style/ComputedBorderRadius {
|
|
|
6181
5993
|
public final fun getTopRight ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6182
5994
|
public final fun hasRoundedBorders ()Z
|
|
6183
5995
|
public fun hashCode ()I
|
|
5996
|
+
public final fun isUniform ()Z
|
|
6184
5997
|
public fun toString ()Ljava/lang/String;
|
|
6185
5998
|
}
|
|
6186
5999
|
|
|
@@ -6210,11 +6023,6 @@ public final class com/facebook/react/uimanager/style/CornerRadii {
|
|
|
6210
6023
|
public fun toString ()Ljava/lang/String;
|
|
6211
6024
|
}
|
|
6212
6025
|
|
|
6213
|
-
public final class com/facebook/react/uimanager/style/Gradient {
|
|
6214
|
-
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6215
|
-
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
6216
|
-
}
|
|
6217
|
-
|
|
6218
6026
|
public abstract class com/facebook/react/uimanager/style/LogicalEdge : java/lang/Enum {
|
|
6219
6027
|
public static final field ALL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6220
6028
|
public static final field BLOCK Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
@@ -6241,6 +6049,21 @@ public final class com/facebook/react/uimanager/style/LogicalEdge$Companion {
|
|
|
6241
6049
|
public final fun fromSpacingType (I)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6242
6050
|
}
|
|
6243
6051
|
|
|
6052
|
+
public final class com/facebook/react/uimanager/style/OutlineStyle : java/lang/Enum {
|
|
6053
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/OutlineStyle$Companion;
|
|
6054
|
+
public static final field DASHED Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6055
|
+
public static final field DOTTED Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6056
|
+
public static final field SOLID Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6057
|
+
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6058
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6059
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6060
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6061
|
+
}
|
|
6062
|
+
|
|
6063
|
+
public final class com/facebook/react/uimanager/style/OutlineStyle$Companion {
|
|
6064
|
+
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6065
|
+
}
|
|
6066
|
+
|
|
6244
6067
|
public final class com/facebook/react/uimanager/style/Overflow : java/lang/Enum {
|
|
6245
6068
|
public static final field Companion Lcom/facebook/react/uimanager/style/Overflow$Companion;
|
|
6246
6069
|
public static final field HIDDEN Lcom/facebook/react/uimanager/style/Overflow;
|
|
@@ -6256,15 +6079,15 @@ public final class com/facebook/react/uimanager/style/Overflow$Companion {
|
|
|
6256
6079
|
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6257
6080
|
}
|
|
6258
6081
|
|
|
6259
|
-
public class com/facebook/react/uimanager/util/ReactFindViewUtil {
|
|
6260
|
-
public
|
|
6261
|
-
public static fun addViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6262
|
-
public static fun addViewsListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener;Ljava/util/Set;)V
|
|
6263
|
-
public static fun findView (Landroid/view/View;Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6264
|
-
public static fun findView (Landroid/view/View;Ljava/lang/String;)Landroid/view/View;
|
|
6265
|
-
public static fun notifyViewRendered (Landroid/view/View;)V
|
|
6266
|
-
public static fun removeViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6267
|
-
public static fun removeViewsListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener;)V
|
|
6082
|
+
public final class com/facebook/react/uimanager/util/ReactFindViewUtil {
|
|
6083
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/util/ReactFindViewUtil;
|
|
6084
|
+
public static final fun addViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6085
|
+
public static final fun addViewsListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener;Ljava/util/Set;)V
|
|
6086
|
+
public static final fun findView (Landroid/view/View;Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6087
|
+
public static final fun findView (Landroid/view/View;Ljava/lang/String;)Landroid/view/View;
|
|
6088
|
+
public static final fun notifyViewRendered (Landroid/view/View;)V
|
|
6089
|
+
public static final fun removeViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6090
|
+
public static final fun removeViewsListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener;)V
|
|
6268
6091
|
}
|
|
6269
6092
|
|
|
6270
6093
|
public abstract interface class com/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener {
|
|
@@ -6312,7 +6135,7 @@ public final class com/facebook/react/util/RNLog {
|
|
|
6312
6135
|
}
|
|
6313
6136
|
|
|
6314
6137
|
public class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6315
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6138
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6316
6139
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6317
6140
|
}
|
|
6318
6141
|
|
|
@@ -6324,7 +6147,7 @@ public abstract interface class com/facebook/react/viewmanagers/ActivityIndicato
|
|
|
6324
6147
|
}
|
|
6325
6148
|
|
|
6326
6149
|
public class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6327
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6150
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6328
6151
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6329
6152
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6330
6153
|
}
|
|
@@ -6341,7 +6164,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidDrawerLay
|
|
|
6341
6164
|
}
|
|
6342
6165
|
|
|
6343
6166
|
public class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6344
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6167
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6345
6168
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6346
6169
|
}
|
|
6347
6170
|
|
|
@@ -6350,7 +6173,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidHorizonta
|
|
|
6350
6173
|
}
|
|
6351
6174
|
|
|
6352
6175
|
public class com/facebook/react/viewmanagers/AndroidProgressBarManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6353
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6176
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6354
6177
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6355
6178
|
}
|
|
6356
6179
|
|
|
@@ -6365,7 +6188,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidProgressB
|
|
|
6365
6188
|
}
|
|
6366
6189
|
|
|
6367
6190
|
public class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6368
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6191
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6369
6192
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6370
6193
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6371
6194
|
}
|
|
@@ -6381,7 +6204,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidSwipeRefr
|
|
|
6381
6204
|
}
|
|
6382
6205
|
|
|
6383
6206
|
public class com/facebook/react/viewmanagers/AndroidSwitchManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6384
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6207
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6385
6208
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6386
6209
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6387
6210
|
}
|
|
@@ -6400,7 +6223,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidSwitchMan
|
|
|
6400
6223
|
}
|
|
6401
6224
|
|
|
6402
6225
|
public class com/facebook/react/viewmanagers/DebuggingOverlayManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6403
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6226
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6404
6227
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6405
6228
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6406
6229
|
}
|
|
@@ -6412,7 +6235,7 @@ public abstract interface class com/facebook/react/viewmanagers/DebuggingOverlay
|
|
|
6412
6235
|
}
|
|
6413
6236
|
|
|
6414
6237
|
public class com/facebook/react/viewmanagers/ModalHostViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6415
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6238
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6416
6239
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6417
6240
|
}
|
|
6418
6241
|
|
|
@@ -6421,6 +6244,7 @@ public abstract interface class com/facebook/react/viewmanagers/ModalHostViewMan
|
|
|
6421
6244
|
public abstract fun setAnimationType (Landroid/view/View;Ljava/lang/String;)V
|
|
6422
6245
|
public abstract fun setHardwareAccelerated (Landroid/view/View;Z)V
|
|
6423
6246
|
public abstract fun setIdentifier (Landroid/view/View;I)V
|
|
6247
|
+
public abstract fun setNavigationBarTranslucent (Landroid/view/View;Z)V
|
|
6424
6248
|
public abstract fun setPresentationStyle (Landroid/view/View;Ljava/lang/String;)V
|
|
6425
6249
|
public abstract fun setStatusBarTranslucent (Landroid/view/View;Z)V
|
|
6426
6250
|
public abstract fun setSupportedOrientations (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
@@ -6429,7 +6253,7 @@ public abstract interface class com/facebook/react/viewmanagers/ModalHostViewMan
|
|
|
6429
6253
|
}
|
|
6430
6254
|
|
|
6431
6255
|
public class com/facebook/react/viewmanagers/SafeAreaViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6432
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6256
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6433
6257
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6434
6258
|
}
|
|
6435
6259
|
|
|
@@ -6437,7 +6261,7 @@ public abstract interface class com/facebook/react/viewmanagers/SafeAreaViewMana
|
|
|
6437
6261
|
}
|
|
6438
6262
|
|
|
6439
6263
|
public class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6440
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6264
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6441
6265
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6442
6266
|
}
|
|
6443
6267
|
|
|
@@ -6463,24 +6287,24 @@ public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlay :
|
|
|
6463
6287
|
public final fun setTraceUpdates (Ljava/util/List;)V
|
|
6464
6288
|
}
|
|
6465
6289
|
|
|
6466
|
-
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager : com/facebook/react/uimanager/SimpleViewManager {
|
|
6290
|
+
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface {
|
|
6467
6291
|
public static final field Companion Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion;
|
|
6468
6292
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6469
6293
|
public fun <init> ()V
|
|
6294
|
+
public synthetic fun clearElementsHighlights (Landroid/view/View;)V
|
|
6295
|
+
public fun clearElementsHighlights (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;)V
|
|
6470
6296
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6471
6297
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;
|
|
6298
|
+
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6472
6299
|
public fun getName ()Ljava/lang/String;
|
|
6300
|
+
public synthetic fun highlightElements (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6301
|
+
public fun highlightElements (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6302
|
+
public synthetic fun highlightTraceUpdates (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6303
|
+
public fun highlightTraceUpdates (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6473
6304
|
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6474
6305
|
public fun receiveCommand (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6475
6306
|
}
|
|
6476
6307
|
|
|
6477
|
-
public class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6478
|
-
public fun <init> ()V
|
|
6479
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6480
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6481
|
-
public fun setProperty (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlayManager;Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6482
|
-
}
|
|
6483
|
-
|
|
6484
6308
|
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion {
|
|
6485
6309
|
}
|
|
6486
6310
|
|
|
@@ -6542,13 +6366,6 @@ public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager : co
|
|
|
6542
6366
|
public fun setStatusBarBackgroundColor (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/Integer;)V
|
|
6543
6367
|
}
|
|
6544
6368
|
|
|
6545
|
-
public class com/facebook/react/views/drawer/ReactDrawerLayoutManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6546
|
-
public fun <init> ()V
|
|
6547
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6548
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6549
|
-
public fun setProperty (Lcom/facebook/react/views/drawer/ReactDrawerLayoutManager;Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6550
|
-
}
|
|
6551
|
-
|
|
6552
6369
|
public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager$Companion {
|
|
6553
6370
|
}
|
|
6554
6371
|
|
|
@@ -6641,6 +6458,7 @@ public final class com/facebook/react/views/image/ImageLoadEvent$Companion {
|
|
|
6641
6458
|
|
|
6642
6459
|
public final class com/facebook/react/views/image/ImageResizeMethod : java/lang/Enum {
|
|
6643
6460
|
public static final field AUTO Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6461
|
+
public static final field NONE Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6644
6462
|
public static final field RESIZE Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6645
6463
|
public static final field SCALE Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6646
6464
|
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
@@ -6689,13 +6507,10 @@ public final class com/facebook/react/views/image/ReactImageManager : com/facebo
|
|
|
6689
6507
|
public fun getName ()Ljava/lang/String;
|
|
6690
6508
|
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6691
6509
|
public final fun setAccessible (Lcom/facebook/react/views/image/ReactImageView;Z)V
|
|
6692
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
6693
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/image/ReactImageView;I)V
|
|
6694
6510
|
public final fun setBlurRadius (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6695
6511
|
public final fun setBorderColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6696
6512
|
public final fun setBorderRadius (Lcom/facebook/react/views/image/ReactImageView;IF)V
|
|
6697
6513
|
public final fun setBorderWidth (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6698
|
-
public final fun setBoxShadow (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6699
6514
|
public final fun setDefaultSource (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6700
6515
|
public final fun setFadeDuration (Lcom/facebook/react/views/image/ReactImageView;I)V
|
|
6701
6516
|
public final fun setHeaders (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
@@ -6712,13 +6527,6 @@ public final class com/facebook/react/views/image/ReactImageManager : com/facebo
|
|
|
6712
6527
|
public final fun setTintColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6713
6528
|
}
|
|
6714
6529
|
|
|
6715
|
-
public class com/facebook/react/views/image/ReactImageManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6716
|
-
public fun <init> ()V
|
|
6717
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6718
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6719
|
-
public fun setProperty (Lcom/facebook/react/views/image/ReactImageManager;Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6720
|
-
}
|
|
6721
|
-
|
|
6722
6530
|
public final class com/facebook/react/views/image/ReactImageManager$Companion {
|
|
6723
6531
|
}
|
|
6724
6532
|
|
|
@@ -6758,8 +6566,10 @@ public final class com/facebook/react/views/imagehelper/ImageSource {
|
|
|
6758
6566
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;)V
|
|
6759
6567
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;D)V
|
|
6760
6568
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;DD)V
|
|
6761
|
-
public
|
|
6569
|
+
public fun <init> (Landroid/content/Context;Ljava/lang/String;DDLcom/facebook/react/modules/fresco/ImageCacheControl;)V
|
|
6570
|
+
public synthetic fun <init> (Landroid/content/Context;Ljava/lang/String;DDLcom/facebook/react/modules/fresco/ImageCacheControl;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6762
6571
|
public fun equals (Ljava/lang/Object;)Z
|
|
6572
|
+
public final fun getCacheControl ()Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
6763
6573
|
public final fun getSize ()D
|
|
6764
6574
|
public final fun getSource ()Ljava/lang/String;
|
|
6765
6575
|
public static final fun getTransparentBitmapImageSource (Landroid/content/Context;)Lcom/facebook/react/views/imagehelper/ImageSource;
|
|
@@ -6791,7 +6601,6 @@ public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper
|
|
|
6791
6601
|
public final fun getResourceDrawable (Landroid/content/Context;Ljava/lang/String;)Landroid/graphics/drawable/Drawable;
|
|
6792
6602
|
public final fun getResourceDrawableId (Landroid/content/Context;Ljava/lang/String;)I
|
|
6793
6603
|
public final fun getResourceDrawableUri (Landroid/content/Context;Ljava/lang/String;)Landroid/net/Uri;
|
|
6794
|
-
public final fun isVectorDrawable (Landroid/content/Context;Ljava/lang/String;)Z
|
|
6795
6604
|
}
|
|
6796
6605
|
|
|
6797
6606
|
public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper$Companion {
|
|
@@ -6799,13 +6608,6 @@ public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper
|
|
|
6799
6608
|
public final fun getInstance ()Lcom/facebook/react/views/imagehelper/ResourceDrawableIdHelper;
|
|
6800
6609
|
}
|
|
6801
6610
|
|
|
6802
|
-
public class com/facebook/react/views/modal/ModalHostShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
6803
|
-
public fun <init> ()V
|
|
6804
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6805
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6806
|
-
public fun setProperty (Lcom/facebook/react/views/modal/ModalHostShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6807
|
-
}
|
|
6808
|
-
|
|
6809
6611
|
public final class com/facebook/react/views/modal/ReactModalHostManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/ModalHostViewManagerInterface {
|
|
6810
6612
|
public static final field Companion Lcom/facebook/react/views/modal/ReactModalHostManager$Companion;
|
|
6811
6613
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
@@ -6826,6 +6628,8 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6826
6628
|
public fun setHardwareAccelerated (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6827
6629
|
public synthetic fun setIdentifier (Landroid/view/View;I)V
|
|
6828
6630
|
public fun setIdentifier (Lcom/facebook/react/views/modal/ReactModalHostView;I)V
|
|
6631
|
+
public synthetic fun setNavigationBarTranslucent (Landroid/view/View;Z)V
|
|
6632
|
+
public fun setNavigationBarTranslucent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6829
6633
|
public synthetic fun setPresentationStyle (Landroid/view/View;Ljava/lang/String;)V
|
|
6830
6634
|
public fun setPresentationStyle (Lcom/facebook/react/views/modal/ReactModalHostView;Ljava/lang/String;)V
|
|
6831
6635
|
public synthetic fun setStatusBarTranslucent (Landroid/view/View;Z)V
|
|
@@ -6840,13 +6644,6 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6840
6644
|
public fun updateState (Lcom/facebook/react/views/modal/ReactModalHostView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6841
6645
|
}
|
|
6842
6646
|
|
|
6843
|
-
public class com/facebook/react/views/modal/ReactModalHostManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6844
|
-
public fun <init> ()V
|
|
6845
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6846
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6847
|
-
public fun setProperty (Lcom/facebook/react/views/modal/ReactModalHostManager;Lcom/facebook/react/views/modal/ReactModalHostView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6848
|
-
}
|
|
6849
|
-
|
|
6850
6647
|
public final class com/facebook/react/views/modal/ReactModalHostManager$Companion {
|
|
6851
6648
|
}
|
|
6852
6649
|
|
|
@@ -6861,6 +6658,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6861
6658
|
public fun getChildCount ()I
|
|
6862
6659
|
public final fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
6863
6660
|
public final fun getHardwareAccelerated ()Z
|
|
6661
|
+
public final fun getNavigationBarTranslucent ()Z
|
|
6864
6662
|
public final fun getOnRequestCloseListener ()Lcom/facebook/react/views/modal/ReactModalHostView$OnRequestCloseListener;
|
|
6865
6663
|
public final fun getOnShowListener ()Landroid/content/DialogInterface$OnShowListener;
|
|
6866
6664
|
public final fun getStateWrapper ()Lcom/facebook/react/uimanager/StateWrapper;
|
|
@@ -6876,6 +6674,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6876
6674
|
public final fun setEventDispatcher (Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6877
6675
|
public final fun setHardwareAccelerated (Z)V
|
|
6878
6676
|
public fun setId (I)V
|
|
6677
|
+
public final fun setNavigationBarTranslucent (Z)V
|
|
6879
6678
|
public final fun setOnRequestCloseListener (Lcom/facebook/react/views/modal/ReactModalHostView$OnRequestCloseListener;)V
|
|
6880
6679
|
public final fun setOnShowListener (Landroid/content/DialogInterface$OnShowListener;)V
|
|
6881
6680
|
public final fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
@@ -6900,100 +6699,6 @@ public abstract interface class com/facebook/react/views/modal/ReactModalHostVie
|
|
|
6900
6699
|
public abstract fun onRequestClose (Landroid/content/DialogInterface;)V
|
|
6901
6700
|
}
|
|
6902
6701
|
|
|
6903
|
-
public final class com/facebook/react/views/progressbar/ProgressBarContainerView : android/widget/FrameLayout {
|
|
6904
|
-
public static final field MAX_PROGRESS I
|
|
6905
|
-
public fun <init> (Landroid/content/Context;)V
|
|
6906
|
-
}
|
|
6907
|
-
|
|
6908
|
-
public final class com/facebook/react/views/progressbar/ProgressBarShadowNode : com/facebook/react/uimanager/LayoutShadowNode, com/facebook/yoga/YogaMeasureFunction {
|
|
6909
|
-
public fun <init> ()V
|
|
6910
|
-
public final fun getStyle ()Ljava/lang/String;
|
|
6911
|
-
public fun measure (Lcom/facebook/yoga/YogaNode;FLcom/facebook/yoga/YogaMeasureMode;FLcom/facebook/yoga/YogaMeasureMode;)J
|
|
6912
|
-
public final fun setStyle (Ljava/lang/String;)V
|
|
6913
|
-
}
|
|
6914
|
-
|
|
6915
|
-
public class com/facebook/react/views/progressbar/ProgressBarShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
6916
|
-
public fun <init> ()V
|
|
6917
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6918
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6919
|
-
public fun setProperty (Lcom/facebook/react/views/progressbar/ProgressBarShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6920
|
-
}
|
|
6921
|
-
|
|
6922
|
-
public final class com/facebook/react/views/progressbar/ReactProgressBarViewManager : com/facebook/react/uimanager/BaseViewManager, com/facebook/react/viewmanagers/AndroidProgressBarManagerInterface {
|
|
6923
|
-
public static final field Companion Lcom/facebook/react/views/progressbar/ReactProgressBarViewManager$Companion;
|
|
6924
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
6925
|
-
public fun <init> ()V
|
|
6926
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6927
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/views/progressbar/ProgressBarShadowNode;
|
|
6928
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6929
|
-
public fun getName ()Ljava/lang/String;
|
|
6930
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6931
|
-
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
|
|
6932
|
-
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6933
|
-
public synthetic fun setAnimating (Landroid/view/View;Z)V
|
|
6934
|
-
public fun setAnimating (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Z)V
|
|
6935
|
-
public synthetic fun setColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
6936
|
-
public fun setColor (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/Integer;)V
|
|
6937
|
-
public synthetic fun setIndeterminate (Landroid/view/View;Z)V
|
|
6938
|
-
public fun setIndeterminate (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Z)V
|
|
6939
|
-
public synthetic fun setProgress (Landroid/view/View;D)V
|
|
6940
|
-
public fun setProgress (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;D)V
|
|
6941
|
-
public synthetic fun setStyleAttr (Landroid/view/View;Ljava/lang/String;)V
|
|
6942
|
-
public fun setStyleAttr (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/String;)V
|
|
6943
|
-
public synthetic fun setTestID (Landroid/view/View;Ljava/lang/String;)V
|
|
6944
|
-
public fun setTestID (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/String;)V
|
|
6945
|
-
public synthetic fun setTypeAttr (Landroid/view/View;Ljava/lang/String;)V
|
|
6946
|
-
public fun setTypeAttr (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/String;)V
|
|
6947
|
-
public synthetic fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
6948
|
-
public fun updateExtraData (Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/Object;)V
|
|
6949
|
-
}
|
|
6950
|
-
|
|
6951
|
-
public class com/facebook/react/views/progressbar/ReactProgressBarViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6952
|
-
public fun <init> ()V
|
|
6953
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6954
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6955
|
-
public fun setProperty (Lcom/facebook/react/views/progressbar/ReactProgressBarViewManager;Lcom/facebook/react/views/progressbar/ProgressBarContainerView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6956
|
-
}
|
|
6957
|
-
|
|
6958
|
-
public final class com/facebook/react/views/progressbar/ReactProgressBarViewManager$Companion {
|
|
6959
|
-
public final fun createProgressBar (Landroid/content/Context;I)Landroid/widget/ProgressBar;
|
|
6960
|
-
}
|
|
6961
|
-
|
|
6962
|
-
public final class com/facebook/react/views/safeareaview/ReactSafeAreaView : android/view/ViewGroup {
|
|
6963
|
-
public fun <init> (Lcom/facebook/react/uimanager/ThemedReactContext;)V
|
|
6964
|
-
public final fun getReactContext ()Lcom/facebook/react/uimanager/ThemedReactContext;
|
|
6965
|
-
}
|
|
6966
|
-
|
|
6967
|
-
public final class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/SafeAreaViewManagerInterface {
|
|
6968
|
-
public static final field Companion Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewManager$Companion;
|
|
6969
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
6970
|
-
public fun <init> ()V
|
|
6971
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/LayoutShadowNode;
|
|
6972
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6973
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6974
|
-
public fun getName ()Ljava/lang/String;
|
|
6975
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6976
|
-
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6977
|
-
public fun updateState (Lcom/facebook/react/views/safeareaview/ReactSafeAreaView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6978
|
-
}
|
|
6979
|
-
|
|
6980
|
-
public class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
6981
|
-
public fun <init> ()V
|
|
6982
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6983
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6984
|
-
public fun setProperty (Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewManager;Lcom/facebook/react/views/safeareaview/ReactSafeAreaView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6985
|
-
}
|
|
6986
|
-
|
|
6987
|
-
public final class com/facebook/react/views/safeareaview/ReactSafeAreaViewManager$Companion {
|
|
6988
|
-
}
|
|
6989
|
-
|
|
6990
|
-
public class com/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
6991
|
-
public fun <init> ()V
|
|
6992
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
6993
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6994
|
-
public fun setProperty (Lcom/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6995
|
-
}
|
|
6996
|
-
|
|
6997
6702
|
public abstract interface class com/facebook/react/views/scroll/FpsListener {
|
|
6998
6703
|
public abstract fun disable (Ljava/lang/String;)V
|
|
6999
6704
|
public abstract fun enable (Ljava/lang/String;)V
|
|
@@ -7007,29 +6712,16 @@ public final class com/facebook/react/views/scroll/OnScrollDispatchHelper {
|
|
|
7007
6712
|
public final fun onScrollChanged (II)Z
|
|
7008
6713
|
}
|
|
7009
6714
|
|
|
7010
|
-
public class com/facebook/react/views/scroll/
|
|
7011
|
-
public fun <init> (Landroid/content/Context;)V
|
|
7012
|
-
public fun getLayoutDirection ()I
|
|
7013
|
-
protected fun onLayout (ZIIII)V
|
|
7014
|
-
public fun setRemoveClippedSubviews (Z)V
|
|
7015
|
-
}
|
|
7016
|
-
|
|
7017
|
-
public final class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager : com/facebook/react/views/view/ReactClippingViewManager {
|
|
6715
|
+
public final class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager : com/facebook/react/views/view/ReactViewManager {
|
|
7018
6716
|
public static final field Companion Lcom/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager$Companion;
|
|
7019
6717
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
7020
6718
|
public fun <init> ()V
|
|
6719
|
+
public synthetic fun createViewInstance (ILcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Landroid/view/View;
|
|
7021
6720
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7022
|
-
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/
|
|
6721
|
+
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/view/ReactViewGroup;
|
|
7023
6722
|
public fun getName ()Ljava/lang/String;
|
|
7024
6723
|
}
|
|
7025
6724
|
|
|
7026
|
-
public class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7027
|
-
public fun <init> ()V
|
|
7028
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7029
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7030
|
-
public fun setProperty (Lcom/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager;Lcom/facebook/react/views/scroll/ReactHorizontalScrollContainerView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7031
|
-
}
|
|
7032
|
-
|
|
7033
6725
|
public final class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager$Companion {
|
|
7034
6726
|
}
|
|
7035
6727
|
|
|
@@ -7086,7 +6778,6 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
7086
6778
|
public fun setBorderWidth (IF)V
|
|
7087
6779
|
public fun setDecelerationRate (F)V
|
|
7088
6780
|
public fun setDisableIntervalMomentum (Z)V
|
|
7089
|
-
public fun setEnableSyncOnScroll (Z)V
|
|
7090
6781
|
public fun setEndFillColor (I)V
|
|
7091
6782
|
public fun setLastScrollDispatchTime (J)V
|
|
7092
6783
|
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/MaintainVisibleScrollPositionHelper$Config;)V
|
|
@@ -7126,18 +6817,14 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
7126
6817
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
7127
6818
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7128
6819
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7129
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7130
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
7131
6820
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;ILjava/lang/Integer;)V
|
|
7132
6821
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
7133
6822
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
7134
6823
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
7135
6824
|
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
7136
|
-
public fun setBoxShadow (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7137
6825
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7138
6826
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
7139
6827
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
7140
|
-
public fun setEnableSyncOnScroll (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
7141
6828
|
public fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
7142
6829
|
public fun setHorizontal (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
7143
6830
|
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
@@ -7162,13 +6849,6 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
7162
6849
|
public fun updateState (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7163
6850
|
}
|
|
7164
6851
|
|
|
7165
|
-
public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7166
|
-
public fun <init> ()V
|
|
7167
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7168
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7169
|
-
public fun setProperty (Lcom/facebook/react/views/scroll/ReactHorizontalScrollViewManager;Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7170
|
-
}
|
|
7171
|
-
|
|
7172
6852
|
public class com/facebook/react/views/scroll/ReactScrollView : android/widget/ScrollView, android/view/View$OnLayoutChangeListener, android/view/ViewGroup$OnHierarchyChangeListener, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollEventThrottle, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollState, com/facebook/react/views/scroll/ReactScrollViewHelper$HasSmoothScroll, com/facebook/react/views/scroll/ReactScrollViewHelper$HasStateWrapper {
|
|
7173
6853
|
public fun <init> (Landroid/content/Context;)V
|
|
7174
6854
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/views/scroll/FpsListener;)V
|
|
@@ -7219,7 +6899,6 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
7219
6899
|
public fun setContentOffset (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7220
6900
|
public fun setDecelerationRate (F)V
|
|
7221
6901
|
public fun setDisableIntervalMomentum (Z)V
|
|
7222
|
-
public fun setEnableSyncOnScroll (Z)V
|
|
7223
6902
|
public fun setEndFillColor (I)V
|
|
7224
6903
|
public fun setLastScrollDispatchTime (J)V
|
|
7225
6904
|
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/MaintainVisibleScrollPositionHelper$Config;)V
|
|
@@ -7243,14 +6922,21 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
7243
6922
|
public fun updateClippingRect ()V
|
|
7244
6923
|
}
|
|
7245
6924
|
|
|
7246
|
-
public class com/facebook/react/views/scroll/ReactScrollViewCommandHelper {
|
|
6925
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper {
|
|
7247
6926
|
public static final field COMMAND_FLASH_SCROLL_INDICATORS I
|
|
7248
6927
|
public static final field COMMAND_SCROLL_TO I
|
|
7249
6928
|
public static final field COMMAND_SCROLL_TO_END I
|
|
6929
|
+
public static final field Companion Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$Companion;
|
|
7250
6930
|
public fun <init> ()V
|
|
7251
|
-
public static fun getCommandsMap ()Ljava/util/Map;
|
|
7252
|
-
public static fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
7253
|
-
public static fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6931
|
+
public static final fun getCommandsMap ()Ljava/util/Map;
|
|
6932
|
+
public static final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
6933
|
+
public static final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6934
|
+
}
|
|
6935
|
+
|
|
6936
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$Companion {
|
|
6937
|
+
public final fun getCommandsMap ()Ljava/util/Map;
|
|
6938
|
+
public final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
6939
|
+
public final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7254
6940
|
}
|
|
7255
6941
|
|
|
7256
6942
|
public abstract interface class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler {
|
|
@@ -7259,14 +6945,16 @@ public abstract interface class com/facebook/react/views/scroll/ReactScrollViewC
|
|
|
7259
6945
|
public abstract fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7260
6946
|
}
|
|
7261
6947
|
|
|
7262
|
-
public class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData {
|
|
6948
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData {
|
|
7263
6949
|
public final field mAnimated Z
|
|
7264
6950
|
public final field mDestX I
|
|
7265
6951
|
public final field mDestY I
|
|
6952
|
+
public fun <init> (IIZ)V
|
|
7266
6953
|
}
|
|
7267
6954
|
|
|
7268
|
-
public class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData {
|
|
6955
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData {
|
|
7269
6956
|
public final field mAnimated Z
|
|
6957
|
+
public fun <init> (Z)V
|
|
7270
6958
|
}
|
|
7271
6959
|
|
|
7272
6960
|
public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
@@ -7279,6 +6967,7 @@ public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
|
7279
6967
|
public static final field SNAP_ALIGNMENT_DISABLED I
|
|
7280
6968
|
public static final field SNAP_ALIGNMENT_END I
|
|
7281
6969
|
public static final field SNAP_ALIGNMENT_START I
|
|
6970
|
+
public static final fun addLayoutChangeListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$LayoutChangeListener;)V
|
|
7282
6971
|
public static final fun addScrollListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$ScrollListener;)V
|
|
7283
6972
|
public static final fun dispatchMomentumEndOnAnimationEnd (Landroid/view/ViewGroup;)V
|
|
7284
6973
|
public static final fun emitLayoutChangeEvent (Landroid/view/ViewGroup;)V
|
|
@@ -7295,12 +6984,12 @@ public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
|
7295
6984
|
public static final fun parseSnapToAlignment (Ljava/lang/String;)I
|
|
7296
6985
|
public static final fun predictFinalScrollPosition (Landroid/view/ViewGroup;IIII)Landroid/graphics/Point;
|
|
7297
6986
|
public final fun registerFlingAnimator (Landroid/view/ViewGroup;)V
|
|
6987
|
+
public static final fun removeLayoutChangeListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$LayoutChangeListener;)V
|
|
7298
6988
|
public static final fun removeScrollListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$ScrollListener;)V
|
|
7299
6989
|
public static final fun smoothScrollTo (Landroid/view/ViewGroup;II)V
|
|
7300
6990
|
public static final fun updateFabricScrollState (Landroid/view/ViewGroup;)V
|
|
7301
6991
|
public final fun updateFabricScrollState (Landroid/view/ViewGroup;II)V
|
|
7302
6992
|
public static final fun updateStateOnScrollChanged (Landroid/view/ViewGroup;FF)V
|
|
7303
|
-
public static final fun updateStateOnScrollChanged (Landroid/view/ViewGroup;FFZ)V
|
|
7304
6993
|
}
|
|
7305
6994
|
|
|
7306
6995
|
public abstract interface class com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator {
|
|
@@ -7329,12 +7018,15 @@ public abstract interface class com/facebook/react/views/scroll/ReactScrollViewH
|
|
|
7329
7018
|
public abstract fun getStateWrapper ()Lcom/facebook/react/uimanager/StateWrapper;
|
|
7330
7019
|
}
|
|
7331
7020
|
|
|
7021
|
+
public abstract interface class com/facebook/react/views/scroll/ReactScrollViewHelper$LayoutChangeListener {
|
|
7022
|
+
public abstract fun onLayoutChange (Landroid/view/ViewGroup;)V
|
|
7023
|
+
}
|
|
7024
|
+
|
|
7332
7025
|
public final class com/facebook/react/views/scroll/ReactScrollViewHelper$ReactScrollViewScrollState {
|
|
7333
|
-
public fun <init> (
|
|
7026
|
+
public fun <init> ()V
|
|
7334
7027
|
public final fun getDecelerationRate ()F
|
|
7335
7028
|
public final fun getFinalAnimatedPositionScroll ()Landroid/graphics/Point;
|
|
7336
7029
|
public final fun getLastStateUpdateScroll ()Landroid/graphics/Point;
|
|
7337
|
-
public final fun getLayoutDirection ()I
|
|
7338
7030
|
public final fun getScrollAwayPaddingTop ()I
|
|
7339
7031
|
public final fun isCanceled ()Z
|
|
7340
7032
|
public final fun isFinished ()Z
|
|
@@ -7371,18 +7063,14 @@ public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebo
|
|
|
7371
7063
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
7372
7064
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7373
7065
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7374
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7375
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7376
7066
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactScrollView;ILjava/lang/Integer;)V
|
|
7377
7067
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7378
7068
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
7379
7069
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7380
7070
|
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7381
|
-
public fun setBoxShadow (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7382
7071
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7383
7072
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
7384
7073
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
7385
|
-
public fun setEnableSyncOnScroll (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
7386
7074
|
public fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7387
7075
|
public fun setHorizontal (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
7388
7076
|
public fun setIsInvertedVirtualizedList (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
@@ -7408,24 +7096,17 @@ public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebo
|
|
|
7408
7096
|
public fun updateState (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7409
7097
|
}
|
|
7410
7098
|
|
|
7411
|
-
public class com/facebook/react/views/scroll/ReactScrollViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7412
|
-
public fun <init> ()V
|
|
7413
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7414
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7415
|
-
public fun setProperty (Lcom/facebook/react/views/scroll/ReactScrollViewManager;Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7416
|
-
}
|
|
7417
|
-
|
|
7418
7099
|
public final class com/facebook/react/views/scroll/ScrollEvent : com/facebook/react/uimanager/events/Event {
|
|
7419
7100
|
public static final field Companion Lcom/facebook/react/views/scroll/ScrollEvent$Companion;
|
|
7420
7101
|
public fun canCoalesce ()Z
|
|
7421
7102
|
public fun getEventName ()Ljava/lang/String;
|
|
7422
|
-
public static final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;
|
|
7103
|
+
public static final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7423
7104
|
public static final fun obtain (ILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7424
7105
|
public fun onDispose ()V
|
|
7425
7106
|
}
|
|
7426
7107
|
|
|
7427
7108
|
public final class com/facebook/react/views/scroll/ScrollEvent$Companion {
|
|
7428
|
-
public final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;
|
|
7109
|
+
public final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7429
7110
|
public final fun obtain (ILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7430
7111
|
}
|
|
7431
7112
|
|
|
@@ -7446,55 +7127,17 @@ public final class com/facebook/react/views/scroll/ScrollEventType$Companion {
|
|
|
7446
7127
|
public final fun getJSEventName (Lcom/facebook/react/views/scroll/ScrollEventType;)Ljava/lang/String;
|
|
7447
7128
|
}
|
|
7448
7129
|
|
|
7449
|
-
public class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout : androidx/swiperefreshlayout/widget/SwipeRefreshLayout {
|
|
7130
|
+
public final class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout : androidx/swiperefreshlayout/widget/SwipeRefreshLayout {
|
|
7450
7131
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
7451
7132
|
public fun canChildScrollUp ()Z
|
|
7452
7133
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
7453
7134
|
public fun onLayout (ZIIII)V
|
|
7454
7135
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
7455
7136
|
public fun requestDisallowInterceptTouchEvent (Z)V
|
|
7456
|
-
public fun setProgressViewOffset (F)V
|
|
7137
|
+
public final fun setProgressViewOffset (F)V
|
|
7457
7138
|
public fun setRefreshing (Z)V
|
|
7458
7139
|
}
|
|
7459
7140
|
|
|
7460
|
-
public class com/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerInterface {
|
|
7461
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
7462
|
-
public fun <init> ()V
|
|
7463
|
-
protected synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
7464
|
-
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;)V
|
|
7465
|
-
protected synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7466
|
-
protected fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;
|
|
7467
|
-
protected fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
7468
|
-
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
7469
|
-
public fun getExportedViewConstants ()Ljava/util/Map;
|
|
7470
|
-
public fun getName ()Ljava/lang/String;
|
|
7471
|
-
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7472
|
-
public fun receiveCommand (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7473
|
-
public synthetic fun setColors (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7474
|
-
public fun setColors (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7475
|
-
public synthetic fun setEnabled (Landroid/view/View;Z)V
|
|
7476
|
-
public fun setEnabled (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Z)V
|
|
7477
|
-
public synthetic fun setNativeRefreshing (Landroid/view/View;Z)V
|
|
7478
|
-
public fun setNativeRefreshing (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Z)V
|
|
7479
|
-
public synthetic fun setProgressBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7480
|
-
public fun setProgressBackgroundColor (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/Integer;)V
|
|
7481
|
-
public synthetic fun setProgressViewOffset (Landroid/view/View;F)V
|
|
7482
|
-
public fun setProgressViewOffset (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;F)V
|
|
7483
|
-
public synthetic fun setRefreshing (Landroid/view/View;Z)V
|
|
7484
|
-
public fun setRefreshing (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Z)V
|
|
7485
|
-
public synthetic fun setSize (Landroid/view/View;Ljava/lang/String;)V
|
|
7486
|
-
public fun setSize (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;I)V
|
|
7487
|
-
public fun setSize (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Lcom/facebook/react/bridge/Dynamic;)V
|
|
7488
|
-
public fun setSize (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/String;)V
|
|
7489
|
-
}
|
|
7490
|
-
|
|
7491
|
-
public class com/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7492
|
-
public fun <init> ()V
|
|
7493
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7494
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7495
|
-
public fun setProperty (Lcom/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager;Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7496
|
-
}
|
|
7497
|
-
|
|
7498
7141
|
public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/AndroidSwitchManagerInterface {
|
|
7499
7142
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
7500
7143
|
public fun <init> ()V
|
|
@@ -7510,6 +7153,8 @@ public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebo
|
|
|
7510
7153
|
public fun measure (Landroid/content/Context;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/ReadableMap;FLcom/facebook/yoga/YogaMeasureMode;FLcom/facebook/yoga/YogaMeasureMode;[F)J
|
|
7511
7154
|
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7512
7155
|
public fun receiveCommand (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7156
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7157
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/switchview/ReactSwitch;I)V
|
|
7513
7158
|
public synthetic fun setDisabled (Landroid/view/View;Z)V
|
|
7514
7159
|
public fun setDisabled (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7515
7160
|
public synthetic fun setEnabled (Landroid/view/View;Z)V
|
|
@@ -7532,20 +7177,6 @@ public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebo
|
|
|
7532
7177
|
public fun setValue (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7533
7178
|
}
|
|
7534
7179
|
|
|
7535
|
-
public class com/facebook/react/views/switchview/ReactSwitchManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7536
|
-
public fun <init> ()V
|
|
7537
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7538
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7539
|
-
public fun setProperty (Lcom/facebook/react/views/switchview/ReactSwitchManager;Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7540
|
-
}
|
|
7541
|
-
|
|
7542
|
-
public class com/facebook/react/views/switchview/ReactSwitchManager$ReactSwitchShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
7543
|
-
public fun <init> ()V
|
|
7544
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7545
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7546
|
-
public fun setProperty (Lcom/facebook/react/views/switchview/ReactSwitchManager$ReactSwitchShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7547
|
-
}
|
|
7548
|
-
|
|
7549
7180
|
public final class com/facebook/react/views/text/DefaultStyleValuesUtil {
|
|
7550
7181
|
public static final field INSTANCE Lcom/facebook/react/views/text/DefaultStyleValuesUtil;
|
|
7551
7182
|
public static final fun getDefaultTextColor (Landroid/content/Context;)Landroid/content/res/ColorStateList;
|
|
@@ -7553,9 +7184,9 @@ public final class com/facebook/react/views/text/DefaultStyleValuesUtil {
|
|
|
7553
7184
|
public static final fun getDefaultTextColorHint (Landroid/content/Context;)Landroid/content/res/ColorStateList;
|
|
7554
7185
|
}
|
|
7555
7186
|
|
|
7556
|
-
public class com/facebook/react/views/text/FontMetricsUtil {
|
|
7557
|
-
public
|
|
7558
|
-
public static fun getFontMetrics (Ljava/lang/CharSequence;Landroid/text/Layout;Landroid/text/TextPaint;Landroid/content/Context;)Lcom/facebook/react/bridge/WritableArray;
|
|
7187
|
+
public final class com/facebook/react/views/text/FontMetricsUtil {
|
|
7188
|
+
public static final field INSTANCE Lcom/facebook/react/views/text/FontMetricsUtil;
|
|
7189
|
+
public static final fun getFontMetrics (Ljava/lang/CharSequence;Landroid/text/Layout;Landroid/text/TextPaint;Landroid/content/Context;)Lcom/facebook/react/bridge/WritableArray;
|
|
7559
7190
|
}
|
|
7560
7191
|
|
|
7561
7192
|
public abstract class com/facebook/react/views/text/ReactBaseTextShadowNode : com/facebook/react/uimanager/LayoutShadowNode {
|
|
@@ -7623,17 +7254,24 @@ public abstract class com/facebook/react/views/text/ReactBaseTextShadowNode : co
|
|
|
7623
7254
|
protected fun spannedFromShadowNode (Lcom/facebook/react/views/text/ReactBaseTextShadowNode;Ljava/lang/String;ZLcom/facebook/react/uimanager/NativeViewHierarchyOptimizer;)Landroid/text/Spannable;
|
|
7624
7255
|
}
|
|
7625
7256
|
|
|
7626
|
-
public class com/facebook/react/views/text/ReactFontManager {
|
|
7627
|
-
public
|
|
7628
|
-
public fun
|
|
7629
|
-
public
|
|
7630
|
-
public fun
|
|
7631
|
-
public fun
|
|
7632
|
-
public fun getTypeface (Ljava/lang/String;
|
|
7633
|
-
public fun
|
|
7257
|
+
public final class com/facebook/react/views/text/ReactFontManager {
|
|
7258
|
+
public static final field Companion Lcom/facebook/react/views/text/ReactFontManager$Companion;
|
|
7259
|
+
public synthetic fun <init> (Lcom/facebook/react/common/assets/ReactFontManager;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
7260
|
+
public final fun addCustomFont (Landroid/content/Context;Ljava/lang/String;I)V
|
|
7261
|
+
public final fun addCustomFont (Ljava/lang/String;Landroid/graphics/Typeface;)V
|
|
7262
|
+
public static final fun getInstance ()Lcom/facebook/react/views/text/ReactFontManager;
|
|
7263
|
+
public final fun getTypeface (Ljava/lang/String;IILandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7264
|
+
public final fun getTypeface (Ljava/lang/String;ILandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7265
|
+
public final fun getTypeface (Ljava/lang/String;IZLandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7266
|
+
public final fun setTypeface (Ljava/lang/String;ILandroid/graphics/Typeface;)V
|
|
7634
7267
|
}
|
|
7635
7268
|
|
|
7636
|
-
public class com/facebook/react/views/text/
|
|
7269
|
+
public final class com/facebook/react/views/text/ReactFontManager$Companion {
|
|
7270
|
+
public final fun getInstance ()Lcom/facebook/react/views/text/ReactFontManager;
|
|
7271
|
+
}
|
|
7272
|
+
|
|
7273
|
+
public final class com/facebook/react/views/text/ReactRawTextManager : com/facebook/react/uimanager/ViewManager {
|
|
7274
|
+
public static final field REACT_CLASS Ljava/lang/String;
|
|
7637
7275
|
public fun <init> ()V
|
|
7638
7276
|
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7639
7277
|
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/ReactRawTextShadowNode;
|
|
@@ -7641,17 +7279,9 @@ public class com/facebook/react/views/text/ReactRawTextManager : com/facebook/re
|
|
|
7641
7279
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/text/ReactTextView;
|
|
7642
7280
|
public fun getName ()Ljava/lang/String;
|
|
7643
7281
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7644
|
-
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
7645
7282
|
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7646
7283
|
}
|
|
7647
7284
|
|
|
7648
|
-
public class com/facebook/react/views/text/ReactRawTextManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7649
|
-
public fun <init> ()V
|
|
7650
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7651
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7652
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactRawTextManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7653
|
-
}
|
|
7654
|
-
|
|
7655
7285
|
public class com/facebook/react/views/text/ReactRawTextShadowNode : com/facebook/react/uimanager/ReactShadowNodeImpl {
|
|
7656
7286
|
public fun <init> ()V
|
|
7657
7287
|
public fun getText ()Ljava/lang/String;
|
|
@@ -7660,24 +7290,15 @@ public class com/facebook/react/views/text/ReactRawTextShadowNode : com/facebook
|
|
|
7660
7290
|
public fun toString ()Ljava/lang/String;
|
|
7661
7291
|
}
|
|
7662
7292
|
|
|
7663
|
-
public class com/facebook/react/views/text/ReactRawTextShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
7664
|
-
public fun <init> ()V
|
|
7665
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7666
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7667
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactRawTextShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7668
|
-
}
|
|
7669
|
-
|
|
7670
7293
|
public abstract class com/facebook/react/views/text/ReactTextAnchorViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
7671
7294
|
public fun <init> ()V
|
|
7672
7295
|
public fun setAccessible (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7673
7296
|
public fun setAdjustFontSizeToFit (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7674
7297
|
public fun setAndroidHyphenationFrequency (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7675
|
-
public fun setBackgroundColor (Landroid/view/View;I)V
|
|
7676
7298
|
public fun setBorderColor (Lcom/facebook/react/views/text/ReactTextView;ILjava/lang/Integer;)V
|
|
7677
7299
|
public fun setBorderRadius (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7678
7300
|
public fun setBorderStyle (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7679
7301
|
public fun setBorderWidth (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7680
|
-
public fun setBoxShadow (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7681
7302
|
public fun setDataDetectorType (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7682
7303
|
public fun setDisabled (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7683
7304
|
public fun setEllipsizeMode (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
@@ -7703,28 +7324,27 @@ public class com/facebook/react/views/text/ReactTextShadowNode : com/facebook/re
|
|
|
7703
7324
|
public fun setShouldNotifyOnTextLayout (Z)V
|
|
7704
7325
|
}
|
|
7705
7326
|
|
|
7706
|
-
public class com/facebook/react/views/text/
|
|
7707
|
-
public
|
|
7708
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7709
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7710
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactTextShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7711
|
-
}
|
|
7712
|
-
|
|
7713
|
-
public class com/facebook/react/views/text/ReactTextUpdate {
|
|
7327
|
+
public final class com/facebook/react/views/text/ReactTextUpdate {
|
|
7328
|
+
public static final field Companion Lcom/facebook/react/views/text/ReactTextUpdate$Companion;
|
|
7714
7329
|
public fun <init> (Landroid/text/Spannable;IZFFFFI)V
|
|
7715
7330
|
public fun <init> (Landroid/text/Spannable;IZFFFFIII)V
|
|
7716
7331
|
public fun <init> (Landroid/text/Spannable;IZIII)V
|
|
7717
|
-
public static fun buildReactTextUpdateFromState (Landroid/text/Spannable;IIII)Lcom/facebook/react/views/text/ReactTextUpdate;
|
|
7718
|
-
public fun containsImages ()Z
|
|
7719
|
-
public fun
|
|
7720
|
-
public fun
|
|
7721
|
-
public fun
|
|
7722
|
-
public fun
|
|
7723
|
-
public fun
|
|
7724
|
-
public fun
|
|
7725
|
-
public fun
|
|
7726
|
-
public fun
|
|
7727
|
-
public fun
|
|
7332
|
+
public static final fun buildReactTextUpdateFromState (Landroid/text/Spannable;IIII)Lcom/facebook/react/views/text/ReactTextUpdate;
|
|
7333
|
+
public final fun containsImages ()Z
|
|
7334
|
+
public final fun getContainsImages ()Z
|
|
7335
|
+
public final fun getJsEventCounter ()I
|
|
7336
|
+
public final fun getJustificationMode ()I
|
|
7337
|
+
public final fun getPaddingBottom ()F
|
|
7338
|
+
public final fun getPaddingLeft ()F
|
|
7339
|
+
public final fun getPaddingRight ()F
|
|
7340
|
+
public final fun getPaddingTop ()F
|
|
7341
|
+
public final fun getText ()Landroid/text/Spannable;
|
|
7342
|
+
public final fun getTextAlign ()I
|
|
7343
|
+
public final fun getTextBreakStrategy ()I
|
|
7344
|
+
}
|
|
7345
|
+
|
|
7346
|
+
public final class com/facebook/react/views/text/ReactTextUpdate$Companion {
|
|
7347
|
+
public final fun buildReactTextUpdateFromState (Landroid/text/Spannable;IIII)Lcom/facebook/react/views/text/ReactTextUpdate;
|
|
7728
7348
|
}
|
|
7729
7349
|
|
|
7730
7350
|
public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/widget/AppCompatTextView, com/facebook/react/uimanager/ReactCompoundView {
|
|
@@ -7793,52 +7413,16 @@ public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/r
|
|
|
7793
7413
|
public fun updateState (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7794
7414
|
}
|
|
7795
7415
|
|
|
7796
|
-
public class com/facebook/react/views/text/ReactTextViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7797
|
-
public fun <init> ()V
|
|
7798
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7799
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7800
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactTextViewManager;Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7801
|
-
}
|
|
7802
|
-
|
|
7803
7416
|
public abstract interface class com/facebook/react/views/text/ReactTextViewManagerCallback {
|
|
7804
7417
|
public abstract fun onPostProcessSpannable (Landroid/text/Spannable;)V
|
|
7805
7418
|
}
|
|
7806
7419
|
|
|
7807
|
-
public class com/facebook/react/views/text/ReactTypefaceUtils {
|
|
7808
|
-
public
|
|
7809
|
-
public static fun applyStyles (Landroid/graphics/Typeface;IILjava/lang/String;Landroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7810
|
-
public static fun parseFontStyle (Ljava/lang/String;)I
|
|
7811
|
-
public static fun parseFontVariant (Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
|
|
7812
|
-
public static fun parseFontWeight (Ljava/lang/String;)I
|
|
7813
|
-
}
|
|
7814
|
-
|
|
7815
|
-
public class com/facebook/react/views/text/ReactVirtualTextShadowNode : com/facebook/react/views/text/ReactBaseTextShadowNode {
|
|
7816
|
-
public fun <init> ()V
|
|
7817
|
-
public fun isVirtual ()Z
|
|
7818
|
-
}
|
|
7819
|
-
|
|
7820
|
-
public class com/facebook/react/views/text/ReactVirtualTextShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
7821
|
-
public fun <init> ()V
|
|
7822
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7823
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7824
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactVirtualTextShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7825
|
-
}
|
|
7826
|
-
|
|
7827
|
-
public class com/facebook/react/views/text/ReactVirtualTextViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
7828
|
-
public fun <init> ()V
|
|
7829
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7830
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/ReactVirtualTextShadowNode;
|
|
7831
|
-
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7832
|
-
public fun getName ()Ljava/lang/String;
|
|
7833
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7834
|
-
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7835
|
-
}
|
|
7836
|
-
|
|
7837
|
-
public class com/facebook/react/views/text/ReactVirtualTextViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7838
|
-
public fun <init> ()V
|
|
7839
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7840
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7841
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactVirtualTextViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7420
|
+
public final class com/facebook/react/views/text/ReactTypefaceUtils {
|
|
7421
|
+
public static final field INSTANCE Lcom/facebook/react/views/text/ReactTypefaceUtils;
|
|
7422
|
+
public static final fun applyStyles (Landroid/graphics/Typeface;IILjava/lang/String;Landroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7423
|
+
public static final fun parseFontStyle (Ljava/lang/String;)I
|
|
7424
|
+
public static final fun parseFontVariant (Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
|
|
7425
|
+
public static final fun parseFontWeight (Ljava/lang/String;)I
|
|
7842
7426
|
}
|
|
7843
7427
|
|
|
7844
7428
|
public class com/facebook/react/views/text/TextAttributeProps {
|
|
@@ -7957,6 +7541,7 @@ public class com/facebook/react/views/text/TextAttributes {
|
|
|
7957
7541
|
}
|
|
7958
7542
|
|
|
7959
7543
|
public class com/facebook/react/views/text/TextLayoutManager {
|
|
7544
|
+
public static final field AS_KEY_BASE_ATTRIBUTES S
|
|
7960
7545
|
public static final field AS_KEY_CACHE_ID S
|
|
7961
7546
|
public static final field AS_KEY_FRAGMENTS S
|
|
7962
7547
|
public static final field AS_KEY_HASH S
|
|
@@ -7976,11 +7561,8 @@ public class com/facebook/react/views/text/TextLayoutManager {
|
|
|
7976
7561
|
public static final field PA_KEY_MINIMUM_FONT_SIZE S
|
|
7977
7562
|
public static final field PA_KEY_TEXT_BREAK_STRATEGY S
|
|
7978
7563
|
public fun <init> ()V
|
|
7979
|
-
public static fun adjustSpannableFontToFit (Landroid/text/Spannable;FLcom/facebook/yoga/YogaMeasureMode;FLcom/facebook/yoga/YogaMeasureMode;DIZIILandroid/text/Layout$Alignment;)V
|
|
7980
|
-
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;
|
|
7981
7564
|
public static fun deleteCachedSpannableForTag (I)V
|
|
7982
7565
|
public static fun getOrCreateSpannableForText (Landroid/content/Context;Lcom/facebook/react/common/mapbuffer/MapBuffer;Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Landroid/text/Spannable;
|
|
7983
|
-
public static fun getTextAlignment (Lcom/facebook/react/common/mapbuffer/MapBuffer;Landroid/text/Spannable;)Landroid/text/Layout$Alignment;
|
|
7984
7566
|
public static fun getTextGravity (Lcom/facebook/react/common/mapbuffer/MapBuffer;Landroid/text/Spannable;I)I
|
|
7985
7567
|
public static fun isRTL (Lcom/facebook/react/common/mapbuffer/MapBuffer;)Z
|
|
7986
7568
|
public static fun measureLines (Landroid/content/Context;Lcom/facebook/react/common/mapbuffer/MapBuffer;Lcom/facebook/react/common/mapbuffer/MapBuffer;FF)Lcom/facebook/react/bridge/WritableArray;
|
|
@@ -7990,20 +7572,23 @@ public class com/facebook/react/views/text/TextLayoutManager {
|
|
|
7990
7572
|
|
|
7991
7573
|
public final class com/facebook/react/views/text/TextTransform : java/lang/Enum {
|
|
7992
7574
|
public static final field CAPITALIZE Lcom/facebook/react/views/text/TextTransform;
|
|
7575
|
+
public static final field Companion Lcom/facebook/react/views/text/TextTransform$Companion;
|
|
7993
7576
|
public static final field LOWERCASE Lcom/facebook/react/views/text/TextTransform;
|
|
7994
7577
|
public static final field NONE Lcom/facebook/react/views/text/TextTransform;
|
|
7995
7578
|
public static final field UNSET Lcom/facebook/react/views/text/TextTransform;
|
|
7996
7579
|
public static final field UPPERCASE Lcom/facebook/react/views/text/TextTransform;
|
|
7997
|
-
public static fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7580
|
+
public static final fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7581
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
7998
7582
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/views/text/TextTransform;
|
|
7999
7583
|
public static fun values ()[Lcom/facebook/react/views/text/TextTransform;
|
|
8000
7584
|
}
|
|
8001
7585
|
|
|
8002
|
-
public class com/facebook/react/views/text/
|
|
8003
|
-
public fun
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
7586
|
+
public final class com/facebook/react/views/text/TextTransform$Companion {
|
|
7587
|
+
public final fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7588
|
+
}
|
|
7589
|
+
|
|
7590
|
+
public final class com/facebook/react/views/text/TextTransformKt {
|
|
7591
|
+
public static final fun applyTextTransform (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
8007
7592
|
}
|
|
8008
7593
|
|
|
8009
7594
|
public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
@@ -8018,13 +7603,6 @@ public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInl
|
|
|
8018
7603
|
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
8019
7604
|
}
|
|
8020
7605
|
|
|
8021
|
-
public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
8022
|
-
public fun <init> ()V
|
|
8023
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8024
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8025
|
-
public fun setProperty (Lcom/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8026
|
-
}
|
|
8027
|
-
|
|
8028
7606
|
public abstract interface class com/facebook/react/views/textinput/ContentSizeWatcher {
|
|
8029
7607
|
public abstract fun onLayout ()V
|
|
8030
7608
|
}
|
|
@@ -8158,13 +7736,10 @@ public class com/facebook/react/views/textinput/ReactTextInputManager : com/face
|
|
|
8158
7736
|
public fun setAutoCapitalize (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/Dynamic;)V
|
|
8159
7737
|
public fun setAutoCorrect (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Boolean;)V
|
|
8160
7738
|
public fun setAutoFocus (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
8161
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8162
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/textinput/ReactEditText;I)V
|
|
8163
7739
|
public fun setBorderColor (Lcom/facebook/react/views/textinput/ReactEditText;ILjava/lang/Integer;)V
|
|
8164
7740
|
public fun setBorderRadius (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
8165
7741
|
public fun setBorderStyle (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
8166
7742
|
public fun setBorderWidth (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
8167
|
-
public fun setBoxShadow (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8168
7743
|
public fun setCaretHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
8169
7744
|
public fun setColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
8170
7745
|
public fun setContextMenuHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
@@ -8215,48 +7790,10 @@ public class com/facebook/react/views/textinput/ReactTextInputManager : com/face
|
|
|
8215
7790
|
public fun updateState (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
8216
7791
|
}
|
|
8217
7792
|
|
|
8218
|
-
public class com/facebook/react/views/textinput/ReactTextInputManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
8219
|
-
public fun <init> ()V
|
|
8220
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8221
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8222
|
-
public fun setProperty (Lcom/facebook/react/views/textinput/ReactTextInputManager;Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8223
|
-
}
|
|
8224
|
-
|
|
8225
|
-
public class com/facebook/react/views/textinput/ReactTextInputShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
8226
|
-
public fun <init> ()V
|
|
8227
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8228
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8229
|
-
public fun setProperty (Lcom/facebook/react/views/textinput/ReactTextInputShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8230
|
-
}
|
|
8231
|
-
|
|
8232
7793
|
public abstract interface class com/facebook/react/views/textinput/ScrollWatcher {
|
|
8233
7794
|
public abstract fun onScrollChanged (IIII)V
|
|
8234
7795
|
}
|
|
8235
7796
|
|
|
8236
|
-
public final class com/facebook/react/views/unimplementedview/ReactUnimplementedView : android/widget/LinearLayout {
|
|
8237
|
-
public fun <init> (Landroid/content/Context;)V
|
|
8238
|
-
public final fun setName (Ljava/lang/String;)V
|
|
8239
|
-
}
|
|
8240
|
-
|
|
8241
|
-
public final class com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager : com/facebook/react/uimanager/ViewGroupManager {
|
|
8242
|
-
public static final field Companion Lcom/facebook/react/views/unimplementedview/ReactUnimplementedViewManager$Companion;
|
|
8243
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
8244
|
-
public fun <init> ()V
|
|
8245
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
8246
|
-
public fun getName ()Ljava/lang/String;
|
|
8247
|
-
public final fun setName (Lcom/facebook/react/views/unimplementedview/ReactUnimplementedView;Ljava/lang/String;)V
|
|
8248
|
-
}
|
|
8249
|
-
|
|
8250
|
-
public class com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
8251
|
-
public fun <init> ()V
|
|
8252
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8253
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8254
|
-
public fun setProperty (Lcom/facebook/react/views/unimplementedview/ReactUnimplementedViewManager;Lcom/facebook/react/views/unimplementedview/ReactUnimplementedView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8255
|
-
}
|
|
8256
|
-
|
|
8257
|
-
public final class com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager$Companion {
|
|
8258
|
-
}
|
|
8259
|
-
|
|
8260
7797
|
public final class com/facebook/react/views/view/ColorUtil {
|
|
8261
7798
|
public static final field INSTANCE Lcom/facebook/react/views/view/ColorUtil;
|
|
8262
7799
|
public static final fun normalize (DDDD)I
|
|
@@ -8291,22 +7828,16 @@ public class com/facebook/react/views/view/ReactDrawableHelper {
|
|
|
8291
7828
|
public static fun createDrawableFromJSDescription (Landroid/content/Context;Lcom/facebook/react/bridge/ReadableMap;)Landroid/graphics/drawable/Drawable;
|
|
8292
7829
|
}
|
|
8293
7830
|
|
|
8294
|
-
public class com/facebook/react/views/view/ReactViewBackgroundDrawable : com/facebook/react/uimanager/drawable/CSSBackgroundDrawable {
|
|
8295
|
-
public fun <init> (Landroid/content/Context;)V
|
|
8296
|
-
}
|
|
8297
|
-
|
|
8298
7831
|
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 {
|
|
8299
7832
|
public fun <init> (Landroid/content/Context;)V
|
|
8300
|
-
public fun addView (Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
|
|
8301
|
-
protected fun addViewInLayout (Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;Z)Z
|
|
8302
7833
|
protected fun dispatchDraw (Landroid/graphics/Canvas;)V
|
|
8303
7834
|
public fun dispatchGenericMotionEvent (Landroid/view/MotionEvent;)Z
|
|
8304
7835
|
public fun dispatchProvideStructure (Landroid/view/ViewStructure;)V
|
|
8305
7836
|
protected fun dispatchSetPressed (Z)V
|
|
8306
7837
|
public fun draw (Landroid/graphics/Canvas;)V
|
|
8307
7838
|
protected fun drawChild (Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
|
7839
|
+
public fun endViewTransition (Landroid/view/View;)V
|
|
8308
7840
|
protected fun getChildDrawingOrder (II)I
|
|
8309
|
-
public fun getChildVisibleRect (Landroid/view/View;Landroid/graphics/Rect;Landroid/graphics/Point;)Z
|
|
8310
7841
|
public fun getClippingRect (Landroid/graphics/Rect;)V
|
|
8311
7842
|
public fun getHitSlopRect ()Landroid/graphics/Rect;
|
|
8312
7843
|
public fun getOverflow ()Ljava/lang/String;
|
|
@@ -8316,16 +7847,14 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
8316
7847
|
public fun getZIndexMappedChildIndex (I)I
|
|
8317
7848
|
public fun hasOverlappingRendering ()Z
|
|
8318
7849
|
protected fun onAttachedToWindow ()V
|
|
7850
|
+
public fun onHoverEvent (Landroid/view/MotionEvent;)Z
|
|
8319
7851
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
8320
7852
|
protected fun onLayout (ZIIII)V
|
|
8321
7853
|
protected fun onMeasure (II)V
|
|
8322
7854
|
protected fun onSizeChanged (IIII)V
|
|
8323
7855
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
8324
|
-
public fun
|
|
8325
|
-
public fun
|
|
8326
|
-
public fun removeViewInLayout (Landroid/view/View;)V
|
|
8327
|
-
public fun removeViews (II)V
|
|
8328
|
-
public fun removeViewsInLayout (II)V
|
|
7856
|
+
public fun onViewAdded (Landroid/view/View;)V
|
|
7857
|
+
public fun onViewRemoved (Landroid/view/View;)V
|
|
8329
7858
|
public fun requestLayout ()V
|
|
8330
7859
|
public fun setBackfaceVisibility (Ljava/lang/String;)V
|
|
8331
7860
|
public fun setBackfaceVisibilityDependantOpacity ()V
|
|
@@ -8350,6 +7879,8 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
8350
7879
|
}
|
|
8351
7880
|
|
|
8352
7881
|
public class com/facebook/react/views/view/ReactViewManager : com/facebook/react/views/view/ReactClippingViewManager {
|
|
7882
|
+
public static final field Companion Lcom/facebook/react/views/view/ReactViewManager$Companion;
|
|
7883
|
+
public static final field REACT_CLASS Ljava/lang/String;
|
|
8353
7884
|
public fun <init> ()V
|
|
8354
7885
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
8355
7886
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/view/ReactViewGroup;
|
|
@@ -8360,7 +7891,7 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8360
7891
|
public fun nextFocusLeft (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8361
7892
|
public fun nextFocusRight (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8362
7893
|
public fun nextFocusUp (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8363
|
-
|
|
7894
|
+
public synthetic fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
8364
7895
|
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/view/ReactViewGroup;)Lcom/facebook/react/views/view/ReactViewGroup;
|
|
8365
7896
|
public synthetic fun receiveCommand (Landroid/view/View;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
8366
7897
|
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
@@ -8368,15 +7899,12 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8368
7899
|
public fun receiveCommand (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8369
7900
|
public fun setAccessible (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8370
7901
|
public fun setBackfaceVisibility (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8371
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8372
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8373
7902
|
public fun setBackgroundImage (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8374
7903
|
public fun setBorderColor (Lcom/facebook/react/views/view/ReactViewGroup;ILjava/lang/Integer;)V
|
|
8375
7904
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8376
7905
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;ILcom/facebook/react/bridge/Dynamic;)V
|
|
8377
7906
|
public fun setBorderStyle (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8378
7907
|
public fun setBorderWidth (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8379
|
-
public fun setBoxShadow (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8380
7908
|
public fun setCollapsable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8381
7909
|
public fun setCollapsableChildren (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8382
7910
|
public fun setFocusable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
@@ -8389,15 +7917,11 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8389
7917
|
public fun setOverflow (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8390
7918
|
public fun setPointerEvents (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8391
7919
|
public fun setTVPreferredFocus (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8392
|
-
|
|
7920
|
+
public synthetic fun setTransformProperty (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8393
7921
|
protected fun setTransformProperty (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8394
7922
|
}
|
|
8395
7923
|
|
|
8396
|
-
public class com/facebook/react/views/view/ReactViewManager
|
|
8397
|
-
public fun <init> ()V
|
|
8398
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8399
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8400
|
-
public fun setProperty (Lcom/facebook/react/views/view/ReactViewManager;Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7924
|
+
public final class com/facebook/react/views/view/ReactViewManager$Companion {
|
|
8401
7925
|
}
|
|
8402
7926
|
|
|
8403
7927
|
public final class com/facebook/react/views/view/ViewGroupClickEvent : com/facebook/react/uimanager/events/Event {
|
|
@@ -8410,5 +7934,6 @@ public final class com/facebook/react/views/view/ViewGroupClickEvent : com/faceb
|
|
|
8410
7934
|
public final class com/facebook/react/views/view/WindowUtilKt {
|
|
8411
7935
|
public static final fun setStatusBarTranslucency (Landroid/view/Window;Z)V
|
|
8412
7936
|
public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
|
|
7937
|
+
public static final fun setSystemBarsTranslucency (Landroid/view/Window;Z)V
|
|
8413
7938
|
}
|
|
8414
7939
|
|