react-native-tvos 0.76.3-0 → 0.77.0-0rc1
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.js +4 -4
- 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 +49 -89
- 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/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 +37 -13
- 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/TouchableOpacity.js +6 -5
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +1 -2
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +6 -1
- package/Libraries/Components/View/View.js +4 -8
- package/Libraries/Components/View/ViewNativeComponent.js +6 -109
- 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 +3 -3
- 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 +2 -2
- package/Libraries/LogBox/UI/AnsiHighlight.js +26 -17
- 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/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 +2 -3
- 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 +25 -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 +0 -8
- 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/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 +3 -3
- 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/Modal/RCTModalHostViewComponentView.h +1 -1
- package/React/Fabric/Mounting/ComponentViews/Modal/RCTModalHostViewComponentView.mm +8 -18
- 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.h +3 -0
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +38 -41
- package/React/Fabric/Mounting/ComponentViews/Switch/RCTSwitchComponentView.mm +2 -1
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +36 -16
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.mm +9 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +173 -105
- 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/RCTFont.h +2 -0
- package/React/Views/RCTFont.mm +4 -5
- 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 +2 -0
- package/React/Views/ScrollView/RCTScrollView.m +23 -0
- 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 +340 -815
- package/ReactAndroid/build.gradle.kts +48 -13
- package/ReactAndroid/cmake-utils/ReactNative-application.cmake +5 -0
- package/ReactAndroid/cmake-utils/default-app-setup/OnLoad.cpp +13 -0
- 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 +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/NativeModuleRegistryBuilder.kt +61 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivity.java +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivityDelegate.java +66 -34
- package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +72 -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 +18 -4
- 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 +22 -18
- 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 +78 -70
- 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 +106 -133
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +25 -29
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +25 -31
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +136 -155
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +23 -29
- 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 +4 -27
- 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 +3 -3
- 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 +2 -4
- 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 +67 -103
- 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 +55 -84
- 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 +53 -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 +85 -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 +121 -354
- 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} +249 -169
- 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 +146 -174
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +31 -36
- 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 +3 -3
- 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 -63
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +66 -64
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +174 -219
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +31 -35
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +36 -48
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +15 -18
- 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 +53 -61
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +24 -28
- 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/RCTFontUtils.mm +10 -10
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +25 -0
- package/ReactCommon/react/renderer/uimanager/UIManager.cpp +33 -18
- 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 +10 -3
- package/jest/setup.js +36 -1
- 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 +321 -106
- 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 +95 -86
- package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +8 -2
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +17 -19
- 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 {
|
|
@@ -3041,11 +2963,9 @@ public abstract interface annotation class com/facebook/react/module/annotations
|
|
|
3041
2963
|
public final class com/facebook/react/module/model/ReactModuleInfo {
|
|
3042
2964
|
public static final field Companion Lcom/facebook/react/module/model/ReactModuleInfo$Companion;
|
|
3043
2965
|
public fun <init> (Ljava/lang/String;Ljava/lang/String;ZZZZ)V
|
|
3044
|
-
public fun <init> (Ljava/lang/String;Ljava/lang/String;ZZZZZ)V
|
|
3045
2966
|
public final fun canOverrideExistingModule ()Z
|
|
3046
2967
|
public static final fun classIsTurboModule (Ljava/lang/Class;)Z
|
|
3047
2968
|
public final fun className ()Ljava/lang/String;
|
|
3048
|
-
public final fun hasConstants ()Z
|
|
3049
2969
|
public final fun isCxxModule ()Z
|
|
3050
2970
|
public final fun isTurboModule ()Z
|
|
3051
2971
|
public final fun name ()Ljava/lang/String;
|
|
@@ -3060,21 +2980,6 @@ public abstract interface class com/facebook/react/module/model/ReactModuleInfoP
|
|
|
3060
2980
|
public abstract fun getReactModuleInfos ()Ljava/util/Map;
|
|
3061
2981
|
}
|
|
3062
2982
|
|
|
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
2983
|
public final class com/facebook/react/modules/appearance/AppearanceModule : com/facebook/fbreact/specs/NativeAppearanceSpec {
|
|
3079
2984
|
public static final field Companion Lcom/facebook/react/modules/appearance/AppearanceModule$Companion;
|
|
3080
2985
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3102,26 +3007,6 @@ public abstract interface class com/facebook/react/modules/appregistry/AppRegist
|
|
|
3102
3007
|
public abstract fun unmountApplicationComponentAtRootTag (I)V
|
|
3103
3008
|
}
|
|
3104
3009
|
|
|
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
3010
|
public class com/facebook/react/modules/blob/BlobModule : com/facebook/fbreact/specs/NativeBlobModuleSpec {
|
|
3126
3011
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3127
3012
|
public fun addNetworkingHandler ()V
|
|
@@ -3158,27 +3043,6 @@ public class com/facebook/react/modules/blob/FileReaderModule : com/facebook/fbr
|
|
|
3158
3043
|
public fun readAsText (Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3159
3044
|
}
|
|
3160
3045
|
|
|
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
3046
|
public final class com/facebook/react/modules/common/ModuleDataCleaner {
|
|
3183
3047
|
public static final field INSTANCE Lcom/facebook/react/modules/common/ModuleDataCleaner;
|
|
3184
3048
|
public static final fun cleanDataFromModules (Lcom/facebook/react/bridge/ReactContext;)V
|
|
@@ -3222,7 +3086,6 @@ public class com/facebook/react/modules/core/ExceptionsManagerModule : com/faceb
|
|
|
3222
3086
|
public fun reportException (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
3223
3087
|
public fun reportFatalException (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;D)V
|
|
3224
3088
|
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
3089
|
}
|
|
3227
3090
|
|
|
3228
3091
|
public class com/facebook/react/modules/core/HeadlessJsTaskSupportModule : com/facebook/fbreact/specs/NativeHeadlessJsTaskSupportSpec {
|
|
@@ -3406,25 +3269,6 @@ public final class com/facebook/react/modules/deviceinfo/DeviceInfoModule : com/
|
|
|
3406
3269
|
public fun onHostResume ()V
|
|
3407
3270
|
}
|
|
3408
3271
|
|
|
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
3272
|
public class com/facebook/react/modules/dialog/AlertFragment : androidx/fragment/app/DialogFragment, android/content/DialogInterface$OnClickListener {
|
|
3429
3273
|
public fun <init> ()V
|
|
3430
3274
|
public fun <init> (Lcom/facebook/react/modules/dialog/DialogModule$AlertFragmentListener;Landroid/os/Bundle;)V
|
|
@@ -3447,6 +3291,7 @@ public class com/facebook/react/modules/dialog/DialogModule : com/facebook/fbrea
|
|
|
3447
3291
|
|
|
3448
3292
|
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
3293
|
public static final field Companion Lcom/facebook/react/modules/fresco/FrescoModule$Companion;
|
|
3294
|
+
public static final field NAME Ljava/lang/String;
|
|
3450
3295
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3451
3296
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;)V
|
|
3452
3297
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;Z)V
|
|
@@ -3471,14 +3316,27 @@ public final class com/facebook/react/modules/fresco/FrescoModule$Companion {
|
|
|
3471
3316
|
public final fun hasBeenInitialized ()Z
|
|
3472
3317
|
}
|
|
3473
3318
|
|
|
3319
|
+
public final class com/facebook/react/modules/fresco/ImageCacheControl : java/lang/Enum {
|
|
3320
|
+
public static final field DEFAULT Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3321
|
+
public static final field FORCE_CACHE Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3322
|
+
public static final field ONLY_IF_CACHED Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3323
|
+
public static final field RELOAD Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3324
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
3325
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3326
|
+
public static fun values ()[Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3474
3329
|
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest : com/facebook/imagepipeline/request/ImageRequest {
|
|
3475
3330
|
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
|
|
3331
|
+
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
3332
|
public static final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3333
|
+
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
3334
|
}
|
|
3479
3335
|
|
|
3480
3336
|
public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion {
|
|
3481
3337
|
public final fun fromBuilderWithHeaders (Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
|
|
3338
|
+
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;
|
|
3339
|
+
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
3340
|
}
|
|
3483
3341
|
|
|
3484
3342
|
public final class com/facebook/react/modules/fresco/SystraceRequestListener : com/facebook/imagepipeline/listener/BaseRequestListener {
|
|
@@ -3495,7 +3353,15 @@ public final class com/facebook/react/modules/fresco/SystraceRequestListener : c
|
|
|
3495
3353
|
public fun requiresExtraMap (Ljava/lang/String;)Z
|
|
3496
3354
|
}
|
|
3497
3355
|
|
|
3356
|
+
public final class com/facebook/react/modules/fresco/XmlFormat {
|
|
3357
|
+
public static final field INSTANCE Lcom/facebook/react/modules/fresco/XmlFormat;
|
|
3358
|
+
public final fun addDecodingCapability (Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;Landroid/content/Context;)Lcom/facebook/imagepipeline/decoder/ImageDecoderConfig$Builder;
|
|
3359
|
+
public final fun getDrawableFactory ()Lcom/facebook/imagepipeline/drawable/DrawableFactory;
|
|
3360
|
+
}
|
|
3361
|
+
|
|
3498
3362
|
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : com/facebook/fbreact/specs/NativeI18nManagerSpec {
|
|
3363
|
+
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nManagerModule$Companion;
|
|
3364
|
+
public static final field NAME Ljava/lang/String;
|
|
3499
3365
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3500
3366
|
public fun allowRTL (Z)V
|
|
3501
3367
|
public fun forceRTL (Z)V
|
|
@@ -3503,6 +3369,9 @@ public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : co
|
|
|
3503
3369
|
public fun swapLeftAndRightInRTL (Z)V
|
|
3504
3370
|
}
|
|
3505
3371
|
|
|
3372
|
+
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule$Companion {
|
|
3373
|
+
}
|
|
3374
|
+
|
|
3506
3375
|
public final class com/facebook/react/modules/i18nmanager/I18nUtil {
|
|
3507
3376
|
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nUtil$Companion;
|
|
3508
3377
|
public final fun allowRTL (Landroid/content/Context;Z)V
|
|
@@ -3538,6 +3407,8 @@ public final class com/facebook/react/modules/image/ImageLoaderModule$Companion
|
|
|
3538
3407
|
}
|
|
3539
3408
|
|
|
3540
3409
|
public class com/facebook/react/modules/intent/IntentModule : com/facebook/fbreact/specs/NativeIntentAndroidSpec {
|
|
3410
|
+
public static final field Companion Lcom/facebook/react/modules/intent/IntentModule$Companion;
|
|
3411
|
+
public static final field NAME Ljava/lang/String;
|
|
3541
3412
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3542
3413
|
public fun canOpenURL (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3543
3414
|
public fun getInitialURL (Lcom/facebook/react/bridge/Promise;)V
|
|
@@ -3547,6 +3418,9 @@ public class com/facebook/react/modules/intent/IntentModule : com/facebook/fbrea
|
|
|
3547
3418
|
public fun sendIntent (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V
|
|
3548
3419
|
}
|
|
3549
3420
|
|
|
3421
|
+
public final class com/facebook/react/modules/intent/IntentModule$Companion {
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3550
3424
|
public abstract interface class com/facebook/react/modules/network/CookieJarContainer : okhttp3/CookieJar {
|
|
3551
3425
|
public abstract fun removeCookieJar ()V
|
|
3552
3426
|
public abstract fun setCookieJar (Lokhttp3/CookieJar;)V
|
|
@@ -3674,6 +3548,8 @@ public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl
|
|
|
3674
3548
|
}
|
|
3675
3549
|
|
|
3676
3550
|
public final class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
|
|
3551
|
+
public static final field Companion Lcom/facebook/react/modules/permissions/PermissionsModule$Companion;
|
|
3552
|
+
public static final field NAME Ljava/lang/String;
|
|
3677
3553
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3678
3554
|
public fun checkPermission (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3679
3555
|
public fun onRequestPermissionsResult (I[Ljava/lang/String;[I)Z
|
|
@@ -3682,9 +3558,13 @@ public final class com/facebook/react/modules/permissions/PermissionsModule : co
|
|
|
3682
3558
|
public fun shouldShowRequestPermissionRationale (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3683
3559
|
}
|
|
3684
3560
|
|
|
3561
|
+
public final class com/facebook/react/modules/permissions/PermissionsModule$Companion {
|
|
3562
|
+
}
|
|
3563
|
+
|
|
3685
3564
|
public final class com/facebook/react/modules/share/ShareModule : com/facebook/fbreact/specs/NativeShareModuleSpec {
|
|
3686
3565
|
public static final field Companion Lcom/facebook/react/modules/share/ShareModule$Companion;
|
|
3687
3566
|
public static final field ERROR_INVALID_CONTENT Ljava/lang/String;
|
|
3567
|
+
public static final field NAME Ljava/lang/String;
|
|
3688
3568
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3689
3569
|
public fun share (Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3690
3570
|
}
|
|
@@ -3693,10 +3573,15 @@ public final class com/facebook/react/modules/share/ShareModule$Companion {
|
|
|
3693
3573
|
}
|
|
3694
3574
|
|
|
3695
3575
|
public final class com/facebook/react/modules/sound/SoundManagerModule : com/facebook/fbreact/specs/NativeSoundManagerSpec {
|
|
3576
|
+
public static final field Companion Lcom/facebook/react/modules/sound/SoundManagerModule$Companion;
|
|
3577
|
+
public static final field NAME Ljava/lang/String;
|
|
3696
3578
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3697
3579
|
public fun playTouchSound ()V
|
|
3698
3580
|
}
|
|
3699
3581
|
|
|
3582
|
+
public final class com/facebook/react/modules/sound/SoundManagerModule$Companion {
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3700
3585
|
public final class com/facebook/react/modules/statusbar/StatusBarModule : com/facebook/fbreact/specs/NativeStatusBarManagerAndroidSpec {
|
|
3701
3586
|
public static final field Companion Lcom/facebook/react/modules/statusbar/StatusBarModule$Companion;
|
|
3702
3587
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3710,24 +3595,23 @@ public final class com/facebook/react/modules/statusbar/StatusBarModule : com/fa
|
|
|
3710
3595
|
public final class com/facebook/react/modules/statusbar/StatusBarModule$Companion {
|
|
3711
3596
|
}
|
|
3712
3597
|
|
|
3713
|
-
public class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
3598
|
+
public final class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
3714
3599
|
public static final field DEVICE_LOCALHOST Ljava/lang/String;
|
|
3715
3600
|
public static final field EMULATOR_LOCALHOST Ljava/lang/String;
|
|
3716
3601
|
public static final field GENYMOTION_LOCALHOST Ljava/lang/String;
|
|
3602
|
+
public static final field INSTANCE Lcom/facebook/react/modules/systeminfo/AndroidInfoHelpers;
|
|
3717
3603
|
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;
|
|
3604
|
+
public static final fun getAdbReverseTcpCommand (I)Ljava/lang/String;
|
|
3605
|
+
public static final fun getAdbReverseTcpCommand (Landroid/content/Context;)Ljava/lang/String;
|
|
3606
|
+
public static final fun getFriendlyDeviceName ()Ljava/lang/String;
|
|
3607
|
+
public static final fun getInspectorHostMetadata (Landroid/content/Context;)Ljava/util/Map;
|
|
3608
|
+
public static final fun getServerHost (I)Ljava/lang/String;
|
|
3609
|
+
public static final fun getServerHost (Landroid/content/Context;)Ljava/lang/String;
|
|
3725
3610
|
}
|
|
3726
3611
|
|
|
3727
|
-
public class com/facebook/react/modules/systeminfo/AndroidInfoModule : com/facebook/fbreact/specs/NativePlatformConstantsAndroidSpec
|
|
3612
|
+
public final class com/facebook/react/modules/systeminfo/AndroidInfoModule : com/facebook/fbreact/specs/NativePlatformConstantsAndroidSpec {
|
|
3728
3613
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3729
3614
|
public fun getAndroidID ()Ljava/lang/String;
|
|
3730
|
-
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
3731
3615
|
public fun invalidate ()V
|
|
3732
3616
|
}
|
|
3733
3617
|
|
|
@@ -3749,13 +3633,6 @@ public final class com/facebook/react/modules/toast/ToastModule : com/facebook/f
|
|
|
3749
3633
|
public final class com/facebook/react/modules/toast/ToastModule$Companion {
|
|
3750
3634
|
}
|
|
3751
3635
|
|
|
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
3636
|
public final class com/facebook/react/modules/websocket/WebSocketModule : com/facebook/fbreact/specs/NativeWebSocketModuleSpec {
|
|
3760
3637
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3761
3638
|
public fun addListener (Ljava/lang/String;)V
|
|
@@ -3845,22 +3722,6 @@ public abstract interface class com/facebook/react/packagerconnection/Responder
|
|
|
3845
3722
|
public abstract fun respond (Ljava/lang/Object;)V
|
|
3846
3723
|
}
|
|
3847
3724
|
|
|
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
3725
|
public abstract class com/facebook/react/runtime/BindingsInstaller {
|
|
3865
3726
|
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
3866
3727
|
}
|
|
@@ -3914,11 +3775,13 @@ public abstract class com/facebook/react/runtime/JSRuntimeFactory {
|
|
|
3914
3775
|
|
|
3915
3776
|
public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/ReactHost {
|
|
3916
3777
|
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
|
|
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;ZZLcom/facebook/react/devsupport/DevSupportManagerFactory;)V
|
|
3917
3779
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/runtime/ReactHostDelegate;Lcom/facebook/react/fabric/ComponentFactory;ZZ)V
|
|
3918
3780
|
public fun addBeforeDestroyListener (Lkotlin/jvm/functions/Function0;)V
|
|
3919
3781
|
public fun addReactInstanceEventListener (Lcom/facebook/react/ReactInstanceEventListener;)V
|
|
3920
3782
|
public fun createSurface (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/interfaces/fabric/ReactSurface;
|
|
3921
3783
|
public fun destroy (Ljava/lang/String;Ljava/lang/Exception;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3784
|
+
public fun destroy (Ljava/lang/String;Ljava/lang/Exception;Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
3922
3785
|
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
3923
3786
|
public fun getDevSupportManager ()Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
3924
3787
|
public fun getLifecycleState ()Lcom/facebook/react/common/LifecycleState;
|
|
@@ -3945,7 +3808,7 @@ public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/React
|
|
|
3945
3808
|
|
|
3946
3809
|
public class com/facebook/react/runtime/ReactSurfaceImpl : com/facebook/react/interfaces/fabric/ReactSurface {
|
|
3947
3810
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)V
|
|
3948
|
-
public fun attach (Lcom/facebook/react/
|
|
3811
|
+
public fun attach (Lcom/facebook/react/ReactHost;)V
|
|
3949
3812
|
public fun attachView (Lcom/facebook/react/runtime/ReactSurfaceView;)V
|
|
3950
3813
|
public fun clear ()V
|
|
3951
3814
|
public static fun createWithView (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/runtime/ReactSurfaceImpl;
|
|
@@ -3976,6 +3839,10 @@ public final class com/facebook/react/runtime/ReactSurfaceView : com/facebook/re
|
|
|
3976
3839
|
public fun setIsFabric (Z)V
|
|
3977
3840
|
}
|
|
3978
3841
|
|
|
3842
|
+
public abstract class com/facebook/react/runtime/cxxreactpackage/CxxReactPackage {
|
|
3843
|
+
protected fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
3844
|
+
}
|
|
3845
|
+
|
|
3979
3846
|
public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebook/react/runtime/JSRuntimeFactory {
|
|
3980
3847
|
public static final field Companion Lcom/facebook/react/runtime/hermes/HermesInstance$Companion;
|
|
3981
3848
|
public fun <init> ()V
|
|
@@ -3985,10 +3852,6 @@ public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebo
|
|
|
3985
3852
|
public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
|
|
3986
3853
|
}
|
|
3987
3854
|
|
|
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
3855
|
public class com/facebook/react/runtime/internal/bolts/Task : com/facebook/react/interfaces/TaskInterface {
|
|
3993
3856
|
public static final field IMMEDIATE_EXECUTOR Ljava/util/concurrent/Executor;
|
|
3994
3857
|
public static final field UI_THREAD_EXECUTOR Ljava/util/concurrent/Executor;
|
|
@@ -4022,32 +3885,22 @@ public abstract interface class com/facebook/react/runtime/internal/bolts/Task$U
|
|
|
4022
3885
|
public abstract fun unobservedException (Lcom/facebook/react/runtime/internal/bolts/Task;Lcom/facebook/react/runtime/internal/bolts/UnobservedTaskException;)V
|
|
4023
3886
|
}
|
|
4024
3887
|
|
|
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
3888
|
public final class com/facebook/react/shell/MainPackageConfig {
|
|
4037
3889
|
public fun <init> (Lcom/facebook/imagepipeline/core/ImagePipelineConfig;)V
|
|
4038
3890
|
public final fun getFrescoConfig ()Lcom/facebook/imagepipeline/core/ImagePipelineConfig;
|
|
4039
3891
|
}
|
|
4040
3892
|
|
|
4041
|
-
public class com/facebook/react/shell/MainReactPackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
3893
|
+
public final class com/facebook/react/shell/MainReactPackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
4042
3894
|
public fun <init> ()V
|
|
4043
3895
|
public fun <init> (Lcom/facebook/react/shell/MainPackageConfig;)V
|
|
3896
|
+
public synthetic fun <init> (Lcom/facebook/react/shell/MainPackageConfig;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
4044
3897
|
public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
|
|
4045
3898
|
public fun createViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
4046
3899
|
public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
|
|
4047
3900
|
public fun getReactModuleInfoProvider ()Lcom/facebook/react/module/model/ReactModuleInfoProvider;
|
|
4048
3901
|
public fun getViewManagerNames (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/Collection;
|
|
4049
3902
|
public fun getViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
4050
|
-
public fun getViewManagersMap ()Ljava/util/Map;
|
|
3903
|
+
public final fun getViewManagersMap ()Ljava/util/Map;
|
|
4051
3904
|
}
|
|
4052
3905
|
|
|
4053
3906
|
public class com/facebook/react/shell/MainReactPackage$$ReactModuleInfoProvider : com/facebook/react/module/model/ReactModuleInfoProvider {
|
|
@@ -4134,6 +3987,10 @@ public final class com/facebook/react/uimanager/BackgroundStyleApplicator {
|
|
|
4134
3987
|
public static final fun getBorderRadius (Landroid/view/View;Lcom/facebook/react/uimanager/style/BorderRadiusProp;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4135
3988
|
public static final fun getBorderStyle (Landroid/view/View;)Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
4136
3989
|
public static final fun getBorderWidth (Landroid/view/View;Lcom/facebook/react/uimanager/style/LogicalEdge;)Ljava/lang/Float;
|
|
3990
|
+
public static final fun getOutlineColor (Landroid/view/View;)Ljava/lang/Integer;
|
|
3991
|
+
public final fun getOutlineOffset (Landroid/view/View;)Ljava/lang/Float;
|
|
3992
|
+
public final fun getOutlineStyle (Landroid/view/View;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
3993
|
+
public final fun getOutlineWidth (Landroid/view/View;)Ljava/lang/Float;
|
|
4137
3994
|
public static final fun reset (Landroid/view/View;)V
|
|
4138
3995
|
public static final fun setBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4139
3996
|
public static final fun setBackgroundImage (Landroid/view/View;Ljava/util/List;)V
|
|
@@ -4144,9 +4001,13 @@ public final class com/facebook/react/uimanager/BackgroundStyleApplicator {
|
|
|
4144
4001
|
public static final fun setBoxShadow (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4145
4002
|
public static final fun setBoxShadow (Landroid/view/View;Ljava/util/List;)V
|
|
4146
4003
|
public static final fun setFeedbackUnderlay (Landroid/view/View;Landroid/graphics/drawable/Drawable;)V
|
|
4004
|
+
public static final fun setOutlineColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4005
|
+
public static final fun setOutlineOffset (Landroid/view/View;F)V
|
|
4006
|
+
public static final fun setOutlineStyle (Landroid/view/View;Lcom/facebook/react/uimanager/style/OutlineStyle;)V
|
|
4007
|
+
public static final fun setOutlineWidth (Landroid/view/View;F)V
|
|
4147
4008
|
}
|
|
4148
4009
|
|
|
4149
|
-
public abstract class com/facebook/react/uimanager/BaseViewManager : com/facebook/react/uimanager/ViewManager, android/view/View$OnLayoutChangeListener
|
|
4010
|
+
public abstract class com/facebook/react/uimanager/BaseViewManager : com/facebook/react/uimanager/ViewManager, android/view/View$OnLayoutChangeListener {
|
|
4150
4011
|
public fun <init> ()V
|
|
4151
4012
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
4152
4013
|
public fun getExportedCustomBubblingEventTypeConstants ()Ljava/util/Map;
|
|
@@ -4169,6 +4030,7 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4169
4030
|
public fun setBorderRadius (Landroid/view/View;F)V
|
|
4170
4031
|
public fun setBorderTopLeftRadius (Landroid/view/View;F)V
|
|
4171
4032
|
public fun setBorderTopRightRadius (Landroid/view/View;F)V
|
|
4033
|
+
public fun setBoxShadow (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4172
4034
|
public fun setClick (Landroid/view/View;Z)V
|
|
4173
4035
|
public fun setClickCapture (Landroid/view/View;Z)V
|
|
4174
4036
|
public fun setElevation (Landroid/view/View;F)V
|
|
@@ -4179,6 +4041,10 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4179
4041
|
public fun setMoveShouldSetResponderCapture (Landroid/view/View;Z)V
|
|
4180
4042
|
public fun setNativeId (Landroid/view/View;Ljava/lang/String;)V
|
|
4181
4043
|
public fun setOpacity (Landroid/view/View;F)V
|
|
4044
|
+
public fun setOutlineColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
4045
|
+
public fun setOutlineOffset (Landroid/view/View;F)V
|
|
4046
|
+
public fun setOutlineStyle (Landroid/view/View;Ljava/lang/String;)V
|
|
4047
|
+
public fun setOutlineWidth (Landroid/view/View;F)V
|
|
4182
4048
|
public fun setPointerEnter (Landroid/view/View;Z)V
|
|
4183
4049
|
public fun setPointerEnterCapture (Landroid/view/View;Z)V
|
|
4184
4050
|
public fun setPointerLeave (Landroid/view/View;Z)V
|
|
@@ -4221,48 +4087,12 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4221
4087
|
}
|
|
4222
4088
|
|
|
4223
4089
|
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/
|
|
4090
|
+
protected final field mViewManager Lcom/facebook/react/uimanager/BaseViewManager;
|
|
4091
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
4226
4092
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4227
4093
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4228
4094
|
}
|
|
4229
4095
|
|
|
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
4096
|
public abstract interface class com/facebook/react/uimanager/ComponentNameResolver {
|
|
4267
4097
|
public abstract fun getComponentNames ()[Ljava/lang/String;
|
|
4268
4098
|
}
|
|
@@ -4384,13 +4214,6 @@ public class com/facebook/react/uimanager/LayoutShadowNode : com/facebook/react/
|
|
|
4384
4214
|
public fun setWidth (Lcom/facebook/react/bridge/Dynamic;)V
|
|
4385
4215
|
}
|
|
4386
4216
|
|
|
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
4217
|
public final class com/facebook/react/uimanager/LengthPercentage {
|
|
4395
4218
|
public static final field Companion Lcom/facebook/react/uimanager/LengthPercentage$Companion;
|
|
4396
4219
|
public fun <init> ()V
|
|
@@ -4529,9 +4352,13 @@ public final class com/facebook/react/uimanager/PixelUtil {
|
|
|
4529
4352
|
public static final field INSTANCE Lcom/facebook/react/uimanager/PixelUtil;
|
|
4530
4353
|
public final fun dpToPx (D)F
|
|
4531
4354
|
public final fun dpToPx (F)F
|
|
4355
|
+
public final fun dpToPx (I)F
|
|
4356
|
+
public final fun dpToPx (J)F
|
|
4532
4357
|
public static final fun getDisplayMetricDensity ()F
|
|
4533
4358
|
public final fun pxToDp (D)F
|
|
4534
4359
|
public final fun pxToDp (F)F
|
|
4360
|
+
public final fun pxToDp (I)F
|
|
4361
|
+
public final fun pxToDp (J)F
|
|
4535
4362
|
public static final fun toDIPFromPixel (F)F
|
|
4536
4363
|
public static final fun toPixelFromDIP (D)F
|
|
4537
4364
|
public static final fun toPixelFromDIP (F)F
|
|
@@ -5040,13 +4867,6 @@ public class com/facebook/react/uimanager/ReactShadowNodeImpl : com/facebook/rea
|
|
|
5040
4867
|
public final fun updateProperties (Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5041
4868
|
}
|
|
5042
4869
|
|
|
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
4870
|
public abstract interface annotation class com/facebook/react/uimanager/ReactStage : java/lang/annotation/Annotation {
|
|
5051
4871
|
public static final field BRIDGE_DID_LOAD I
|
|
5052
4872
|
public static final field MODULE_DID_LOAD I
|
|
@@ -5100,13 +4920,6 @@ public final class com/facebook/react/uimanager/RootViewManager : com/facebook/r
|
|
|
5100
4920
|
public fun getName ()Ljava/lang/String;
|
|
5101
4921
|
}
|
|
5102
4922
|
|
|
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
4923
|
public final class com/facebook/react/uimanager/RootViewManager$Companion {
|
|
5111
4924
|
}
|
|
5112
4925
|
|
|
@@ -5321,7 +5134,6 @@ public class com/facebook/react/uimanager/UIManagerModule : com/facebook/react/b
|
|
|
5321
5134
|
public fun getDefaultEventTypes ()Lcom/facebook/react/bridge/WritableMap;
|
|
5322
5135
|
public fun getDirectEventNamesResolver ()Lcom/facebook/react/uimanager/UIManagerModule$CustomEventNamesResolver;
|
|
5323
5136
|
public fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5324
|
-
public synthetic fun getEventDispatcher ()Ljava/lang/Object;
|
|
5325
5137
|
public fun getName ()Ljava/lang/String;
|
|
5326
5138
|
public fun getPerformanceCounters ()Ljava/util/Map;
|
|
5327
5139
|
public fun getUIImplementation ()Lcom/facebook/react/uimanager/UIImplementation;
|
|
@@ -5651,6 +5463,10 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5651
5463
|
public static final field ON Ljava/lang/String;
|
|
5652
5464
|
public static final field ON_LAYOUT Ljava/lang/String;
|
|
5653
5465
|
public static final field OPACITY Ljava/lang/String;
|
|
5466
|
+
public static final field OUTLINE_COLOR Ljava/lang/String;
|
|
5467
|
+
public static final field OUTLINE_OFFSET Ljava/lang/String;
|
|
5468
|
+
public static final field OUTLINE_STYLE Ljava/lang/String;
|
|
5469
|
+
public static final field OUTLINE_WIDTH Ljava/lang/String;
|
|
5654
5470
|
public static final field OVERFLOW Ljava/lang/String;
|
|
5655
5471
|
public static final field PADDING Ljava/lang/String;
|
|
5656
5472
|
public static final field PADDING_BOTTOM Ljava/lang/String;
|
|
@@ -5738,11 +5554,6 @@ public final class com/facebook/react/uimanager/common/ViewUtil {
|
|
|
5738
5554
|
public static final fun isRootTag (I)Z
|
|
5739
5555
|
}
|
|
5740
5556
|
|
|
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
5557
|
public abstract interface class com/facebook/react/uimanager/events/BatchEventDispatchedListener {
|
|
5747
5558
|
public abstract fun onBatchEventDispatched ()V
|
|
5748
5559
|
}
|
|
@@ -6043,7 +5854,7 @@ public abstract interface class com/facebook/react/uimanager/layoutanimation/Lay
|
|
|
6043
5854
|
}
|
|
6044
5855
|
|
|
6045
5856
|
public final class com/facebook/react/uimanager/style/BackgroundImageLayer {
|
|
6046
|
-
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
5857
|
+
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;Landroid/content/Context;)V
|
|
6047
5858
|
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
6048
5859
|
}
|
|
6049
5860
|
|
|
@@ -6156,12 +5967,12 @@ public final class com/facebook/react/uimanager/style/BoxShadow {
|
|
|
6156
5967
|
public final fun getOffsetY ()F
|
|
6157
5968
|
public final fun getSpreadDistance ()Ljava/lang/Float;
|
|
6158
5969
|
public fun hashCode ()I
|
|
6159
|
-
public static final fun parse (Lcom/facebook/react/bridge/ReadableMap;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
5970
|
+
public static final fun parse (Lcom/facebook/react/bridge/ReadableMap;Landroid/content/Context;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6160
5971
|
public fun toString ()Ljava/lang/String;
|
|
6161
5972
|
}
|
|
6162
5973
|
|
|
6163
5974
|
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;
|
|
5975
|
+
public final fun parse (Lcom/facebook/react/bridge/ReadableMap;Landroid/content/Context;)Lcom/facebook/react/uimanager/style/BoxShadow;
|
|
6165
5976
|
}
|
|
6166
5977
|
|
|
6167
5978
|
public final class com/facebook/react/uimanager/style/ComputedBorderRadius {
|
|
@@ -6181,6 +5992,7 @@ public final class com/facebook/react/uimanager/style/ComputedBorderRadius {
|
|
|
6181
5992
|
public final fun getTopRight ()Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
6182
5993
|
public final fun hasRoundedBorders ()Z
|
|
6183
5994
|
public fun hashCode ()I
|
|
5995
|
+
public final fun isUniform ()Z
|
|
6184
5996
|
public fun toString ()Ljava/lang/String;
|
|
6185
5997
|
}
|
|
6186
5998
|
|
|
@@ -6210,11 +6022,6 @@ public final class com/facebook/react/uimanager/style/CornerRadii {
|
|
|
6210
6022
|
public fun toString ()Ljava/lang/String;
|
|
6211
6023
|
}
|
|
6212
6024
|
|
|
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
6025
|
public abstract class com/facebook/react/uimanager/style/LogicalEdge : java/lang/Enum {
|
|
6219
6026
|
public static final field ALL Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6220
6027
|
public static final field BLOCK Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
@@ -6241,6 +6048,21 @@ public final class com/facebook/react/uimanager/style/LogicalEdge$Companion {
|
|
|
6241
6048
|
public final fun fromSpacingType (I)Lcom/facebook/react/uimanager/style/LogicalEdge;
|
|
6242
6049
|
}
|
|
6243
6050
|
|
|
6051
|
+
public final class com/facebook/react/uimanager/style/OutlineStyle : java/lang/Enum {
|
|
6052
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/OutlineStyle$Companion;
|
|
6053
|
+
public static final field DASHED Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6054
|
+
public static final field DOTTED Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6055
|
+
public static final field SOLID Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6056
|
+
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6057
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6058
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6059
|
+
public static fun values ()[Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6060
|
+
}
|
|
6061
|
+
|
|
6062
|
+
public final class com/facebook/react/uimanager/style/OutlineStyle$Companion {
|
|
6063
|
+
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6064
|
+
}
|
|
6065
|
+
|
|
6244
6066
|
public final class com/facebook/react/uimanager/style/Overflow : java/lang/Enum {
|
|
6245
6067
|
public static final field Companion Lcom/facebook/react/uimanager/style/Overflow$Companion;
|
|
6246
6068
|
public static final field HIDDEN Lcom/facebook/react/uimanager/style/Overflow;
|
|
@@ -6256,15 +6078,15 @@ public final class com/facebook/react/uimanager/style/Overflow$Companion {
|
|
|
6256
6078
|
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6257
6079
|
}
|
|
6258
6080
|
|
|
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
|
|
6081
|
+
public final class com/facebook/react/uimanager/util/ReactFindViewUtil {
|
|
6082
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/util/ReactFindViewUtil;
|
|
6083
|
+
public static final fun addViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6084
|
+
public static final fun addViewsListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener;Ljava/util/Set;)V
|
|
6085
|
+
public static final fun findView (Landroid/view/View;Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6086
|
+
public static final fun findView (Landroid/view/View;Ljava/lang/String;)Landroid/view/View;
|
|
6087
|
+
public static final fun notifyViewRendered (Landroid/view/View;)V
|
|
6088
|
+
public static final fun removeViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
6089
|
+
public static final fun removeViewsListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener;)V
|
|
6268
6090
|
}
|
|
6269
6091
|
|
|
6270
6092
|
public abstract interface class com/facebook/react/uimanager/util/ReactFindViewUtil$OnMultipleViewsFoundListener {
|
|
@@ -6312,7 +6134,7 @@ public final class com/facebook/react/util/RNLog {
|
|
|
6312
6134
|
}
|
|
6313
6135
|
|
|
6314
6136
|
public class com/facebook/react/viewmanagers/ActivityIndicatorViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6315
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6137
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6316
6138
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6317
6139
|
}
|
|
6318
6140
|
|
|
@@ -6324,7 +6146,7 @@ public abstract interface class com/facebook/react/viewmanagers/ActivityIndicato
|
|
|
6324
6146
|
}
|
|
6325
6147
|
|
|
6326
6148
|
public class com/facebook/react/viewmanagers/AndroidDrawerLayoutManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6327
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6149
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6328
6150
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6329
6151
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6330
6152
|
}
|
|
@@ -6341,7 +6163,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidDrawerLay
|
|
|
6341
6163
|
}
|
|
6342
6164
|
|
|
6343
6165
|
public class com/facebook/react/viewmanagers/AndroidHorizontalScrollContentViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6344
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6166
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6345
6167
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6346
6168
|
}
|
|
6347
6169
|
|
|
@@ -6350,7 +6172,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidHorizonta
|
|
|
6350
6172
|
}
|
|
6351
6173
|
|
|
6352
6174
|
public class com/facebook/react/viewmanagers/AndroidProgressBarManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6353
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6175
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6354
6176
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6355
6177
|
}
|
|
6356
6178
|
|
|
@@ -6365,7 +6187,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidProgressB
|
|
|
6365
6187
|
}
|
|
6366
6188
|
|
|
6367
6189
|
public class com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6368
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6190
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6369
6191
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6370
6192
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6371
6193
|
}
|
|
@@ -6381,7 +6203,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidSwipeRefr
|
|
|
6381
6203
|
}
|
|
6382
6204
|
|
|
6383
6205
|
public class com/facebook/react/viewmanagers/AndroidSwitchManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6384
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6206
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6385
6207
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6386
6208
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6387
6209
|
}
|
|
@@ -6400,7 +6222,7 @@ public abstract interface class com/facebook/react/viewmanagers/AndroidSwitchMan
|
|
|
6400
6222
|
}
|
|
6401
6223
|
|
|
6402
6224
|
public class com/facebook/react/viewmanagers/DebuggingOverlayManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6403
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6225
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6404
6226
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6405
6227
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6406
6228
|
}
|
|
@@ -6412,7 +6234,7 @@ public abstract interface class com/facebook/react/viewmanagers/DebuggingOverlay
|
|
|
6412
6234
|
}
|
|
6413
6235
|
|
|
6414
6236
|
public class com/facebook/react/viewmanagers/ModalHostViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6415
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6237
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6416
6238
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6417
6239
|
}
|
|
6418
6240
|
|
|
@@ -6421,6 +6243,7 @@ public abstract interface class com/facebook/react/viewmanagers/ModalHostViewMan
|
|
|
6421
6243
|
public abstract fun setAnimationType (Landroid/view/View;Ljava/lang/String;)V
|
|
6422
6244
|
public abstract fun setHardwareAccelerated (Landroid/view/View;Z)V
|
|
6423
6245
|
public abstract fun setIdentifier (Landroid/view/View;I)V
|
|
6246
|
+
public abstract fun setNavigationBarTranslucent (Landroid/view/View;Z)V
|
|
6424
6247
|
public abstract fun setPresentationStyle (Landroid/view/View;Ljava/lang/String;)V
|
|
6425
6248
|
public abstract fun setStatusBarTranslucent (Landroid/view/View;Z)V
|
|
6426
6249
|
public abstract fun setSupportedOrientations (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
@@ -6429,7 +6252,7 @@ public abstract interface class com/facebook/react/viewmanagers/ModalHostViewMan
|
|
|
6429
6252
|
}
|
|
6430
6253
|
|
|
6431
6254
|
public class com/facebook/react/viewmanagers/SafeAreaViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6432
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6255
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6433
6256
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6434
6257
|
}
|
|
6435
6258
|
|
|
@@ -6437,7 +6260,7 @@ public abstract interface class com/facebook/react/viewmanagers/SafeAreaViewMana
|
|
|
6437
6260
|
}
|
|
6438
6261
|
|
|
6439
6262
|
public class com/facebook/react/viewmanagers/UnimplementedNativeViewManagerDelegate : com/facebook/react/uimanager/BaseViewManagerDelegate {
|
|
6440
|
-
public fun <init> (Lcom/facebook/react/uimanager/
|
|
6263
|
+
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
6441
6264
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
6442
6265
|
}
|
|
6443
6266
|
|
|
@@ -6463,24 +6286,24 @@ public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlay :
|
|
|
6463
6286
|
public final fun setTraceUpdates (Ljava/util/List;)V
|
|
6464
6287
|
}
|
|
6465
6288
|
|
|
6466
|
-
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager : com/facebook/react/uimanager/SimpleViewManager {
|
|
6289
|
+
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface {
|
|
6467
6290
|
public static final field Companion Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion;
|
|
6468
6291
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6469
6292
|
public fun <init> ()V
|
|
6293
|
+
public synthetic fun clearElementsHighlights (Landroid/view/View;)V
|
|
6294
|
+
public fun clearElementsHighlights (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;)V
|
|
6470
6295
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6471
6296
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;
|
|
6297
|
+
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6472
6298
|
public fun getName ()Ljava/lang/String;
|
|
6299
|
+
public synthetic fun highlightElements (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6300
|
+
public fun highlightElements (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6301
|
+
public synthetic fun highlightTraceUpdates (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6302
|
+
public fun highlightTraceUpdates (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6473
6303
|
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6474
6304
|
public fun receiveCommand (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6475
6305
|
}
|
|
6476
6306
|
|
|
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
6307
|
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion {
|
|
6485
6308
|
}
|
|
6486
6309
|
|
|
@@ -6542,13 +6365,6 @@ public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager : co
|
|
|
6542
6365
|
public fun setStatusBarBackgroundColor (Lcom/facebook/react/views/drawer/ReactDrawerLayout;Ljava/lang/Integer;)V
|
|
6543
6366
|
}
|
|
6544
6367
|
|
|
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
6368
|
public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager$Companion {
|
|
6553
6369
|
}
|
|
6554
6370
|
|
|
@@ -6641,6 +6457,7 @@ public final class com/facebook/react/views/image/ImageLoadEvent$Companion {
|
|
|
6641
6457
|
|
|
6642
6458
|
public final class com/facebook/react/views/image/ImageResizeMethod : java/lang/Enum {
|
|
6643
6459
|
public static final field AUTO Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6460
|
+
public static final field NONE Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6644
6461
|
public static final field RESIZE Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6645
6462
|
public static final field SCALE Lcom/facebook/react/views/image/ImageResizeMethod;
|
|
6646
6463
|
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
@@ -6689,13 +6506,10 @@ public final class com/facebook/react/views/image/ReactImageManager : com/facebo
|
|
|
6689
6506
|
public fun getName ()Ljava/lang/String;
|
|
6690
6507
|
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6691
6508
|
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
6509
|
public final fun setBlurRadius (Lcom/facebook/react/views/image/ReactImageView;F)V
|
|
6695
6510
|
public final fun setBorderColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6696
6511
|
public final fun setBorderRadius (Lcom/facebook/react/views/image/ReactImageView;IF)V
|
|
6697
6512
|
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
6513
|
public final fun setDefaultSource (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/String;)V
|
|
6700
6514
|
public final fun setFadeDuration (Lcom/facebook/react/views/image/ReactImageView;I)V
|
|
6701
6515
|
public final fun setHeaders (Lcom/facebook/react/views/image/ReactImageView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
@@ -6712,13 +6526,6 @@ public final class com/facebook/react/views/image/ReactImageManager : com/facebo
|
|
|
6712
6526
|
public final fun setTintColor (Lcom/facebook/react/views/image/ReactImageView;Ljava/lang/Integer;)V
|
|
6713
6527
|
}
|
|
6714
6528
|
|
|
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
6529
|
public final class com/facebook/react/views/image/ReactImageManager$Companion {
|
|
6723
6530
|
}
|
|
6724
6531
|
|
|
@@ -6758,8 +6565,10 @@ public final class com/facebook/react/views/imagehelper/ImageSource {
|
|
|
6758
6565
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;)V
|
|
6759
6566
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;D)V
|
|
6760
6567
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;DD)V
|
|
6761
|
-
public
|
|
6568
|
+
public fun <init> (Landroid/content/Context;Ljava/lang/String;DDLcom/facebook/react/modules/fresco/ImageCacheControl;)V
|
|
6569
|
+
public synthetic fun <init> (Landroid/content/Context;Ljava/lang/String;DDLcom/facebook/react/modules/fresco/ImageCacheControl;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6762
6570
|
public fun equals (Ljava/lang/Object;)Z
|
|
6571
|
+
public final fun getCacheControl ()Lcom/facebook/react/modules/fresco/ImageCacheControl;
|
|
6763
6572
|
public final fun getSize ()D
|
|
6764
6573
|
public final fun getSource ()Ljava/lang/String;
|
|
6765
6574
|
public static final fun getTransparentBitmapImageSource (Landroid/content/Context;)Lcom/facebook/react/views/imagehelper/ImageSource;
|
|
@@ -6791,7 +6600,6 @@ public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper
|
|
|
6791
6600
|
public final fun getResourceDrawable (Landroid/content/Context;Ljava/lang/String;)Landroid/graphics/drawable/Drawable;
|
|
6792
6601
|
public final fun getResourceDrawableId (Landroid/content/Context;Ljava/lang/String;)I
|
|
6793
6602
|
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
6603
|
}
|
|
6796
6604
|
|
|
6797
6605
|
public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper$Companion {
|
|
@@ -6799,13 +6607,6 @@ public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper
|
|
|
6799
6607
|
public final fun getInstance ()Lcom/facebook/react/views/imagehelper/ResourceDrawableIdHelper;
|
|
6800
6608
|
}
|
|
6801
6609
|
|
|
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
6610
|
public final class com/facebook/react/views/modal/ReactModalHostManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/ModalHostViewManagerInterface {
|
|
6810
6611
|
public static final field Companion Lcom/facebook/react/views/modal/ReactModalHostManager$Companion;
|
|
6811
6612
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
@@ -6826,6 +6627,8 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6826
6627
|
public fun setHardwareAccelerated (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6827
6628
|
public synthetic fun setIdentifier (Landroid/view/View;I)V
|
|
6828
6629
|
public fun setIdentifier (Lcom/facebook/react/views/modal/ReactModalHostView;I)V
|
|
6630
|
+
public synthetic fun setNavigationBarTranslucent (Landroid/view/View;Z)V
|
|
6631
|
+
public fun setNavigationBarTranslucent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6829
6632
|
public synthetic fun setPresentationStyle (Landroid/view/View;Ljava/lang/String;)V
|
|
6830
6633
|
public fun setPresentationStyle (Lcom/facebook/react/views/modal/ReactModalHostView;Ljava/lang/String;)V
|
|
6831
6634
|
public synthetic fun setStatusBarTranslucent (Landroid/view/View;Z)V
|
|
@@ -6840,13 +6643,6 @@ public final class com/facebook/react/views/modal/ReactModalHostManager : com/fa
|
|
|
6840
6643
|
public fun updateState (Lcom/facebook/react/views/modal/ReactModalHostView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6841
6644
|
}
|
|
6842
6645
|
|
|
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
6646
|
public final class com/facebook/react/views/modal/ReactModalHostManager$Companion {
|
|
6851
6647
|
}
|
|
6852
6648
|
|
|
@@ -6861,6 +6657,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6861
6657
|
public fun getChildCount ()I
|
|
6862
6658
|
public final fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
6863
6659
|
public final fun getHardwareAccelerated ()Z
|
|
6660
|
+
public final fun getNavigationBarTranslucent ()Z
|
|
6864
6661
|
public final fun getOnRequestCloseListener ()Lcom/facebook/react/views/modal/ReactModalHostView$OnRequestCloseListener;
|
|
6865
6662
|
public final fun getOnShowListener ()Landroid/content/DialogInterface$OnShowListener;
|
|
6866
6663
|
public final fun getStateWrapper ()Lcom/facebook/react/uimanager/StateWrapper;
|
|
@@ -6876,6 +6673,7 @@ public final class com/facebook/react/views/modal/ReactModalHostView : android/v
|
|
|
6876
6673
|
public final fun setEventDispatcher (Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6877
6674
|
public final fun setHardwareAccelerated (Z)V
|
|
6878
6675
|
public fun setId (I)V
|
|
6676
|
+
public final fun setNavigationBarTranslucent (Z)V
|
|
6879
6677
|
public final fun setOnRequestCloseListener (Lcom/facebook/react/views/modal/ReactModalHostView$OnRequestCloseListener;)V
|
|
6880
6678
|
public final fun setOnShowListener (Landroid/content/DialogInterface$OnShowListener;)V
|
|
6881
6679
|
public final fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
@@ -6900,100 +6698,6 @@ public abstract interface class com/facebook/react/views/modal/ReactModalHostVie
|
|
|
6900
6698
|
public abstract fun onRequestClose (Landroid/content/DialogInterface;)V
|
|
6901
6699
|
}
|
|
6902
6700
|
|
|
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
6701
|
public abstract interface class com/facebook/react/views/scroll/FpsListener {
|
|
6998
6702
|
public abstract fun disable (Ljava/lang/String;)V
|
|
6999
6703
|
public abstract fun enable (Ljava/lang/String;)V
|
|
@@ -7007,29 +6711,16 @@ public final class com/facebook/react/views/scroll/OnScrollDispatchHelper {
|
|
|
7007
6711
|
public final fun onScrollChanged (II)Z
|
|
7008
6712
|
}
|
|
7009
6713
|
|
|
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 {
|
|
6714
|
+
public final class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager : com/facebook/react/views/view/ReactViewManager {
|
|
7018
6715
|
public static final field Companion Lcom/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager$Companion;
|
|
7019
6716
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
7020
6717
|
public fun <init> ()V
|
|
6718
|
+
public synthetic fun createViewInstance (ILcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Landroid/view/View;
|
|
7021
6719
|
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/
|
|
6720
|
+
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/view/ReactViewGroup;
|
|
7023
6721
|
public fun getName ()Ljava/lang/String;
|
|
7024
6722
|
}
|
|
7025
6723
|
|
|
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
6724
|
public final class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager$Companion {
|
|
7034
6725
|
}
|
|
7035
6726
|
|
|
@@ -7086,7 +6777,6 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
7086
6777
|
public fun setBorderWidth (IF)V
|
|
7087
6778
|
public fun setDecelerationRate (F)V
|
|
7088
6779
|
public fun setDisableIntervalMomentum (Z)V
|
|
7089
|
-
public fun setEnableSyncOnScroll (Z)V
|
|
7090
6780
|
public fun setEndFillColor (I)V
|
|
7091
6781
|
public fun setLastScrollDispatchTime (J)V
|
|
7092
6782
|
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/MaintainVisibleScrollPositionHelper$Config;)V
|
|
@@ -7126,18 +6816,14 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
7126
6816
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
7127
6817
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7128
6818
|
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
6819
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;ILjava/lang/Integer;)V
|
|
7132
6820
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
7133
6821
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
7134
6822
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
7135
6823
|
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
6824
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7138
6825
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
7139
6826
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
7140
|
-
public fun setEnableSyncOnScroll (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
7141
6827
|
public fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
7142
6828
|
public fun setHorizontal (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
7143
6829
|
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
@@ -7162,13 +6848,6 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
7162
6848
|
public fun updateState (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7163
6849
|
}
|
|
7164
6850
|
|
|
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
6851
|
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
6852
|
public fun <init> (Landroid/content/Context;)V
|
|
7174
6853
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/views/scroll/FpsListener;)V
|
|
@@ -7219,7 +6898,6 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
7219
6898
|
public fun setContentOffset (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7220
6899
|
public fun setDecelerationRate (F)V
|
|
7221
6900
|
public fun setDisableIntervalMomentum (Z)V
|
|
7222
|
-
public fun setEnableSyncOnScroll (Z)V
|
|
7223
6901
|
public fun setEndFillColor (I)V
|
|
7224
6902
|
public fun setLastScrollDispatchTime (J)V
|
|
7225
6903
|
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/MaintainVisibleScrollPositionHelper$Config;)V
|
|
@@ -7243,14 +6921,21 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
7243
6921
|
public fun updateClippingRect ()V
|
|
7244
6922
|
}
|
|
7245
6923
|
|
|
7246
|
-
public class com/facebook/react/views/scroll/ReactScrollViewCommandHelper {
|
|
6924
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper {
|
|
7247
6925
|
public static final field COMMAND_FLASH_SCROLL_INDICATORS I
|
|
7248
6926
|
public static final field COMMAND_SCROLL_TO I
|
|
7249
6927
|
public static final field COMMAND_SCROLL_TO_END I
|
|
6928
|
+
public static final field Companion Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$Companion;
|
|
7250
6929
|
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
|
|
6930
|
+
public static final fun getCommandsMap ()Ljava/util/Map;
|
|
6931
|
+
public static final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
6932
|
+
public static final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6933
|
+
}
|
|
6934
|
+
|
|
6935
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$Companion {
|
|
6936
|
+
public final fun getCommandsMap ()Ljava/util/Map;
|
|
6937
|
+
public final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
6938
|
+
public final fun receiveCommand (Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler;Ljava/lang/Object;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7254
6939
|
}
|
|
7255
6940
|
|
|
7256
6941
|
public abstract interface class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler {
|
|
@@ -7259,14 +6944,16 @@ public abstract interface class com/facebook/react/views/scroll/ReactScrollViewC
|
|
|
7259
6944
|
public abstract fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7260
6945
|
}
|
|
7261
6946
|
|
|
7262
|
-
public class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData {
|
|
6947
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData {
|
|
7263
6948
|
public final field mAnimated Z
|
|
7264
6949
|
public final field mDestX I
|
|
7265
6950
|
public final field mDestY I
|
|
6951
|
+
public fun <init> (IIZ)V
|
|
7266
6952
|
}
|
|
7267
6953
|
|
|
7268
|
-
public class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData {
|
|
6954
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData {
|
|
7269
6955
|
public final field mAnimated Z
|
|
6956
|
+
public fun <init> (Z)V
|
|
7270
6957
|
}
|
|
7271
6958
|
|
|
7272
6959
|
public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
@@ -7279,7 +6966,10 @@ public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
|
7279
6966
|
public static final field SNAP_ALIGNMENT_DISABLED I
|
|
7280
6967
|
public static final field SNAP_ALIGNMENT_END I
|
|
7281
6968
|
public static final field SNAP_ALIGNMENT_START I
|
|
6969
|
+
public static final fun addLayoutChangeListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$LayoutChangeListener;)V
|
|
7282
6970
|
public static final fun addScrollListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$ScrollListener;)V
|
|
6971
|
+
public static final fun dispatchMomentumEndOnAnimationEnd (Landroid/view/ViewGroup;)V
|
|
6972
|
+
public static final fun emitLayoutChangeEvent (Landroid/view/ViewGroup;)V
|
|
7283
6973
|
public static final fun emitLayoutEvent (Landroid/view/ViewGroup;)V
|
|
7284
6974
|
public static final fun emitScrollBeginDragEvent (Landroid/view/ViewGroup;)V
|
|
7285
6975
|
public static final fun emitScrollEndDragEvent (Landroid/view/ViewGroup;FF)V
|
|
@@ -7293,12 +6983,12 @@ public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
|
7293
6983
|
public static final fun parseSnapToAlignment (Ljava/lang/String;)I
|
|
7294
6984
|
public static final fun predictFinalScrollPosition (Landroid/view/ViewGroup;IIII)Landroid/graphics/Point;
|
|
7295
6985
|
public final fun registerFlingAnimator (Landroid/view/ViewGroup;)V
|
|
6986
|
+
public static final fun removeLayoutChangeListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$LayoutChangeListener;)V
|
|
7296
6987
|
public static final fun removeScrollListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$ScrollListener;)V
|
|
7297
6988
|
public static final fun smoothScrollTo (Landroid/view/ViewGroup;II)V
|
|
7298
6989
|
public static final fun updateFabricScrollState (Landroid/view/ViewGroup;)V
|
|
7299
6990
|
public final fun updateFabricScrollState (Landroid/view/ViewGroup;II)V
|
|
7300
6991
|
public static final fun updateStateOnScrollChanged (Landroid/view/ViewGroup;FF)V
|
|
7301
|
-
public static final fun updateStateOnScrollChanged (Landroid/view/ViewGroup;FFZ)V
|
|
7302
6992
|
}
|
|
7303
6993
|
|
|
7304
6994
|
public abstract interface class com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator {
|
|
@@ -7327,12 +7017,15 @@ public abstract interface class com/facebook/react/views/scroll/ReactScrollViewH
|
|
|
7327
7017
|
public abstract fun getStateWrapper ()Lcom/facebook/react/uimanager/StateWrapper;
|
|
7328
7018
|
}
|
|
7329
7019
|
|
|
7020
|
+
public abstract interface class com/facebook/react/views/scroll/ReactScrollViewHelper$LayoutChangeListener {
|
|
7021
|
+
public abstract fun onLayoutChange (Landroid/view/ViewGroup;)V
|
|
7022
|
+
}
|
|
7023
|
+
|
|
7330
7024
|
public final class com/facebook/react/views/scroll/ReactScrollViewHelper$ReactScrollViewScrollState {
|
|
7331
|
-
public fun <init> (
|
|
7025
|
+
public fun <init> ()V
|
|
7332
7026
|
public final fun getDecelerationRate ()F
|
|
7333
7027
|
public final fun getFinalAnimatedPositionScroll ()Landroid/graphics/Point;
|
|
7334
7028
|
public final fun getLastStateUpdateScroll ()Landroid/graphics/Point;
|
|
7335
|
-
public final fun getLayoutDirection ()I
|
|
7336
7029
|
public final fun getScrollAwayPaddingTop ()I
|
|
7337
7030
|
public final fun isCanceled ()Z
|
|
7338
7031
|
public final fun isFinished ()Z
|
|
@@ -7369,18 +7062,14 @@ public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebo
|
|
|
7369
7062
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
7370
7063
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7371
7064
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
7372
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7373
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7374
7065
|
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactScrollView;ILjava/lang/Integer;)V
|
|
7375
7066
|
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7376
7067
|
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
7377
7068
|
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
7378
7069
|
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7379
|
-
public fun setBoxShadow (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7380
7070
|
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
7381
7071
|
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
7382
7072
|
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
7383
|
-
public fun setEnableSyncOnScroll (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
7384
7073
|
public fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
7385
7074
|
public fun setHorizontal (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
7386
7075
|
public fun setIsInvertedVirtualizedList (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
@@ -7406,24 +7095,17 @@ public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebo
|
|
|
7406
7095
|
public fun updateState (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7407
7096
|
}
|
|
7408
7097
|
|
|
7409
|
-
public class com/facebook/react/views/scroll/ReactScrollViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7410
|
-
public fun <init> ()V
|
|
7411
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7412
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7413
|
-
public fun setProperty (Lcom/facebook/react/views/scroll/ReactScrollViewManager;Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7414
|
-
}
|
|
7415
|
-
|
|
7416
7098
|
public final class com/facebook/react/views/scroll/ScrollEvent : com/facebook/react/uimanager/events/Event {
|
|
7417
7099
|
public static final field Companion Lcom/facebook/react/views/scroll/ScrollEvent$Companion;
|
|
7418
7100
|
public fun canCoalesce ()Z
|
|
7419
7101
|
public fun getEventName ()Ljava/lang/String;
|
|
7420
|
-
public static final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;
|
|
7102
|
+
public static final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7421
7103
|
public static final fun obtain (ILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7422
7104
|
public fun onDispose ()V
|
|
7423
7105
|
}
|
|
7424
7106
|
|
|
7425
7107
|
public final class com/facebook/react/views/scroll/ScrollEvent$Companion {
|
|
7426
|
-
public final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;
|
|
7108
|
+
public final fun obtain (IILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7427
7109
|
public final fun obtain (ILcom/facebook/react/views/scroll/ScrollEventType;FFFFIIII)Lcom/facebook/react/views/scroll/ScrollEvent;
|
|
7428
7110
|
}
|
|
7429
7111
|
|
|
@@ -7444,55 +7126,17 @@ public final class com/facebook/react/views/scroll/ScrollEventType$Companion {
|
|
|
7444
7126
|
public final fun getJSEventName (Lcom/facebook/react/views/scroll/ScrollEventType;)Ljava/lang/String;
|
|
7445
7127
|
}
|
|
7446
7128
|
|
|
7447
|
-
public class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout : androidx/swiperefreshlayout/widget/SwipeRefreshLayout {
|
|
7129
|
+
public final class com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout : androidx/swiperefreshlayout/widget/SwipeRefreshLayout {
|
|
7448
7130
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
7449
7131
|
public fun canChildScrollUp ()Z
|
|
7450
7132
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
7451
7133
|
public fun onLayout (ZIIII)V
|
|
7452
7134
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
7453
7135
|
public fun requestDisallowInterceptTouchEvent (Z)V
|
|
7454
|
-
public fun setProgressViewOffset (F)V
|
|
7136
|
+
public final fun setProgressViewOffset (F)V
|
|
7455
7137
|
public fun setRefreshing (Z)V
|
|
7456
7138
|
}
|
|
7457
7139
|
|
|
7458
|
-
public class com/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/viewmanagers/AndroidSwipeRefreshLayoutManagerInterface {
|
|
7459
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
7460
|
-
public fun <init> ()V
|
|
7461
|
-
protected synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
7462
|
-
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;)V
|
|
7463
|
-
protected synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7464
|
-
protected fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;
|
|
7465
|
-
protected fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
7466
|
-
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
7467
|
-
public fun getExportedViewConstants ()Ljava/util/Map;
|
|
7468
|
-
public fun getName ()Ljava/lang/String;
|
|
7469
|
-
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7470
|
-
public fun receiveCommand (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7471
|
-
public synthetic fun setColors (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7472
|
-
public fun setColors (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7473
|
-
public synthetic fun setEnabled (Landroid/view/View;Z)V
|
|
7474
|
-
public fun setEnabled (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Z)V
|
|
7475
|
-
public synthetic fun setNativeRefreshing (Landroid/view/View;Z)V
|
|
7476
|
-
public fun setNativeRefreshing (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Z)V
|
|
7477
|
-
public synthetic fun setProgressBackgroundColor (Landroid/view/View;Ljava/lang/Integer;)V
|
|
7478
|
-
public fun setProgressBackgroundColor (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/Integer;)V
|
|
7479
|
-
public synthetic fun setProgressViewOffset (Landroid/view/View;F)V
|
|
7480
|
-
public fun setProgressViewOffset (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;F)V
|
|
7481
|
-
public synthetic fun setRefreshing (Landroid/view/View;Z)V
|
|
7482
|
-
public fun setRefreshing (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Z)V
|
|
7483
|
-
public synthetic fun setSize (Landroid/view/View;Ljava/lang/String;)V
|
|
7484
|
-
public fun setSize (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;I)V
|
|
7485
|
-
public fun setSize (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Lcom/facebook/react/bridge/Dynamic;)V
|
|
7486
|
-
public fun setSize (Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/String;)V
|
|
7487
|
-
}
|
|
7488
|
-
|
|
7489
|
-
public class com/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7490
|
-
public fun <init> ()V
|
|
7491
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7492
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7493
|
-
public fun setProperty (Lcom/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager;Lcom/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7494
|
-
}
|
|
7495
|
-
|
|
7496
7140
|
public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/AndroidSwitchManagerInterface {
|
|
7497
7141
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
7498
7142
|
public fun <init> ()V
|
|
@@ -7508,6 +7152,8 @@ public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebo
|
|
|
7508
7152
|
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
|
|
7509
7153
|
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7510
7154
|
public fun receiveCommand (Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7155
|
+
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
7156
|
+
public fun setBackgroundColor (Lcom/facebook/react/views/switchview/ReactSwitch;I)V
|
|
7511
7157
|
public synthetic fun setDisabled (Landroid/view/View;Z)V
|
|
7512
7158
|
public fun setDisabled (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7513
7159
|
public synthetic fun setEnabled (Landroid/view/View;Z)V
|
|
@@ -7530,20 +7176,6 @@ public class com/facebook/react/views/switchview/ReactSwitchManager : com/facebo
|
|
|
7530
7176
|
public fun setValue (Lcom/facebook/react/views/switchview/ReactSwitch;Z)V
|
|
7531
7177
|
}
|
|
7532
7178
|
|
|
7533
|
-
public class com/facebook/react/views/switchview/ReactSwitchManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7534
|
-
public fun <init> ()V
|
|
7535
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7536
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7537
|
-
public fun setProperty (Lcom/facebook/react/views/switchview/ReactSwitchManager;Lcom/facebook/react/views/switchview/ReactSwitch;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7538
|
-
}
|
|
7539
|
-
|
|
7540
|
-
public class com/facebook/react/views/switchview/ReactSwitchManager$ReactSwitchShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
7541
|
-
public fun <init> ()V
|
|
7542
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7543
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7544
|
-
public fun setProperty (Lcom/facebook/react/views/switchview/ReactSwitchManager$ReactSwitchShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7545
|
-
}
|
|
7546
|
-
|
|
7547
7179
|
public final class com/facebook/react/views/text/DefaultStyleValuesUtil {
|
|
7548
7180
|
public static final field INSTANCE Lcom/facebook/react/views/text/DefaultStyleValuesUtil;
|
|
7549
7181
|
public static final fun getDefaultTextColor (Landroid/content/Context;)Landroid/content/res/ColorStateList;
|
|
@@ -7551,9 +7183,9 @@ public final class com/facebook/react/views/text/DefaultStyleValuesUtil {
|
|
|
7551
7183
|
public static final fun getDefaultTextColorHint (Landroid/content/Context;)Landroid/content/res/ColorStateList;
|
|
7552
7184
|
}
|
|
7553
7185
|
|
|
7554
|
-
public class com/facebook/react/views/text/FontMetricsUtil {
|
|
7555
|
-
public
|
|
7556
|
-
public static fun getFontMetrics (Ljava/lang/CharSequence;Landroid/text/Layout;Landroid/text/TextPaint;Landroid/content/Context;)Lcom/facebook/react/bridge/WritableArray;
|
|
7186
|
+
public final class com/facebook/react/views/text/FontMetricsUtil {
|
|
7187
|
+
public static final field INSTANCE Lcom/facebook/react/views/text/FontMetricsUtil;
|
|
7188
|
+
public static final fun getFontMetrics (Ljava/lang/CharSequence;Landroid/text/Layout;Landroid/text/TextPaint;Landroid/content/Context;)Lcom/facebook/react/bridge/WritableArray;
|
|
7557
7189
|
}
|
|
7558
7190
|
|
|
7559
7191
|
public abstract class com/facebook/react/views/text/ReactBaseTextShadowNode : com/facebook/react/uimanager/LayoutShadowNode {
|
|
@@ -7621,17 +7253,24 @@ public abstract class com/facebook/react/views/text/ReactBaseTextShadowNode : co
|
|
|
7621
7253
|
protected fun spannedFromShadowNode (Lcom/facebook/react/views/text/ReactBaseTextShadowNode;Ljava/lang/String;ZLcom/facebook/react/uimanager/NativeViewHierarchyOptimizer;)Landroid/text/Spannable;
|
|
7622
7254
|
}
|
|
7623
7255
|
|
|
7624
|
-
public class com/facebook/react/views/text/ReactFontManager {
|
|
7625
|
-
public
|
|
7626
|
-
public fun
|
|
7627
|
-
public
|
|
7628
|
-
public fun
|
|
7629
|
-
public fun
|
|
7630
|
-
public fun getTypeface (Ljava/lang/String;
|
|
7631
|
-
public fun
|
|
7256
|
+
public final class com/facebook/react/views/text/ReactFontManager {
|
|
7257
|
+
public static final field Companion Lcom/facebook/react/views/text/ReactFontManager$Companion;
|
|
7258
|
+
public synthetic fun <init> (Lcom/facebook/react/common/assets/ReactFontManager;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
7259
|
+
public final fun addCustomFont (Landroid/content/Context;Ljava/lang/String;I)V
|
|
7260
|
+
public final fun addCustomFont (Ljava/lang/String;Landroid/graphics/Typeface;)V
|
|
7261
|
+
public static final fun getInstance ()Lcom/facebook/react/views/text/ReactFontManager;
|
|
7262
|
+
public final fun getTypeface (Ljava/lang/String;IILandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7263
|
+
public final fun getTypeface (Ljava/lang/String;ILandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7264
|
+
public final fun getTypeface (Ljava/lang/String;IZLandroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7265
|
+
public final fun setTypeface (Ljava/lang/String;ILandroid/graphics/Typeface;)V
|
|
7632
7266
|
}
|
|
7633
7267
|
|
|
7634
|
-
public class com/facebook/react/views/text/
|
|
7268
|
+
public final class com/facebook/react/views/text/ReactFontManager$Companion {
|
|
7269
|
+
public final fun getInstance ()Lcom/facebook/react/views/text/ReactFontManager;
|
|
7270
|
+
}
|
|
7271
|
+
|
|
7272
|
+
public final class com/facebook/react/views/text/ReactRawTextManager : com/facebook/react/uimanager/ViewManager {
|
|
7273
|
+
public static final field REACT_CLASS Ljava/lang/String;
|
|
7635
7274
|
public fun <init> ()V
|
|
7636
7275
|
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7637
7276
|
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/ReactRawTextShadowNode;
|
|
@@ -7639,17 +7278,9 @@ public class com/facebook/react/views/text/ReactRawTextManager : com/facebook/re
|
|
|
7639
7278
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/text/ReactTextView;
|
|
7640
7279
|
public fun getName ()Ljava/lang/String;
|
|
7641
7280
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7642
|
-
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
7643
7281
|
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7644
7282
|
}
|
|
7645
7283
|
|
|
7646
|
-
public class com/facebook/react/views/text/ReactRawTextManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7647
|
-
public fun <init> ()V
|
|
7648
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7649
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7650
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactRawTextManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7651
|
-
}
|
|
7652
|
-
|
|
7653
7284
|
public class com/facebook/react/views/text/ReactRawTextShadowNode : com/facebook/react/uimanager/ReactShadowNodeImpl {
|
|
7654
7285
|
public fun <init> ()V
|
|
7655
7286
|
public fun getText ()Ljava/lang/String;
|
|
@@ -7658,24 +7289,15 @@ public class com/facebook/react/views/text/ReactRawTextShadowNode : com/facebook
|
|
|
7658
7289
|
public fun toString ()Ljava/lang/String;
|
|
7659
7290
|
}
|
|
7660
7291
|
|
|
7661
|
-
public class com/facebook/react/views/text/ReactRawTextShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
7662
|
-
public fun <init> ()V
|
|
7663
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7664
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7665
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactRawTextShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7666
|
-
}
|
|
7667
|
-
|
|
7668
7292
|
public abstract class com/facebook/react/views/text/ReactTextAnchorViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
7669
7293
|
public fun <init> ()V
|
|
7670
7294
|
public fun setAccessible (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7671
7295
|
public fun setAdjustFontSizeToFit (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7672
7296
|
public fun setAndroidHyphenationFrequency (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7673
|
-
public fun setBackgroundColor (Landroid/view/View;I)V
|
|
7674
7297
|
public fun setBorderColor (Lcom/facebook/react/views/text/ReactTextView;ILjava/lang/Integer;)V
|
|
7675
7298
|
public fun setBorderRadius (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7676
7299
|
public fun setBorderStyle (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7677
7300
|
public fun setBorderWidth (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
7678
|
-
public fun setBoxShadow (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7679
7301
|
public fun setDataDetectorType (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
7680
7302
|
public fun setDisabled (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
7681
7303
|
public fun setEllipsizeMode (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
@@ -7701,28 +7323,27 @@ public class com/facebook/react/views/text/ReactTextShadowNode : com/facebook/re
|
|
|
7701
7323
|
public fun setShouldNotifyOnTextLayout (Z)V
|
|
7702
7324
|
}
|
|
7703
7325
|
|
|
7704
|
-
public class com/facebook/react/views/text/
|
|
7705
|
-
public
|
|
7706
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7707
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7708
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactTextShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7709
|
-
}
|
|
7710
|
-
|
|
7711
|
-
public class com/facebook/react/views/text/ReactTextUpdate {
|
|
7326
|
+
public final class com/facebook/react/views/text/ReactTextUpdate {
|
|
7327
|
+
public static final field Companion Lcom/facebook/react/views/text/ReactTextUpdate$Companion;
|
|
7712
7328
|
public fun <init> (Landroid/text/Spannable;IZFFFFI)V
|
|
7713
7329
|
public fun <init> (Landroid/text/Spannable;IZFFFFIII)V
|
|
7714
7330
|
public fun <init> (Landroid/text/Spannable;IZIII)V
|
|
7715
|
-
public static fun buildReactTextUpdateFromState (Landroid/text/Spannable;IIII)Lcom/facebook/react/views/text/ReactTextUpdate;
|
|
7716
|
-
public fun containsImages ()Z
|
|
7717
|
-
public fun
|
|
7718
|
-
public fun
|
|
7719
|
-
public fun
|
|
7720
|
-
public fun
|
|
7721
|
-
public fun
|
|
7722
|
-
public fun
|
|
7723
|
-
public fun
|
|
7724
|
-
public fun
|
|
7725
|
-
public fun
|
|
7331
|
+
public static final fun buildReactTextUpdateFromState (Landroid/text/Spannable;IIII)Lcom/facebook/react/views/text/ReactTextUpdate;
|
|
7332
|
+
public final fun containsImages ()Z
|
|
7333
|
+
public final fun getContainsImages ()Z
|
|
7334
|
+
public final fun getJsEventCounter ()I
|
|
7335
|
+
public final fun getJustificationMode ()I
|
|
7336
|
+
public final fun getPaddingBottom ()F
|
|
7337
|
+
public final fun getPaddingLeft ()F
|
|
7338
|
+
public final fun getPaddingRight ()F
|
|
7339
|
+
public final fun getPaddingTop ()F
|
|
7340
|
+
public final fun getText ()Landroid/text/Spannable;
|
|
7341
|
+
public final fun getTextAlign ()I
|
|
7342
|
+
public final fun getTextBreakStrategy ()I
|
|
7343
|
+
}
|
|
7344
|
+
|
|
7345
|
+
public final class com/facebook/react/views/text/ReactTextUpdate$Companion {
|
|
7346
|
+
public final fun buildReactTextUpdateFromState (Landroid/text/Spannable;IIII)Lcom/facebook/react/views/text/ReactTextUpdate;
|
|
7726
7347
|
}
|
|
7727
7348
|
|
|
7728
7349
|
public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/widget/AppCompatTextView, com/facebook/react/uimanager/ReactCompoundView {
|
|
@@ -7791,52 +7412,16 @@ public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/r
|
|
|
7791
7412
|
public fun updateState (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7792
7413
|
}
|
|
7793
7414
|
|
|
7794
|
-
public class com/facebook/react/views/text/ReactTextViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7795
|
-
public fun <init> ()V
|
|
7796
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7797
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7798
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactTextViewManager;Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7799
|
-
}
|
|
7800
|
-
|
|
7801
7415
|
public abstract interface class com/facebook/react/views/text/ReactTextViewManagerCallback {
|
|
7802
7416
|
public abstract fun onPostProcessSpannable (Landroid/text/Spannable;)V
|
|
7803
7417
|
}
|
|
7804
7418
|
|
|
7805
|
-
public class com/facebook/react/views/text/ReactTypefaceUtils {
|
|
7806
|
-
public
|
|
7807
|
-
public static fun applyStyles (Landroid/graphics/Typeface;IILjava/lang/String;Landroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7808
|
-
public static fun parseFontStyle (Ljava/lang/String;)I
|
|
7809
|
-
public static fun parseFontVariant (Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
|
|
7810
|
-
public static fun parseFontWeight (Ljava/lang/String;)I
|
|
7811
|
-
}
|
|
7812
|
-
|
|
7813
|
-
public class com/facebook/react/views/text/ReactVirtualTextShadowNode : com/facebook/react/views/text/ReactBaseTextShadowNode {
|
|
7814
|
-
public fun <init> ()V
|
|
7815
|
-
public fun isVirtual ()Z
|
|
7816
|
-
}
|
|
7817
|
-
|
|
7818
|
-
public class com/facebook/react/views/text/ReactVirtualTextShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
7819
|
-
public fun <init> ()V
|
|
7820
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7821
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7822
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactVirtualTextShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7823
|
-
}
|
|
7824
|
-
|
|
7825
|
-
public class com/facebook/react/views/text/ReactVirtualTextViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
7826
|
-
public fun <init> ()V
|
|
7827
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7828
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/ReactVirtualTextShadowNode;
|
|
7829
|
-
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7830
|
-
public fun getName ()Ljava/lang/String;
|
|
7831
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7832
|
-
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7833
|
-
}
|
|
7834
|
-
|
|
7835
|
-
public class com/facebook/react/views/text/ReactVirtualTextViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
7836
|
-
public fun <init> ()V
|
|
7837
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
7838
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7839
|
-
public fun setProperty (Lcom/facebook/react/views/text/ReactVirtualTextViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7419
|
+
public final class com/facebook/react/views/text/ReactTypefaceUtils {
|
|
7420
|
+
public static final field INSTANCE Lcom/facebook/react/views/text/ReactTypefaceUtils;
|
|
7421
|
+
public static final fun applyStyles (Landroid/graphics/Typeface;IILjava/lang/String;Landroid/content/res/AssetManager;)Landroid/graphics/Typeface;
|
|
7422
|
+
public static final fun parseFontStyle (Ljava/lang/String;)I
|
|
7423
|
+
public static final fun parseFontVariant (Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
|
|
7424
|
+
public static final fun parseFontWeight (Ljava/lang/String;)I
|
|
7840
7425
|
}
|
|
7841
7426
|
|
|
7842
7427
|
public class com/facebook/react/views/text/TextAttributeProps {
|
|
@@ -7955,6 +7540,7 @@ public class com/facebook/react/views/text/TextAttributes {
|
|
|
7955
7540
|
}
|
|
7956
7541
|
|
|
7957
7542
|
public class com/facebook/react/views/text/TextLayoutManager {
|
|
7543
|
+
public static final field AS_KEY_BASE_ATTRIBUTES S
|
|
7958
7544
|
public static final field AS_KEY_CACHE_ID S
|
|
7959
7545
|
public static final field AS_KEY_FRAGMENTS S
|
|
7960
7546
|
public static final field AS_KEY_HASH S
|
|
@@ -7974,11 +7560,8 @@ public class com/facebook/react/views/text/TextLayoutManager {
|
|
|
7974
7560
|
public static final field PA_KEY_MINIMUM_FONT_SIZE S
|
|
7975
7561
|
public static final field PA_KEY_TEXT_BREAK_STRATEGY S
|
|
7976
7562
|
public fun <init> ()V
|
|
7977
|
-
public static fun adjustSpannableFontToFit (Landroid/text/Spannable;FLcom/facebook/yoga/YogaMeasureMode;FLcom/facebook/yoga/YogaMeasureMode;DIZIILandroid/text/Layout$Alignment;)V
|
|
7978
|
-
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;
|
|
7979
7563
|
public static fun deleteCachedSpannableForTag (I)V
|
|
7980
7564
|
public static fun getOrCreateSpannableForText (Landroid/content/Context;Lcom/facebook/react/common/mapbuffer/MapBuffer;Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Landroid/text/Spannable;
|
|
7981
|
-
public static fun getTextAlignment (Lcom/facebook/react/common/mapbuffer/MapBuffer;Landroid/text/Spannable;)Landroid/text/Layout$Alignment;
|
|
7982
7565
|
public static fun getTextGravity (Lcom/facebook/react/common/mapbuffer/MapBuffer;Landroid/text/Spannable;I)I
|
|
7983
7566
|
public static fun isRTL (Lcom/facebook/react/common/mapbuffer/MapBuffer;)Z
|
|
7984
7567
|
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;
|
|
@@ -7988,20 +7571,23 @@ public class com/facebook/react/views/text/TextLayoutManager {
|
|
|
7988
7571
|
|
|
7989
7572
|
public final class com/facebook/react/views/text/TextTransform : java/lang/Enum {
|
|
7990
7573
|
public static final field CAPITALIZE Lcom/facebook/react/views/text/TextTransform;
|
|
7574
|
+
public static final field Companion Lcom/facebook/react/views/text/TextTransform$Companion;
|
|
7991
7575
|
public static final field LOWERCASE Lcom/facebook/react/views/text/TextTransform;
|
|
7992
7576
|
public static final field NONE Lcom/facebook/react/views/text/TextTransform;
|
|
7993
7577
|
public static final field UNSET Lcom/facebook/react/views/text/TextTransform;
|
|
7994
7578
|
public static final field UPPERCASE Lcom/facebook/react/views/text/TextTransform;
|
|
7995
|
-
public static fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7579
|
+
public static final fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7580
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
7996
7581
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/views/text/TextTransform;
|
|
7997
7582
|
public static fun values ()[Lcom/facebook/react/views/text/TextTransform;
|
|
7998
7583
|
}
|
|
7999
7584
|
|
|
8000
|
-
public class com/facebook/react/views/text/
|
|
8001
|
-
public fun
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
7585
|
+
public final class com/facebook/react/views/text/TextTransform$Companion {
|
|
7586
|
+
public final fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7587
|
+
}
|
|
7588
|
+
|
|
7589
|
+
public final class com/facebook/react/views/text/TextTransformKt {
|
|
7590
|
+
public static final fun applyTextTransform (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
8005
7591
|
}
|
|
8006
7592
|
|
|
8007
7593
|
public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
@@ -8016,13 +7602,6 @@ public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInl
|
|
|
8016
7602
|
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
8017
7603
|
}
|
|
8018
7604
|
|
|
8019
|
-
public class com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
8020
|
-
public fun <init> ()V
|
|
8021
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8022
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8023
|
-
public fun setProperty (Lcom/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8024
|
-
}
|
|
8025
|
-
|
|
8026
7605
|
public abstract interface class com/facebook/react/views/textinput/ContentSizeWatcher {
|
|
8027
7606
|
public abstract fun onLayout ()V
|
|
8028
7607
|
}
|
|
@@ -8156,13 +7735,10 @@ public class com/facebook/react/views/textinput/ReactTextInputManager : com/face
|
|
|
8156
7735
|
public fun setAutoCapitalize (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/Dynamic;)V
|
|
8157
7736
|
public fun setAutoCorrect (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Boolean;)V
|
|
8158
7737
|
public fun setAutoFocus (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
8159
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8160
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/textinput/ReactEditText;I)V
|
|
8161
7738
|
public fun setBorderColor (Lcom/facebook/react/views/textinput/ReactEditText;ILjava/lang/Integer;)V
|
|
8162
7739
|
public fun setBorderRadius (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
8163
7740
|
public fun setBorderStyle (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
8164
7741
|
public fun setBorderWidth (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
8165
|
-
public fun setBoxShadow (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8166
7742
|
public fun setCaretHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
8167
7743
|
public fun setColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
8168
7744
|
public fun setContextMenuHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
@@ -8213,48 +7789,10 @@ public class com/facebook/react/views/textinput/ReactTextInputManager : com/face
|
|
|
8213
7789
|
public fun updateState (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
8214
7790
|
}
|
|
8215
7791
|
|
|
8216
|
-
public class com/facebook/react/views/textinput/ReactTextInputManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
8217
|
-
public fun <init> ()V
|
|
8218
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8219
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8220
|
-
public fun setProperty (Lcom/facebook/react/views/textinput/ReactTextInputManager;Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8221
|
-
}
|
|
8222
|
-
|
|
8223
|
-
public class com/facebook/react/views/textinput/ReactTextInputShadowNode$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ShadowNodeSetter {
|
|
8224
|
-
public fun <init> ()V
|
|
8225
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8226
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ReactShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8227
|
-
public fun setProperty (Lcom/facebook/react/views/textinput/ReactTextInputShadowNode;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8228
|
-
}
|
|
8229
|
-
|
|
8230
7792
|
public abstract interface class com/facebook/react/views/textinput/ScrollWatcher {
|
|
8231
7793
|
public abstract fun onScrollChanged (IIII)V
|
|
8232
7794
|
}
|
|
8233
7795
|
|
|
8234
|
-
public final class com/facebook/react/views/unimplementedview/ReactUnimplementedView : android/widget/LinearLayout {
|
|
8235
|
-
public fun <init> (Landroid/content/Context;)V
|
|
8236
|
-
public final fun setName (Ljava/lang/String;)V
|
|
8237
|
-
}
|
|
8238
|
-
|
|
8239
|
-
public final class com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager : com/facebook/react/uimanager/ViewGroupManager {
|
|
8240
|
-
public static final field Companion Lcom/facebook/react/views/unimplementedview/ReactUnimplementedViewManager$Companion;
|
|
8241
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
8242
|
-
public fun <init> ()V
|
|
8243
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
8244
|
-
public fun getName ()Ljava/lang/String;
|
|
8245
|
-
public final fun setName (Lcom/facebook/react/views/unimplementedview/ReactUnimplementedView;Ljava/lang/String;)V
|
|
8246
|
-
}
|
|
8247
|
-
|
|
8248
|
-
public class com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager$$PropsSetter : com/facebook/react/uimanager/ViewManagerPropertyUpdater$ViewManagerSetter {
|
|
8249
|
-
public fun <init> ()V
|
|
8250
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8251
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8252
|
-
public fun setProperty (Lcom/facebook/react/views/unimplementedview/ReactUnimplementedViewManager;Lcom/facebook/react/views/unimplementedview/ReactUnimplementedView;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8253
|
-
}
|
|
8254
|
-
|
|
8255
|
-
public final class com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager$Companion {
|
|
8256
|
-
}
|
|
8257
|
-
|
|
8258
7796
|
public final class com/facebook/react/views/view/ColorUtil {
|
|
8259
7797
|
public static final field INSTANCE Lcom/facebook/react/views/view/ColorUtil;
|
|
8260
7798
|
public static final fun normalize (DDDD)I
|
|
@@ -8289,14 +7827,8 @@ public class com/facebook/react/views/view/ReactDrawableHelper {
|
|
|
8289
7827
|
public static fun createDrawableFromJSDescription (Landroid/content/Context;Lcom/facebook/react/bridge/ReadableMap;)Landroid/graphics/drawable/Drawable;
|
|
8290
7828
|
}
|
|
8291
7829
|
|
|
8292
|
-
public class com/facebook/react/views/view/ReactViewBackgroundDrawable : com/facebook/react/uimanager/drawable/CSSBackgroundDrawable {
|
|
8293
|
-
public fun <init> (Landroid/content/Context;)V
|
|
8294
|
-
}
|
|
8295
|
-
|
|
8296
7830
|
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 {
|
|
8297
7831
|
public fun <init> (Landroid/content/Context;)V
|
|
8298
|
-
public fun addView (Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
|
|
8299
|
-
protected fun addViewInLayout (Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;Z)Z
|
|
8300
7832
|
protected fun dispatchDraw (Landroid/graphics/Canvas;)V
|
|
8301
7833
|
public fun dispatchGenericMotionEvent (Landroid/view/MotionEvent;)Z
|
|
8302
7834
|
public fun dispatchProvideStructure (Landroid/view/ViewStructure;)V
|
|
@@ -8304,7 +7836,6 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
8304
7836
|
public fun draw (Landroid/graphics/Canvas;)V
|
|
8305
7837
|
protected fun drawChild (Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
|
8306
7838
|
protected fun getChildDrawingOrder (II)I
|
|
8307
|
-
public fun getChildVisibleRect (Landroid/view/View;Landroid/graphics/Rect;Landroid/graphics/Point;)Z
|
|
8308
7839
|
public fun getClippingRect (Landroid/graphics/Rect;)V
|
|
8309
7840
|
public fun getHitSlopRect ()Landroid/graphics/Rect;
|
|
8310
7841
|
public fun getOverflow ()Ljava/lang/String;
|
|
@@ -8314,16 +7845,14 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
8314
7845
|
public fun getZIndexMappedChildIndex (I)I
|
|
8315
7846
|
public fun hasOverlappingRendering ()Z
|
|
8316
7847
|
protected fun onAttachedToWindow ()V
|
|
7848
|
+
public fun onHoverEvent (Landroid/view/MotionEvent;)Z
|
|
8317
7849
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
8318
7850
|
protected fun onLayout (ZIIII)V
|
|
8319
7851
|
protected fun onMeasure (II)V
|
|
8320
7852
|
protected fun onSizeChanged (IIII)V
|
|
8321
7853
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
8322
|
-
public fun
|
|
8323
|
-
public fun
|
|
8324
|
-
public fun removeViewInLayout (Landroid/view/View;)V
|
|
8325
|
-
public fun removeViews (II)V
|
|
8326
|
-
public fun removeViewsInLayout (II)V
|
|
7854
|
+
public fun onViewAdded (Landroid/view/View;)V
|
|
7855
|
+
public fun onViewRemoved (Landroid/view/View;)V
|
|
8327
7856
|
public fun requestLayout ()V
|
|
8328
7857
|
public fun setBackfaceVisibility (Ljava/lang/String;)V
|
|
8329
7858
|
public fun setBackfaceVisibilityDependantOpacity ()V
|
|
@@ -8348,6 +7877,8 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
8348
7877
|
}
|
|
8349
7878
|
|
|
8350
7879
|
public class com/facebook/react/views/view/ReactViewManager : com/facebook/react/views/view/ReactClippingViewManager {
|
|
7880
|
+
public static final field Companion Lcom/facebook/react/views/view/ReactViewManager$Companion;
|
|
7881
|
+
public static final field REACT_CLASS Ljava/lang/String;
|
|
8351
7882
|
public fun <init> ()V
|
|
8352
7883
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
8353
7884
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/view/ReactViewGroup;
|
|
@@ -8358,7 +7889,7 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8358
7889
|
public fun nextFocusLeft (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8359
7890
|
public fun nextFocusRight (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8360
7891
|
public fun nextFocusUp (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8361
|
-
|
|
7892
|
+
public synthetic fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
|
|
8362
7893
|
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/view/ReactViewGroup;)Lcom/facebook/react/views/view/ReactViewGroup;
|
|
8363
7894
|
public synthetic fun receiveCommand (Landroid/view/View;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
8364
7895
|
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
@@ -8366,15 +7897,12 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8366
7897
|
public fun receiveCommand (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8367
7898
|
public fun setAccessible (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8368
7899
|
public fun setBackfaceVisibility (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8369
|
-
public synthetic fun setBackgroundColor (Landroid/view/View;I)V
|
|
8370
|
-
public fun setBackgroundColor (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
8371
7900
|
public fun setBackgroundImage (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8372
7901
|
public fun setBorderColor (Lcom/facebook/react/views/view/ReactViewGroup;ILjava/lang/Integer;)V
|
|
8373
7902
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8374
7903
|
public fun setBorderRadius (Lcom/facebook/react/views/view/ReactViewGroup;ILcom/facebook/react/bridge/Dynamic;)V
|
|
8375
7904
|
public fun setBorderStyle (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8376
7905
|
public fun setBorderWidth (Lcom/facebook/react/views/view/ReactViewGroup;IF)V
|
|
8377
|
-
public fun setBoxShadow (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8378
7906
|
public fun setCollapsable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8379
7907
|
public fun setCollapsableChildren (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8380
7908
|
public fun setFocusable (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
@@ -8387,15 +7915,11 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
8387
7915
|
public fun setOverflow (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8388
7916
|
public fun setPointerEvents (Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;)V
|
|
8389
7917
|
public fun setTVPreferredFocus (Lcom/facebook/react/views/view/ReactViewGroup;Z)V
|
|
8390
|
-
|
|
7918
|
+
public synthetic fun setTransformProperty (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8391
7919
|
protected fun setTransformProperty (Lcom/facebook/react/views/view/ReactViewGroup;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
8392
7920
|
}
|
|
8393
7921
|
|
|
8394
|
-
public class com/facebook/react/views/view/ReactViewManager
|
|
8395
|
-
public fun <init> ()V
|
|
8396
|
-
public fun getProperties (Ljava/util/Map;)V
|
|
8397
|
-
public synthetic fun setProperty (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
8398
|
-
public fun setProperty (Lcom/facebook/react/views/view/ReactViewManager;Lcom/facebook/react/views/view/ReactViewGroup;Ljava/lang/String;Ljava/lang/Object;)V
|
|
7922
|
+
public final class com/facebook/react/views/view/ReactViewManager$Companion {
|
|
8399
7923
|
}
|
|
8400
7924
|
|
|
8401
7925
|
public final class com/facebook/react/views/view/ViewGroupClickEvent : com/facebook/react/uimanager/events/Event {
|
|
@@ -8408,5 +7932,6 @@ public final class com/facebook/react/views/view/ViewGroupClickEvent : com/faceb
|
|
|
8408
7932
|
public final class com/facebook/react/views/view/WindowUtilKt {
|
|
8409
7933
|
public static final fun setStatusBarTranslucency (Landroid/view/Window;Z)V
|
|
8410
7934
|
public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
|
|
7935
|
+
public static final fun setSystemBarsTranslucency (Landroid/view/Window;Z)V
|
|
8411
7936
|
}
|
|
8412
7937
|
|